From 731c6ad181a212856c16836e46f54f3cf64a4993 Mon Sep 17 00:00:00 2001 From: InvalidArgument3 Date: Mon, 2 Dec 2024 03:03:45 -0600 Subject: [PATCH] Update NanobotBuildAndRepairSystemBlock.cs --- .../NanobotBuildAndRepairSystemBlock.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DeltaVBaR/Data/Scripts/SKO-Nanobot-BuildAndRepair-System/NanobotBuildAndRepairSystemBlock.cs b/DeltaVBaR/Data/Scripts/SKO-Nanobot-BuildAndRepair-System/NanobotBuildAndRepairSystemBlock.cs index 90fd40f..4095054 100644 --- a/DeltaVBaR/Data/Scripts/SKO-Nanobot-BuildAndRepair-System/NanobotBuildAndRepairSystemBlock.cs +++ b/DeltaVBaR/Data/Scripts/SKO-Nanobot-BuildAndRepair-System/NanobotBuildAndRepairSystemBlock.cs @@ -468,7 +468,7 @@ private void UpdateBeforeSimulation10_100(bool fast) NotifyPlayersInRange( "Only one Build And Repair System can be powered per grid group", _Welder.GetPosition(), - 100, + 1000, "Red" ); return; @@ -563,7 +563,7 @@ private void NotifyPlayersInRange(string message, Vector3D position, double radi var character = entity as IMyCharacter; if (character != null && character.IsPlayer) { - MyAPIGateway.Utilities.ShowNotification(message, 2000, color); + MyAPIGateway.Utilities.CreateNotification(message, 2000, color); } } }