Slight balancing
This commit is contained in:
@@ -796,7 +796,7 @@ public class Blocks implements ContentList{
|
|||||||
}};
|
}};
|
||||||
|
|
||||||
plastaniumWall = new Wall("plastanium-wall"){{
|
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;
|
health = 190 * wallHealthMultiplier;
|
||||||
insulated = true;
|
insulated = true;
|
||||||
}};
|
}};
|
||||||
|
|||||||
@@ -164,7 +164,7 @@ public class Mods implements Loadable{
|
|||||||
return requiresReload;
|
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(){
|
public void load(){
|
||||||
for(FileHandle file : modDirectory.list()){
|
for(FileHandle file : modDirectory.list()){
|
||||||
if(!file.extension().equals("jar") && !file.extension().equals("zip") && !(file.isDirectory() && file.child("mod.json").exists())) continue;
|
if(!file.extension().equals("jar") && !file.extension().equals("zip") && !(file.isDirectory() && file.child("mod.json").exists())) continue;
|
||||||
|
|||||||
Reference in New Issue
Block a user