From 79ceb5b0cf6078b1fbadd210cd1dadc827da4543 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Mon, 25 Jul 2005 07:41:23 +0000 Subject: [PATCH] allow At expression in Condition --- stepmania/src/ActorUtil.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/ActorUtil.cpp b/stepmania/src/ActorUtil.cpp index bf17dc938b..3b87de94ab 100644 --- a/stepmania/src/ActorUtil.cpp +++ b/stepmania/src/ActorUtil.cpp @@ -117,6 +117,7 @@ Actor* ActorUtil::LoadFromActorFile( const CString& sDir, const XNode* pNode ) CString expr; if( pNode->GetAttrValue("Condition",expr) ) { + LuaHelpers::RunAtExpressionS( expr ); if( !LuaHelpers::RunExpressionB(expr) ) return NULL; }