v0.7.0: corrected errors in the pricing of blobs of goo and metal shards
This commit is contained in:
parent
aa21833ebd
commit
c1a350af1f
|
@ -43,6 +43,6 @@ public class GooBlob extends Item {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int price() {
|
public int price() {
|
||||||
return 40;
|
return quantity * 50;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,6 +43,6 @@ public class MetalShard extends Item {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int price() {
|
public int price() {
|
||||||
return 80;
|
return quantity * 100;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user