From 57f4eecb1ddf3257096202ac1e944eb4bf070ad0 Mon Sep 17 00:00:00 2001 From: Flameshadowxeroshin Date: Fri, 20 May 2016 16:32:14 -0500 Subject: [PATCH] crashing is a bad idea therefore, don't do it --- DDR SN3/Scripts/00 aaDataCheck.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/DDR SN3/Scripts/00 aaDataCheck.lua b/DDR SN3/Scripts/00 aaDataCheck.lua index dbf56af..f021504 100644 --- a/DDR SN3/Scripts/00 aaDataCheck.lua +++ b/DDR SN3/Scripts/00 aaDataCheck.lua @@ -4,6 +4,8 @@ local badFiles = {"/Scripts/06 MyGrooveRadarHelpers.lua", for _, path in pairs(badFiles) do if FILEMAN:DoesFileExist(THEME:GetCurrentThemeDirectory()..path) then - UndocumentedFeature("You aren't using a clean copy of DDR SuperNOVA 3!") + --XXX: Figure out a better thing to do here. + Warn("Found file "..badFiles.." that shouldn't exist.\nYou aren't using a clean copy of DDR SuperNOVA 3!\nThis will likely cause problems.") + return end -end \ No newline at end of file +end