Skip to content

Commit d8388a4

Browse files
committed
Fix Energizer would not drop in survival and change version to 1.18.2-1.7.8
1 parent 4649d5c commit d8388a4

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id 'net.minecraftforge.gradle' version '5.1.+'
55
}
66

7-
version = '1.18.2-1.7.1'
7+
version = '1.18.2-1.7.8'
88
group = 'me.jddev0.energizedpower' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
99
archivesBaseName = 'energizedpower'
1010

src/main/resources/META-INF/mods.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ modId="energizedpower" #mandatory
1919
# The version number of the mod - there's a few well known ${} variables useable here or just hardcode it
2020
# ${file.jarVersion} will substitute the value of the Implementation-Version as read from the mod's JAR file metadata
2121
# see the associated build.gradle script for how to populate this completely automatically during a build
22-
version="1.18.2-1.7.1" #mandatory
22+
version="1.18.2-1.7.8" #mandatory
2323
# A display name for the mod
2424
displayName="Energized Power" #mandatory
2525
# A URL to query for updates for this mod. See the JSON update specification https://mcforge.readthedocs.io/en/latest/gettingstarted/autoupdate/
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"type": "minecraft:block",
3+
"pools": [
4+
{
5+
"conditions": [
6+
{
7+
"condition": "minecraft:survives_explosion"
8+
}
9+
],
10+
"entries": [
11+
{
12+
"type": "minecraft:item",
13+
"name": "energizedpower:energizer"
14+
}
15+
],
16+
"rolls": 1.0,
17+
"bonus_rolls": 0.0
18+
}
19+
]
20+
}

0 commit comments

Comments
 (0)