this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: dont consume mouse messages on server

dusk f78580fb 4f932262

+3
+3
src/main.rs
··· 284 284 .push(LaserPoint::new(msg, self.clock.now())); 285 285 has_any_points = true; 286 286 } 287 + #[cfg(feature = "client")] 287 288 WsMessage::Mouse(msg) => { 288 289 self.server_mouse_pos = (msg.x as f32, msg.y as f32); 289 290 self.needs_redraw = true; 290 291 } 292 + #[cfg(not(feature = "client"))] 293 + WsMessage::Mouse(_) => {} 291 294 } 292 295 } 293 296