Implement gold lump drop into nodes.lua

This commit is contained in:
KrzysztofJeszke 2019-04-12 13:33:21 +02:00 committed by GitHub
parent 265130ec72
commit 986dc04215
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,14 +49,14 @@ minetest.register_node("ws_core:stone_with_gold", {
description = "Gold Ore",
tiles = {"ws_stone.png^ws_mineral_gold.png"},
groups = {cracky = 3},
drop = 'ws_core:gold',
drop = 'ws_core:gold_lump',
})
minetest.register_node("ws_core:stone_with_gold_dense", {
description = "Gold Ore",
tiles = {"ws_stone.png^ws_mineral_gold_dense.png"},
groups = {cracky = 3},
drop = 'ws_core:gold 3',
drop = 'ws_core:gold_lump 3',
})
minetest.register_node("ws_core:stone_with_iron", {