diff options
author | gumi <mekolat@users.noreply.github.com> | 2017-09-18 15:47:45 -0400 |
---|---|---|
committer | gumi <mekolat@users.noreply.github.com> | 2017-09-18 15:47:45 -0400 |
commit | 03265815adbcaa2d5735028e5afafb4fca62ef7f (patch) | |
tree | b8408e93b81f204f7db38188df97f5436d4311e3 /src/map | |
parent | e6229a9f182ad76d19cc65ab2cba1329a11c978b (diff) | |
download | hercules-03265815adbcaa2d5735028e5afafb4fca62ef7f.tar.gz hercules-03265815adbcaa2d5735028e5afafb4fca62ef7f.tar.bz2 hercules-03265815adbcaa2d5735028e5afafb4fca62ef7f.tar.xz hercules-03265815adbcaa2d5735028e5afafb4fca62ef7f.zip |
fix rogue whitespaces in rodex buildins
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/script.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/script.c b/src/map/script.c index dc43cbbd8..8ddb056bd 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -23476,7 +23476,7 @@ BUILDIN(rodex_sendmail) // Common parameters - sender/message/zeny if (rodex_sendmail_sub(st, &msg) == false) return false; - + // Item list while (i < RODEX_MAX_ITEM && script_hasdata(st, param)) { struct item_data *idata; @@ -23505,7 +23505,7 @@ BUILDIN(rodex_sendmail) msg.items[i].item.nameid = idata->nameid; msg.items[i].item.amount = script_getnum(st, (param + 1)); msg.items[i].item.identify = 1; - + ++i; param += 2; } @@ -23583,7 +23583,7 @@ BUILDIN(rodex_sendmail2) for (j = 0; j < MAX_SLOTS; ++j) { msg.items[i].item.card[j] = script_getnum(st, param + 4 + j); } - + ++i; param += 4 + MAX_SLOTS; } |