From fd9505f1cdde6418a74bbf5a9fc19083522c6b5a Mon Sep 17 00:00:00 2001 From: elacey Date: Fri, 10 May 2019 14:03:34 -0400 Subject: [PATCH] Fixed item id --- src/com/bayviewglen/zork/Items/Point.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/bayviewglen/zork/Items/Point.java b/src/com/bayviewglen/zork/Items/Point.java index 746e3f9..7e87b26 100644 --- a/src/com/bayviewglen/zork/Items/Point.java +++ b/src/com/bayviewglen/zork/Items/Point.java @@ -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); } }