Merge pull request #3220 from VOREStation/aro-lwnerf

Reduce lightweight trait point return
This commit is contained in:
Aronai Sieyes
2018-03-12 18:38:28 -04:00
committed by GitHub
2 changed files with 3 additions and 3 deletions
@@ -110,7 +110,7 @@
/datum/trait/lightweight
name = "Lightweight"
desc = "Your light weight and poor balance make you very susceptible to unhelpful bumping. Think of it like a bowling ball versus a pin."
cost = -4
cost = -2
var_changes = list("lightweight" = 1)
/datum/trait/colorblind
+2 -2
View File
@@ -137,8 +137,6 @@ default behaviour is:
return
// VOREStation Edit - Begin
// Handle grabbing, stomping, and such of micros!
if(handle_micro_bump_other(tmob)) return
// Plow that nerd.
if(ishuman(tmob))
var/mob/living/carbon/human/H = tmob
@@ -147,6 +145,8 @@ default behaviour is:
H.Weaken(20)
now_pushing = 0
return
// Handle grabbing, stomping, and such of micros!
if(handle_micro_bump_other(tmob)) return
// VOREStation Edit - End
if(istype(tmob, /mob/living/carbon/human) && (FAT in tmob.mutations))