summaryrefslogtreecommitdiff
path: root/npc/other
diff options
context:
space:
mode:
authorshadowlady <shadowlady@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-11-13 06:18:00 +0000
committershadowlady <shadowlady@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-11-13 06:18:00 +0000
commit1cb8e3129119847a28648f8b99bd29473a0b65d2 (patch)
tree46e4a577802db5e14e5b9fb600195f5d491b6af8 /npc/other
parent2f31e73831a21d058d0f2227eed5fdeaef1cf15a (diff)
downloadhercules-1cb8e3129119847a28648f8b99bd29473a0b65d2.tar.gz
hercules-1cb8e3129119847a28648f8b99bd29473a0b65d2.tar.bz2
hercules-1cb8e3129119847a28648f8b99bd29473a0b65d2.tar.xz
hercules-1cb8e3129119847a28648f8b99bd29473a0b65d2.zip
Fixed a duped label.Sorry
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/athena@151 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/other')
-rw-r--r--npc/other/wedding.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/other/wedding.txt b/npc/other/wedding.txt
index 1d7cd5cd5..a2271350f 100644
--- a/npc/other/wedding.txt
+++ b/npc/other/wedding.txt
@@ -232,17 +232,17 @@ prt_church.gat,95,100,4 script Mary 71,{
L_GmMenu:
set @gmlevel,getgmlevel(50);
if(@gmlevel < 50) goto L_NotGM;
- mes "Hello "+strcharinfo(0)+" How i can serve you?";
+ mes "Hello " + strcharinfo(0) + " How i can serve you?";
menu "Enable Same-Sex Weddings",L_EnableSameSex,"Disable Same-Sex Weddings",L_DisableSameSex,"Reset the Variables",L_ResetVariables,"Just Checking...",L_Bye;
L_NotGM:
- mes "You cant have access to this special menu "+strcharinfo(0)+";
+ mes "You cant have access to this special menu " + strcharinfo(0) + "";
mes "Only GMs can change the ceremony options.";
close;
L_EnableSameSex:
set $samesex,1;
mes "Same-Sex Weddings are enabled now!";
close;
-L_EnableSameSex:
+L_DisableSameSex:
set $samesex,0;
mes "Same-Sex Weddings are disabled now!";
close;