mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
*Added Description parameters to replacement effects that lacked them. Also added Secondary parameter to those.
*When an replacement effect is applied, a log message is now posted.
This commit is contained in:
@@ -99,7 +99,13 @@ public class ReplacementHandler {
|
||||
}
|
||||
|
||||
if (chosenRE != null) {
|
||||
return executeReplacement(runParams, chosenRE, decider);
|
||||
if(executeReplacement(runParams, chosenRE, decider)) {
|
||||
AllZone.getGameLog().add("ReplacementEffect", chosenRE.toString(), 2);
|
||||
return true;
|
||||
}
|
||||
else {
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user