From b68e0b37c679ee262adfc434e2c25e1bbad07db4 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Sun, 27 Sep 2020 21:58:58 +0200 Subject: [PATCH] Removed "Leader flag" from wolves, because it was the value used to determine whether it's a savage wolf or barbarous wolf. --- .../data_formats/parsing/quest/npc_types.ts | 20 ++++--------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/src/core/data_formats/parsing/quest/npc_types.ts b/src/core/data_formats/parsing/quest/npc_types.ts index f43b7984..14fcad55 100644 --- a/src/core/data_formats/parsing/quest/npc_types.ts +++ b/src/core/data_formats/parsing/quest/npc_types.ts @@ -678,10 +678,7 @@ define_npc_type_data( 0x043, 0, true, - [ - ["Group ID", 44, "F32"], - ["Leader flag", 48, "F32"], - ], + [["Group ID", 44, "F32"]], ); define_npc_type_data( NpcType.BarbarousWolf, @@ -695,10 +692,7 @@ define_npc_type_data( 0x043, 0, false, - [ - ["Group ID", 44, "F32"], - ["Leader flag", 48, "F32"], - ], + [["Group ID", 44, "F32"]], ); define_npc_type_data( NpcType.Booma, @@ -1532,10 +1526,7 @@ define_npc_type_data( 0x043, 0, true, - [ - ["Group ID", 44, "F32"], - ["Leader flag", 48, "F32"], - ], + [["Group ID", 44, "F32"]], ); define_npc_type_data( NpcType.BarbarousWolf2, @@ -1549,10 +1540,7 @@ define_npc_type_data( 0x043, 0, false, - [ - ["Group ID", 44, "F32"], - ["Leader flag", 48, "F32"], - ], + [["Group ID", 44, "F32"]], ); define_npc_type_data( NpcType.PanArms2,