mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- Targeting Overlay: minor stylistic fix in the code.
This commit is contained in:
@@ -89,8 +89,8 @@ public enum TargetingOverlay {
|
||||
activePanel = null;
|
||||
for (CField f : CMatchUI.SINGLETON_INSTANCE.getFieldControls()) {
|
||||
cardPanels.addAll(f.getView().getTabletop().getCardPanels());
|
||||
List<CardPanel> cPanel = f.getView().getTabletop().getCardPanels();
|
||||
for (CardPanel c : cPanel) {
|
||||
List<CardPanel> cPanels = f.getView().getTabletop().getCardPanels();
|
||||
for (CardPanel c : cPanels) {
|
||||
if (c.isSelected()) {
|
||||
activePanel = c;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user