Water Extractor: Use metaglass to be consistent with pumps

This commit is contained in:
Anuken
2021-02-21 08:53:47 -05:00
parent a3bf39d86b
commit 0d287e6d59
3 changed files with 3 additions and 4 deletions

View File

@@ -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();
}