Skip to content

Commit

Permalink
Merge pull request CeladonSS13#44 from xhankaishi/examine_d_r
Browse files Browse the repository at this point in the history
examine living
  • Loading branch information
MysticalFaceLesS authored Apr 21, 2024
2 parents a0e4908 + 08448c8 commit d0c898b
Show file tree
Hide file tree
Showing 5 changed files with 430 additions and 0 deletions.
3 changes: 3 additions & 0 deletions code/modules/mob/living/carbon/human/examine.dm
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*
/mob/living/carbon/human/examine(mob/user, distance)
. = TRUE
var/skipgloves = 0
Expand Down Expand Up @@ -116,6 +117,7 @@
msg += "[p_they(TRUE)] [p_have()] [r_ear.get_examine_line(user)] on [p_their()] right ear.\n"
//ID
if(wear_id)
msg += "[p_they(TRUE)] [p_are()] wearing [wear_id.get_examine_line(user)].\n"
Expand Down Expand Up @@ -404,3 +406,4 @@
HTML +="<a href='?src=\ref[src];flavor_change=done'>\[Done\]</a>"
HTML += "<tt>"
show_browser(src, jointext(HTML,null), "window=flavor_changes;size=430x300")
*/
16 changes: 16 additions & 0 deletions mod_celadon/human_examine/_human_examine.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/datum/modpack/human_examine
/// A string name for the modpack. Used for looking up other modpacks in init.
name = "human_examine"
/// A string desc for the modpack. Can be used for modpack verb list as description.
desc = "добавлена работа и класс в строку карты при экзамайне"
/// A string with authors of this modpack.
author = "XAH"

/datum/modpack/human_examine/pre_initialize()
. = ..()

/datum/modpack/human_examine/initialize()
. = ..()

/datum/modpack/human_examine/post_initialize()
. = ..()
3 changes: 3 additions & 0 deletions mod_celadon/human_examine/_human_examine.dme
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#include "_human_examine.dm"

#include "code/human_examine.dm"
Loading

0 comments on commit d0c898b

Please sign in to comment.