mirror of
https://github.com/ElCeejo/animalia.git
synced 2025-04-30 13:31:39 -04:00
Merge d099d55d98
into 259e741282
This commit is contained in:
commit
d19b1583e6
2 changed files with 3 additions and 3 deletions
|
@ -594,12 +594,12 @@ function animalia.random_sound(self)
|
|||
end
|
||||
end
|
||||
|
||||
function animalia.add_trust(self, player, amount)
|
||||
function animalia.add_trust(self, player, amount, max)
|
||||
if self.trust_cooldown > 0 then return end
|
||||
self.trust_cooldown = 60
|
||||
local plyr_name = player:get_player_name()
|
||||
local trust = self.trust[plyr_name] or 0
|
||||
if trust > 4 then return end
|
||||
if trust >= (max or 5) then return end
|
||||
self.trust[plyr_name] = trust + (amount or 1)
|
||||
self:memorize("trust", self.trust)
|
||||
end
|
||||
|
|
|
@ -636,7 +636,7 @@ function animalia.action_play(self, target)
|
|||
|
||||
if stage == 2
|
||||
and dist < mob.width + 1 then
|
||||
animalia.add_trust(mob, target, 1)
|
||||
animalia.add_trust(mob, target, 1, 10)
|
||||
|
||||
stage = 3
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue