diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm
index a14c8420b4..fac6c341df 100644
--- a/code/_helpers/global_lists_vr.dm
+++ b/code/_helpers/global_lists_vr.dm
@@ -978,7 +978,7 @@ var/global/list/selectable_speech_bubbles = list(
"tentacles",
"heart",
"textbox",
- "posessed",
+ "possessed",
"square",
"medical",
"medical_square",
diff --git a/code/game/objects/items/blueprints_vr.dm b/code/game/objects/items/blueprints_vr.dm
index 92231894d9..a9a0159f84 100644
--- a/code/game/objects/items/blueprints_vr.dm
+++ b/code/game/objects/items/blueprints_vr.dm
@@ -241,7 +241,7 @@
/obj/item/areaeditor/blueprints/engineers
name = "writing blueprints"
- desc = "A piece of paper that allows for expansion of the station and creaiton of new areas. There is a \"For Official Use Only\" stamp on it. NOT to be mistaken with the staion blueprints."
+ desc = "A piece of paper that allows for expansion of the station and creation of new areas. There is a \"For Official Use Only\" stamp on it. NOT to be mistaken with the station blueprints."
station_master = 0
uses_charges = 1
can_override = 0
diff --git a/code/game/objects/items/bodybag.dm b/code/game/objects/items/bodybag.dm
index b88785b9fc..d5c77f8ecf 100644
--- a/code/game/objects/items/bodybag.dm
+++ b/code/game/objects/items/bodybag.dm
@@ -128,7 +128,7 @@
/obj/item/bodybag/cryobag
name = "stasis bag"
desc = "A non-reusable plastic bag designed to slow down bodily functions such as circulation and breathing, \
- especially useful if short on time or in a hostile enviroment."
+ especially useful if short on time or in a hostile environment."
icon = 'icons/obj/closets/cryobag.dmi'
icon_state = "bodybag_folded"
item_state = "bodybag_cryo_folded"
diff --git a/code/game/objects/items/devices/gps.dm b/code/game/objects/items/devices/gps.dm
index 980685f124..c7a15cc957 100644
--- a/code/game/objects/items/devices/gps.dm
+++ b/code/game/objects/items/devices/gps.dm
@@ -140,9 +140,9 @@ var/list/GPS_list = list()
toggle_tracking()
if(tracking)
- to_chat(user, "[src] is no longer tracking, or visible to other GPS devices.")
- else
to_chat(user, "[src] is now tracking, and visible to other GPS devices.")
+ else
+ to_chat(user, "[src] is no longer tracking, or visible to other GPS devices.")
/obj/item/device/gps/proc/toggle_tracking()
tracking = !tracking
diff --git a/code/game/objects/items/devices/paicard_ch.dm b/code/game/objects/items/devices/paicard_ch.dm
index b6ce0d69d8..8bb271053c 100644
--- a/code/game/objects/items/devices/paicard_ch.dm
+++ b/code/game/objects/items/devices/paicard_ch.dm
@@ -14,5 +14,5 @@
if("Cancel")
return
else if (istype(W, /obj/item/weapon/card/id) && src.pai.idaccessible == 0)
- to_chat(user, "[src] is not accepting access modifcations at this time.")
+ to_chat(user, "[src] is not accepting access modifications at this time.")
return
\ No newline at end of file
diff --git a/code/modules/mob/living/silicon/pai/pai.dm b/code/modules/mob/living/silicon/pai/pai.dm
index 304f7b234f..5c2d3d0c56 100644
--- a/code/modules/mob/living/silicon/pai/pai.dm
+++ b/code/modules/mob/living/silicon/pai/pai.dm
@@ -500,7 +500,7 @@
if("Cancel")
return
else if (istype(W, /obj/item/weapon/card/id) && idaccessible == 0)
- to_chat(user, "[src] is not accepting access modifcations at this time.")
+ to_chat(user, "[src] is not accepting access modifications at this time.")
return
/mob/living/silicon/pai/verb/allowmodification()
diff --git a/code/modules/mob/living/simple_mob/subtypes/humanoid/posessed_ch.dm b/code/modules/mob/living/simple_mob/subtypes/humanoid/possessed_ch.dm
similarity index 100%
rename from code/modules/mob/living/simple_mob/subtypes/humanoid/posessed_ch.dm
rename to code/modules/mob/living/simple_mob/subtypes/humanoid/possessed_ch.dm
diff --git a/vorestation.dme b/vorestation.dme
index df8cf33d54..c6b9a1880c 100644
--- a/vorestation.dme
+++ b/vorestation.dme
@@ -3312,7 +3312,7 @@
#include "code\modules\mob\living\simple_mob\subtypes\humanoid\humanoid_vr.dm"
#include "code\modules\mob\living\simple_mob\subtypes\humanoid\pirates.dm"
#include "code\modules\mob\living\simple_mob\subtypes\humanoid\pirates_ch.dm"
-#include "code\modules\mob\living\simple_mob\subtypes\humanoid\posessed_ch.dm"
+#include "code\modules\mob\living\simple_mob\subtypes\humanoid\possessed_ch.dm"
#include "code\modules\mob\living\simple_mob\subtypes\humanoid\russian.dm"
#include "code\modules\mob\living\simple_mob\subtypes\humanoid\mercs\mercs.dm"
#include "code\modules\mob\living\simple_mob\subtypes\humanoid\mercs\mercs_ch.dm"