Skip to content

Commit

Permalink
aaaaa
Browse files Browse the repository at this point in the history
  • Loading branch information
Prown0 committed Dec 21, 2024
1 parent 5571945 commit de7b5ff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 302/Assets/Scripts/AnomalyManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

public class AnomalyManager : AbstractStageObserver
{
private HashSet<int> ANOMALIES_NOT_YET = new HashSet<int> { 4, 5, 7 };
private HashSet<int> ANOMALIES_NOT_YET = new HashSet<int> { 4, 5 };

/**********
* fields *
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ public class Anomaly07Controller : AbstractAnomalyComposite
[SerializeField] private GameObject gunPrefab;
[SerializeField] private Vector3 gunSpawnPosition = new Vector3(10.8f, 1.5f, 8.4f);

private void OnEnable()
public override bool StartAnomaly()
{
bool res = base.StartAnomaly();

SpawnGun();

return res;
}

private void SpawnGun()
Expand Down

0 comments on commit de7b5ff

Please sign in to comment.