diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-12 18:19:32 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-12 18:19:32 -0300 |
commit | a128a876e368e86cf6075bbd1ff8a7779c30ef20 (patch) | |
tree | ac24dd3c16b2768a6362ec8a9bbe9051f5963ace /npc/009-6 | |
parent | da9945ae7ea7e6d862e12f473812bcccf7ea87c7 (diff) | |
download | serverdata-a128a876e368e86cf6075bbd1ff8a7779c30ef20.tar.gz serverdata-a128a876e368e86cf6075bbd1ff8a7779c30ef20.tar.bz2 serverdata-a128a876e368e86cf6075bbd1ff8a7779c30ef20.tar.xz serverdata-a128a876e368e86cf6075bbd1ff8a7779c30ef20.zip |
Fix doorbells
Diffstat (limited to 'npc/009-6')
-rw-r--r-- | npc/009-6/doorbell.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/009-6/doorbell.txt b/npc/009-6/doorbell.txt index 67dda0bf5..2b461e8de 100644 --- a/npc/009-6/doorbell.txt +++ b/npc/009-6/doorbell.txt @@ -52,11 +52,11 @@ OnSlide: // If someone press the doorbell from outside and doorbell is enabled OnDoorbell: - if (!$ESTATE_DOORBELL[.id]) + if ($ESTATE_DOORBELL[.id]) end; if (.dpost < gettimetick(2)) { - npctalk l("@@ is pressing the doorbell.", strcharinfo(0)); // We actually don't want l() + npctalk (strcharinfo(0)+" is pressing the doorbell."); // We actually don't want l() } .dpost=gettimetick(2)+.delay; end; |