--- deliantra/server/server/c_misc.c 2006/03/20 06:25:40 1.2 +++ deliantra/server/server/c_misc.c 2006/03/31 22:25:59 1.3 @@ -1551,10 +1551,19 @@ int command_peaceful (object *op, char *params) { - if((op->contr->peaceful=!op->contr->peaceful)) - new_draw_info(NDI_UNIQUE, 0,op,"You will not attack other players."); - else - new_draw_info(NDI_UNIQUE, 0,op,"You will attack other players."); + new_draw_info(NDI_UNIQUE, 0, op, + "You cannot change your peaceful setting with this command." + " Please speak to the priest in the temple of Gorokh" + " if you want to become hostile or temple of Valriel" + " if you want to become peaceful again." + ); + +/* + if((op->contr->peaceful=!op->contr->peaceful)) + new_draw_info(NDI_UNIQUE, 0,op,"You will not attack other players."); + else + new_draw_info(NDI_UNIQUE, 0,op,"You will attack other players."); +*/ return 1; }