Skip to content

Commit

Permalink
Правки от Фурриора
Browse files Browse the repository at this point in the history
  • Loading branch information
PhantornRU committed Mar 5, 2024
1 parent da00413 commit 86cb113
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion modular_ss220/species/code/mob/living/carbon/brain/MMI.dm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/obj/item/mmi/attackby(obj/item/O as obj, mob/user as mob, params)
if(istype(O, /obj/item/organ/internal/brain/crystal))
to_chat(user, "<span class='warning'> Этот причудливо сформированный мозг не взаимодействует с [src].</span>")
to_chat(user, span_warning("Этот причудливо сформированный мозг не взаимодействует с [src]."))
return
. = ..()
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,15 @@
if(MATERIAL_CLASS_NONE)
return FALSE
if(MATERIAL_CLASS_CLOTH)
if(!ismoth(target))
return FALSE
return ismoth(target)
if(MATERIAL_CLASS_TECH)
if(!isvox(target))
return FALSE
return isvox(target)
if(MATERIAL_CLASS_SOAP)
if(!isdrask(target))
return FALSE
return isdrask(target)
if(MATERIAL_CLASS_PLASMA)
if(!isplasmaman(target))
return FALSE
return splasmaman(target)

Check failure on line 35 in modular_ss220/species/code/mob/living/carbon/human/eat/eat_items.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined proc: "splasmaman" on /obj/item
if(MATERIAL_CLASS_RAD)
if(!isnucleation(target))
return FALSE
return isnucleation(target)
if(is_only_grab_intent && user.a_intent != INTENT_GRAB)
return FALSE
return TRUE
Expand Down

0 comments on commit 86cb113

Please sign in to comment.