diff --git a/world/src/site2/plot/giant_tree.rs b/world/src/site2/plot/giant_tree.rs index c834aa5e72..e6aa5c832b 100644 --- a/world/src/site2/plot/giant_tree.rs +++ b/world/src/site2/plot/giant_tree.rs @@ -131,7 +131,7 @@ impl Structure for GiantTree { (branch_direction * branch.get_leaf_radius()).map(|e| e.round() as i32); let pos = self.wpos + branch_end.as_() + displacement; if rand::thread_rng().gen_range(0..100) < 7 { - painter.sprite(pos.map(|e| e as i32), SpriteKind::Ironwood); + painter.sprite(pos.map(|e| e), SpriteKind::Ironwood); } } true