mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-03-10 12:49:37 +07:00
Fixed #7887
This commit is contained in:
parent
4c51b97667
commit
afcb187c53
@ -387,6 +387,10 @@ public class Logic implements ApplicationListener{
|
|||||||
while(node != null){
|
while(node != null){
|
||||||
node.content.unlock();
|
node.content.unlock();
|
||||||
node = node.parent;
|
node = node.parent;
|
||||||
|
|
||||||
|
if((node.content instanceof Item item && state.rules.hiddenBuildItems.contains(item))){
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
state.rules.researched.add(u.name);
|
state.rules.researched.add(u.name);
|
||||||
|
@ -25,4 +25,4 @@ org.gradle.caching=true
|
|||||||
#used for slow jitpack builds; TODO see if this actually works
|
#used for slow jitpack builds; TODO see if this actually works
|
||||||
org.gradle.internal.http.socketTimeout=100000
|
org.gradle.internal.http.socketTimeout=100000
|
||||||
org.gradle.internal.http.connectionTimeout=100000
|
org.gradle.internal.http.connectionTimeout=100000
|
||||||
archash=7c34a324fd
|
archash=b32576ca09
|
||||||
|
Loading…
Reference in New Issue
Block a user