summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/login/login.c2
-rw-r--r--src/map/script.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/login/login.c b/src/login/login.c
index 7cb00c888..59a110348 100644
--- a/src/login/login.c
+++ b/src/login/login.c
@@ -1018,7 +1018,7 @@ int mmo_auth(struct login_session_data* sd)
sd->level = acc.level;
// update account data
- timestamp2string(acc.lastlogin, sizeof(acc.lastlogin), time(NULL), login_config.date_format);
+ timestamp2string(acc.lastlogin, sizeof(acc.lastlogin), time(NULL), "%Y-%m-%d %H:%M:%S");
safestrncpy(acc.last_ip, ip, sizeof(acc.last_ip));
acc.unban_time = 0;
acc.logincount++;
diff --git a/src/map/script.c b/src/map/script.c
index bdd6a5897..19fb01cc3 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -10331,7 +10331,7 @@ BUILDIN_FUNC(getiteminfo)
n = script_getnum(st,3);
i_data = itemdb_exists(item_id);
- if (i_data && n>=0 && n<14) {
+ if (i_data && n>=0 && n<=14) {
item_arr = (int*)&i_data->value_buy;
script_pushint(st,item_arr[n]);
} else
@@ -10373,7 +10373,7 @@ BUILDIN_FUNC(setiteminfo)
value = script_getnum(st,4);
i_data = itemdb_exists(item_id);
- if (i_data && n>=0 && n<14) {
+ if (i_data && n>=0 && n<=14) {
item_arr = (int*)&i_data->value_buy;
item_arr[n] = value;
script_pushint(st,value);