You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Failed loading the per-mod API instance from Toolbar Icons. Integrations with other mods may not work.
Error: NullReferenceException: Object reference not set to an instance of an object.
at StardewMods.ToolbarIcons.ModEntry.GetApi(IModInfo mod) in X:\Repos\stardew-mods\ToolbarIcons\ModEntry.cs:line 33
at StardewModdingAPI.Framework.ModHelpers.ModRegistryHelper.GetApi(String uniqueID) in SMAPI\Framework\ModHelpers\ModRegistryHelper.cs:line 88
I assume it's the container object not been initialized yet when my mod firstly reached OnGameLaunched.
So I think container needs to be inited early in the Entry part, rather than OnGameLaunched.
The text was updated successfully, but these errors were encountered:
Hello, someone had reported an error to me. When trying to getapi from Toolbar Icons, it says NullReferenceException. (https://smapi.io/log/61ce5105734041a8aa4da78555d0df7d)
I assume it's the
container
object not been initialized yet when my mod firstly reachedOnGameLaunched
.So I think
container
needs to be inited early in theEntry
part, rather thanOnGameLaunched
.The text was updated successfully, but these errors were encountered: