From f501e4755794fba2a044b6880c4ca0d8de95065b Mon Sep 17 00:00:00 2001 From: jendave Date: Sat, 6 Aug 2011 05:04:59 +0000 Subject: [PATCH] Fixed Brave the Elements. You can no longer choose to gain "protection from null". :) --- src/forge/CardFactory.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/forge/CardFactory.java b/src/forge/CardFactory.java index 64fb4e2f995..482d1e933d3 100644 --- a/src/forge/CardFactory.java +++ b/src/forge/CardFactory.java @@ -3951,8 +3951,11 @@ public class CardFactory implements NewConstants { String color = ""; if (card.getController().equals(Constant.Player.Human)) { - String[] colors = Constant.Color.Colors; - colors[colors.length-1] = null; + // String[] colors = Constant.Color.Colors; + // 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); color = (String)o;