mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 03:08:02 +00:00
Fixed Brave the Elements. You can no longer choose to gain "protection from null". :)
This commit is contained in:
@@ -3951,8 +3951,11 @@ public class CardFactory implements NewConstants {
|
|||||||
String color = "";
|
String color = "";
|
||||||
if (card.getController().equals(Constant.Player.Human)) {
|
if (card.getController().equals(Constant.Player.Human)) {
|
||||||
|
|
||||||
String[] colors = Constant.Color.Colors;
|
// String[] colors = Constant.Color.Colors;
|
||||||
colors[colors.length-1] = null;
|
// colors[colors.length-1] = null;
|
||||||
|
|
||||||
|
// You can no longer choose to gain "protection from null".
|
||||||
|
String[] colors = Constant.Color.onlyColors;
|
||||||
|
|
||||||
Object o = AllZone.Display.getChoice("Choose color", colors);
|
Object o = AllZone.Display.getChoice("Choose color", colors);
|
||||||
color = (String)o;
|
color = (String)o;
|
||||||
|
|||||||
Reference in New Issue
Block a user