mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-23 15:20:52 +01:00
Merge branch '595-npe' into 'dev'
fix(WiredEffectMoveFurniTowards): npe See merge request morningstar/Arcturus-Community!141
This commit is contained in:
commit
980cf66815
@ -107,6 +107,10 @@ public class WiredEffectMoveFurniTowards extends InteractionWiredEffect {
|
||||
RoomLayout layout = room.getLayout();
|
||||
boolean collided = false;
|
||||
|
||||
if (layout == null) {
|
||||
break;
|
||||
}
|
||||
|
||||
for (int i = 0; i < 3; i++) {
|
||||
if (target != null)
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user