Don't allow infinite snow.

(This can be manually set for servers.)
This commit is contained in:
Splizard 2014-06-05 21:10:25 +12:00
parent 7a2b405698
commit e6f20f5825
1 changed files with 3 additions and 3 deletions

View File

@ -95,7 +95,7 @@ of snowblocks (and then use them to water-grief by melting the snow blocks).
minetest.register_craft({
type = "shapeless",
output = 'default:snowblock 3',
output = 'default:snowblock 2',
recipe = {
'snow:snow_cobble',
'snow:snow_cobble'
@ -104,14 +104,14 @@ minetest.register_craft({
minetest.register_craft({
--[[minetest.register_craft({
type = "shapeless",
output = 'default:snowblock 3',
recipe = {
'default:snowblock',
'default:snowblock'
}
})
})]]