diff --git a/code/modules/research/designs.dm b/code/modules/research/designs.dm
index 8cfb04fd717..038ed277812 100644
--- a/code/modules/research/designs.dm
+++ b/code/modules/research/designs.dm
@@ -1104,7 +1104,7 @@ datum
desc = "A power cell that holds 20000 units of energy"
id = "super_cell"
req_tech = list("powerstorage" = 3, "materials" = 2)
- reliability_base = 75
+ reliability_base = 90 //Else these things just fail all the time, goddamn. - Erthilo
build_type = PROTOLATHE
materials = list("$metal" = 700, "$glass" = 70)
build_path = "/obj/item/weapon/cell/super"
@@ -1114,7 +1114,7 @@ datum
desc = "A power cell that holds 30000 units of energy"
id = "hyper_cell"
req_tech = list("powerstorage" = 6, "materials" = 4)
- reliability_base = 70
+ reliability_base = 85
build_type = PROTOLATHE
materials = list("$metal" = 400, "$gold" = 150, "$silver" = 150, "$glass" = 70)
build_path = "/obj/item/weapon/cell/hyper"
diff --git a/code/modules/research/rdconsole.dm b/code/modules/research/rdconsole.dm
index 558df0d9fee..20224ce0125 100644
--- a/code/modules/research/rdconsole.dm
+++ b/code/modules/research/rdconsole.dm
@@ -771,7 +771,7 @@ won't update every console in existence) but it's more of a hassle to do. Also,
dat += "Eject: "
if(linked_lathe.plasma_amount >= 3750) dat += "(1 Sheet) "
if(linked_lathe.plasma_amount >= 18750) dat += "(5 Sheets) "
- if(linked_lathe.plasma_amount >= 3750) dat += "(Max Sheets)"
+ if(linked_lathe.plasma_amount >= 3750) dat += "(Max Sheets)"
dat += "
"
//Uranium
dat += "* [linked_lathe.uranium_amount] cm3 of Uranium || "
diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi
index 9d7b7b3bbac..72c63264999 100644
Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ