Fix and rebalance a lil

This commit is contained in:
Artur
2020-02-01 14:11:34 +01:00
parent d3a9a481a6
commit 11fea908bd
2 changed files with 2 additions and 4 deletions
@@ -81,7 +81,7 @@
"<span class = 'announce'>The solar flare has ended, and the daylight danger has passed...for now.</span>")
amDay = FALSE
day_end() // Remove VANISHING ACT power from all vamps who have it! Clear Warnings (sunlight, locker protection)
nightime_duration += 200 //Each day makes the night last 2 or so minutes longer.
nightime_duration += 100 //Each day makes the night a minute longer.
message_admins("BLOODSUCKER NOTICE: Daylight Ended. Resetting to Night (Lasts for [nightime_duration / 60] minutes.)")
@@ -28,7 +28,7 @@
return TRUE
/datum/action/bloodsucker/targeted/lunge/CheckValidTarget(atom/A)
return isliving(A)
return iscarbon(A)
/datum/action/bloodsucker/targeted/lunge/CheckCanTarget(atom/A, display_error)
// Check: Self
@@ -46,8 +46,6 @@
var/mob/living/L = A
if(!isturf(L.loc))
return FALSE
if(!ishuman(target))
return FALSE
return TRUE
/datum/action/bloodsucker/targeted/lunge/FireTargetedPower(atom/A)