Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions mods/ctf/ctf_map/init.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

if not ctf_core.settings.server_mode or ctf_core.settings.server_mode == "play" then
assert(
minetest.get_mapgen_setting("mg_name") == "singlenode",
Expand Down
1 change: 1 addition & 0 deletions mods/ctf/ctf_map/nodes.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

-- Backwards compat

local S = minetest.get_translator(minetest.get_current_modname())
Expand Down
2 changes: 1 addition & 1 deletion mods/ctf/ctf_modebase/bounties.lua
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function ctf_modebase.bounties.claim(player, killer)
end

local rewards = bounties[pteam].rewards
local bounty_kill_text = S("[Bounty] @1 killed @2 and got @3", killer, player, get_reward_str(rewards))
local bounty_kill_text = S("[Bounty] @1 has slain @2 and got @3", killer, player, get_reward_str(rewards))
minetest.chat_send_all(minetest.colorize(CHAT_COLOR, bounty_kill_text))
ctf_modebase.announce(minetest.get_translated_string("en", bounty_kill_text))

Expand Down