mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-02-04 16:09:23 +07:00
Water Extractor: Use metaglass to be consistent with pumps
This commit is contained in:
parent
a3bf39d86b
commit
0d287e6d59
@ -1285,7 +1285,7 @@ public class Blocks implements ContentList{
|
||||
}};
|
||||
|
||||
waterExtractor = new SolidPump("water-extractor"){{
|
||||
requirements(Category.production, with(Items.copper, 30, Items.graphite, 30, Items.lead, 30));
|
||||
requirements(Category.production, with(Items.metaglass, 30, Items.graphite, 30, Items.lead, 30));
|
||||
result = Liquids.water;
|
||||
pumpAmount = 0.11f;
|
||||
size = 2;
|
||||
|
@ -64,8 +64,7 @@ public class DesktopLauncher extends ClientLauncher{
|
||||
|
||||
if(useSteam){
|
||||
//delete leftover dlls
|
||||
Fi file = new Fi(".");
|
||||
for(Fi other : file.parent().list()){
|
||||
for(Fi other : new Fi(".").parent().list()){
|
||||
if(other.name().contains("steam") && (other.extension().equals("dll") || other.extension().equals("so") || other.extension().equals("dylib"))){
|
||||
other.delete();
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
org.gradle.daemon=true
|
||||
org.gradle.jvmargs=-Xms256m -Xmx1024m
|
||||
archash=1d7c415cd528ee0148fa2f498fcb1ec563528825
|
||||
archash=7e4bc7e1c7c25bdf4321a22356f6ddb1943f6d60
|
||||
|
Loading…
Reference in New Issue
Block a user