From f7494f0ed07747f961e22dc7be80a6caebf7ba2d Mon Sep 17 00:00:00 2001 From: IllianiCBT Date: Tue, 13 May 2025 12:50:10 -0500 Subject: [PATCH 1/2] Fix: Added Missing Commander Address from Convoy Roleplay Events --- .../campaign/mission/resupplyAndCaches/PerformResupply.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MekHQ/src/mekhq/campaign/mission/resupplyAndCaches/PerformResupply.java b/MekHQ/src/mekhq/campaign/mission/resupplyAndCaches/PerformResupply.java index 56e6e58518c..4a4ceac8dc0 100644 --- a/MekHQ/src/mekhq/campaign/mission/resupplyAndCaches/PerformResupply.java +++ b/MekHQ/src/mekhq/campaign/mission/resupplyAndCaches/PerformResupply.java @@ -442,7 +442,8 @@ private static void generateInterceptionOrConvoyEvent(Resupply resupply, @Nullab String eventText; if (Compute.d6() <= 2) { eventText = getFormattedTextAt(RESOURCE_BUNDLE, - STATUS_FORWARD + Compute.randomInt(100) + STATUS_AFTERWARD); + STATUS_FORWARD + Compute.randomInt(100) + STATUS_AFTERWARD, + commanderAddress); } else { int roll = Compute.randomInt(2); From 3dd8ad71721cfb512d893d5d89af852c5ae2fdde Mon Sep 17 00:00:00 2001 From: IllianiCBT Date: Tue, 13 May 2025 12:51:29 -0500 Subject: [PATCH 2/2] Fix: Added Missing Commander Address from Convoy Roleplay Events --- .../campaign/mission/resupplyAndCaches/PerformResupply.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/MekHQ/src/mekhq/campaign/mission/resupplyAndCaches/PerformResupply.java b/MekHQ/src/mekhq/campaign/mission/resupplyAndCaches/PerformResupply.java index 4a4ceac8dc0..bf4be4beb21 100644 --- a/MekHQ/src/mekhq/campaign/mission/resupplyAndCaches/PerformResupply.java +++ b/MekHQ/src/mekhq/campaign/mission/resupplyAndCaches/PerformResupply.java @@ -24,6 +24,11 @@ * * Catalyst Game Labs and the Catalyst Game Labs logo are trademarks of * InMediaRes Productions, LLC. + * + * MechWarrior Copyright Microsoft Corporation. MekHQ was created under + * Microsoft's "Game Content Usage Rules" + * and it is not endorsed by or + * affiliated with Microsoft. */ package mekhq.campaign.mission.resupplyAndCaches;