Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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..."
};

Expand Down