Slight balancing

This commit is contained in:
Anuken 2019-10-27 18:16:41 -04:00
parent 1ec09a4679
commit 685c41ebf5
2 changed files with 2 additions and 2 deletions

View File

@ -796,7 +796,7 @@ public class Blocks implements ContentList{
}};
plastaniumWall = new Wall("plastanium-wall"){{
requirements(Category.defense, ItemStack.with(Items.plastanium, 6, Items.metaglass, 2));
requirements(Category.defense, ItemStack.with(Items.plastanium, 5, Items.metaglass, 2));
health = 190 * wallHealthMultiplier;
insulated = true;
}};

View File

@ -164,7 +164,7 @@ public class Mods implements Loadable{
return requiresReload;
}
/** Loads all mods from the folder, but does call any methods on them.*/
/** Loads all mods from the folder, but does not call any methods on them.*/
public void load(){
for(FileHandle file : modDirectory.list()){
if(!file.extension().equals("jar") && !file.extension().equals("zip") && !(file.isDirectory() && file.child("mod.json").exists())) continue;