Forgotten file

This commit is contained in:
Nobody 2022-04-04 22:58:00 +05:00
parent 8a3ac5e8d3
commit f233de8202

View File

@ -39,7 +39,7 @@ impl GameServer {
let es = EntitySubsystem::new(lum.clone(), jm.clone(), db.clone(), em.clone(), packets_to_send_tx.clone());
let nt = NpcSubsystem::new(packets_to_send_tx.clone());
let ss = ShopSubsystem::new(jm.clone(), db.clone(), inv.clone(), packets_to_send_tx.clone());
let scs = SceneSubsystem::new(packets_to_send_tx.clone());
let scs = SceneSubsystem::new(db.clone(), packets_to_send_tx.clone());
let ps = PauseSubsystem::new(packets_to_send_tx.clone());
let socs = SocialSubsystem::new(db.clone(), packets_to_send_tx.clone());
let ts = TeleportSubsystem::new(jm.clone(), db.clone(), em.clone(), packets_to_send_tx.clone());