The Ring Emblem - fixed not working 3rd effect with blocker sacrifice (closes #11425), added docs and usage example for BLOCKER_DECLARED and CREATURE_BLOCKED game events

This commit is contained in:
Oleg Agafonov 2023-11-19 19:16:55 +04:00
parent 571711e67d
commit 27c9543f62
5 changed files with 33 additions and 10 deletions

View file

@ -3963,6 +3963,7 @@ public abstract class GameImpl implements Game {
public String toString() {
Player activePayer = this.getPlayer(this.getActivePlayerId());
StringBuilder sb = new StringBuilder()
.append(this.isSimulation() ? "!!!SIMULATION!!! " : "")
.append(this.getGameType().toString())
.append("; ").append(CardUtil.getTurnInfo(this))
.append("; active: ").append((activePayer == null ? "none" : activePayer.getName()))