forked from mtcontrib/minetest-mod-snow
Don't allow infinite snow.
(This can be manually set for servers.)
This commit is contained in:
parent
7a2b405698
commit
e6f20f5825
@ -95,7 +95,7 @@ of snowblocks (and then use them to water-grief by melting the snow blocks).
|
|||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = 'default:snowblock 3',
|
output = 'default:snowblock 2',
|
||||||
recipe = {
|
recipe = {
|
||||||
'snow:snow_cobble',
|
'snow:snow_cobble',
|
||||||
'snow:snow_cobble'
|
'snow:snow_cobble'
|
||||||
@ -104,14 +104,14 @@ minetest.register_craft({
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
minetest.register_craft({
|
--[[minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = 'default:snowblock 3',
|
output = 'default:snowblock 3',
|
||||||
recipe = {
|
recipe = {
|
||||||
'default:snowblock',
|
'default:snowblock',
|
||||||
'default:snowblock'
|
'default:snowblock'
|
||||||
}
|
}
|
||||||
})
|
})]]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user