Fixed item id

This commit is contained in:
elacey
2019-05-10 14:03:34 -04:00
parent f922313470
commit fd9505f1cd

View File

@@ -2,7 +2,7 @@ package com.bayviewglen.zork.Items;
public class Point extends Item{
public Point() {
super(6, "Point", "A part of the battering ram that is attatched to the cylinder and smashes the door", false, 100, 1);
super(7, "Point", "A part of the battering ram that is attatched to the cylinder and smashes the door", false, 100, 1);
}
}