Please disclose if any significant portion of your mod was created using AI tools by adding the 'AI Generated' category. Failing to do so may result in the mod being removed from Thunderstore.
You are viewing a potentially older version of this package.
View all versions.
RestoreScoreboard
[SotS : fix] Brings back missing scoreboard strips for dead players — [ client-side ]
| Date uploaded | 2 years ago |
| Version | 1.0.0 |
| Download link | itsschwer-RestoreScoreboard-1.0.0.zip |
| Downloads | 138619 |
| Dependency string | itsschwer-RestoreScoreboard-1.0.0 |
This mod requires the following mods to function
bbepis-BepInExPack
Unified BepInEx all-in-one modding pack - plugin framework, detour library
Preferred version: 5.4.2117README
Restore Scoreboard
reverts the change in Seekers of the Storm where generation of scoreboard strips for dead players is skipped.
note: only very minimal local testing was performed — should be fully client-side (i.e. not interfere with other players who may not have the mod installed) and have no side-effects — report any issues to the linked repository if found!
technical
// SotS
List<PlayerCharacterMasterController> list = PlayerCharacterMasterController.instances.Where((PlayerCharacterMasterController x) => x.gameObject.activeInHierarchy && x.master.GetBody() != null && Util.GetBestMasterName(x.master) != null).ToList();
// pre-SotS
ReadOnlyCollection<PlayerCharacterMasterController> instances = PlayerCharacterMasterController.instances;
CHANGELOG
1.0.0
- Initial release