From 98d7accc412b0ea787ac664bf618b4c198e5d528 Mon Sep 17 00:00:00 2001 From: Jucan Andrei Daniel Date: Thu, 16 Nov 2023 12:35:18 +0200 Subject: [PATCH] Forgot one nullable to use default! --- PxCs/Data/Vob/PxVobNpcData.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PxCs/Data/Vob/PxVobNpcData.cs b/PxCs/Data/Vob/PxVobNpcData.cs index 9dba8a4..72a435e 100644 --- a/PxCs/Data/Vob/PxVobNpcData.cs +++ b/PxCs/Data/Vob/PxVobNpcData.cs @@ -73,7 +73,7 @@ public class PxVobNpcSlotData public string currentRoutine = default!; public bool respawn; public int respawnTime; - public int[]? protection; + public int[] protection = default!; public int bsInterruptableOverride; public int npcType; public int spellMana;