mirror of
https://github.com/TotalFreedomMC/TFGuilds.git
synced 2024-12-22 07:55:03 +00:00
Fix tags not setting after loading (FS-288)
This commit is contained in:
parent
3f970a50d8
commit
8263e8b20f
1 changed files with 4 additions and 0 deletions
|
@ -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"),
|
||||
|
|
Loading…
Reference in a new issue