diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-11-03 21:52:17 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-11-03 21:52:17 +0000 |
commit | 686a1e31a3a10093ff7898e3df9961ad913a1a1d (patch) | |
tree | fe8f168bf3e4c7194637ad70801fe45d3554abb5 | |
parent | cf9b4b50d677a0846c6213acb6bd58fc6ff0d0bb (diff) | |
download | hercules-686a1e31a3a10093ff7898e3df9961ad913a1a1d.tar.gz hercules-686a1e31a3a10093ff7898e3df9961ad913a1a1d.tar.bz2 hercules-686a1e31a3a10093ff7898e3df9961ad913a1a1d.tar.xz hercules-686a1e31a3a10093ff7898e3df9961ad913a1a1d.zip |
Corrected an typo in the guild flag function.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11649 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | npc/Changelog.txt | 2 | ||||
-rw-r--r-- | npc/guild/gldfunc_flag.txt | 7 |
2 files changed, 6 insertions, 3 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index f53f4dc72..01c0d9121 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -1,5 +1,7 @@ Date Added ====== +2007/11/03 + * Rev. 11649 Corrected an typo in the guild flag function. [L0ne_W0lf] 2007/11/02 * Rev. 11646 Fixed some NPC headers in the custom scripts. [L0ne_W0lf] * Rev. 11645 Some NPC and CONF file clean up. More duplicate removal. [L0ne_W0lf] diff --git a/npc/guild/gldfunc_flag.txt b/npc/guild/gldfunc_flag.txt index 1f2c81ea2..c5c98932e 100644 --- a/npc/guild/gldfunc_flag.txt +++ b/npc/guild/gldfunc_flag.txt @@ -25,6 +25,7 @@ //= v1.4: By default town flags are set to no longer show text. [L0ne_W0lf] //= v1.5: Updated remaining dialog to iRO standards. [L0ne_W0lf] //= v1.6 Restructred script, and removed use of gotos. [L0ne_W0lf] +//= 6.17 Whoops. fices a @GID -> .@GID. [L0ne_W0lf] //============================================================ function script F_Flags { @@ -60,10 +61,10 @@ function script F_Flags { mes "1. Following the ordinance of the"; mes "Divine Rune Midgard Kingdom,"; mes "we approve that this place is in"; - mes "the private possession of ^ff0000" + GetGuildName(@GID) + "^000000 Guild."; + mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild."; mes " "; - mes "2. The guild Master of ^ff0000"+ GetGuildName(@GID) + "^000000 Guild is"; - mes "^FF0000" + GetGuildMaster(@GID) + "^000000"; + mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is"; + mes "^FF0000" + GetGuildMaster(.@GID) + "^000000"; mes "If there is anyone who objects to this,"; mes " prove your strength and honor with a steel blade in your hand."; return; |