diff options
author | KirieZ <guilherme.menaldo@outlook.com> | 2017-02-20 10:36:53 -0300 |
---|---|---|
committer | KirieZ <guilherme.menaldo@outlook.com> | 2017-02-20 12:54:42 -0300 |
commit | c91c7639300ec19725c718dadda18e1c76622bf0 (patch) | |
tree | 88da5c5e3f7ae151cac5c1b2f6ce95ccc1e29dc8 | |
parent | fb4df10d2108dd2d8e4cd63fff5a64451d16dfcd (diff) | |
download | hercules-c91c7639300ec19725c718dadda18e1c76622bf0.tar.gz hercules-c91c7639300ec19725c718dadda18e1c76622bf0.tar.bz2 hercules-c91c7639300ec19725c718dadda18e1c76622bf0.tar.xz hercules-c91c7639300ec19725c718dadda18e1c76622bf0.zip |
Fixes getbattleflag on npc/other/auction.txt ( Fixes #1580 )
-rw-r--r-- | npc/other/auction.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/other/auction.txt b/npc/other/auction.txt index 21b2972a8..76e1a6042 100644 --- a/npc/other/auction.txt +++ b/npc/other/auction.txt @@ -113,7 +113,7 @@ auction_02,43,17,0 warp auction_enterance_lhz 1,1,lighthalzen,209,169 next; if (select("Yes", "No") == 1) { mes "[Auction Broker]"; - if ( getbattleflag( "feature.auction" ) ) { + if (getbattleflag("features/auction")) { mes "Very well."; mes "Please take"; mes "a look, and see"; |