This commit is contained in:
Glenn Maynard
2006-12-19 01:46:49 +00:00
parent 21de36d26a
commit aac2933b54
2 changed files with 2 additions and 2 deletions
@@ -5,7 +5,7 @@ local s = style:GetStyleType();
local Reverse = PlayerNumber:Reverse();
s = string.gsub(s, "StyleType_", "");
local t = LoadActor("_icon " .. s)() .. {
local t = LoadActor("_icon " .. s) .. {
InitCommand = cmd(pause;setstate,Reverse[GAMESTATE:GetMasterPlayerNumber()]);
};
@@ -1,7 +1,7 @@
local stages = { }
for _, s in ipairs(Stage) do
if GAMESTATE:IsStagePossible(s) then
local t = LoadActor("_stage " .. s)() .. {
local t = LoadActor("_stage " .. s) .. {
InitCommand = cmd(playcommand,"Update"),
CurrentSongChangedMessageCommand=cmd(playcommand,"Update"),