Compare commits
4 commits
c0abdb245b
...
9de5000fb8
Author | SHA1 | Date | |
---|---|---|---|
|
9de5000fb8 | ||
|
9e20609ed6 | ||
|
0282bce349 | ||
|
e9487c6bde |
2 changed files with 6 additions and 1 deletions
|
@ -49,7 +49,7 @@ local function check_grapple(itemname)
|
|||
on_use = function(itemstack, user, ...)
|
||||
if not ctf_classes.get(user).properties.allow_grapples then
|
||||
minetest.chat_send_player(user:get_player_name(),
|
||||
"Your class can't use that weapon! Change your class at spawn")
|
||||
"Your class can't use that weapon! Change your class at base")
|
||||
|
||||
return itemstack
|
||||
end
|
||||
|
|
|
@ -246,6 +246,11 @@ minetest.register_chatcommand("makepro", {
|
|||
modified = true
|
||||
end
|
||||
|
||||
if stats.captures < 10 then
|
||||
stats.captures = 10
|
||||
modified = true
|
||||
end
|
||||
|
||||
if modified then
|
||||
ctf_stats.request_save()
|
||||
return true, "Made " .. param .. " a pro!"
|
||||
|
|
Loading…
Reference in a new issue