From cceb7bd0fc4690a89a4d527120313f056c35ef55 Mon Sep 17 00:00:00 2001 From: VariableVince <24507472+VariableVince@users.noreply.github.com> Date: Mon, 9 Feb 2026 22:00:51 +0100 Subject: [PATCH 01/22] Fix: can't boat into AFK ally from radial menu (#3165) ## Description: Fixes issue where you can't boat into an AFK/disconnected ally from the radial menu: https://www.youtube.com/clip/UgkxRXy2Y9BrmCiQRSFJnhVFanR5NRsG9pzu ## Please complete the following: - [x] I have added screenshots for all UI updates - [x] I process any text displayed to the user through translateText() and I've added it to the en.json file - [x] I have added relevant tests to the test directory - [x] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced ## Please put your Discord username so you can be contacted if a bug or regression is found: tryout33 --- src/client/graphics/layers/RadialMenuElements.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/client/graphics/layers/RadialMenuElements.ts b/src/client/graphics/layers/RadialMenuElements.ts index aeafdf8a1..4ced271d0 100644 --- a/src/client/graphics/layers/RadialMenuElements.ts +++ b/src/client/graphics/layers/RadialMenuElements.ts @@ -618,6 +618,7 @@ export const rootMenuElement: MenuElement = { color: COLORS.info, subMenu: (params: MenuElementParams) => { const isAllied = params.selected?.isAlliedWith(params.myPlayer); + const isDisconnected = isDisconnectedTarget(params); const tileOwner = params.game.owner(params.tile); const isOwnTerritory = @@ -629,9 +630,9 @@ export const rootMenuElement: MenuElement = { ...(isOwnTerritory ? [deleteUnitElement, allyRequestElement, buildMenuElement] : [ - isAllied ? allyBreakElement : boatMenuElement, + isAllied && !isDisconnected ? allyBreakElement : boatMenuElement, allyRequestElement, - isFriendlyTarget(params) && !isDisconnectedTarget(params) + isFriendlyTarget(params) && !isDisconnected ? donateGoldRadialElement : attackMenuElement, ]), From ebdd1a5664625dd3a5cd475b0214ca9859cae052 Mon Sep 17 00:00:00 2001 From: Ryan <7389646+ryanbarlow97@users.noreply.github.com> Date: Tue, 10 Feb 2026 00:09:48 +0000 Subject: [PATCH 02/22] sam missile immunity (#3167) ## Description: added sam missile immunity (was missing from the immunity list) ## Please complete the following: - [x] I have added screenshots for all UI updates - [x] I process any text displayed to the user through translateText() and I've added it to the en.json file - [x] I have added relevant tests to the test directory - [x] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced ## Please put your Discord username so you can be contacted if a bug or regression is found: w.o.n --- src/core/execution/NukeExecution.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/execution/NukeExecution.ts b/src/core/execution/NukeExecution.ts index 277057c5f..638843826 100644 --- a/src/core/execution/NukeExecution.ts +++ b/src/core/execution/NukeExecution.ts @@ -324,7 +324,8 @@ export class NukeExecution implements Execution { unit.type() !== UnitType.AtomBomb && unit.type() !== UnitType.HydrogenBomb && unit.type() !== UnitType.MIRVWarhead && - unit.type() !== UnitType.MIRV + unit.type() !== UnitType.MIRV && + unit.type() !== UnitType.SAMMissile ) { if (this.mg.euclideanDistSquared(this.dst, unit.tile()) < outer2) { unit.delete(true, this.player); From d80b2d2bb9d006d35317f22d35f946f5404c1551 Mon Sep 17 00:00:00 2001 From: FloPinguin <25036848+FloPinguin@users.noreply.github.com> Date: Tue, 10 Feb 2026 06:08:51 +0100 Subject: [PATCH 03/22] Help youtube video loads without even having the help modal open (#3169) ## Description: Title ## Please complete the following: - [X] I have added screenshots for all UI updates - [X] I process any text displayed to the user through translateText() and I've added it to the en.json file - [X] I have added relevant tests to the test directory - [X] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced ## Please put your Discord username so you can be contacted if a bug or regression is found: FloPinguin --- src/client/HelpModal.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/HelpModal.ts b/src/client/HelpModal.ts index 6b4daacc6..07d1332ec 100644 --- a/src/client/HelpModal.ts +++ b/src/client/HelpModal.ts @@ -153,7 +153,7 @@ export class HelpModal extends BaseModal {