From 6040241343154ee4b8261aacbcf70767b77e5575 Mon Sep 17 00:00:00 2001 From: Arisu Date: Tue, 29 Dec 2020 10:56:26 -0600 Subject: [PATCH] Added cheese and tomato to consumables (#455) --- .../main/java/com/rebotted/game/content/consumables/Food.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/2006Redone Server/src/main/java/com/rebotted/game/content/consumables/Food.java b/2006Redone Server/src/main/java/com/rebotted/game/content/consumables/Food.java index 2a615e69..b6bdf905 100644 --- a/2006Redone Server/src/main/java/com/rebotted/game/content/consumables/Food.java +++ b/2006Redone Server/src/main/java/com/rebotted/game/content/consumables/Food.java @@ -91,7 +91,9 @@ public class Food { FILED_RATION(7934, 9, "Field Ration", 0, "Food", false), STEW(2003, 11, "Stew", 1923, "Food", false), CURRY(2011, 19, "Curry", 1923, "Drink", false), - BANDAGES(4049, 3, "Bandages", 0, "Food", false); + BANDAGES(4049, 3, "Bandages", 0, "Food", false), + TOMATO(1982, 2, "Tomato", 0, "Food", false), + CHEESE(1985, 2, "Cheese", 0, "Food", false); private int id; private int heal;