v0.7.0: corrected errors in the pricing of blobs of goo and metal shards

This commit is contained in:
Evan Debenham 2018-09-17 14:05:29 -04:00
parent aa21833ebd
commit c1a350af1f
2 changed files with 2 additions and 2 deletions

View File

@ -43,6 +43,6 @@ public class GooBlob extends Item {
@Override
public int price() {
return 40;
return quantity * 50;
}
}

View File

@ -43,6 +43,6 @@ public class MetalShard extends Item {
@Override
public int price() {
return 80;
return quantity * 100;
}
}