aboutsummaryrefslogtreecommitdiff
path: root/src/game/Unit.h
diff options
context:
space:
mode:
authorSpp <none@none>2010-05-01 22:57:39 +0200
committerSpp <none@none>2010-05-01 22:57:39 +0200
commit6d5f7cac24d0f045c4e8574b58a02db6bbae4590 (patch)
tree40ac3ef6dfec9eccdbbf3be33cdb2b2da456f64b /src/game/Unit.h
parent3c4e8f36f41280e1027c4bcaba9d11e84f0bd350 (diff)
remove uint32 cast from previous commit.
It wasn't supposed to be pushed. --HG-- branch : trunk
Diffstat (limited to 'src/game/Unit.h')
-rw-r--r--src/game/Unit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Unit.h b/src/game/Unit.h
index 2c3ff085b38..980e481e8d5 100644
--- a/src/game/Unit.h
+++ b/src/game/Unit.h
@@ -470,7 +470,7 @@ enum UnitState
UNIT_STAT_SIGHTLESS = (UNIT_STAT_LOST_CONTROL | UNIT_STAT_EVADE),
UNIT_STAT_CANNOT_AUTOATTACK = (UNIT_STAT_LOST_CONTROL | UNIT_STAT_CASTING),
UNIT_STAT_CANNOT_TURN = (UNIT_STAT_LOST_CONTROL | UNIT_STAT_ROTATING),
- UNIT_STAT_ALL_STATE = uint32(0xffffffff) //(UNIT_STAT_STOPPED | UNIT_STAT_MOVING | UNIT_STAT_IN_COMBAT | UNIT_STAT_IN_FLIGHT)
+ UNIT_STAT_ALL_STATE = 0xffffffff //(UNIT_STAT_STOPPED | UNIT_STAT_MOVING | UNIT_STAT_IN_COMBAT | UNIT_STAT_IN_FLIGHT)
};
enum UnitMoveType