@@ -460,13 +460,13 @@ class PlayState extends MusicBeatState
460460 *
461461 * NOTE: This is just a default value for the final value, the final value can be changed through notes hit events.
462462 */
463- public var defDisplayRating : Bool = true ;
463+ public var defaultDisplayRating : Bool = true ;
464464 /**
465465 * Whenever the Combo sprite should be shown or not (like old Week 7 patches).
466466 *
467467 * NOTE: This is just a default value for the final value, the final value can be changed through notes hit events.
468468 */
469- public var defDisplayCombo : Bool = false ;
469+ public var defaultDisplayCombo : Bool = false ;
470470 /**
471471 * Minimum Combo Count to display the combo digits. Anything less than 0 means it won't be shown.
472472 */
@@ -1661,9 +1661,9 @@ class PlayState extends MusicBeatState
16611661
16621662 var event : NoteHitEvent ;
16631663 if (strumLine != null && ! strumLine .cpu )
1664- event = EventManager .get (NoteHitEvent ).recycle (false , ! note .isSustainNote , ! note .isSustainNote , null , defDisplayRating , defDisplayCombo , note , strumLine .characters , true , note .noteType , note .animSuffix .getDefault (note .strumID < strumLine .members .length ? strumLine .members [note .strumID ].animSuffix : strumLine .animSuffix ), " game/score/" , " " , note .strumID , score , note .isSustainNote ? null : accuracy , 0.023 , daRating , Options .splashesEnabled && ! note .isSustainNote && daRating == " sick" );
1664+ event = EventManager .get (NoteHitEvent ).recycle (false , ! note .isSustainNote , ! note .isSustainNote , null , defaultDisplayRating , defaultDisplayCombo , note , strumLine .characters , true , note .noteType , note .animSuffix .getDefault (note .strumID < strumLine .members .length ? strumLine .members [note .strumID ].animSuffix : strumLine .animSuffix ), " game/score/" , " " , note .strumID , score , note .isSustainNote ? null : accuracy , 0.023 , daRating , Options .splashesEnabled && ! note .isSustainNote && daRating == " sick" );
16651665 else
1666- event = EventManager .get (NoteHitEvent ).recycle (false , false , false , null , defDisplayRating , defDisplayCombo , note , strumLine .characters , false , note .noteType , note .animSuffix .getDefault (note .strumID < strumLine .members .length ? strumLine .members [note .strumID ].animSuffix : strumLine .animSuffix ), " game/score/" , " " , note .strumID , 0 , null , 0 , daRating , false );
1666+ event = EventManager .get (NoteHitEvent ).recycle (false , false , false , null , defaultDisplayRating , defaultDisplayCombo , note , strumLine .characters , false , note .noteType , note .animSuffix .getDefault (note .strumID < strumLine .members .length ? strumLine .members [note .strumID ].animSuffix : strumLine .animSuffix ), " game/score/" , " " , note .strumID , 0 , null , 0 , daRating , false );
16671667 event .deleteNote = ! note .isSustainNote ; // work around, to allow sustain notes to be deleted
16681668 event = scripts .event (strumLine != null && ! strumLine .cpu ? " onPlayerHit" : " onDadHit" , event );
16691669 strumLine .onHit .dispatch (event );
0 commit comments