diff --git a/code/game/gamemodes/nuclear/nuclearbomb.dm b/code/game/gamemodes/nuclear/nuclearbomb.dm
index 1cc0abe76a..68340a1da3 100644
--- a/code/game/gamemodes/nuclear/nuclearbomb.dm
+++ b/code/game/gamemodes/nuclear/nuclearbomb.dm
@@ -564,12 +564,17 @@ This is here to make the tiles around the station mininuke change when it's arme
user.death(0)
/obj/item/disk/fakenucleardisk
- name = "cheap plastic imitation of the nuclear authentication disk"
- desc = "Broken dreams and a faint odor of cheese."
+ name = "nuclear authentication disk"
+ desc = "Better keep this safe."
icon_state = "nucleardisk"
/obj/item/disk/fakenucleardisk/suicide_act(mob/user)
user.visible_message("[user] is pretending to go delta! It looks like [user.p_theyre()] trying to commit suicide!")
playsound(src, 'sound/machines/alarm.ogg', 30, -1, 1)
addtimer(CALLBACK(src, .proc/manual_suicide, user), 101)
- return MANUAL_SUICIDE
\ No newline at end of file
+ return MANUAL_SUICIDE
+
+/obj/item/disk/fakenucleardisk/examine(mob/user)
+ ..()
+ if(Adjacent(user))
+ to_chat(user, "Wait, this is a fake!")
diff --git a/html/changelogs/AutoChangeLog-pr-4662.yml b/html/changelogs/AutoChangeLog-pr-4662.yml
new file mode 100644
index 0000000000..1214c07d8e
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-4662.yml
@@ -0,0 +1,4 @@
+author: "ShiggyDiggyDo"
+delete-after: True
+changes:
+ - tweak: "Syndicate experts were able to create more sophisticated copies of the nuclear authentication disk. While still unable to detonate the nuclear fission explosive with them, they're practically identical to the real disk if not examined closely."