mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-06-28 06:11:47 +02:00
Modifications for sprint and moretrees
- Moretrees' leaves aren't walkable anymore - Adding the snore sound in default - Adding snore sound's play when stamina has run out (on both e and w sprint) - I don't know why mud mods/snow/config.txt has been modified
This commit is contained in:
@ -90,8 +90,8 @@ minetest.register_globalstep(function(dtime)
|
||||
if playerInfo["stamina"] <= 0 then
|
||||
playerInfo["stamina"] = 0
|
||||
setSprinting(playerName, false)
|
||||
minetest.chat_send_player(playerName, "Votre sprint s'arrete, plus d'endurance ! Your sprint stamina has run out !")
|
||||
playerInfo["timeOut"] = 1
|
||||
minetest.sound_play("default_snore",{object=player})
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -89,6 +89,7 @@ minetest.register_globalstep(function(dtime)
|
||||
if playerInfo["stamina"] <= 0 then
|
||||
playerInfo["stamina"] = 0
|
||||
setState(playerName, 0)
|
||||
minetest.sound_play("default_snore",{object=player})
|
||||
end
|
||||
|
||||
--Increase player's stamina if he/she is not sprinting and his/her stamina is less than SPRINT_STAMINA
|
||||
|
Reference in New Issue
Block a user