Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Prown0 committed Dec 11, 2024
1 parent 003673b commit 05fb164
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public override void OnInteract()
Log("Call `GameManager.SetStageClear` end");

// Code used before `GameManager` updates begin
GameObject controllerObject = GameObject.Find("Anomaly18Manager");
GameObject controllerObject = GameObject.Find("AnomalyManager (18)(Clone)");
AbstractAnomalyObject controller = controllerObject.GetComponent<AbstractAnomalyObject>();

Log($"Call `{controller.Name}.ResetAnomaly` begin");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public override void OnInteract()
Log("Call `GameManager.SetStageClear` end");

// Code used before `GameManager` updates begin
GameObject controllerObject = GameObject.Find("Anomaly19Manager");
GameObject controllerObject = GameObject.Find("AnomalyManager (19)(Clone)");
AbstractAnomalyObject controller = controllerObject.GetComponent<AbstractAnomalyObject>();

Log($"Call `{controller.Name}.ResetAnomaly` begin");
Expand Down
2 changes: 1 addition & 1 deletion 302/Assets/Scripts/SpecificAnomalyManager/Anomaly1_Girl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public override void OnInteract()
Log("Call `GameManager.SetStageClear` end");

// Code used before `GameManager` updates begin
GameObject controllerObject = GameObject.Find("Anomaly1Manager");
GameObject controllerObject = GameObject.Find("AnomalyManager (1)(Clone)");
AbstractAnomalyObject controller = controllerObject.GetComponent<AbstractAnomalyObject>();

Log($"Call `{controller.Name}.ResetAnomaly` begin");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public override void OnInteract()
Log("Call `GameManager.SetStageClear` end");

// Code used before `GameManager` updates begin
GameObject controllerObject = GameObject.Find("Anomaly20Manager");
GameObject controllerObject = GameObject.Find("AnomalyManager (20)(Clone)");
AbstractAnomalyObject controller = controllerObject.GetComponent<AbstractAnomalyObject>();

Log($"Call `{controller.Name}.ResetAnomaly` begin");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ void Update()
Log("Call `GameManager.SetStageClear` end");

// Code used before `GameManager` updates begin
GameObject controllerObject = GameObject.Find("Anomaly23Manager");
GameObject controllerObject = GameObject.Find("AnomalyManager (23)(Clone)");
AbstractAnomalyObject controller = controllerObject.GetComponent<AbstractAnomalyObject>();

Log($"Call `{controller.Name}.ResetAnomaly` begin");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public override void OnInteract()
Log("Call `GameManager.SetStageClear` end");

// Code used before `GameManager` updates begin
GameObject controllerObject = GameObject.Find("Anomaly2Manager");
GameObject controllerObject = GameObject.Find("AnomalyManager (2)(Clone)");
AbstractAnomalyObject controller = controllerObject.GetComponent<AbstractAnomalyObject>();

Log($"Call `{controller.Name}.ResetAnomaly` begin");
Expand Down
2 changes: 1 addition & 1 deletion 302/Assets/Scripts/SpecificAnomalyManager/Anomaly6_Cake.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public override void OnInteract()
Log("Call `GameManager.SetStageClear` end");

// Code used before `GameManager` updates begin
GameObject controllerObject = GameObject.Find("Anomaly6Manager");
GameObject controllerObject = GameObject.Find("AnomalyManager (6)(Clone)");
AbstractAnomalyObject controller = controllerObject.GetComponent<AbstractAnomalyObject>();

Log($"Call `{controller.Name}.ResetAnomaly` begin");
Expand Down

0 comments on commit 05fb164

Please sign in to comment.