diff options
-rw-r--r-- | npc/024-11/politics.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/024-11/politics.txt b/npc/024-11/politics.txt index ce83a920a..efb7fcb80 100644 --- a/npc/024-11/politics.txt +++ b/npc/024-11/politics.txt @@ -12,7 +12,10 @@ do { mesc ".:: "+l("Frostia Townhall")+" ::.", 2; mesc l("Current Town Administrator: ")+$FROSTIA_MAYOR$, 3; - mesc l("Only elves may run to Town Admin Office in Frostia!"), 1; + if (Class != Elven) + mesc l("Only elves may run to Town Admin Office in Frostia!"), 1; + else + mesc l("Hey, you're an elf, cool! But you still cannot run for office here!"), 1; close; POL_TownInfo("FROSTIA"); mesc l("Application fee: @@ GP", .applytax); |