mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
fix possible Indexing Exception in AI scrying
This commit is contained in:
@@ -207,7 +207,7 @@ public class AIPlayer extends Player{
|
|||||||
if(bottom) {
|
if(bottom) {
|
||||||
Card c = topN.get(i);
|
Card c = topN.get(i);
|
||||||
AllZone.GameAction.moveToBottomOfLibrary(c);
|
AllZone.GameAction.moveToBottomOfLibrary(c);
|
||||||
topN.remove(c);
|
//topN.remove(c);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
num = topN.size();
|
num = topN.size();
|
||||||
|
|||||||
Reference in New Issue
Block a user