diff --git a/src/classes/creatlist.hpp b/src/classes/creatlist.hpp index 7de56eb7..f6f4a56e 100644 --- a/src/classes/creatlist.hpp +++ b/src/classes/creatlist.hpp @@ -18,19 +18,7 @@ namespace legacy { struct creature_data_type; }; -class cPopulation { // formerly creature_list_type -// class cCreature { // formerly creature_data_type -// public: -// short active, attitude; -// unsigned char number; -// location m_loc; -// cMonster m_d; -// bool mobile; -// short summoned; -// cTown::cCreature monst_start; -// -// cCreature& operator = (legacy::creature_data_type old); -// }; +class cPopulation { std::vector dudes; public: short which_town; diff --git a/src/classes/special.cpp b/src/classes/special.cpp index 01bcdc2c..fd767206 100644 --- a/src/classes/special.cpp +++ b/src/classes/special.cpp @@ -452,7 +452,7 @@ void cSpecial::append(legacy::special_node_type& old){ default: if(old.type >= 0 && old.type < 255) showError("Unrecognized node type found: " + std::to_string(old.type)); - else std::cout << "Unrecognized node type found: " + std::to_string(old.type) + else std::cout << "Unrecognized node type found: " << old.type << "\n\tNote: This could indicate corruption in the scenario, but more likely is just a result of garbage data in unused nodes or in the memory structures they were read into. The unrecognized node type has been replaced with invalid type -1."; } }