Skip to content

Commit

Permalink
2 bugs (#644)
Browse files Browse the repository at this point in the history
* fix ipcs

* fix die of fate
  • Loading branch information
Kapu1178 authored Oct 8, 2023
1 parent 4678236 commit 3752056
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/awaymissions/mission_code/Academy.dm
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@
//Destroy Equipment
T.visible_message(span_userdanger("Everything [user] is holding and wearing disappears!"))
for(var/obj/item/I in user)
if(istype(I, /obj/item/implant))
if(istype(I, /obj/item/implant) || (I.item_flags & ABSTRACT))
continue
qdel(I)
if(5)
Expand Down
2 changes: 2 additions & 0 deletions code/modules/mob/living/brain/posibrain/posibrain.dm
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ GLOBAL_VAR(posibrain_notify_cooldown)
slot = ORGAN_SLOT_POSIBRAIN
organ_flags = ORGAN_SYNTHETIC

organ_traits = list(TRAIT_ADVANCEDTOOLUSER, TRAIT_LITERATE, TRAIT_CAN_STRIP)

maxHealth = 90
low_threshold = 0.33
high_threshold = 0.66
Expand Down

0 comments on commit 3752056

Please sign in to comment.