Fix parachute moving hog very fast or making it stuck when bumping into wall while facing the opposite direction (
bug #742)
use log::*;
use mio;
use crate::{
protocol::messages::HWProtocolMessage,
server::{core::HWServer, coretypes::ClientId},
};
pub fn handle(_server: &mut HWServer, _client_id: ClientId, message: HWProtocolMessage) {
match message {
_ => warn!("Unknown command"),
}
}