cargo fmt ; (cd blocks && cargo fmt) ; (cd resources && cargo fmt) ; (cd shared && cargo fmt) ; (cd protocol && cargo fmt) ; (cd gl && cargo fmt) ; (cd std_or_web && cargo fmt)

This commit is contained in:
ice_iix 2020-06-27 18:10:10 -07:00
parent bb2f3ad235
commit 25b6a752d6
2 changed files with 1 additions and 5 deletions

View File

@ -2698,7 +2698,6 @@ pub enum RecipeData {
addition: RecipeIngredient,
result: Option<item::Stack>,
},
}
impl Default for RecipeData {

View File

@ -970,10 +970,7 @@ impl Server {
}
}
fn on_game_join_worldnames(
&mut self,
join: packet::play::clientbound::JoinGame_WorldNames,
) {
fn on_game_join_worldnames(&mut self, join: packet::play::clientbound::JoinGame_WorldNames) {
self.on_game_join(join.gamemode, join.entity_id)
}