mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-25 09:31:13 +00:00
No more negative frenzy. LIs restrict social abilities (presence and dominate). Also adds a notify parameter to vampire_can_effect_target. This way, the vamp doesn't get notifications in passive loops, such as Presence.
This commit is contained in:
@@ -33,3 +33,10 @@
|
||||
|
||||
if (power.helptext)
|
||||
vampire.current << "<font color='green'>[power.helptext]</font>"
|
||||
|
||||
// Proc to safely remove blood, without resulting in negative amounts of blood.
|
||||
/datum/vampire/proc/use_blood(var/blood_to_use)
|
||||
if (!blood_to_use || blood_to_use <= 0)
|
||||
return
|
||||
|
||||
blood_usable = max(0, blood_usable - blood_to_use)
|
||||
|
||||
Reference in New Issue
Block a user