diff --git a/code/game/objects/items/stacks/sheets/mineral.dm b/code/game/objects/items/stacks/sheets/mineral.dm
index d5719261ec8..e9a129126f5 100644
--- a/code/game/objects/items/stacks/sheets/mineral.dm
+++ b/code/game/objects/items/stacks/sheets/mineral.dm
@@ -68,12 +68,12 @@ var/global/list/datum/stack_recipe/gold_recipes = list ( \
)
var/global/list/datum/stack_recipe/plasma_recipes = list ( \
- new/datum/stack_recipe("plasma door", /obj/structure/mineral_door/transparent/plasma, 10, one_per_turf = 1, on_floor = 1), \
+ new/datum/stack_recipe/p_door("plasma door", /obj/structure/mineral_door/transparent/plasma, 10, one_per_turf = 1, on_floor = 1), \
null, \
- new/datum/stack_recipe("plasma tile", /obj/item/stack/tile/mineral/plasma, 1, 4, 20), \
+ new/datum/stack_recipe/p_tile("plasma tile", /obj/item/stack/tile/mineral/plasma, 1, 4, 20), \
null, \
- new/datum/stack_recipe("Scientist Statue", /obj/structure/statue/plasma/scientist, 5, one_per_turf = 1, on_floor = 1), \
- new/datum/stack_recipe("Xenomorph Statue", /obj/structure/statue/plasma/xeno, 5, one_per_turf = 1, on_floor = 1), \
+ new/datum/stack_recipe/p_scistat("Scientist Statue", /obj/structure/statue/plasma/scientist, 5, one_per_turf = 1, on_floor = 1), \
+ new/datum/stack_recipe/p_xenostat("Xenomorph Statue", /obj/structure/statue/plasma/xeno, 5, one_per_turf = 1, on_floor = 1), \
)
var/global/list/datum/stack_recipe/bananium_recipes = list ( \
diff --git a/code/game/objects/items/stacks/stack_recipe.dm b/code/game/objects/items/stacks/stack_recipe.dm
index 10d06e9741d..e4c6838ffae 100644
--- a/code/game/objects/items/stacks/stack_recipe.dm
+++ b/code/game/objects/items/stacks/stack_recipe.dm
@@ -35,6 +35,35 @@
result.color = S.color
..()
+
+/datum/stack_recipe/p_tile
+/datum/stack_recipe/p_tile/post_build(var/obj/item/stack/S, var/obj/result)
+ var/turf/targ = get_turf(usr)
+ message_admins("[title] made by [key_name_admin(usr)](?) in [ADMIN_COORDJMP(targ)]!",0,1)
+ log_game("[title] made by [key_name_admin(usr)]at [targ.x], [targ.y], [targ.z].")
+ ..()
+
+/datum/stack_recipe/p_door
+/datum/stack_recipe/p_door/post_build(var/obj/item/stack/S, var/obj/result)
+ var/turf/targ = get_turf(usr)
+ message_admins("[title] made by [key_name_admin(usr)](?) in [ADMIN_COORDJMP(targ)]!",0,1)
+ log_game("[title] made by [key_name_admin(usr)] at [targ.x], [targ.y], [targ.z].")
+ ..()
+
+/datum/stack_recipe/p_scistat
+/datum/stack_recipe/p_scistat/post_build(var/obj/item/stack/S, var/obj/result)
+ var/turf/targ = get_turf(usr)
+ message_admins("[title] made by [key_name_admin(usr)](?) in [ADMIN_COORDJMP(targ)]!",0,1)
+ log_game("[title] made by [key_name_admin(usr)] at [targ.x], [targ.y], [targ.z].")
+ ..()
+
+/datum/stack_recipe/p_xenostat
+/datum/stack_recipe/p_xenostat/post_build(var/obj/item/stack/S, var/obj/result)
+ var/turf/targ = get_turf(usr)
+ message_admins("[title] made by [key_name_admin(usr)](?) in [ADMIN_COORDJMP(targ)]!",0,1)
+ log_game("[title] made by [key_name_admin(usr)] at [targ.x], [targ.y], [targ.z].")
+ ..()
+
/datum/stack_recipe/rods
/datum/stack_recipe/rods/post_build(var/obj/item/stack/S, var/obj/result)
if(istype(result, /obj/item/stack/rods))
diff --git a/code/game/objects/items/stacks/tiles/tile_types.dm b/code/game/objects/items/stacks/tiles/tile_types.dm
index 5325fb06b77..aa3f23f99b7 100644
--- a/code/game/objects/items/stacks/tiles/tile_types.dm
+++ b/code/game/objects/items/stacks/tiles/tile_types.dm
@@ -39,6 +39,9 @@
atmos_spawn_air(SPAWN_HEAT | SPAWN_TOXINS, 5)
user.visible_message("[user.name] sets the plasma tiles on fire!", \
"You set the plasma tiles on fire!")
+ message_admins("Plasma tiles ignited by [key_name_admin(user)](?) (FLW) in ([x],[y],[z] - JMP)",0,1)
+ log_game("Plasma tiles ignited by [key_name(user)] in ([x],[y],[z])")
+ investigate_log("was ignited by [key_name(user)]","atmos")
qdel(src)
return