Skip to content

Commit

Permalink
Bug Fix: Reprocessed value and color box was wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
GoldenGnu committed Oct 6, 2024
1 parent b8ae3be commit 252a3ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public String getTypeName() {
}

public double getValue() {
return getSellPrice() * getPortionSize();
return getSellPrice() * count;
}

public boolean isSell() {
Expand Down

0 comments on commit 252a3ba

Please sign in to comment.