diff options
Diffstat (limited to 'world')
-rw-r--r-- | world/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/world/src/main.rs b/world/src/main.rs index f67febb..d56433a 100644 --- a/world/src/main.rs +++ b/world/src/main.rs @@ -181,6 +181,7 @@ fn main() -> Result<()> { if args.add { for p in &prefabs { let ob = Object::new(); + info!("adding object {ob}"); Packet::Add(ob, p.clone()).write(&mut sock)?; obs.push(ob); } |