Skip to content

Commit

Permalink
fix ng+
Browse files Browse the repository at this point in the history
  • Loading branch information
bgkillas committed Feb 2, 2025
1 parent 9f4ee9a commit 2f36db9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion noita-proxy/src/net.rs
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,10 @@ impl NetManager {
self.world_info.update_player_pos(peer_id, x, y);
}
}
Some("reset_world") => state.world.reset(),
Some("reset_world") => {
state.world.reset();
state.des.reset();
}
Some("material_list") => {
state.world.materials.clear();
while let (
Expand Down

0 comments on commit 2f36db9

Please sign in to comment.