Skip to content

Commit

Permalink
Fixed an inconsistency in the default ID of GroupInviterData, where G…
Browse files Browse the repository at this point in the history
…roupService claims it should be -1 but it's 0 when server initializes
  • Loading branch information
madsboddum committed Jul 8, 2022
1 parent 3d9e202 commit 9c9fc26
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class CreatureObjectSharedNP implements MongoPersistable {

private final CreatureObject obj;

private transient GroupInviterData inviterData = new GroupInviterData(0, null, 0);
private transient GroupInviterData inviterData = new GroupInviterData(-1, null, 0);
private transient long groupId = 0;

private short level = 1;
Expand Down

0 comments on commit 9c9fc26

Please sign in to comment.