WhatTheHack icon indicating copy to clipboard operation
WhatTheHack copied to clipboard

NRE in Dialog_FormCaravan_DoBottomButtons.AddWarnings

Open NoirFry opened this issue 4 years ago • 0 comments

Not 100% sure why, but warnings is null here in my game.

public static void AddWarnings(Dialog_FormCaravan instance, ref List<string> warnings)

and will throw NRE later:

if(numPlatforms < numMechanoids)
{
    warnings.Add("WTH_Warning_NotEnoughPlatforms".Translate());

For now as a workaround, i just added null check and return. Seems like it's working fine.

if (warnings == null)
    return;

NoirFry avatar Jun 15 '20 06:06 NoirFry