diff options
author | Jedzkie <jedzkie13@rocketmail.com> | 2017-04-19 23:25:53 +0800 |
---|---|---|
committer | Jedzkie <jedzkie13@rocketmail.com> | 2017-04-19 23:37:08 +0800 |
commit | c22bc45868e8ea2b7ef904848d178caeaa6b379c (patch) | |
tree | 32edebf9506cd0dad0612cef0ebcf8a2007a4e1d /src/map/atcommand.c | |
parent | 5802b22439441be1914ae9024d6ce06d51c0210f (diff) | |
download | hercules-c22bc45868e8ea2b7ef904848d178caeaa6b379c.tar.gz hercules-c22bc45868e8ea2b7ef904848d178caeaa6b379c.tar.bz2 hercules-c22bc45868e8ea2b7ef904848d178caeaa6b379c.tar.xz hercules-c22bc45868e8ea2b7ef904848d178caeaa6b379c.zip |
Implemented Official Summer 2 Costume
Added summer2_ignorepalette configuration
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 881e50497..4c746d4ca 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -9257,6 +9257,9 @@ ACMD(costume){ #if PACKETVER >= 20131218 "Oktoberfest", #endif +#if PACKETVER >= 20141022 + "Summer2", +#endif }; const int name2id[] = { SC_WEDDING, @@ -9266,6 +9269,9 @@ ACMD(costume){ #if PACKETVER >= 20131218 SC_OKTOBERFEST, #endif +#if PACKETVER >= 20141022 + SC_DRESS_UP, +#endif }; unsigned short k = 0, len = ARRAYLENGTH(names); |