From 19789d2be5ff37c14d7fdd2a7016280380e9f00f Mon Sep 17 00:00:00 2001 From: CommodoreChet <50426713+CommodoreChet@users.noreply.github.com> Date: Thu, 6 Feb 2025 21:00:02 -0600 Subject: [PATCH] shrink Indicator --- .../Scripts/SUGMA/GameModes/KingOfTheHill/KOTHGamemode.cs | 2 +- .../Data/Scripts/SUGMA/GameModes/KingOfTheHill/KOTHHud.cs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Gamemode Mods/StarCore SUGMA Gamemodes/Data/Scripts/SUGMA/GameModes/KingOfTheHill/KOTHGamemode.cs b/Gamemode Mods/StarCore SUGMA Gamemodes/Data/Scripts/SUGMA/GameModes/KingOfTheHill/KOTHGamemode.cs index 5d1fda10a..48e8ff78d 100644 --- a/Gamemode Mods/StarCore SUGMA Gamemodes/Data/Scripts/SUGMA/GameModes/KingOfTheHill/KOTHGamemode.cs +++ b/Gamemode Mods/StarCore SUGMA Gamemodes/Data/Scripts/SUGMA/GameModes/KingOfTheHill/KOTHGamemode.cs @@ -24,7 +24,7 @@ internal partial class KOTHGamemode : EliminationGamemode public override string ReadableName { get; internal set; } = "King Of The Hill"; public override string Description { get; internal set; } = - "Factions fight over a Central Capture Point. Either spend 2 minutes uncontested in the center zone, or eliminate the enemy team to win."; + "Fight to Control the Capture Point. Either hold it uncontested, or eliminate the enemy team to win."; public KOTHGamemode() { diff --git a/Gamemode Mods/StarCore SUGMA Gamemodes/Data/Scripts/SUGMA/GameModes/KingOfTheHill/KOTHHud.cs b/Gamemode Mods/StarCore SUGMA Gamemodes/Data/Scripts/SUGMA/GameModes/KingOfTheHill/KOTHHud.cs index 3dd313484..0a8c4756c 100644 --- a/Gamemode Mods/StarCore SUGMA Gamemodes/Data/Scripts/SUGMA/GameModes/KingOfTheHill/KOTHHud.cs +++ b/Gamemode Mods/StarCore SUGMA Gamemodes/Data/Scripts/SUGMA/GameModes/KingOfTheHill/KOTHHud.cs @@ -72,15 +72,15 @@ public KOTHHud_Window(HudParentBase parent, KOTHGamemode gamemode) : base(parent { Material = _circleMaterial, ParentAlignment = ParentAlignments.Bottom | ParentAlignments.Center, - Size = Vector2.One * 64, - Offset = new Vector2(0, -15), + Size = Vector2.One * 32, + Offset = new Vector2(0, -10), ZOffset = sbyte.MaxValue }; _captureLabel = new Label(_captureIndicator) { ParentAlignment = ParentAlignments.Center, - Offset = new Vector2(0, -55), + Offset = new Vector2(0, -35), Text = "Initializing KOTH..." };