summaryrefslogtreecommitdiff
path: root/src/map/map.h
diff options
context:
space:
mode:
authorFate <fate.tmw@googlemail.com>2008-11-08 06:43:20 +0000
committerFate <fate.tmw@googlemail.com>2008-11-08 06:43:20 +0000
commitf52600e3795cd8a40c716ff92db6d8f55cc8e7cf (patch)
tree640394a2db695b69cd1b41dc05656f148070552b /src/map/map.h
parent74b8e841fcaf7454fa677bf6225036f4d2ebaa26 (diff)
downloadtmwa-f52600e3795cd8a40c716ff92db6d8f55cc8e7cf.tar.gz
tmwa-f52600e3795cd8a40c716ff92db6d8f55cc8e7cf.tar.bz2
tmwa-f52600e3795cd8a40c716ff92db6d8f55cc8e7cf.tar.xz
tmwa-f52600e3795cd8a40c716ff92db6d8f55cc8e7cf.zip
* Change SLang interpreter time handling to be universally unsigned
* Add debug output to SLang guard checking to print why particular guards failed
Diffstat (limited to 'src/map/map.h')
-rw-r--r--src/map/map.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/map.h b/src/map/map.h
index bc34d7c..54179ac 100644
--- a/src/map/map.h
+++ b/src/map/map.h
@@ -208,7 +208,7 @@ struct map_session_data {
int followtimer; // [MouseJstr]
int followtarget;
- int cast_tick; // [Fate] Next tick at which spellcasting is allowed
+ unsigned int cast_tick; // [Fate] Next tick at which spellcasting is allowed
struct invocation *active_spells; // [Fate] Singly-linked list of active spells linked to this PC
int attack_spell_override; // [Fate] When an attack spell is active for this player, they trigger it
// like a weapon. Check pc_attack_timer() for details.