Skip to content

Commit

Permalink
Fix constructor order
Browse files Browse the repository at this point in the history
Woops
  • Loading branch information
Salanto committed Jan 17, 2024
1 parent 7ccfbd4 commit 88d9d2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/serverapplication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ void ServerApplication::start()
information.description = Options::server_description();
information.asset_url = Options::server_name();
information.custom_hostname = Options::hostname();
relay = new PacketRelay(this);
client_manager = new ClientManager(this, &information, relay);
advertiser = new CoordinatorClient(this, &information, Options::advertise(), Options::ws_port());
relay = new PacketRelay(this);
area_manager = new AreaManager(this, relay);
ban_manager = new BanManager(this, relay);
}

0 comments on commit 88d9d2b

Please sign in to comment.