From ff45a7a980d8e0440b5d4869d80258f5afbb0f8d Mon Sep 17 00:00:00 2001 From: Christian 'ketura' McCarty Date: Mon, 23 Dec 2024 13:28:37 -0600 Subject: [PATCH] - The post-game popup should now open the feedback form in a new tab. --- .../src/main/java/com/gempukku/lotro/game/GameRecorder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/game/GameRecorder.java b/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/game/GameRecorder.java index c6b9370e2..3a4837981 100644 --- a/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/game/GameRecorder.java +++ b/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/game/GameRecorder.java @@ -105,7 +105,7 @@ public class GameRecorder { String winnerURL = "https://play.lotrtcgpc.net/gemp-lotr/game.html%3FreplayId%3D" + winnerName + "$" + playerRecordingId.get(winnerName); String loserURL = "https://play.lotrtcgpc.net/gemp-lotr/game.html%3FreplayId%3D" + loserName + "$" + playerRecordingId.get(loserName); url += winnerURL + "%20" + loserURL; - lotroGame.sendMessageToPlayers("Thank you for playing! If you have any feedback, bugs, or other issues to report about this match, please do so using this form.

If you use this link, it will fill in the replay for you automatically.
"); + lotroGame.sendMessageToPlayers("Thank you for playing! Please report any bugs or other feedback using this form.

The above link will fill in the replay for you automatically."); // } };