diff --git a/bin/scripts/help.def b/bin/scripts/help.def index 9f17c33..e773526 100644 --- a/bin/scripts/help.def +++ b/bin/scripts/help.def @@ -26,13 +26,14 @@ if ?{equal,basic ?{lindex,args 0}} endif if ?{equal,list ?{lindex,args 0}} - == Help topics avalible: ?{llen reg_name} + out == Help topics avalible: ?{llen reg_name} set,i 0 loop if ?{bigger_eq,${i} ?{llen reg_name}} exitloop endif out "help ?{lindex,reg_name ${i}}" + add,i 1 endloop return endif diff --git a/src/Client/World/WorldSession.cpp b/src/Client/World/WorldSession.cpp index 812a887..4b9afca 100644 --- a/src/Client/World/WorldSession.cpp +++ b/src/Client/World/WorldSession.cpp @@ -1252,7 +1252,7 @@ void WorldSession::_HandleLoginVerifyWorldOpcode(WorldPacket& recvPacket) // update the world as soon as the server confirmed that we are where we are. _world->UpdatePos(x,y,m); _world->Update(); - _world->CreateMoveMgr(); + //_world->CreateMoveMgr(); // temp. solution to test terrain rendering if(PseuGUI *gui = GetInstance()->GetGUI())