/// <summary>
 /// Applied before OnStorageChange runs.
 /// </summary>
 internal static bool Prefix(FishFeeder.Instance smi, object data)
 {
     if (data is GameObject go && go != null)
     {
         smi.Get <Storage>().StartCoroutine(FishFeederFix(smi));
     }
     // Stop the bugged original method from running at all
     return(false);
 }