summaryrefslogtreecommitdiff
path: root/src/map/atcommand.c
diff options
context:
space:
mode:
authorAsheraf <acheraf1998@gmail.com>2018-03-24 21:41:05 +0000
committerAsheraf <acheraf1998@gmail.com>2018-05-04 16:11:52 +0100
commit394e7f8752ae7c80786e202c8b859488db1af363 (patch)
tree3a329478e75881cba950165454b1f402fe38f171 /src/map/atcommand.c
parentd6785d389cbee4f34078f6762626ca61b2d6cc25 (diff)
downloadhercules-394e7f8752ae7c80786e202c8b859488db1af363.tar.gz
hercules-394e7f8752ae7c80786e202c8b859488db1af363.tar.bz2
hercules-394e7f8752ae7c80786e202c8b859488db1af363.tar.xz
hercules-394e7f8752ae7c80786e202c8b859488db1af363.zip
Implementation of Private AirShip
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r--src/map/atcommand.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index 9deed0098..017b9ddf0 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) {