diff --git a/Source/Game/Entities/Player/Player.cs b/Source/Game/Entities/Player/Player.cs index ed79a27f1..fb26ce875 100644 --- a/Source/Game/Entities/Player/Player.cs +++ b/Source/Game/Entities/Player/Player.cs @@ -5413,6 +5413,10 @@ namespace Game.Entities if (go == null) return null; + // Players cannot interact with gameobjects that use the "Point" icon + if (go.GetGoInfo().IconName == "Point") + return null; + if (!go.IsWithinDistInMap(this)) return null;