diff options
Diffstat (limited to 'src/map/chat.c')
-rw-r--r-- | src/map/chat.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/map/chat.c b/src/map/chat.c index a466424d4..2572e5083 100644 --- a/src/map/chat.c +++ b/src/map/chat.c @@ -4,6 +4,7 @@ #include "../common/cbasetypes.h" #include "../common/malloc.h" #include "../common/nullpo.h" +#include "../common/showmsg.h" #include "../common/strlib.h" #include "atcommand.h" // msg_txt() #include "battle.h" // struct battle_config @@ -293,6 +294,12 @@ int chat_createnpcchat(struct npc_data* nd, const char* title, int limit, bool p struct chat_data* cd; nullpo_retr(0, nd); + if( nd->chat_id ) + { + ShowError("chat_createnpcchat: npc '%s' already has a chatroom, cannot create new one!\n", nd->exname); + return 0; + } + cd = chat_createchat(&nd->bl, title, "", limit, pub, trigger, ev); if( cd ) { |