From 3ef90e681fa279611a8a2ce7a4dd1c5dd5518d97 Mon Sep 17 00:00:00 2001 From: Tooze Date: Sun, 12 Apr 2026 16:15:34 -0400 Subject: [PATCH] correct Pray not allowed message. --- .../core/game/node/entity/player/link/prayer/PrayerType.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Server/src/main/core/game/node/entity/player/link/prayer/PrayerType.java b/Server/src/main/core/game/node/entity/player/link/prayer/PrayerType.java index eccf123c8..15e2fd687 100644 --- a/Server/src/main/core/game/node/entity/player/link/prayer/PrayerType.java +++ b/Server/src/main/core/game/node/entity/player/link/prayer/PrayerType.java @@ -224,8 +224,7 @@ public enum PrayerType { BarbassaultSession session = player.getAttribute("ba-session"); if (session != null) { if (session.isInBarbAssaultGame()) { - //todo find correct message here - sendMessage(player, "The barbarians do not allow the use of prayer in the arena."); + sendMessage(player, "The barbarians forbid the use of prayer in their arena as they don't ~ value such methods!"); toggle(player,false); return false; }