diff options
author | Haru <haru@dotalux.com> | 2015-06-18 03:30:16 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-08-09 21:14:02 +0200 |
commit | 7b50fce0f62961b0228e6919562efcfe33e7fbca (patch) | |
tree | 0afaecbf71bcb01be2b53864c12a55ae182e2b5f /npc/warps/dungeons | |
parent | 7e93d08a79521d18fcf5dacb5c43db6b277c79ac (diff) | |
download | hercules-7b50fce0f62961b0228e6919562efcfe33e7fbca.tar.gz hercules-7b50fce0f62961b0228e6919562efcfe33e7fbca.tar.bz2 hercules-7b50fce0f62961b0228e6919562efcfe33e7fbca.tar.xz hercules-7b50fce0f62961b0228e6919562efcfe33e7fbca.zip |
Minor script cleanup.
- Replaced leftover sprite IDs with constants
- Corrected some NPC facing directions (in modulo 8)
Diffstat (limited to 'npc/warps/dungeons')
-rw-r--r-- | npc/warps/dungeons/lhz_dun.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/warps/dungeons/lhz_dun.txt b/npc/warps/dungeons/lhz_dun.txt index 59277921d..b77b0d2ef 100644 --- a/npc/warps/dungeons/lhz_dun.txt +++ b/npc/warps/dungeons/lhz_dun.txt @@ -207,6 +207,6 @@ function script randomw { switch(rand(3)) { case 1: warp "lhz_cube",66,136; end; case 2: warp "lhz_cube",66,74; end; - default: warp "lhz_cube",67,193; end; + default: warp "lhz_cube",67,193; end; } } |