summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgumi <mekolat@users.noreply.github.com>2017-09-18 15:47:45 -0400
committergumi <mekolat@users.noreply.github.com>2017-09-18 15:47:45 -0400
commit03265815adbcaa2d5735028e5afafb4fca62ef7f (patch)
treeb8408e93b81f204f7db38188df97f5436d4311e3
parente6229a9f182ad76d19cc65ab2cba1329a11c978b (diff)
downloadhercules-03265815adbcaa2d5735028e5afafb4fca62ef7f.tar.gz
hercules-03265815adbcaa2d5735028e5afafb4fca62ef7f.tar.bz2
hercules-03265815adbcaa2d5735028e5afafb4fca62ef7f.tar.xz
hercules-03265815adbcaa2d5735028e5afafb4fca62ef7f.zip
fix rogue whitespaces in rodex buildins
-rw-r--r--src/map/script.c6
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;
}