diff --git a/Source/Game/Entities/Creature/Creature.cs b/Source/Game/Entities/Creature/Creature.cs index 0389b79c6..848c71718 100644 --- a/Source/Game/Entities/Creature/Creature.cs +++ b/Source/Game/Entities/Creature/Creature.cs @@ -2558,7 +2558,7 @@ namespace Game.Entities return false; } - bool CanEnterWater() + public override bool CanEnterWater() { if (CanSwim()) return true; diff --git a/Source/Game/Entities/Creature/CreatureData.cs b/Source/Game/Entities/Creature/CreatureData.cs index a19fdd52c..f12d0a4aa 100644 --- a/Source/Game/Entities/Creature/CreatureData.cs +++ b/Source/Game/Entities/Creature/CreatureData.cs @@ -364,7 +364,7 @@ namespace Game.Entities Rooted = false; Chase = CreatureChaseMovementType.Run; Random = CreatureRandomMovementType.Walk; - InteractionPauseTimer = WorldConfig.GetIntValue(WorldCfg.CreatureStopForPlayer); + InteractionPauseTimer = WorldConfig.GetUIntValue(WorldCfg.CreatureStopForPlayer); } public bool IsGroundAllowed() { return Ground != CreatureGroundMovementType.None; }