diff options
author | Haru <haru@dotalux.com> | 2017-10-21 19:32:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-21 19:32:06 +0200 |
commit | 58fdbea3d60eea1e6fcbc0dfcaddb85c7c3f1486 (patch) | |
tree | 8fafcb8a121e18217c6e50da66c72ca06795b09f /src/map/atcommand.c | |
parent | 10acab2a7742f1257777c9b6e0d900d2729b9839 (diff) | |
parent | 2c2839c6cfb8e788115aa1858ddfbcf31ad3cd2c (diff) | |
download | hercules-58fdbea3d60eea1e6fcbc0dfcaddb85c7c3f1486.tar.gz hercules-58fdbea3d60eea1e6fcbc0dfcaddb85c7c3f1486.tar.bz2 hercules-58fdbea3d60eea1e6fcbc0dfcaddb85c7c3f1486.tar.xz hercules-58fdbea3d60eea1e6fcbc0dfcaddb85c7c3f1486.zip |
Merge pull request #1833 from Emistry/mapflag_noautoloot
Add NoAutoloot mapflag
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 7b2c0f8b2..a59748b9e 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -3908,6 +3908,8 @@ ACMD(mapinfo) strcat(atcmd_output, msg_fd(fd,1096)); // PartyLock | if (map->list[m_id].flag.guildlock) strcat(atcmd_output, msg_fd(fd,1097)); // GuildLock | + if (map->list[m_id].flag.noautoloot) + strcat(atcmd_output, msg_fd(fd, 1063)); // NoAutoloot | if (map->list[m_id].flag.noviewid != EQP_NONE) strcat(atcmd_output, msg_fd(fd,1079)); // NoViewID | clif->message(fd, atcmd_output); |