diff --git a/Source/Game/Movement/MotionMaster.cs b/Source/Game/Movement/MotionMaster.cs index a40d6d08f..b59bd7d0c 100644 --- a/Source/Game/Movement/MotionMaster.cs +++ b/Source/Game/Movement/MotionMaster.cs @@ -127,7 +127,7 @@ namespace Game.Movement public int Size() { - return _defaultGenerator != null ? 1 : 0 + _generators.Count; + return (_defaultGenerator != null ? 1 : 0) + _generators.Count; } public List GetMovementGeneratorsInformation()