mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-03-13 19:39:04 +07:00
Fixed #4222
This commit is contained in:
parent
0374ec5e4a
commit
a9c4ccdf48
@ -167,6 +167,16 @@ public class StackConveyor extends Block implements Autotiler{
|
||||
}
|
||||
}
|
||||
|
||||
//cannot load when facing
|
||||
if(state == stateLoad){
|
||||
for(Building near : proximity){
|
||||
if(near instanceof StackConveyorBuild && near.front() == this){
|
||||
state = stateMove;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//update other conveyor state when this conveyor's state changes
|
||||
if(state != lastState){
|
||||
proxUpdating = true;
|
||||
|
@ -1,3 +1,3 @@
|
||||
org.gradle.daemon=true
|
||||
org.gradle.jvmargs=-Xms256m -Xmx1024m
|
||||
archash=47b5f71c468d3cec66b6721aeb7f7602ddb468d7
|
||||
archash=e77f5b14f5d621df62c7739854468ddae0c6c7ea
|
||||
|
Loading…
Reference in New Issue
Block a user