mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-10 06:24:38 +02:00
Fixed the retainer database error. Loading code now matches the new retainer db schema.
This commit is contained in:
parent
4762811347
commit
62484e2f87
3 changed files with 44 additions and 11 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue