mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-12-06 02:40:23 -08:00
Fixed mixtech vault item dupe
This commit is contained in:
parent
46fcd7b84a
commit
f7b13b7924
2 changed files with 2 additions and 2 deletions
|
|
@ -112,7 +112,7 @@ public class StorageBlock extends Block{
|
||||||
//only add prev items when core is not linked
|
//only add prev items when core is not linked
|
||||||
if(linkedCore == null){
|
if(linkedCore == null){
|
||||||
for(Building other : previous){
|
for(Building other : previous){
|
||||||
if(other.items != null && other.items != items){
|
if(other.items != null && other.items != items && !(other instanceof StorageBuild b && b.linkedCore != null)){
|
||||||
items.add(other.items);
|
items.add(other.items);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -26,4 +26,4 @@ org.gradle.caching=true
|
||||||
org.gradle.internal.http.socketTimeout=100000
|
org.gradle.internal.http.socketTimeout=100000
|
||||||
org.gradle.internal.http.connectionTimeout=100000
|
org.gradle.internal.http.connectionTimeout=100000
|
||||||
android.enableR8.fullMode=false
|
android.enableR8.fullMode=false
|
||||||
archash=deacd9c98e
|
archash=fc46b1cb55
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue