Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
Forgot one nullable to use default!
Browse files Browse the repository at this point in the history
  • Loading branch information
JucanAndreiDaniel committed Nov 16, 2023
1 parent 80efe85 commit 98d7acc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PxCs/Data/Vob/PxVobNpcData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 98d7acc

Please sign in to comment.