diff --git a/src/main/java/org/drtshock/Potato.java b/src/main/java/org/drtshock/Potato.java index fa0f7c7f..ebee992d 100644 --- a/src/main/java/org/drtshock/Potato.java +++ b/src/main/java/org/drtshock/Potato.java @@ -39,8 +39,8 @@ public List getCondiments() { * @throws NotDeliciousException If the potato is not delicious */ public void prepare() throws NotDeliciousException { - this.addCondiments("sour cream", "chives", "butter", "crumbled bacon", "grated cheese", "ketchup", "pepper", - "salt", "tabasco", "tomatoes", "onion"); + this.addCondiments("sour cream", "chives", "butter", "yogurt", "crumbled bacon", "grated cheese", "ketchup", "pepper", + "salt", "tabasco", "tomatoes", "onion", "chicken", "beef", "mushrooms"); this.listCondiments(); if (!this.isDelicious()) throw new NotDeliciousException(NotDeliciousReason.UNDERCOOKED); }