From 89e7ad4144ab7a5fa9b5b0c1bf51899e69862142 Mon Sep 17 00:00:00 2001 From: zumorica Date: Wed, 29 Apr 2020 14:27:06 +0200 Subject: [PATCH] Correct comment --- .../GameObjects/EntitySystems/Click/InteractionSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/GameObjects/EntitySystems/Click/InteractionSystem.cs b/Content.Server/GameObjects/EntitySystems/Click/InteractionSystem.cs index 85f81ec427..ee5dee19b7 100644 --- a/Content.Server/GameObjects/EntitySystems/Click/InteractionSystem.cs +++ b/Content.Server/GameObjects/EntitySystems/Click/InteractionSystem.cs @@ -54,7 +54,7 @@ namespace Content.Server.GameObjects.EntitySystems public interface IToolAct { /// - /// Called when using a wrench on an entity + /// Called when using a tool on an entity /// bool ToolAct(ToolActEventArgs eventArgs) => false; }