Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

examine living #44

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading