mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Final fixes~
This commit is contained in:
parent
ed833be289
commit
5bc747f6aa
2 changed files with 6 additions and 13 deletions
16
build.gradle
16
build.gradle
|
@ -12,7 +12,7 @@ buildscript {
|
|||
}
|
||||
apply plugin: 'net.minecraftforge.gradle.forge'
|
||||
|
||||
version = "1.7.10-r20"
|
||||
version = "1.8.9-r21"
|
||||
group = "de.ellpeck.actuallyadditions"
|
||||
archivesBaseName = "ActuallyAdditions"
|
||||
|
||||
|
@ -21,6 +21,7 @@ minecraft {
|
|||
runDir = "idea"
|
||||
|
||||
mappings = "stable_20"
|
||||
makeObfSourceJar = false
|
||||
|
||||
replaceIn "ModUtil.java"
|
||||
replace "@VERSION@", project.version.toString()
|
||||
|
@ -28,20 +29,14 @@ minecraft {
|
|||
|
||||
repositories {
|
||||
maven {
|
||||
name "Mobius"
|
||||
url "http://mobiusstrip.eu/maven"
|
||||
}
|
||||
maven {
|
||||
name "ChickenBones"
|
||||
url "http://chickenbones.net/maven/"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
//compile "mcp.mobius.waila:Waila:1.5.10_1.7.10"
|
||||
//compile "codechicken:CodeChickenLib:1.7.10-1.1.3.138:dev"
|
||||
//compile "codechicken:CodeChickenCore:1.7.10-1.0.7.46:dev"
|
||||
//compile "codechicken:NotEnoughItems:1.7.10-1.0.5.110:dev"
|
||||
compile "codechicken:CodeChickenLib:1.8-1.1.2.139:dev"
|
||||
compile "codechicken:CodeChickenCore:1.8-1.0.5.36:dev"
|
||||
compile "codechicken:NotEnoughItems:1.8-1.0.5.104:dev"
|
||||
}
|
||||
|
||||
processResources {
|
||||
|
@ -59,7 +54,6 @@ processResources {
|
|||
}
|
||||
}
|
||||
|
||||
// Why is OpenComputers one of the only mods that has a readable build.gradle? (Thank you Sangar!) :D
|
||||
jar {}
|
||||
|
||||
task deobfJar(type: Jar) {
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
|
||||
package de.ellpeck.actuallyadditions.mod.items.base;
|
||||
|
||||
import com.google.common.collect.Sets;
|
||||
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
||||
import de.ellpeck.actuallyadditions.mod.config.ConfigValues;
|
||||
import de.ellpeck.actuallyadditions.mod.creative.CreativeTab;
|
||||
|
@ -49,7 +48,7 @@ public class ItemAllToolAA extends ItemTool{
|
|||
private String repairOredict;
|
||||
|
||||
public ItemAllToolAA(ToolMaterial toolMat, ItemStack repairItem, String unlocalizedName, EnumRarity rarity, int color){
|
||||
super(4.0F, toolMat, Sets.newHashSet());
|
||||
super(4.0F, toolMat, new HashSet<Block>());
|
||||
|
||||
this.repairItem = repairItem;
|
||||
this.name = unlocalizedName;
|
||||
|
|
Loading…
Reference in a new issue