diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-06-03 15:27:59 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-06-03 15:27:59 -0300 |
commit | 452f6d69f55bfa9d3b1dcfb503e7fe125d744a5c (patch) | |
tree | 2e82e3d901a4f4da88ffd5cbe64b873305cc3be8 | |
parent | 8b7bec52ffe5766426b8e4635d765ca85d1f6a83 (diff) | |
download | serverdata-452f6d69f55bfa9d3b1dcfb503e7fe125d744a5c.tar.gz serverdata-452f6d69f55bfa9d3b1dcfb503e7fe125d744a5c.tar.bz2 serverdata-452f6d69f55bfa9d3b1dcfb503e7fe125d744a5c.tar.xz serverdata-452f6d69f55bfa9d3b1dcfb503e7fe125d744a5c.zip |
Fix bugs involving NPC_HIDDEN
-rw-r--r-- | npc/015-8-1/campaign.txt | 2 | ||||
-rw-r--r-- | npc/015-8-1/puzzle.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/npc/015-8-1/campaign.txt b/npc/015-8-1/campaign.txt index 24a6ffaa8..152da954f 100644 --- a/npc/015-8-1/campaign.txt +++ b/npc/015-8-1/campaign.txt @@ -4,7 +4,7 @@ // Description: // Sagratha Quest (field 3) -015-8-1,49,38,0 script #SaggyDungeonCore NPC_HIDDEN,{ +015-8-1,49,38,0 script #SaggyDungeonCore NPC_NO_SPRITE,{ // Not in instance, we don't care. if (instance_id() < 0) end; diff --git a/npc/015-8-1/puzzle.txt b/npc/015-8-1/puzzle.txt index 4824afee5..2cd158e10 100644 --- a/npc/015-8-1/puzzle.txt +++ b/npc/015-8-1/puzzle.txt @@ -19,7 +19,7 @@ OnTouch: end; } if (.@q == 5) { - npctalkonce l("You are NOT allowed to leave here!"); + dispbottom l("You are NOT allowed to leave here!"); } else { warp "015-8", 94, 21; } |