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

@@ -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);
}
}