Skip to content

Commit

Permalink
yeah (#11765)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tsar-Salat authored Oct 28, 2024
1 parent 184b6fb commit d23c369
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions code/__DEFINES/is_helpers.dm
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ GLOBAL_LIST_INIT(turfs_without_ground, typecacheof(list(
//Human sub-species
#define isabductor(A) (is_species(A, /datum/species/abductor))
#define isgolem(A) (is_species(A, /datum/species/golem))
#define isashwalker(A) (is_species(A, /datum/species/lizard/ashwalker))
#define islizard(A) (is_species(A, /datum/species/lizard))
#define isplasmaman(A) (is_species(A, /datum/species/plasmaman))
#define isdiona(A) (is_species(A, /datum/species/diona))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
if(H.dna?.species)
if(isabductor(H))
return 8000
if(isgolem(H) || iszombie(H))
if(isgolem(H) || iszombie(H) || isashwalker(H))
return 4000
if(isslimeperson(H) || isluminescent(H) || isstargazer(H) || isdiona(H))
return 3000
Expand Down

0 comments on commit d23c369

Please sign in to comment.