diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/012-2/note.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/012-2/note.txt b/npc/012-2/note.txt index 471792c9e..721fe6c7e 100644 --- a/npc/012-2/note.txt +++ b/npc/012-2/note.txt @@ -14,13 +14,16 @@ 012-2,40,41,0 script Note#012-2 NPC_NO_SPRITE,{ HallOfSponsor(); - if (!is_staff()) + next; + if (.t > gettimetick(2)) close; + .t=gettimetick(2)+2; HallOfGMLog(); close; OnInit: .sex = G_OTHER; .distance = 3; + .t=gettimetick(2); end; } |