From fd2ff3481c9daa229eb59a9e70b0a934de4279ab Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 12 Oct 2006 09:57:46 +0000 Subject: [PATCH] remove special "Command" processing --- stepmania/src/XmlFileUtil.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/stepmania/src/XmlFileUtil.cpp b/stepmania/src/XmlFileUtil.cpp index 1c0fca3aad..627de5840f 100644 --- a/stepmania/src/XmlFileUtil.cpp +++ b/stepmania/src/XmlFileUtil.cpp @@ -660,13 +660,6 @@ namespace continue; } - if( lua_isstring(L, -1) && EndsWith(sName, "Command") ) - { - RString sExpression; - LuaHelpers::Pop( L, sExpression ); - LuaHelpers::ParseCommandList( L, sExpression, "" /* XXX */ ); - } - /* Otherwise, add an attribute. */ XNodeLuaValue *pValue = new XNodeLuaValue; pValue->SetValueFromStack( L );