mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-08-26 13:36:48 +01:00
Merge pull request #3220 from VOREStation/aro-lwnerf
Reduce lightweight trait point return
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user