diff options
author | gumi <mekolat@users.noreply.github.com> | 2017-03-05 12:30:36 -0500 |
---|---|---|
committer | gumi <mekolat@users.noreply.github.com> | 2017-03-05 13:32:45 -0500 |
commit | 5d94553ad2a3625b2ba74615c89785a2d92e9e2b (patch) | |
tree | e68b2f4869f720b8c65a2e97663eb8dfed3af889 /src/map/script.c | |
parent | 404f321df6d5ff717d63528d6bceaadad4c10f07 (diff) | |
download | hercules-5d94553ad2a3625b2ba74615c89785a2d92e9e2b.tar.gz hercules-5d94553ad2a3625b2ba74615c89785a2d92e9e2b.tar.bz2 hercules-5d94553ad2a3625b2ba74615c89785a2d92e9e2b.tar.xz hercules-5d94553ad2a3625b2ba74615c89785a2d92e9e2b.zip |
fix code style in buildin_deltimer
Diffstat (limited to 'src/map/script.c')
-rw-r--r-- | src/map/script.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/map/script.c b/src/map/script.c index ae6cb74ed..3da3ff211 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -10819,11 +10819,12 @@ BUILDIN(deltimer) event=script_getstr(st, 2); sd = script->rid2sd(st); - if( sd == NULL ) + + if (sd == NULL) return true; script->check_event(st, event); - pc->deleventtimer(sd,event); + pc->deleventtimer(sd, event); return true; } /*========================================== |