Skip to content

Commit fc2f190

Browse files
committed
Don't oredict when we don't need to, also stop bolts being used as arrows.
Unfortunately this also breaks Crossbows more, but they weren't that useful right now anyway.
1 parent 04a813a commit fc2f190

20 files changed

+22
-45
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,4 @@ run
2323

2424
/README.txt
2525
/forge-*-changelog.txt
26-
# /gradlew
27-
# /gradlew.bat
2826
gradle.properties

CHANGELOG.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
1) Disabled Recipes for Fishing Rod, Crossbow, Horse Armor & Bolts (They're all pretty buggy currently)
2-
2) Enabled Bows & Arrows (Textures arn't 100% and there are issues, but they're not major ones)
3-
3) Added Remaining Textures
1+
1) Quick fix for bolts being useable as arrows.

build.gradle

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,21 +37,21 @@ allprojects {
3737
targetCompatibility = 1.8
3838
}
3939

40-
version = "0.9.2"
40+
version = "0.9.2.1"
4141
group= "modernmetals" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
4242
archivesBaseName = "ModernMetals"
4343

4444
minecraft {
4545
version = "1.9-12.16.0.1865-1.9"
4646
runDir = "run"
47-
mappings = "snapshot_20160424"
47+
mappings = "snapshot_20160425"
4848
// makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable.
4949
}
5050

5151
dependencies {
5252
compile files(
53-
'libs/BaseMetals_1.9-API-2.2.0.jar',
54-
'libs/PowerAdvantage_1.9.0-API-2.1.0.jar',
53+
'lib/BaseMetals/BaseMetals_1.9-API-2.2.1.jar',
54+
'lib/PowerAdvantage/PowerAdvantage_1.9.0-API-2.1.0.jar',
5555
)
5656
}
5757

@@ -80,13 +80,19 @@ task apiJar(type: Jar) {
8080
from apiClasses
8181
}
8282

83+
task deobfJar(type: Jar) {
84+
from(sourceSets.main.output) {
85+
classifier = "deobf"
86+
}
87+
}
8388
task javadocJar(type: Jar) {
8489
classifier = 'javadoc'
8590
from javadoc
8691
}
8792

8893
artifacts {
8994
// archives apiJar
95+
archives deobfJar
9096
archives javadocJar
9197
}
9298

3.24 MB
Binary file not shown.
351 KB
Binary file not shown.
586 KB
Binary file not shown.
File renamed without changes.

0 commit comments

Comments
 (0)