diff options
-rw-r--r-- | npc/functions/asleep.txt | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/npc/functions/asleep.txt b/npc/functions/asleep.txt index b1d81b5b..966e3c45 100644 --- a/npc/functions/asleep.txt +++ b/npc/functions/asleep.txt @@ -8,12 +8,10 @@ // @rand = Random number between the number of "sleeping" choice. function script Asleep { - closedialog; set @rand, rand(2); if (@rand == 0) npctalk3 l("Zzzzzzzzz..."); if (@rand == 1) npctalk3 l("Rrrr... Pchhhh..."); if (@rand == 2) npctalk3 l("Ggrmm... Grmmmm..."); - close; } |