Jump to content

Info Cards displaying blank Status Items


AzeTheGreat
  • Branch: Live Branch Version: Windows Pending

In rare cases, you can get issues that look like this:
image.thumb.png.df8b8a32ea5245fbe626710ca03500ab.png

Note that the first Info Card has a blank Status Item in it.


Steps to Reproduce

Reproducing essentially requires frame perfect pausing.  I had to use the following tiny mod to reliably locate it.

[HarmonyPatch(typeof(StatusItemGroup.Entry), nameof(StatusItemGroup.Entry.GetName))]
class TEST
{
    static void Postfix(string __result, StatusItem ___item)
    {
        if (__result.IsNullOrWhiteSpace())
        {
            SpeedControlScreen.Instance.Pause();
            Debug.Log("NO NAME");
            Debug.Log(___item.Id);
        }
    }
}

Using this mod, load the attached save, play the game at max speed (seems to help with reproducing), scroll back and forth over the slicksters, and wait for the game to pause itself.  The issue should occur within a couple minutes.  So far I've only seen this issue with `SameSpotPoopStates+Def`, I'm unsure if it could apply elsewhere.

Test 1.sav DEV_BlankStatusTest.zip

  • Like 1



User Feedback


There are no comments to display.



Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
  • Create New...