diff --git a/src/main/java/com/comandante/creeper/Items/ItemUseHandler.java b/src/main/java/com/comandante/creeper/Items/ItemUseHandler.java index 65d0f3cf7a545834dfa2127b6ba40657e9437df0..e0793446b562a68eea344f57e322e7d9ba888a2b 100644 --- a/src/main/java/com/comandante/creeper/Items/ItemUseHandler.java +++ b/src/main/java/com/comandante/creeper/Items/ItemUseHandler.java @@ -23,15 +23,15 @@ public class ItemUseHandler { private void processKey() { //If no doors - writeToPlayer("There's no doors here to use this [key] on."); + writeToPlayer("There's no doors here to use this key on."); } private void processBeer() { - writeToPlayer("Y"); + writeToPlayer("You open the beer and take a sip, Ahh, refreshing."); } private void processBook() { - writeToPlayer("You crack open the [book] and immediately realize that you aren't familiar with it's written language."); + writeToPlayer("You crack open the book and immediately realize that you aren't familiar with it's written language."); } public void handle() {