From 0708604dfe83f9dd422b8b5949828242123e0e94 Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Mon, 15 May 2023 20:19:39 -0400 Subject: [PATCH] Fix some misc anomaly locator bugs (#16488) --- Content.Server/Pinpointer/ProximityBeeperSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Pinpointer/ProximityBeeperSystem.cs b/Content.Server/Pinpointer/ProximityBeeperSystem.cs index 0751ab50bf..7e2c8b8e88 100644 --- a/Content.Server/Pinpointer/ProximityBeeperSystem.cs +++ b/Content.Server/Pinpointer/ProximityBeeperSystem.cs @@ -56,7 +56,7 @@ public sealed class ProximityBeeperSystem : EntitySystem if (!component.Enabled) { - component.NextBeepTime += component.MinBeepInterval; + component.NextBeepTime += component.MaxBeepInterval; return; } @@ -124,7 +124,7 @@ public sealed class ProximityBeeperSystem : EntitySystem component.Enabled = false; _appearance.SetData(uid, ProximityBeeperVisuals.Enabled, false); - _powerCell.SetPowerCellDrawEnabled(uid, true); + _powerCell.SetPowerCellDrawEnabled(uid, false); UpdateBeep(uid, component); return true; } -- 2.51.2