summaryrefslogtreecommitdiff
path: root/src/map/atcommand.c
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2020-07-26 19:07:28 +0200
committerGitHub <noreply@github.com>2020-07-26 19:07:28 +0200
commit43e4d537acac47dc923fac445f9a6f476db2d18c (patch)
tree5bc392f9e1b6b928d7168ec6f024629423aabb4c /src/map/atcommand.c
parent909054bf043ff51ccd476418075f8bf1dc55b27f (diff)
parentd3c24f7d9ae64354e446a85ba0dad21daca589c1 (diff)
downloadhercules-43e4d537acac47dc923fac445f9a6f476db2d18c.tar.gz
hercules-43e4d537acac47dc923fac445f9a6f476db2d18c.tar.bz2
hercules-43e4d537acac47dc923fac445f9a6f476db2d18c.tar.xz
hercules-43e4d537acac47dc923fac445f9a6f476db2d18c.zip
Merge pull request #2652 from Emistry/mf_nopet
Add NoPet mapflag
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r--src/map/atcommand.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index 9d5c601bf..c1a717439 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -4101,6 +4101,8 @@ ACMD(mapinfo)
strcat(atcmd_output, msg_fd(fd, 1292)); // PrivateAirshipStartable |
if (map->list[m_id].flag.pairship_endable)
strcat(atcmd_output, msg_fd(fd, 1293)); // PrivateAirshipEndable |
+ if (map->list[m_id].flag.nopet != 0)
+ strcat(atcmd_output, msg_fd(fd, 853)); // NoPet |
clif->message(fd, atcmd_output);
switch (list) {