enables switching m_bJukeboxUsesModifiers (ScreenJukebox uses this but nowhere in code were anything that could switch it on/off)

This commit is contained in:
Vecais Dumais Laacis
2007-09-12 14:54:57 +00:00
parent 9559ce8f4a
commit 00f55cefdc
+6
View File
@@ -2219,6 +2219,11 @@ public:
static int GetStageSeed( T* p, lua_State *L ) { LuaHelpers::Push( L, p->m_iStageSeed ); return 1; }
static int SaveLocalData( T* p, lua_State *L ) { p->SaveLocalData(); return 0; }
static int SetJukeboxUsesModifiers( T* p, lua_State *L )
{
p->m_bJukeboxUsesModifiers = BArg(1); return 0;
}
LunaGameState()
{
ADD_METHOD( IsPlayerEnabled );
@@ -2297,6 +2302,7 @@ public:
ADD_METHOD( GetGameSeed );
ADD_METHOD( GetStageSeed );
ADD_METHOD( SaveLocalData );
ADD_METHOD( SetJukeboxUsesModifiers );
}
};