diff options
author | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-05-06 23:14:06 +0000 |
---|---|---|
committer | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-05-06 23:14:06 +0000 |
commit | 776965a9d20f314c07c929fc0ff9b6a2a8d67dd5 (patch) | |
tree | 156d94a975eb1db79a6777bf5287e37778588201 /src/map | |
parent | 13371ff777f3509d8e5e02f2080f4692abacd57e (diff) | |
download | hercules-776965a9d20f314c07c929fc0ff9b6a2a8d67dd5.tar.gz hercules-776965a9d20f314c07c929fc0ff9b6a2a8d67dd5.tar.bz2 hercules-776965a9d20f314c07c929fc0ff9b6a2a8d67dd5.tar.xz hercules-776965a9d20f314c07c929fc0ff9b6a2a8d67dd5.zip |
- Fixed an uninitialized variable in r13724. (bugreport:3052)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13731 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/pc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index abb322af6..97ed1b5cb 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -808,6 +808,7 @@ bool pc_authok(struct map_session_data *sd, int login_id2, time_t expiration_tim sd->pvp_timer = INVALID_TIMER; sd->canuseitem_tick = tick; + sd->canequip_tick = tick; sd->cantalk_tick = tick; sd->cansendmail_tick = tick; |