diff options
author | Haru <haru@dotalux.com> | 2018-05-07 00:13:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-07 00:13:15 +0200 |
commit | 614d7b66475f58dfb6354b57ca14999cc8c1b687 (patch) | |
tree | de881b6a6ad275c088e43b1388267e14d9e0cb52 /src/map/atcommand.c | |
parent | 0903ea0b82614d127672b0c5ab3d8ca8049e0d87 (diff) | |
parent | 394e7f8752ae7c80786e202c8b859488db1af363 (diff) | |
download | hercules-614d7b66475f58dfb6354b57ca14999cc8c1b687.tar.gz hercules-614d7b66475f58dfb6354b57ca14999cc8c1b687.tar.bz2 hercules-614d7b66475f58dfb6354b57ca14999cc8c1b687.tar.xz hercules-614d7b66475f58dfb6354b57ca14999cc8c1b687.zip |
Merge pull request #1998 from Asheraf/private_airship
Implementation of Private AirShip
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 90ba73fa6..a130ecef3 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -3956,6 +3956,10 @@ ACMD(mapinfo) 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 | + if (map->list[m_id].flag.pairship_startable) + strcat(atcmd_output, msg_fd(fd, 1292)); // PrivateAirshipStartable | + if (map->list[m_id].flag.pairship_endable) + strcat(atcmd_output, msg_fd(fd, 1293)); // PrivateAirshipEndable | clif->message(fd, atcmd_output); switch (list) { |