Removed trace statements, moved a couple util files

This commit is contained in:
Kayne Ruse
2015-03-30 22:33:23 +11:00
parent 39f03b2da8
commit 48bec25336
5 changed files with 1 additions and 22 deletions
+1 -14
View File
@@ -15,10 +15,7 @@ roomManagerAPI.SetOnCreate(function(room, index)
roomAPI.SetOnTick(room, function(room)
roomAPI.ForEachCharacter(room, function(character)
--testing the metatables
local meta = getmetatable(character)
print("", "userdata metatable: ", meta)
print(character["trying"])
--
end)
end)
end)
@@ -36,14 +33,4 @@ roomAPI.Initialize(underworld, mapSaver.Load, mapSaver.Save, mapMaker.DebugGrass
--call the monstrosity
doorUtility.createDoorPair("pair 1", overworld, 0, -64, underworld, 0, 0)
--testing the metatables
print("debug")
overworld["key"] = "value"
local key = overworld["key"]
print("", "result: ", key)
local key = underworld["key"]
print("", "result: ", key)
--end test
print("Finished the lua script")