From c87c4839de9893ce3c55e5018fea9021eb14b5e3 Mon Sep 17 00:00:00 2001 From: brianluau Date: Fri, 30 Apr 2010 00:22:22 +0000 Subject: - Fixed a typo in guildrelay.txt (bugreport:4213) - Forced acc.lastlogin to use MySQL DATETIME format. (bugreport:4193) - Fixed the range of getiteminfo and setiteminfo. (bugreport:4190) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14292 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/login/login.c | 2 +- src/map/script.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src') 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); -- cgit v1.2.3-70-g09d2