Skip to content

Commit

Permalink
Fixed items not working
Browse files Browse the repository at this point in the history
  • Loading branch information
NintwnDude879 committed Oct 6, 2023
1 parent e90ecfd commit 1718a29
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion FNaFSBAutoSplitter.asl
Original file line number Diff line number Diff line change
Expand Up @@ -1364,7 +1364,8 @@ split {

#region Item splits
//Chica's voicebox is weird. Investigate yourself if you want to know more.
if (vars.watchers["canCollect"].Old >= 0.98f){
if (vars.watchers["canCollect"].Old.GetType() == typeof(float)
&& vars.watchers["canCollect"].Old >= 0.98f){
string currentName = vars.GetNameFromFName(vars.watchers["lastInteractible"].Current);
if (vars.interactibleName == "chicaSewer" && settings["Chica's Voicebox"]
&& vars.CompletedSplits.Add("ChicaVoiceBox_C")){
Expand Down

0 comments on commit 1718a29

Please sign in to comment.