Cunstruct account with world parameter

This commit is contained in:
7u83 2018-12-31 14:06:18 +01:00
parent 844a57df27
commit 904b4a1016
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ public class Exchange implements Configurable, GetJson {
private HashSet<Account> accounts = new HashSet<>();
Account createAccount() {
Account a = new Account(this);
Account a = new Account(this.world);
accounts.add(a);
return a;
}