We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not 100% sure why, but warnings is null here in my game.
warnings
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;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Not 100% sure why, but
warnings
is null here in my game.and will throw NRE later:
For now as a workaround, i just added null check and return. Seems like it's working fine.
The text was updated successfully, but these errors were encountered: