- The post-game popup should now open the feedback form in a new tab.

This commit is contained in:
Christian 'ketura' McCarty
2024-12-23 13:28:37 -06:00
parent 69058c5d92
commit ff45a7a980

View File

@@ -105,7 +105,7 @@ public class GameRecorder {
String winnerURL = "https://play.lotrtcgpc.net/gemp-lotr/game.html%3FreplayId%3D" + winnerName + "$" + playerRecordingId.get(winnerName); 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); String loserURL = "https://play.lotrtcgpc.net/gemp-lotr/game.html%3FreplayId%3D" + loserName + "$" + playerRecordingId.get(loserName);
url += winnerURL + "%20" + loserURL; url += winnerURL + "%20" + loserURL;
lotroGame.sendMessageToPlayers("Thank you for playing! If you have any feedback, bugs, or other issues to report about this match, <a href= '" + url + "'>please do so using this form.<br><br>If you use this link, it will fill in the replay for you automatically.</a>"); lotroGame.sendMessageToPlayers("Thank you for playing! Please report any bugs or other feedback <a href= '" + url + "' target='_blank'>using this form.</a><br><br>The above link will fill in the replay for you automatically.</a>");
// } // }
}; };