5 Commits

Author SHA1 Message Date
849f8f8cd7 Delete depends.txt, update mod.conf 2022-07-08 18:57:14 +02:00
f8441dad81 Merge remote-tracking branch 'upstream/master' 2021-03-12 12:14:32 +01:00
733ce6f46a Fix deprecated call to Minetest settings (#15) 2021-03-04 08:17:30 +01:00
7cf127aa9d Merge branch 'github' 2021-03-03 22:57:00 +01:00
498dadfee6 Fix deprecated call to Minetest settings 2021-03-03 22:56:10 +01:00
3 changed files with 6 additions and 8 deletions

View File

@ -1,6 +0,0 @@
default
pipeworks?
quartz?
technic_worldgen?
wrench?
maptools?

View File

@ -38,7 +38,7 @@ if bitchange.enable_donationbox then
dofile(bitchange.mod_path.."/donationbox.lua")
end
if not minetest.setting_getbool("creative_mode") and bitchange.initial_give > 0 then
if not minetest.settings:get_bool("creative_mode") and bitchange.initial_give > 0 then
-- Giving initial money
minetest.register_on_newplayer(function(player)
player:get_inventory():add_item("main", "bitchange:mineninth "..bitchange.initial_give)

View File

@ -1 +1,5 @@
name = bitchange
title = Bitchange
description = This mod adds the currency "MineCoin" to your Minetest world.
depends = default
optional_depends = pipeworks,quartz,technic_worldgen,wrench,maptools