mirror of
https://github.com/SmallJoker/bitchange.git
synced 2025-07-20 09:00:24 +02:00
No ore generation by default, remove Coin base
Shop: limit title length to 80 characters Do not list ore nodes in creative inventory 10 MineNinths for a new player on start (previously 2) Replace bitchange privilege with protection_bypass Revert to classic 16px shop texture & run OptiPNG
This commit is contained in:
@ -1,9 +1,8 @@
|
||||
--Created by Krock
|
||||
--License: WTFPL
|
||||
-- Conversion of other ores to money
|
||||
|
||||
if bitchange.use_moreores_tin and minetest.get_modpath("moreores") then
|
||||
minetest.register_craft({
|
||||
output = "bitchange:coinbase 18",
|
||||
output = "bitchange:mineninth 18",
|
||||
recipe = {
|
||||
{"moreores:tin_block", "default:pick_diamond"},
|
||||
{"moreores:tin_block", ""}
|
||||
@ -14,7 +13,7 @@ end
|
||||
|
||||
if bitchange.use_technic_zinc and minetest.get_modpath("technic_worldgen") then
|
||||
minetest.register_craft({
|
||||
output = "bitchange:coinbase 8",
|
||||
output = "bitchange:mineninth 8",
|
||||
recipe = {
|
||||
{"technic:zinc_block", "default:pick_diamond"},
|
||||
{"technic:zinc_block", ""}
|
||||
@ -25,7 +24,7 @@ end
|
||||
|
||||
if bitchange.use_quartz and minetest.get_modpath("quartz") then
|
||||
minetest.register_craft({
|
||||
output = "bitchange:coinbase",
|
||||
output = "bitchange:mineninth",
|
||||
recipe = {
|
||||
{"quartz:quartz_crystal", "default:pick_diamond"},
|
||||
{"quartz:quartz_crystal", "quartz:quartz_crystal"},
|
||||
|
Reference in New Issue
Block a user