diff options
-rw-r--r-- | npc/009-1/teleporter.txt | 2 | ||||
-rw-r--r-- | npc/024-1/teleporter.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/npc/009-1/teleporter.txt b/npc/009-1/teleporter.txt index 2e1d61103..2cd54872d 100644 --- a/npc/009-1/teleporter.txt +++ b/npc/009-1/teleporter.txt @@ -11,7 +11,7 @@ end; OnTouch: - if (!TELEPORTERS & TP_HALIN) { + if (!(TELEPORTERS & TP_HALIN)) { TELEPORTERS=TELEPORTERS|TP_HALIN; mesn "Anise Inc."; mesc l("Location Registered. You are now capable to use this warp gate."); diff --git a/npc/024-1/teleporter.txt b/npc/024-1/teleporter.txt index cdced77aa..665bce49a 100644 --- a/npc/024-1/teleporter.txt +++ b/npc/024-1/teleporter.txt @@ -11,7 +11,7 @@ end; OnTouch: - if (!TELEPORTERS & TP_FROST) { + if (!(TELEPORTERS & TP_FROST)) { TELEPORTERS=TELEPORTERS|TP_FROST; mesn "Anise Inc."; mesc l("Location Registered. You are now capable to use this warp gate."); |