diff --git a/code/modules/power/cell.dm b/code/modules/power/cell.dm index e2e97437b68..8a363e69808 100644 --- a/code/modules/power/cell.dm +++ b/code/modules/power/cell.dm @@ -80,7 +80,7 @@ to_chat(user, "You inject the solution into the power cell.") - if(S.reagents.has_reagent("plasma", 5)) + if(S.reagents.has_reagent("plasma", 5) || S.reagents.has_reagent("plasma_dust", 5)) rigged = 1 diff --git a/code/modules/power/lighting.dm b/code/modules/power/lighting.dm index 7c702313ae4..7a566fbb023 100644 --- a/code/modules/power/lighting.dm +++ b/code/modules/power/lighting.dm @@ -674,7 +674,7 @@ to_chat(user, "You inject the solution into the [src].") - if(S.reagents.has_reagent("plasma", 5)) + if(S.reagents.has_reagent("plasma", 5) || S.reagents.has_reagent("plasma_dust", 5)) log_admin("LOG: [user.name] ([user.ckey]) injected a light with plasma, rigging it to explode.") message_admins("LOG: [user.name] ([user.ckey]) injected a light with plasma, rigging it to explode.")