Removed unused var in ItemRefParam. Fixed up the tracked vars in PassiveGL

This commit is contained in:
Filip Maj 2021-02-28 11:19:49 -05:00
parent 29381431e7
commit eca510c489
2 changed files with 15 additions and 11 deletions

View file

@ -37,14 +37,12 @@ namespace Meteor.Map
public class ItemRefParam
{
public uint actorId;
public byte unknown;
public ushort slot;
public byte itemPackage;
public ItemRefParam(uint actorId, ushort slot, byte itemPackage)
{
this.actorId = actorId;
this.unknown = unknown;
this.slot = slot;
this.itemPackage = itemPackage;
}