Fix build

This commit is contained in:
hondacrx
2022-05-25 13:30:11 -04:00
parent 6297e81009
commit 681b62e2d0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -2558,7 +2558,7 @@ namespace Game.Entities
return false; return false;
} }
bool CanEnterWater() public override bool CanEnterWater()
{ {
if (CanSwim()) if (CanSwim())
return true; return true;
@@ -364,7 +364,7 @@ namespace Game.Entities
Rooted = false; Rooted = false;
Chase = CreatureChaseMovementType.Run; Chase = CreatureChaseMovementType.Run;
Random = CreatureRandomMovementType.Walk; Random = CreatureRandomMovementType.Walk;
InteractionPauseTimer = WorldConfig.GetIntValue(WorldCfg.CreatureStopForPlayer); InteractionPauseTimer = WorldConfig.GetUIntValue(WorldCfg.CreatureStopForPlayer);
} }
public bool IsGroundAllowed() { return Ground != CreatureGroundMovementType.None; } public bool IsGroundAllowed() { return Ground != CreatureGroundMovementType.None; }