diff --git a/hwe/sammo/SpecialityHelper.php b/hwe/sammo/SpecialityHelper.php index a25d85b9..b8d1d231 100644 --- a/hwe/sammo/SpecialityHelper.php +++ b/hwe/sammo/SpecialityHelper.php @@ -9,10 +9,6 @@ class SpecialityHelper{ const STAT_STRENGTH = 0x4; const STAT_INTEL = 0x8; - const STAT_NOT_LEADERSHIP = 0x20; - const STAT_NOT_STRENGTH = 0x40; - const STAT_NOT_INTEL = 0x80; - const ARMY_FOOTMAN = 0x100; const ARMY_ARCHER = 0x200; const ARMY_CAVALRY = 0x400; @@ -21,6 +17,10 @@ class SpecialityHelper{ const REQ_DEXTERITY = 0x4000; + const STAT_NOT_LEADERSHIP = 0x20000; + const STAT_NOT_STRENGTH = 0x40000; + const STAT_NOT_INTEL = 0x80000; + const WEIGHT_NORM = 1; const WEIGHT_PERCENT = 2;