Skip to content

Commit

Permalink
preds can no longer mark xenoes as honorable
Browse files Browse the repository at this point in the history
  • Loading branch information
Zonespace27 committed Sep 27, 2023
1 parent a33bb0c commit 5596cfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/cm_preds/yaut_hudprocs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@

var/list/target_list = list()
for(var/mob/living/carbon/target in view(7, usr.client))
if((ishuman_strict(target) || isxeno(target)) && target.stat != DEAD)
if(ishuman_strict(target) && (target.stat != DEAD))
target_list += target

var/mob/living/carbon/T = tgui_input_list(usr, "Target", "Choose a target.", target_list)
Expand Down Expand Up @@ -187,7 +187,7 @@

var/list/target_list = list()
for(var/mob/living/carbon/target in view(7, usr.client))
if((ishuman_strict(target) || isxeno(target)) && target.stat != DEAD)
if(ishuman_strict(target) && (target.stat != DEAD))
if(target.hunter_data.honored)
target_list += target

Expand Down

0 comments on commit 5596cfa

Please sign in to comment.