Remove obsolete GameEvent (#6736)

This commit is contained in:
tool4ever
2025-01-01 18:24:47 +01:00
committed by GitHub
parent dfce81f67c
commit 1c0cb07a2e
10 changed files with 16 additions and 54 deletions

View File

@@ -207,10 +207,9 @@ public class FCardImageRenderer {
final String leftText = needTranslation ? CardTranslation.getTranslatedOracle(leftState) : leftState.getOracleText();
final CardStateView rightState = card.getRightSplitState();
String rightText = needTranslation ? CardTranslation.getTranslatedOracle(rightState) : rightState.getOracleText();
boolean isAftermath = (rightState.getKeywordKey().contains("Aftermath"));
BufferedImage leftArt = null;
BufferedImage rightArt = null;
if (isAftermath) {
if (rightState.hasAftermath()) {
if (art != null) {
int leftWidth = Math.round(art.getWidth() * 0.61328125f);
leftArt = art.getSubimage(0, 0, leftWidth, art.getHeight());