mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-01-28 07:22:21 -08:00
Fixed #9208
This commit is contained in:
parent
12769dd52b
commit
a0a0b5942e
1 changed files with 3 additions and 1 deletions
|
|
@ -185,7 +185,9 @@ public class Renderer implements ApplicationListener{
|
|||
if(landTime > 0){
|
||||
if(!state.isPaused()){
|
||||
CoreBuild build = landCore == null ? player.bestCore() : landCore;
|
||||
build.updateLandParticles();
|
||||
if(build != null){
|
||||
build.updateLandParticles();
|
||||
}
|
||||
}
|
||||
|
||||
if(!state.isPaused()){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue