Compare commits

..

No commits in common. "1419e637435b6787953ed31555e353a9d122d0be" and "4b9298c530ba29ba6ed96b578071ab9b8178cb15" have entirely different histories.

7 changed files with 11 additions and 13 deletions

View file

@ -138,7 +138,7 @@ minetest.override_item("ctf_bandages:bandage", {
local diggers = {}
local DIG_COOLDOWN = 30
local DIG_DIST_LIMIT = 50
local DIG_DIST_LIMIT = 30
local DIG_SPEED = 0.1
local function isdiggable(name)

View file

@ -49,7 +49,7 @@ minetest.register_tool("ctf_classes:sword_bronze", {
groupcaps={
snappy={times={[1]=2.5, [2]=1.20, [3]=0.35}, uses=0, maxlevel=2},
},
damage_groups = {fleshy=6, sword=1},
damage_groups = {fleshy=6},
punch_attack_uses = 0,
},
sound = {breaks = "default_tool_breaks"},

View file

@ -124,7 +124,7 @@ ctf.register_on_killedplayer(function(victim, killer, stack, tool_caps)
local victim_color = ctf_colors.get_color(ctf.player(victim))
local killer_color = ctf_colors.get_color(ctf.player(killer))
local type = "sword" -- Also used for unknown attacks
local type = "sword"
if tool_caps.damage_groups.grenade then
type = "grenade"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 161 B

View file

@ -8,7 +8,8 @@ local RESPAWN_MESSAGE = "Respawning in "
minetest.register_on_dieplayer(function(player, reason)
local pname = player:get_player_name()
if ctf_match.is_in_build_time() or ctf_respawn_delay.players[pname] then -- what is dead may never die
if ctf_match.is_in_build_time() or (reason.type == "punch" and reason.object and
reason.object:is_player() and reason.object:get_player_name() == pname) then
return
end

View file

@ -63,10 +63,7 @@ minetest.register_node("ctf_traps:damage_cobble", {
if placerobj then
digger:punch(placerobj, 10, {damage_groups = {fleshy = 7}}, vector.new(0, 1, 0))
else
local hp = digger:get_hp()
if hp > 0 then
digger:set_hp(hp - 7)
end
digger:set_hp(digger:get_hp() - 7)
end
minetest.remove_node(pos)

View file

@ -257,7 +257,7 @@ minetest.register_tool("default:sword_stone", {
groupcaps={
snappy={times={[2]=1.4, [3]=0.40}, uses=20, maxlevel=1},
},
damage_groups = {fleshy=4, sword=1},
damage_groups = {fleshy=4},
},
sound = {breaks = "default_tool_breaks"},
})
@ -271,7 +271,7 @@ minetest.register_tool("default:sword_bronze", {
groupcaps={
snappy={times={[1]=2.75, [2]=1.30, [3]=0.375}, uses=25, maxlevel=2},
},
damage_groups = {fleshy=6, sword=1},
damage_groups = {fleshy=6},
},
sound = {breaks = "default_tool_breaks"},
})
@ -285,7 +285,7 @@ minetest.register_tool("default:sword_steel", {
groupcaps={
snappy={times={[1]=2.5, [2]=1.20, [3]=0.35}, uses=30, maxlevel=2},
},
damage_groups = {fleshy=6, sword=1},
damage_groups = {fleshy=6},
},
sound = {breaks = "default_tool_breaks"},
})
@ -299,7 +299,7 @@ minetest.register_tool("default:sword_mese", {
groupcaps={
snappy={times={[1]=2.0, [2]=1.00, [3]=0.35}, uses=30, maxlevel=3},
},
damage_groups = {fleshy=7, sword=1},
damage_groups = {fleshy=7},
},
sound = {breaks = "default_tool_breaks"},
})
@ -313,7 +313,7 @@ minetest.register_tool("default:sword_diamond", {
groupcaps={
snappy={times={[1]=1.90, [2]=0.90, [3]=0.30}, uses=40, maxlevel=3},
},
damage_groups = {fleshy=8, sword=1},
damage_groups = {fleshy=8},
},
sound = {breaks = "default_tool_breaks"},
})