Remove unused prints

This commit is contained in:
Sofia 2026-07-30 19:23:55 +03:00
parent 8f45b16d18
commit 678add5b1c
4 changed files with 0 additions and 2 deletions

View File

@ -486,7 +486,6 @@ impl Game {
if self.selected_map_idx == map_idx && !force {
return;
}
godot_print!("change map");
self.selected_map_idx = map_idx;
if let Some(map) = self.maps.get(map_idx as usize) {
self.selected_map = Some(map);

View File

@ -373,7 +373,6 @@ impl LobbyPanel {
}
pub fn update_map_selection(&mut self, id: u8) {
godot_print!("update map selection");
if let Some(peer) = &mut NetworkManager::singleton().bind_mut().peer {
match peer {
PeerKind::Client(peer, addr) => {