summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-12-14 23:51:48 +0300
committerAndrei Karas <akaras@inbox.ru>2018-12-14 23:52:47 +0300
commit59eb8ed011d447ba91c085590c11e2681773d2a0 (patch)
tree7d07e9f2e6b67c06ba37718d9a21d2b061acec24 /src/map/clif.c
parent4194f0ad5d47640dc0a26c48b070759b354424a7 (diff)
downloadhercules-59eb8ed011d447ba91c085590c11e2681773d2a0.tar.gz
hercules-59eb8ed011d447ba91c085590c11e2681773d2a0.tar.bz2
hercules-59eb8ed011d447ba91c085590c11e2681773d2a0.tar.xz
hercules-59eb8ed011d447ba91c085590c11e2681773d2a0.zip
Add packet CZ_REQ_REMAINTIME (with empty handler)
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index a81b967d1..b0698fefd 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -3173,6 +3173,12 @@ static void clif_parse_inventoryExpansionRejected(int fd, struct map_session_dat
#endif
}
+// CZ_REQ_REMAINTIME
+static void clif_parse_reqRemainTime(int fd, struct map_session_data *sd) __attribute__((nonnull (2)));
+static void clif_parse_reqRemainTime(int fd, struct map_session_data *sd)
+{
+}
+
/// Removes cart (ZC_CARTOFF).
/// 012b
/// Client behavior:
@@ -23362,4 +23368,5 @@ void clif_defaults(void)
clif->petEvolutionResult = clif_pet_evolution_result;
clif->pMemorialDungeonCommand = clif_parse_memorial_dungeon_command;
+ clif->pReqRemainTime = clif_parse_reqRemainTime;
}