mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-01-24 21:41:25 -08:00
Fixed #11422
This commit is contained in:
parent
9d157976db
commit
3e29667f90
1 changed files with 1 additions and 1 deletions
|
|
@ -53,7 +53,7 @@ public class Puddles{
|
|||
return;
|
||||
}
|
||||
|
||||
if(tile.floor().isLiquid && !canStayOn(liquid, tile.floor().liquidDrop)){
|
||||
if(tile.floor().isLiquid && tile.floor().liquidDrop != null && !canStayOn(liquid, tile.floor().liquidDrop)){
|
||||
reactPuddle(tile.floor().liquidDrop, liquid, amount, tile, ax, ay);
|
||||
|
||||
Puddle p = get(tile);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue