massively decrease gas spawning chance

master
Thomas Rudin 2020-01-21 18:25:58 +01:00
parent 2b0d52c46b
commit e96c18f710
1 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,8 @@ minetest.register_abm({
"default:stone_with_mese",
"default:mineral_uranium"
},
interval = 10,
chance = 200,
interval = 20,
chance = 2000,
action = function(pos)
minetest.set_node(pos, {name = "radioactive_gas:gas"})
end