diff options
author | Haru <haru@dotalux.com> | 2018-06-18 21:00:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-18 21:00:37 +0200 |
commit | 242bb0f939ff2e68fff8914853cbb87baa8296b6 (patch) | |
tree | de2b65845517132611aad62926ecc26ac6e8f846 /src/map/script.c | |
parent | 2d840771eeee1d9e158e843bcc14f9d69d1cf22e (diff) | |
parent | dfc078354025408dd5140e95702b0661b52d1e16 (diff) | |
download | hercules-242bb0f939ff2e68fff8914853cbb87baa8296b6.tar.gz hercules-242bb0f939ff2e68fff8914853cbb87baa8296b6.tar.bz2 hercules-242bb0f939ff2e68fff8914853cbb87baa8296b6.tar.xz hercules-242bb0f939ff2e68fff8914853cbb87baa8296b6.zip |
Merge pull request #2064 from 4144/updatepackets
update packets and message table for clients 20180530 to 20180612
Diffstat (limited to 'src/map/script.c')
-rw-r--r-- | src/map/script.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/map/script.c b/src/map/script.c index 88d8095e5..410a707f1 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -24170,7 +24170,9 @@ BUILDIN(openstylist) if (sd == NULL) return false; - clif->open_ui(sd, STYLIST_UI); +#if PACKETVER >= 20150128 + clif->open_ui(sd, CZ_STYLIST_UI); +#endif return true; } |