From e3b9c22ff73896de48a03afee15f398a9a41dbbf Mon Sep 17 00:00:00 2001 From: Jordan Irwin Date: Thu, 5 Oct 2023 10:22:48 -0700 Subject: [PATCH] Shorten achievement title to "Sowing Seeds" --- doc/CHANGES.txt | 2 +- .../rp/achievement/factory/ProductionAchievementFactory.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/CHANGES.txt b/doc/CHANGES.txt index 5007ab2f4a..13e9b64aa2 100644 --- a/doc/CHANGES.txt +++ b/doc/CHANGES.txt @@ -8,7 +8,7 @@ Changelog *world* - new achievements: - Fruit Salad: Harvest 3 of all fruit that grow in Faiumoni - - Sowing Seeds of Joy: Sow 1000 of each type of sowable flower seed + - Sowing Seeds: Sow 1000 of each type of sowable flower seed - Kirla sells copies for her memory pictures - quests now shown in travel log: - Adventure Island diff --git a/src/games/stendhal/server/core/rp/achievement/factory/ProductionAchievementFactory.java b/src/games/stendhal/server/core/rp/achievement/factory/ProductionAchievementFactory.java index 9216326ae9..4e122ed8ca 100644 --- a/src/games/stendhal/server/core/rp/achievement/factory/ProductionAchievementFactory.java +++ b/src/games/stendhal/server/core/rp/achievement/factory/ProductionAchievementFactory.java @@ -101,7 +101,7 @@ public class ProductionAchievementFactory extends AbstractAchievementFactory { new PlayerProducedNumberOfItemsCondition(1000, "flour"))); achievements.add(createAchievement( - "production.sow.flowers.all", "Sowing Seeds of Joy", + "production.sow.flowers.all", "Sowing Seeds", "Sow 1000 of each type of sowable flower seed", Achievement.MEDIUM_BASE_SCORE, true, new ChatCondition() {