1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-11-15 11:22:55 +00:00

curse burgerballs

This commit is contained in:
Burgerballs 2024-05-15 17:24:04 +01:00
parent 96de434d75
commit eaf998adf7

View file

@ -827,6 +827,8 @@ class PlayState extends MusicBeatSubState
{
if (!assertChartExists()) return;
prevScrollTargets = [];
dispatchEvent(new ScriptEvent(SONG_RETRY));
resetCamera();
@ -3272,8 +3274,8 @@ class PlayState extends MusicBeatSubState
// Snap to previous event value to prevent the tween breaking when another event cancels the previous tween.
for (i in prevScrollTargets)
{
var value:Float = i[1];
var strum:Strumline = Reflect.getProperty(this, i[0]);
var value:Float = i[0];
var strum:Strumline = Reflect.getProperty(this, i[1]);
strum.scrollSpeed = value;
}