Fixed Brave the Elements. You can no longer choose to gain "protection from null". :)

This commit is contained in:
jendave
2011-08-06 05:04:59 +00:00
parent cdbd599370
commit f501e47557

View File

@@ -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;