10000 Fix: Added Missing Commander Address from Convoy Roleplay Events by IllianiBird · Pull Request #6974 · MegaMek/mekhq · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix: Added Missing Commander Address from Convoy Roleplay Events #6974

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 14, 2025
Merged
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,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"
* <https://www.xbox.com/en-US/developers/rules> and it is not endorsed by or
* affiliated with Microsoft.
*/
package mekhq.campaign.mission.resupplyAndCaches;

Expand Down Expand Up @@ -442,7 +447,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);

Expand Down
Loading
0