This commit is contained in:
Anuken
2023-06-18 09:06:52 -04:00
parent 7e23272668
commit 54d7f3e17c
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -178,7 +178,7 @@ public class DesktopInput extends InputHandler{
}
linePlans.each(this::drawOverPlan);
}else if(isPlacing()){
int rot = block.planRotation(rotation);
int rot = block == null ? rotation : block.planRotation(rotation);
if(block.rotate && block.drawArrow){
drawArrow(block, cursorX, cursorY, rot);
}