From b5ef81d1bed0caa6fd71d63c9d6ae06e5fcd0d5e Mon Sep 17 00:00:00 2001 From: Bjørn Lindeijer Date: Sun, 9 Nov 2008 17:10:56 +0000 Subject: Fixed crash when a script can't be found. No idea why this could happen though. --- ChangeLog | 49 +++++++++++++++++++++++++------------------ src/game-server/character.cpp | 10 +++++---- 2 files changed, 35 insertions(+), 24 deletions(-) diff --git a/ChangeLog b/ChangeLog index b88d1f0d..219baaae 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,12 @@ +2008-11-09 Bjørn Lindeijer + + * src/game-server/character.cpp: Fixed crash when a script can't be + found. + 2008-11-06 David Athay - * src/scripting/lua.cpp, src/defines.h, src/game-server/gamehandler.cpp, + * src/scripting/lua.cpp, src/defines.h, + src/game-server/gamehandler.cpp, src/game-server/accountconnection.cpp: Added sending post via NPC. 2008-11-02 Philipp Sehmisch @@ -18,25 +24,28 @@ integers, as per Bjorns suggestion. 2008-11-05 Dennis Friis + * src/game-server/commandhandler.cpp: Fix integer arguments randomly failing due to stream flags not being cleared. To reuse a stream you must do stream.clear(); stream.str(string); for it to work. 2008-11-05 Andreas Habel - * src/account-server/dalstorage.cpp, src/account-server/dalstorage.hpp, - src/account-server/serverhandler.cpp, src/defines.h, - src/game-server/accountconnection.cpp, src/game-server/itemmanager.cpp, - src/game-server/itemmanager.hpp: Added version information to item database. - Game server reports its local version to account server and gets notified - if the version is up-to-date or outdated to prevent inconsistencies. - Account server initially loads item database on startup and synchronizes - tmw_items table in the database. + * src/account-server/dalstorage.cpp, + src/account-server/dalstorage.hpp, + src/account-server/serverhandler.cpp, src/defines.h, + src/game-server/accountconnection.cpp, + src/game-server/itemmanager.cpp, src/game-server/itemmanager.hpp: + Added version information to item database. Game server reports its + local version to account server and gets notified if the version is + up-to-date or outdated to prevent inconsistencies. Account server + initially loads item database on startup and synchronizes tmw_items + table in the database. 2008-11-04 David Athay * src/chat-server/chathandler.cpp, src/chat-server/chathandler.hpp, - src/defines.h: Added notifying party members when a player joins or + src/defines.h: Added notifying party members when a player joins or quits. * src/game-server/state.cpp, src/game-server/being.cpp, src/game-server/character.hpp, src/game-server/object.hpp: Added @@ -70,18 +79,18 @@ 2008-11-01 Philipp Sehmisch - * src/game-server/character.hpp, src/game-server/scripting/lua.cpp: Added - script bindings for manipulating the characters experience. - * src/game-server/character.cpp: Catched a potential integer underflow in - experience calculation. + * src/game-server/character.hpp, src/game-server/scripting/lua.cpp: + Added script bindings for manipulating the characters experience. + * src/game-server/character.cpp: Catched a potential integer underflow + in experience calculation. * data/scripts/lib/test.lua: added constants for character skills. - * data/scripts/test.lua: Added example script for manipulating character - experience. + * data/scripts/test.lua: Added example script for manipulating + character experience. * src/game-server/character.cpp, src/game-server/character.hpp, - src/game-server/gamehandler.cpp, src/defines.h: Implemented basic netcode - for using special actions like magic. Currently triggers a function in - libtmw.lua which makes the caster speak some text (magic system - implementation phase 1 and 2) + src/game-server/gamehandler.cpp, src/defines.h: Implemented basic + netcode for using special actions like magic. Currently triggers a + function in libtmw.lua which makes the caster speak some text (magic + system implementation phase 1 and 2) 2008-10-31 David Athay diff --git a/src/game-server/character.cpp b/src/game-server/character.cpp index 61a5e1d1..3c481691 100644 --- a/src/game-server/character.cpp +++ b/src/game-server/character.cpp @@ -148,10 +148,12 @@ void Character::useSpecial(int id) //TODO: check if the character is allowed to use it right now Script *s = getMap()->getScript(); - s->prepare("cast"); - s->push(this); - s->push(id); - s->execute(); + if (s) { + s->prepare("cast"); + s->push(this); + s->push(id); + s->execute(); + } return; } -- cgit v1.2.3-70-g09d2