mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
Merge pull request #6173 from tool4ever/fix18
Fix RE choice for different sources
This commit is contained in:
@@ -1859,7 +1859,7 @@ public class PlayerControllerHuman extends PlayerController implements IGameCont
|
|||||||
if (possibleReplacers.size() == 1) {
|
if (possibleReplacers.size() == 1) {
|
||||||
return first;
|
return first;
|
||||||
}
|
}
|
||||||
final List<String> res = possibleReplacers.stream().map(ReplacementEffect::getDescription).collect(Collectors.toList());
|
final List<String> res = possibleReplacers.stream().map(ReplacementEffect::toString).collect(Collectors.toList());
|
||||||
final String firstStr = res.get(0);
|
final String firstStr = res.get(0);
|
||||||
final String prompt = localizer.getMessage("lblChooseFirstApplyReplacementEffect");
|
final String prompt = localizer.getMessage("lblChooseFirstApplyReplacementEffect");
|
||||||
for (int i = 1; i < res.size(); i++) {
|
for (int i = 1; i < res.size(); i++) {
|
||||||
|
|||||||
Reference in New Issue
Block a user