Fixed an issue where two ushorts were being strcmp'd. Follow-up to r14442. (bugreport:4523)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@14443 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
Paradox924X
2010-11-02 16:28:45 +00:00
parent a2194e03ae
commit bc60de6f03
2 changed files with 2 additions and 1 deletions

View File

@@ -459,7 +459,7 @@ int mmo_char_tosql(int char_id, struct mmo_charstatus* p)
(p->base_exp != cp->base_exp) || (p->base_level != cp->base_level) ||
(p->job_level != cp->job_level) || (p->job_exp != cp->job_exp) ||
(p->zeny != cp->zeny) ||
strcmp(p->last_point.map, cp->last_point.map)
(p->last_point.map != cp->last_point.map) ||
(p->last_point.x != cp->last_point.x) || (p->last_point.y != cp->last_point.y) ||
(p->max_hp != cp->max_hp) || (p->hp != cp->hp) ||
(p->max_sp != cp->max_sp) || (p->sp != cp->sp) ||