From 95d7b3ac0aee8ded0e653aba49128b342c1089a0 Mon Sep 17 00:00:00 2001 From: Flameshadowxeroshin Date: Sat, 25 Sep 2010 09:42:10 -0500 Subject: [PATCH] back out non-working SetScore function --- src/PlayerStageStats.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/PlayerStageStats.cpp b/src/PlayerStageStats.cpp index dfca489c38..9beea318e1 100644 --- a/src/PlayerStageStats.cpp +++ b/src/PlayerStageStats.cpp @@ -721,16 +721,6 @@ public: } return 1; } - static int SetScore(T* p, lua_State *L ) - { - int newScore = lua_tonumber(1, L); - if( newScore >= 0) - { - p->m_iScore = newScore; - return 1; - } - return 0; - } static int GetRadarPossible( T* p, lua_State *L ) { p->m_radarPossible.PushSelf(L); return 1; } static int GetRadarActual( T* p, lua_State *L ) { p->m_radarActual.PushSelf(L); return 1; }