Skip to content

Commit

Permalink
Don't draw if no intensity to draw
Browse files Browse the repository at this point in the history
  • Loading branch information
MEEPofFaith committed Feb 5, 2025
1 parent 9f07d49 commit 52305ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/moyai/graphics/VineBoomRenderer.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private void update(){
}

private void draw(){
if(Vars.headless) return;
if(Vars.headless || boomIntensity < 0.001f) return;

Draw.draw(Layer.background - 0.1f, () -> {
if(!blur()) return;
Expand Down

0 comments on commit 52305ee

Please sign in to comment.