diff options
author | Jedzkie <jedzkie13@rocketmail.com> | 2015-12-29 18:50:48 +0800 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-01-16 20:30:15 +0100 |
commit | c156322ded28c695c17871d98abe071bb73dadd4 (patch) | |
tree | 919fcc98cc9b57c943f671c11ccca3c59d8f110a /src/map/atcommand.c | |
parent | e951186d8eafc09de4e88224d5f2a3c9b19d6fae (diff) | |
download | hercules-c156322ded28c695c17871d98abe071bb73dadd4.tar.gz hercules-c156322ded28c695c17871d98abe071bb73dadd4.tar.bz2 hercules-c156322ded28c695c17871d98abe071bb73dadd4.tar.xz hercules-c156322ded28c695c17871d98abe071bb73dadd4.zip |
Removed Hard Coded data for SC_ALL_RIDING.
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index e223f698c..08119457d 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -8414,6 +8414,7 @@ ACMD(charcommands) atcommand->commands_sub(sd, fd, COMMAND_CHARCOMMAND); return true; } + /* for new mounts */ ACMD(cashmount) { @@ -8425,7 +8426,7 @@ ACMD(cashmount) clif->message(sd->fd,msg_fd(fd,1362)); // NOTICE: If you crash with mount your LUA is outdated. if (!sd->sc.data[SC_ALL_RIDING]) { clif->message(sd->fd,msg_fd(fd,1363)); // You have mounted. - sc_start(NULL,&sd->bl,SC_ALL_RIDING,100,0,-1); + sc_start(NULL,&sd->bl,SC_ALL_RIDING,100,25,-1); } else { clif->message(sd->fd,msg_fd(fd,1364)); // You have released your mount. status_change_end(&sd->bl, SC_ALL_RIDING, INVALID_TIMER); |