diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index 8d7d2600ce7..e0dd4266355 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -113,7 +113,7 @@ ident = rand(1, 999) if(!cell) - cell = new /obj/item/stock_parts/cell/high(src, 7500) + cell = new /obj/item/stock_parts/cell/high(src) if(lawupdate) make_laws() diff --git a/code/modules/mob/transform_procs.dm b/code/modules/mob/transform_procs.dm index fa76d9ef9d6..59aeec5b3c6 100644 --- a/code/modules/mob/transform_procs.dm +++ b/code/modules/mob/transform_procs.dm @@ -374,9 +374,6 @@ var/mob/living/silicon/robot/R = new /mob/living/silicon/robot(loc) - // cyborgs produced by Robotize get an automatic power cell - R.cell = new /obj/item/stock_parts/cell/high(R, 7500) - R.gender = gender R.invisibility = 0 diff --git a/code/modules/power/cell.dm b/code/modules/power/cell.dm index 75d6d1778f5..608a63ce8f9 100644 --- a/code/modules/power/cell.dm +++ b/code/modules/power/cell.dm @@ -170,7 +170,7 @@ charge = 0 /obj/item/stock_parts/cell/upgraded - name = "high-capacity power cell" + name = "upgraded power cell" desc = "A power cell with a slightly higher capacity than normal!" maxcharge = 2500 materials = list(MAT_GLASS=50)