1
0
mirror of https://github.com/minetest/minetest_game.git synced 2024-09-22 20:00:17 +02:00

Make fire hurt the player

This commit is contained in:
PilzAdam 2012-11-25 14:20:09 +01:00
parent 5660c99707
commit 1f6f15059c

View File

@ -12,6 +12,7 @@ minetest.register_node("fire:basic_flame", {
groups = {igniter=2,dig_immediate=3},
drop = '',
walkable = false,
damage_per_second = 4,
})
local fire = {}