diff options
-rw-r--r-- | npc/025-1/ctrl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/npc/025-1/ctrl.c b/npc/025-1/ctrl.c index c816432c4..cb02ccdd2 100644 --- a/npc/025-1/ctrl.c +++ b/npc/025-1/ctrl.c @@ -99,7 +99,8 @@ function script FTStatue { // Break the statues? mesc l("Break the Statue?"), 1; - mesc l("* Will be stun you for 10 seconds!"); + if (!islegendary()) + mesc l("* May stun you for 10 seconds!"); next; if (askyesno() == ASK_YES) { if ($@FORTRESS_STATUE & .@id) @@ -177,6 +178,7 @@ function script FTStatue { mesc l("* You cannot teleport in the town."); mesc l("* This is a Cursed Lands map, watch out for MP during the fights as well"); mesc l("* The siege is lost if all players die."); + mesc l("* Only one attempt can be made per day."); close; } |