From d5a67c771f3da87ee22cbb02ebe2985e6df1f5b7 Mon Sep 17 00:00:00 2001 From: Guillaume Melquiond Date: Wed, 15 Aug 2007 07:32:01 +0000 Subject: Marked internal variables of Lua scripts as local. --- data/scripts/libtmw.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'data/scripts/libtmw.lua') diff --git a/data/scripts/libtmw.lua b/data/scripts/libtmw.lua index c4a14b6..441ec26 100644 --- a/data/scripts/libtmw.lua +++ b/data/scripts/libtmw.lua @@ -2,6 +2,11 @@ -- Support code -- ------------------ +local npcs = {} +local states = {} +local init_fun = {} +local timer + function create_npc(id, x, y, handler) local npc = tmw.obj_create_npc(id, x, y) npcs[npc] = handler @@ -104,8 +109,3 @@ function initialize() end init_fun = nil end - -npcs = {} -states = {} -init_fun = {} - -- cgit