mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-11 04:50:17 +01:00
fix crash si class on_update() not defined
fix wrong stamina value to hunter remove old call of function, moved to assign api
This commit is contained in:
parent
c9b5199e97
commit
8d2683b94b
|
@ -14,6 +14,9 @@ pclasses.api.register_class("admin", {
|
|||
end,
|
||||
on_unassigned = function(pname)
|
||||
end,
|
||||
on_update = function(pname)
|
||||
-- No specific armor changes, no code
|
||||
end,
|
||||
switch_params = {
|
||||
color = {r = 255, g = 00, b = 224},
|
||||
holo_item = "maptools:pick_admin"
|
||||
|
|
|
@ -14,11 +14,11 @@ pclasses.api.register_class("hunter", {
|
|||
minetest.chat_send_player(pname, "You are now a hunter")
|
||||
minetest.sound_play("pclasses_full_hunter", {to_player=pname, gain=1})
|
||||
end
|
||||
sprint.increase_maxstamina(pname, 10)
|
||||
sprint.increase_maxstamina(pname, 20)
|
||||
minetest.log("action", "[PClasses] Player " .. pname .. " become a hunter")
|
||||
end,
|
||||
on_unassigned = function(pname)
|
||||
sprint.decrease_maxstamina(pname, 10)
|
||||
sprint.decrease_maxstamina(pname, 20)
|
||||
if tmp[pname] then
|
||||
sprint.decrease_maxstamina(pname, 10)
|
||||
tmp[pname] = nil
|
||||
|
|
|
@ -12,7 +12,6 @@ pclasses.api.register_class("adventurer", {
|
|||
if inform then
|
||||
minetest.chat_send_player(pname, "You are now an adventurer")
|
||||
end
|
||||
pclasses.api.util.on_update(pname)
|
||||
end,
|
||||
on_unassigned = function(pname)
|
||||
end,
|
||||
|
|
Loading…
Reference in New Issue
Block a user