Fixed capitals

This commit is contained in:
elacey
2019-05-31 17:05:37 -04:00
parent b1f410da49
commit 1c15107db4
3 changed files with 11 additions and 10 deletions

View File

@@ -1,8 +0,0 @@
package com.bayviewglen.zork.Items;
public class WarmBread extends Item{
public WarmBread(){
super(25, "Warm Bread", "A fresh loaf of bread sits just outside of the oven still warm to the touch", true, 30, 10);
}
}

View File

@@ -0,0 +1,9 @@
package com.bayviewglen.zork.Items;
public class Warmbread extends Item{
public Warmbread() {
super(25, "Warm Bread", "A freshly baked loaf of bread sits ominously on the counter", true, 20, 10);
}
}

View File

@@ -1,7 +1,7 @@
package com.bayviewglen.zork.Items; package com.bayviewglen.zork.Items;
public class WaterBottle extends Item{ public class Waterbottle extends Item{
public WaterBottle() { public Waterbottle() {
super(10, "Water Bottle", "A plastic water bottle half filled with filthy water", true, 10, 1); super(10, "Water Bottle", "A plastic water bottle half filled with filthy water", true, 10, 1);
} }