diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/script.c | 12 |
2 files changed, 12 insertions, 2 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 089ec7f3e..fd4289264 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -5,6 +5,8 @@ IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. 2008/06/12 + * Added check to prevent crashing on logmes with no player attached + (bugreport:1648) [ultramage] * Added support for skill names to script commands: [FlavioJS] - skill, addtoskill, guildskill, getskilllv, getgdskilllv, itemskill, petskillattack, petskillattack2, petskillsupport, skilleffect, diff --git a/src/map/script.c b/src/map/script.c index 50e64b8e9..b1f6371ec 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -11282,9 +11282,17 @@ BUILDIN_FUNC(getmapxy) BUILDIN_FUNC(logmes) { const char *str; - if (log_config.npc <= 0 ) return 0; + TBL_PC* sd; + + if( log_config.npc <= 0 ) + return 0; + + sd = script_rid2sd(st); + if( sd == NULL ) + return 1; + str = script_getstr(st,2); - log_npc(script_rid2sd(st),str); + log_npc(sd,str); return 0; } |