From b8e6bab7601b585cf69917833c00e759af6a177c Mon Sep 17 00:00:00 2001 From: Jordan Irwin Date: Wed, 8 Nov 2023 18:44:13 -0800 Subject: [PATCH] Update seed description --- src/games/stendhal/server/entity/item/Seed.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/games/stendhal/server/entity/item/Seed.java b/src/games/stendhal/server/entity/item/Seed.java index afd1cd098b8..ce1061b51eb 100644 --- a/src/games/stendhal/server/entity/item/Seed.java +++ b/src/games/stendhal/server/entity/item/Seed.java @@ -109,9 +109,9 @@ public String describe() { if (flowerName != null) { return "You see a " + flowerName + " " + this.getName() - + ". It can be planted anywhere, but it will only thrive on fertile ground."; + + ". It can be planted in fertile ground where it will thrive."; } else { - return "You see a seed. It can be planted anywhere, but it will only thrive on fertile ground."; + return "You see a seed. It can be planted in fertile ground where it will thrive."; } }