From ef68073328176a68eb90dbb76c07716e515a14b0 Mon Sep 17 00:00:00 2001 From: Ceikry Date: Sun, 14 Mar 2021 15:01:11 -0500 Subject: [PATCH] added cheeky dialogue for FertileSoilSpell --- .../game/node/entity/skill/magic/lunar/FertileSoilSpell.java | 1 + 1 file changed, 1 insertion(+) diff --git a/Server/src/main/java/core/game/node/entity/skill/magic/lunar/FertileSoilSpell.java b/Server/src/main/java/core/game/node/entity/skill/magic/lunar/FertileSoilSpell.java index 79b74a404..3fc78027b 100644 --- a/Server/src/main/java/core/game/node/entity/skill/magic/lunar/FertileSoilSpell.java +++ b/Server/src/main/java/core/game/node/entity/skill/magic/lunar/FertileSoilSpell.java @@ -54,6 +54,7 @@ public final class FertileSoilSpell extends MagicSpell { final GameObject object = (GameObject) target; final FarmingPatch fPatch = FarmingPatch.forObject(object); if(fPatch == null){ + player.sendMessage("Um... I don't want to fertilize that!"); return false; } final Patch patch = fPatch.getPatchFor(player);