mirror of
https://codeberg.org/usrib/emeraldbank.git
synced 2024-12-22 22:22:25 +01:00
enderman cant take and old shops drops as var
This commit is contained in:
parent
880f9e8b96
commit
f212bcb1a2
2
bank.lua
2
bank.lua
@ -85,7 +85,7 @@ core.register_node("emeraldbank:bank", {
|
||||
"default_steel_block.png^mcl_core_emerald.png"
|
||||
},
|
||||
stack_max = 64,
|
||||
groups = {pickaxey=1, handy=1, building_block=1, enderman_takable=1},
|
||||
groups = {pickaxey=1, handy=1, building_block=1},
|
||||
sounds = mcl_sounds.node_sound_metal_defaults(),
|
||||
_mcl_blast_resistance = 5,
|
||||
_mcl_hardness = 1,
|
||||
|
7
shop.lua
7
shop.lua
@ -213,8 +213,9 @@ core.register_node("emeraldbank:shop", {
|
||||
"default_tree.png^mcl_core_emerald.png"
|
||||
},
|
||||
stack_max = 64,
|
||||
groups = {axey=1, handy=1, building_block=1, enderman_takable=1},
|
||||
groups = {axey=1, handy=1, building_block=1},
|
||||
sounds = mcl_sounds.node_sound_wood_defaults(),
|
||||
drop = emeraldbank.shop_drop,
|
||||
_mcl_blast_resistance = 5,
|
||||
_mcl_hardness = 1,
|
||||
|
||||
@ -239,9 +240,9 @@ core.register_node("emeraldbank:shop_empty", {
|
||||
"default_tree.png^mcl_core_emerald.png^mcl_core_barrier.png"
|
||||
},
|
||||
stack_max = 64,
|
||||
groups = {axey=1, handy=1, building_block=1, enderman_takable=1, not_in_creative_inventory=1},
|
||||
groups = {axey=1, handy=1, building_block=1, not_in_creative_inventory=1},
|
||||
sounds = mcl_sounds.node_sound_wood_defaults(),
|
||||
drop = "emeraldbank:shop",
|
||||
drop = emeraldbank.shop_empty_drop,
|
||||
_mcl_blast_resistance = 5,
|
||||
_mcl_hardness = 1,
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user