mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Fixed the retainer database error. Loading code now matches the new retainer db schema.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user