Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Tsar-Salat committed Dec 21, 2023
1 parent 3abb836 commit 55e0d46
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 0 additions & 1 deletion code/_onclick/other_mobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
Otherwise pretty standard.
*/
/mob/living/carbon/human/UnarmedAttack(atom/A, proximity)

if(!has_active_hand()) //can't attack without a hand.
var/obj/item/bodypart/check_arm = get_active_hand()
if(check_arm?.bodypart_disabled)
Expand Down
2 changes: 1 addition & 1 deletion code/datums/brain_damage/severe.dm
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
lose_text = ""
var/paralysis_type
var/list/paralysis_traits = list()
//for descriptions
//for descriptions

/datum/brain_trauma/severe/paralysis/New(specific_type)
if(specific_type)
Expand Down
8 changes: 5 additions & 3 deletions code/modules/surgery/bodyparts/bodyparts.dm
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,10 @@
var/mutation_color = ""
var/no_update = 0

var/animal_origin = null //for nonhuman bodypart (e.g. monkey)
var/dismemberable = 1 //whether it can be dismembered with a weapon.
//for nonhuman bodypart (e.g. monkey)
var/animal_origin = null
///whether it can be dismembered with a weapon.
var/dismemberable = 1

var/px_x = 0
var/px_y = 0
Expand Down Expand Up @@ -338,7 +340,7 @@
INVOKE_ASYNC(owner, TYPE_PROC_REF(/mob, emote), "scream")
last_maxed = TRUE
*/
set_disabled(TRUE)
set_disabled(FALSE)
return

/* WOUNDS
Expand Down

0 comments on commit 55e0d46

Please sign in to comment.