This commit is contained in:
kevinz000
2020-01-10 13:28:56 -08:00
parent f1a4956afc
commit c0274b1bc6
8 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -60,14 +60,14 @@
/mob/proc/blur_eyes(amount)
if(amount>0)
eye_blurry = max(amount, eye_blurry)
update_eye_blur()
update_eyeblur()
/**
* Adjust the current blurriness of the mobs vision by amount
*/
/mob/proc/adjust_blurriness(amount)
eye_blurry = max(eye_blurry+amount, 0)
update_eye_blur()
update_eyeblur()
///Set the mobs blurriness of vision to an amount
/mob/proc/set_blurriness(amount)