Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions src/Lumina/Data/Parsing/Layer/LayerCommon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1106,7 +1106,10 @@ public struct MapRangeInstanceObject : IInstanceObject// : TriggerBoxInstanceObj
public byte BGMPlayZoneInOnly;
public byte LiftEnabled;
public byte HousingEnabled;
private byte[] _padding01; //[2]
public byte LogFlyingHeightMaxErr;
private byte _padding01;
public byte MountsAndOrnamentsDisabled;
public byte LalafellOnly;

public static MapRangeInstanceObject Read( LuminaBinaryReader br )
{
Expand Down Expand Up @@ -1134,7 +1137,10 @@ public static MapRangeInstanceObject Read( LuminaBinaryReader br )
ret.BGMPlayZoneInOnly = br.ReadByte();
ret.LiftEnabled = br.ReadByte();
ret.HousingEnabled = br.ReadByte();
ret._padding01 = br.ReadBytes( 2 );
ret.LogFlyingHeightMaxErr = br.ReadByte();
ret._padding01 = br.ReadByte();
ret.MountsAndOrnamentsDisabled = br.ReadByte();
ret.LalafellOnly = br.ReadByte();

return ret;
}
Expand Down
Loading