1
0
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:
SmallJoker
2017-11-25 11:38:52 +01:00
parent 0fbda6a40f
commit 3f029c82d6
13 changed files with 29 additions and 46 deletions

View File

@ -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"},