diff options
author | Alige <gauvain.dauchy@free.fr> | 2016-06-27 01:01:14 +0200 |
---|---|---|
committer | Alige <gauvain.dauchy@free.fr> | 2016-06-27 01:01:14 +0200 |
commit | 9a55418e519a1569c0aad39f5e4e1d169798a1dd (patch) | |
tree | ff5b7666fc10ec4fc997d6b9759d7a3cddde8412 /npc | |
parent | 80f546fcb99bd70a5e48dca646f561ab3c3d8f2c (diff) | |
download | serverdata-9a55418e519a1569c0aad39f5e4e1d169798a1dd.tar.gz serverdata-9a55418e519a1569c0aad39f5e4e1d169798a1dd.tar.bz2 serverdata-9a55418e519a1569c0aad39f5e4e1d169798a1dd.tar.xz serverdata-9a55418e519a1569c0aad39f5e4e1d169798a1dd.zip |
Removed useless comments on emotions in npc scripts.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/asleep.txt | 2 | ||||
-rw-r--r-- | npc/functions/villagertalk.txt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/npc/functions/asleep.txt b/npc/functions/asleep.txt index 7443e904..4905f329 100644 --- a/npc/functions/asleep.txt +++ b/npc/functions/asleep.txt @@ -15,7 +15,7 @@ function script asleep { else if (.@rand == 1) npctalk3 l("Rrrr... Pchhhh..."); else if (.@rand == 2) npctalk3 l("Ggrmm... Grmmmm..."); else if (.@rand == 3) npctalk3 l("Hm... Shhhh..."); - else emotion E_SLEEPY; // Sleepy + else emotion E_SLEEPY; close; } diff --git a/npc/functions/villagertalk.txt b/npc/functions/villagertalk.txt index f8c239d1..85ab4fca 100644 --- a/npc/functions/villagertalk.txt +++ b/npc/functions/villagertalk.txt @@ -14,12 +14,12 @@ function script villagertalk { if (.@darn < 26) { - emotion E_JOY; // ^.^ + emotion E_JOY; hello; } else if (.@darn > 26) { - emotion E_LOOKAWAY; // Look away + emotion E_LOOKAWAY; goodbye; } else |