mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 04:08:01 +00:00
Implement Dungeon mechanism and related spoiled cards
This commit is contained in:
@@ -171,6 +171,7 @@ public enum SpellApiToAi {
|
||||
.put(ApiType.UnattachAll, UnattachAllAi.class)
|
||||
.put(ApiType.Untap, UntapAi.class)
|
||||
.put(ApiType.UntapAll, UntapAllAi.class)
|
||||
.put(ApiType.Venture, AlwaysPlayAi.class)
|
||||
.put(ApiType.Vote, VoteAi.class)
|
||||
.put(ApiType.WinsGame, GameWinAi.class)
|
||||
|
||||
@@ -191,6 +192,6 @@ public enum SpellApiToAi {
|
||||
result = ReflectionUtil.makeDefaultInstanceOf(clz);
|
||||
apiToInstance.put(api, result);
|
||||
}
|
||||
return result;
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user