diff --git a/code/modules/antagonists/revolution/revolution.dm b/code/modules/antagonists/revolution/revolution.dm
index c463f52d197..bfdab56924b 100644
--- a/code/modules/antagonists/revolution/revolution.dm
+++ b/code/modules/antagonists/revolution/revolution.dm
@@ -115,7 +115,7 @@
/datum/antagonist/rev/head/proc/admin_take_flash(mob/admin)
var/list/L = owner.current.get_contents()
- var/obj/item/assembly/flash/flash = locate() in L
+ var/obj/item/assembly/flash/handheld/flash = locate() in L
if (!flash)
to_chat(admin, "Deleting flash failed!")
return
@@ -136,7 +136,7 @@
/datum/antagonist/rev/head/proc/admin_repair_flash(mob/admin)
var/list/L = owner.current.get_contents()
- var/obj/item/assembly/flash/flash = locate() in L
+ var/obj/item/assembly/flash/handheld/flash = locate() in L
if (!flash)
to_chat(admin, "Repairing flash failed!")
else