Skip to content

Commit

Permalink
Only check for NextAction 13 in Twinkle Park
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-fadely committed Feb 13, 2016
1 parent b5eee74 commit 7fef4dd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sadx-super-sonic/mod.cpp
Expand Up @@ -216,7 +216,8 @@ extern "C"
{
// TODO: Consider storing the queued action in the case of NextAction 13, then re-applying
// the stored queued action next frame to fix the spindashy things.
bool detransform = data1->Status & Status_DoNextAction && (data1->NextAction == 12 || data1->NextAction == 13);
bool detransform = data1->Status & Status_DoNextAction &&
(data1->NextAction == 12 || data1->NextAction == 13 && CurrentLevel == LevelIDs_TwinklePark);

if (isBlacklisted || detransform || action && toggle || !Rings)
{
Expand Down

0 comments on commit 7fef4dd

Please sign in to comment.