Skip to content

Commit

Permalink
remove 400 upper limit for score
Browse files Browse the repository at this point in the history
  • Loading branch information
lazylier committed Jun 15, 2024
1 parent 1f8de26 commit 86aa32a
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions mods/ctf/ctf_modebase/ranking_commands.lua
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,6 @@ minetest.register_chatcommand("donate", {
return false, "You should donate at least 5 score!"
end

if score > 400 then
return false, "You can donate no more than 400 score!"
end

local scoretotal = score * pcount
local cur_score = math.min(
current_mode.recent_rankings.get(name).score or 0,
Expand Down

0 comments on commit 86aa32a

Please sign in to comment.