removed hack to return SKIP instead of PASS if PASS is the only option

master
melvin 2011-10-02 11:29:48 +08:00
parent e694172fa7
commit f46b3bf3fd
1 changed files with 0 additions and 5 deletions

View File

@ -58,11 +58,6 @@ public class MagicPlayChoice extends MagicChoice {
// add rest of the options
addValidChoices(game, player, true, options);
// if single choice, skip instead of pass
if (options.size() == 1) {
options.set(0, MagicPlayChoiceResult.SKIP);
}
return options;
}