Skip to content

Commit

Permalink
Merge pull request #28 from Auros/dev
Browse files Browse the repository at this point in the history
Fixed spectator mode crash
  • Loading branch information
Auros authored Dec 22, 2021
2 parents d9c376d + 5b35711 commit 4cd6c2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SiraUtil/Zenject/Zenjector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ private IEnumerable<Type> InstallerForLocation(Location location)
if (location.HasFlag(Location.CampaignPlayer))
installerTypes.Add(typeof(MissionGameplayInstaller));
if (location.HasFlag(Location.MultiPlayer))
installerTypes.Add(typeof(MultiplayerLocalPlayerInstaller));
installerTypes.Add(typeof(MultiplayerLocalActivePlayerInstaller));
if (location.HasFlag(Location.Tutorial))
installerTypes.Add(typeof(TutorialInstaller));
if (location.HasFlag(Location.GameCore))
Expand Down
2 changes: 1 addition & 1 deletion SiraUtil/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"id": "SiraUtil",
"name": "SiraUtil",
"author": "Auros",
"version": "3.0.1",
"version": "3.0.2",
"icon": "SiraUtil.Resources.logo.png",
"description": "A powerful utility mod which expands the capabilities and provides more tools to Beat Saber modders.",
"gameVersion": "1.19.0",
Expand Down

0 comments on commit 4cd6c2d

Please sign in to comment.