Changed: #901 nlstop() broken (including patch provided by vhelsing)

This commit is contained in:
kervala 2010-05-17 10:44:12 +02:00
parent addc3f8ad1
commit a7c13ecb71
3 changed files with 3 additions and 3 deletions

View file

@ -1070,7 +1070,7 @@ std::string CGroupNpc::buildDebugString(uint idx) const
void CGroupNpc::display(CStringWriter &stringWriter) const void CGroupNpc::display(CStringWriter &stringWriter) const
{ {
#ifdef NL_DEBUG #ifdef NL_DEBUG
nlstop("not implemented"); nlstopex(("not implemented"));
#endif #endif
} }

View file

@ -2446,7 +2446,7 @@ NLMISC_COMMAND(addPetsToPlayer,"Add some pets specified with a sheet to the spec
return false; return false;
#ifdef NL_DEBUG #ifdef NL_DEBUG
nlstop("Not Implemented"); nlstopex(("Not Implemented"));
#endif #endif
return true; return true;
} }

View file

@ -72,7 +72,7 @@ CHarvestable::~CHarvestable()
{ {
nlwarning("CHarvestable::~CHarvestable> WARNING harvester row id not reset but can't find corresponding entity."); nlwarning("CHarvestable::~CHarvestable> WARNING harvester row id not reset but can't find corresponding entity.");
#ifdef NL_DEBUG #ifdef NL_DEBUG
nlstop(""); nlstop;
#endif #endif
} }
} }