Skip to content

Commit

Permalink
Fix AttackTable Editing
Browse files Browse the repository at this point in the history
  • Loading branch information
extremeCrazyCoder committed Dec 6, 2020
1 parent b131fb2 commit 5f323de
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -251,11 +251,11 @@ public void setValueAt(Object pValue, int pRow, int pCol) {
} else {
a.setArriveTime((Date) pValue);
}
} else if(pCol == unitAfter + 3) {
a.setShowOnMap((Boolean) pValue);
} else if(pCol == unitAfter + 4) {
a.setTransferredToBrowser((Boolean) pValue);
a.setShowOnMap((Boolean) pValue);
} else if(pCol == unitAfter + 5) {
a.setTransferredToBrowser((Boolean) pValue);
} else if(pCol == unitAfter + 6) {
a.setMultiplier((Short) pValue);
}
} catch (Exception ignored) {
Expand Down

0 comments on commit 5f323de

Please sign in to comment.