[MIRROR] Fixes power cell name and makes borgs use a standard high capacity cell. (#5315)
* Fixes power cell name and makes borgs use a standard high capacity cell. (#35265) * Fixes name for upgraded power cell * Harmonizes battery for cyborgs * Remove duplicate battery code * Fixes power cell name and makes borgs use a standard high capacity cell.
This commit is contained in:
committed by
Poojawa
parent
ca3136d056
commit
b25bcbbfab
@@ -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()
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user