Skip to content

Commit 4ffea09

Browse files
authored
Soul Glass - change recipe to normal furnace (#1211)
* change recipe to use normal furnace * up module minor version * runcows comments
1 parent 8f9493d commit 4ffea09

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

gm4_soul_glass/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Beacons need a bit more corruption. This data pack reverses their effects<!--$pmc:headerSize-->
44

55
### Features
6-
- Crafted by smelting Soul Sand in a Blast Furnace
6+
- Crafted by smelting Soul Sand in a Furnace
77
- Applies an inverted effect when placed on-top of a Beacon
88
- Beacon power can be disabled by either moving the glass block or turning off the beacon
99
- For example: Speed becomes Slowness, Haste becomes Mining Fatigue

gm4_soul_glass/assets/translations.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ item.gm4.soul_glass,Soul Glass
33
advancement.gm4.soul_glass.title,Corruption at its Finest
44
advancement.gm4.soul_glass.description,Corrupt the effects of a beacon
55
text.gm4.guidebook.module_desc.soul_glass,"Reverse the effects of beacons with corrupting glass! But be careful, a poison Beacon may sound great at first, but is incredibly painful in pratice."
6-
text.gm4.guidebook.soul_glass.description,"Soul Sand can be smelted in a blast furnace to get Soul Glass.\n\nWhen placed directly over a beacon, soul glass will corrupt the effects."
6+
text.gm4.guidebook.soul_glass.description,"Soul Sand can be smelted in a furnace to get Soul Glass.\n\nWhen placed directly over a beacon, soul glass will corrupt the effects."
77
text.gm4.guidebook.soul_glass.usage,If soul glass is moved from its original location it will lose its properties.\n\nThe exception is moving it with a sticky piston up to one block away.
88
text.gm4.guidebook.soul_glass.corrupted_effects,Corrupted Effects:

gm4_soul_glass/beet.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
id: gm4_soul_glass
22
name: Soul Glass
3-
version: 1.5.X
3+
version: 1.6.X
44

55
data_pack:
66
load: .
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Kill old blast furnace markers, remove this later
2-
kill @e[type=marker,tag=gm4_sg_furnace]
1+
schedule function gm4_soul_glass:main 16t
32

43
# process soul glass
54
execute as @e[type=marker,tag=gm4_soul_glass] at @s run function gm4_soul_glass:process
65

7-
schedule function gm4_soul_glass:main 16t
6+
# Kill old blast furnace markers, remove this later
7+
kill @e[type=marker,tag=gm4_sg_furnace]

gm4_soul_glass/data/gm4_soul_glass/guidebook/soul_glass.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
},
5454
{
5555
"translate": "text.gm4.guidebook.soul_glass.description",
56-
"fallback": "Soul Sand can be smelted in a blast furnace to get Soul Glass.\n\nWhen placed directly over a beacon, soul glass will corrupt the effects."
56+
"fallback": "Soul Sand can be smelted in a furnace to get Soul Glass.\n\nWhen placed directly over a beacon, soul glass will corrupt the effects."
5757
}
5858
]
5959
]

gm4_soul_glass/data/gm4_soul_glass/recipe/soul_glass.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"type": "minecraft:blasting",
2+
"type": "minecraft:smelting",
33
"ingredient": "minecraft:soul_sand",
44
"result": {
55
"id": "minecraft:brown_stained_glass",

gm4_soul_glass/data/gm4_soul_glass/test/smelt_soul_glass.mcfunction

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# @dummy ~1.5 ~1 ~0.5
33
# @timeout 900
44

5-
item replace entity @s weapon.mainhand with blast_furnace
5+
item replace entity @s weapon.mainhand with furnace
66
execute at @s run tp @s ~ ~ ~ facing ~ ~-1 ~1
77
dummy @s use block ~1 ~ ~1 up
8-
assert block ~1 ~1 ~1 blast_furnace
8+
assert block ~1 ~1 ~1 furnace
99

1010
item replace block ~1 ~1 ~1 container.0 with soul_sand
1111
item replace block ~1 ~1 ~1 container.1 with coal

0 commit comments

Comments
 (0)