Fix Fake Note rotation and remove redir (done in noteskin.lua)

This commit is contained in:
Colby Klein
2009-12-14 07:21:41 +00:00
parent 6e47084974
commit 78b71940f8
3 changed files with 7 additions and 5 deletions
@@ -1 +0,0 @@
Down Tap Note
@@ -18,7 +18,8 @@ ret.Redir = function(sButton, sElement)
if sElement == "Hold Head Inactive" or
sElement == "Hold Head Active" or
sElement == "Roll Head Inactive" or
sElement == "Roll Head Active"
sElement == "Roll Head Active" or
sElement == "Tap Fake"
then
sElement = "Tap Note";
end
@@ -61,6 +62,7 @@ ret.PartsToRotate =
["Tap Explosion Bright"] = true,
["Tap Explosion Dim"] = true,
["Tap Note"] = true,
["Tap Fake"] = true,
["Hold Head Active"] = true,
["Hold Head Inactive"] = true,
["Roll Head Active"] = true,
+4 -3
View File
@@ -16,7 +16,7 @@ ret.Redir = function(sButton, sElement)
sButton, sElement = OldRedir(sButton, sElement);
--Point the head files back to the tap note
if string.find(sElement, "Head") then
if string.find(sElement, "Head") or sElement == "Tap Fake" then
sElement = "Tap Note";
end
@@ -42,14 +42,15 @@ ret.PartsToRotate =
{
["Receptor"] = true,
["Tap Note"] = true,
["Tap Lift"] = true,
["Tap Fake"] = true,
["Ready Receptor"] = true,
["Tap Explosion Bright"] = true,
["Tap Explosion Dim"] = true,
["Hold Head Active"] = true,
["Hold Head Inactive"] = true,
["Roll Head Active"] = true,
["Roll Head Inactive"] = true,
["Tap Lift"] = true,
["Roll Head Inactive"] = true
};
ret.Rotate =
{