summaryrefslogtreecommitdiff
path: root/src/map/map.h
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-11-27 21:32:32 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-11-27 21:32:32 +0000
commit0c54e1b5b3116b0eab4e91d9faf84acd7c946b41 (patch)
treecf9a5b680cf28fd6784c558e5add25ed0ce66120 /src/map/map.h
parent22ca80169f4034a67d33d08447882e7355979f7c (diff)
downloadhercules-0c54e1b5b3116b0eab4e91d9faf84acd7c946b41.tar.gz
hercules-0c54e1b5b3116b0eab4e91d9faf84acd7c946b41.tar.bz2
hercules-0c54e1b5b3116b0eab4e91d9faf84acd7c946b41.tar.xz
hercules-0c54e1b5b3116b0eab4e91d9faf84acd7c946b41.zip
- Updated the status change field "option" to an int rather than short. This fixes the option values for xmas/sightblaster not getting set, which could explain why some people crash when equipping weapons while in xmas suit.
- Also did the same to opt3 since the new packet version uses LONG to store the opt3 values. - Made the clif weapon view function use the EQI constants instead of ints. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9337 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r--src/map/map.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/map.h b/src/map/map.h
index 2061e93bb..45688cfe4 100644
--- a/src/map/map.h
+++ b/src/map/map.h
@@ -419,8 +419,8 @@ struct status_change_entry {
struct status_change {
struct status_change_entry data[MAX_STATUSCHANGE];
short count;
- short opt1,opt2,opt3;
- unsigned short option;
+ unsigned short opt1,opt2;
+ unsigned int opt3, option; //Note that older packet versions use short here.
};
struct vending {