Different block explosion damage formula

This commit is contained in:
Anuken
2023-08-24 15:26:02 -04:00
parent c829f32efa
commit c52b966dea
3 changed files with 4 additions and 3 deletions

View File

@@ -415,7 +415,7 @@ public class MobileInput extends InputHandler implements GestureListener{
//draw last placed plan
if(!plan.breaking && plan == lastPlaced && plan.block != null){
int rot = plan.block.planRotation(rotation);
int rot = plan.block.planRotation(plan.rotation);
boolean valid = validPlace(tile.x, tile.y, plan.block, rot);
Draw.mixcol();
plan.block.drawPlace(tile.x, tile.y, rot, valid);