Fix Residence region output in JSON mode
This commit is contained in:
parent
fd2085b511
commit
e2616c9159
1 changed files with 4 additions and 3 deletions
|
|
@ -38,10 +38,11 @@ public class RegionsComponent extends ClientComponent {
|
|||
}
|
||||
});
|
||||
} else {
|
||||
plugin.events.addListener("clientupdateswritten", new Event.Listener<Object>() {
|
||||
plugin.events.addListener("clientupdatewritten", new Event.Listener<ClientUpdateEvent>() {
|
||||
@Override
|
||||
public void triggered(Object t) {
|
||||
parseRegionFile(configuration.getString("filename", "regions.yml"), configuration.getString("filename", "regions.yml"));
|
||||
public void triggered(ClientUpdateEvent t) {
|
||||
World world = t.world.world;
|
||||
parseRegionFile(configuration.getString("filename", "regions.yml"), configuration.getString("filename", "regions.yml").replace(".", "_" + world.getName() + ".yml"));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue