From 2513603042ecbce329831fd6dfa72f79249031e6 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 21 Feb 2007 00:26:48 +0000 Subject: [PATCH] "trace" and "warn" are now just convenience aliases for "lua.Trace" and "lua.Warn", not hardcoded namespace pollution --- stepmania/Themes/default/Scripts/00 init.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/stepmania/Themes/default/Scripts/00 init.lua b/stepmania/Themes/default/Scripts/00 init.lua index d3aa5cda48..3397ebb1f3 100644 --- a/stepmania/Themes/default/Scripts/00 init.lua +++ b/stepmania/Themes/default/Scripts/00 init.lua @@ -6,6 +6,10 @@ string.lower = Lowercase Uppercase = nil -- don't use directly Lowercase = nil -- don't use directly +Trace = lua.Trace +Warn = lua.Warn +print = Trace + PLAYER_1 = "PlayerNumber_P1" PLAYER_2 = "PlayerNumber_P2" NUM_PLAYERS = #PlayerNumber