Fix tags not setting after loading (FS-288)

This commit is contained in:
Nathan Curran 2021-06-07 11:12:49 +10:00
parent 3f970a50d8
commit 8263e8b20f
No known key found for this signature in database
GPG Key ID: B3A964B30C2E56B8
1 changed files with 4 additions and 0 deletions

View File

@ -48,6 +48,7 @@ public class Guild
Map<String, Location> warps,
String defaultRank,
State state,
String tag,
String motd,
double x,
double y,
@ -64,6 +65,7 @@ public class Guild
this.warps = warps;
this.defaultRank = defaultRank;
this.state = state;
this.tag = tag;
this.motd = motd;
World w;
if (world == null)
@ -93,6 +95,7 @@ public class Guild
null,
State.OPEN,
null,
null,
0,
50,
0,
@ -203,6 +206,7 @@ public class Guild
warps,
set.getString("default_rank"),
State.fromInt(set.getInt("state")),
set.getString("tag"),
set.getString("motd"),
set.getDouble("x"),
set.getDouble("y"),