- "Get On and Get Away" is playable now in the Fellowship phase.

This commit is contained in:
marcins78@gmail.com
2011-11-16 13:16:09 +00:00
parent 1076732e12
commit f97ad2ef07

View File

@@ -24,8 +24,6 @@ public abstract class AbstractOldEvent extends AbstractLotroCardBlueprint {
}
private static final Phase[] mergeArray(Phase playableInPhase, Phase... additionalPlayableInPhases) {
if (playableInPhase == null)
return new Phase[0];
Phase[] result = new Phase[additionalPlayableInPhases.length + 1];
result[0] = playableInPhase;
System.arraycopy(additionalPlayableInPhases, 0, result, 1, additionalPlayableInPhases.length);