diff --git a/src/map/map.cpp b/src/map/map.cpp index f5532bb9f3..ade9f9efa5 100644 --- a/src/map/map.cpp +++ b/src/map/map.cpp @@ -4739,7 +4739,8 @@ bool map_setmapflag_sub(int16 m, enum e_mapflag mapflag, bool status, union u_ma if (mapdata->flag[MF_PVP]) { mapdata->flag[MF_PVP] = false; - ShowWarning("map_setmapflag: Unable to set PvP and Battleground flags for the same map! Removing PvP flag from %s.\n", mapdata->name); + if (!battle_config.pk_mode) + ShowWarning("map_setmapflag: Unable to set PvP and Battleground flags for the same map! Removing PvP flag from %s.\n", mapdata->name); } if (mapdata->flag[MF_GVG]) { mapdata->flag[MF_GVG] = false;