Skip to content

Commit

Permalink
Version A 1.4.6
Browse files Browse the repository at this point in the history
- Added recipe for BeastBossanium Block (No clue how I forgot to do that)
- Changed Starbiomatic Energy Ball texture and animated it
- Reaper was able to be enchanted onto any Digger Item on the table (Fixed)
  • Loading branch information
RealTheBeastBoss committed Mar 3, 2022
1 parent 9e8dcc7 commit 0090214
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apply plugin: 'org.parchmentmc.librarian.forgegradle'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'

version = '1.4.5-A-1.18.1'
version = '1.4.6-A-1.18.1'
group = 'com.tbb.tbbmod' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'tbbmod'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ public void doPostAttack(LivingEntity pAttacker, Entity pTarget, int pLevel) {
}

@Override
public boolean canEnchant(ItemStack pStack) {
return pStack.getItem() instanceof HoeItem;
public boolean canApplyAtEnchantingTable(ItemStack stack) {
return stack.getItem() instanceof HoeItem;
}

@Override
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"animation": {
"frametime": 4,
"interpolate": true,
"frames": [
0,
1,
2,
3
]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"###",
"###",
"###"
],
"key": {
"#": {
"item": "tbbmod:beastbossanium_ingot"
}
},
"result": {
"item": "tbbmod:beastbossanium_block"
}
}

0 comments on commit 0090214

Please sign in to comment.