Refactored line order

This commit is contained in:
Collin Smith 2020-01-18 19:15:41 -08:00
parent 2d4b2a72a9
commit caef08f56a

View File

@ -125,9 +125,9 @@ public class ItemData {
public void setAlternate(int alternate) {
if (this.alternate != alternate) {
this.alternate = alternate;
updateStats();
Item LH = getEquipped(BodyLoc.LARM);
Item RH = getEquipped(BodyLoc.RARM);
updateStats();
notifyAlternated(alternate, LH, RH);
}
}