Fix some compile errors

This commit is contained in:
Zontreck 2024-02-28 16:05:15 -07:00
parent e1151bcb90
commit d10a361165

View file

@ -630,7 +630,7 @@ public class EdMilker {
abort_condition_ = abort_condition; abort_condition_ = abort_condition;
on_target_position_reached_ = on_position_reached; on_target_position_reached_ = on_position_reached;
on_aborted_ = on_aborted; on_aborted_ = on_aborted;
blockPos = new BlockPos(target_pos.x(), target_pos.y(), target_pos.z()); blockPos = new BlockPos((int) target_pos.x(), (int) target_pos.y(), (int) target_pos.z());
tryTicks = 0; tryTicks = 0;
nextStartTick = 0; nextStartTick = 0;
aborted_ = false; aborted_ = false;