Fixed the retainer database error. Loading code now matches the new retainer db schema.

This commit is contained in:
Filip Maj 2017-09-03 16:37:05 -04:00
parent 4762811347
commit 62484e2f87
3 changed files with 44 additions and 11 deletions

View file

@ -2,10 +2,17 @@
{
class Retainer
{
public uint id;
public uint characterId;
public string name;
public ushort slot;
public bool doRename;
public readonly uint id;
public readonly uint characterId;
public readonly string name;
public readonly bool doRename;
public Retainer(uint characterId, uint retainerId, string name, bool doRename)
{
this.id = retainerId;
this.characterId = characterId;
this.name = name;
this.doRename = doRename;
}
}
}