diff --git a/code/modules/nifsoft/nif.dm b/code/modules/nifsoft/nif.dm
index 81d9228bca..dd1ca079c4 100644
--- a/code/modules/nifsoft/nif.dm
+++ b/code/modules/nifsoft/nif.dm
@@ -15,7 +15,7 @@ You can also set the stat of a NIF to NIF_TEMPFAIL without any issues to disable
//Nanotech Implant Foundation
/obj/item/device/nif
name = "nanite implant framework"
- desc = "A somewhat diminished knockoff of a Kitsuhana nano working surface, in a box. Can print new \
+ desc = "A somewhat diminished knockoff of a Vey-Med nano working surface, in a box. Can print new \
implants inside living hosts on the fly based on software uploads. Must be surgically \
implanted in the head to work. May eventually wear out and break."
@@ -33,7 +33,7 @@ You can also set the stat of a NIF to NIF_TEMPFAIL without any issues to disable
var/tmp/list/nifsofts_life = list() // Ones that want to be talked to on life()
var/owner // Owner character name
var/examine_msg //Message shown on examine.
-
+
var/tmp/vision_flags = 0 // Flags implants set for faster lookups
var/tmp/health_flags = 0
var/tmp/combat_flags = 0
@@ -72,9 +72,9 @@ You can also set the stat of a NIF to NIF_TEMPFAIL without any issues to disable
//Put loaded data here if we loaded any
save_data = islist(load_data) ? load_data.Copy() : list()
var/saved_examine_msg = save_data["examine_msg"]
-
+
//If it's an empty string, they want it blank. If null, it's never been saved, give default.
- if(isnull(saved_examine_msg))
+ if(isnull(saved_examine_msg))
saved_examine_msg = "There's a certain spark to their eyes."
examine_msg = saved_examine_msg
@@ -114,7 +114,7 @@ You can also set the stat of a NIF to NIF_TEMPFAIL without any issues to disable
var/obj/item/organ/brain = H.internal_organs_by_name[O_BRAIN]
if(istype(brain))
should_be_in = brain.parent_organ
-
+
if(istype(H) && !H.nif && H.species && (loc == H.get_organ(should_be_in)))
if(!bioadap && (H.species.flags & NO_SCAN)) //NO_SCAN is the default 'too complicated' flag
return FALSE
@@ -135,7 +135,7 @@ You can also set the stat of a NIF to NIF_TEMPFAIL without any issues to disable
var/obj/item/organ/brain = H.internal_organs_by_name[O_BRAIN]
if(istype(brain))
should_be_in = brain.parent_organ
-
+
parent = H.get_organ(should_be_in)
//Ok, nevermind then!
if(!istype(parent))
@@ -559,9 +559,9 @@ You can also set the stat of a NIF to NIF_TEMPFAIL without any issues to disable
durability = 10
/obj/item/device/nif/authentic
- name = "\improper Kitsuhana NIF"
- desc = "An actual Kitsuhana working surface, in a box. From a society slightly less afraid \
- of self-replicating nanotechnology. Basically just a high-endurance NIF."
+ name = "\improper Vey-Med NIF"
+ desc = "An actual Vey-Med working surface, in a box. They are said to have been stolen \
+ from an internal company shipment. Basically just a high-endurance NIF."
durability = 1000
/obj/item/device/nif/bioadap
diff --git a/code/modules/resleeving/documents.dm b/code/modules/resleeving/documents.dm
index 8b917df9d3..080160fce3 100644
--- a/code/modules/resleeving/documents.dm
+++ b/code/modules/resleeving/documents.dm
@@ -27,7 +27,7 @@