Weapon type design datums will now get proper description.

Also fixes two names I forgot to fix before.
This commit is contained in:
Amunak
2014-12-18 05:28:41 +01:00
parent 16c548b03f
commit c53d14d80c
2 changed files with 4 additions and 3 deletions

View File

@@ -753,6 +753,7 @@ datum/design/item/stock_part
build_type = PROTOLATHE
datum/design/item/stock_part/AssembleDesignName()
..()
name = "Component design ([item_name])"
datum/design/item/stock_part/AssembleDesignDesc()
@@ -1017,7 +1018,7 @@ datum/design/circuit/smes_cell
///////////////Power Items//////////////
////////////////////////////////////////
datum/design/item/light_replacer
name = "Light Replacer"
name = "Light replacer"
desc = "A device to automatically replace lights. Refill with working lightbulbs."
id = "light_replacer"
req_tech = list("magnets" = 3, "materials" = 4)
@@ -1246,7 +1247,7 @@ datum/design/item/weapon/AssembleDesignDesc()
if(!desc)
if(build_path)
var/obj/item/I = build_path
desc = I.desc
desc = initial(I.desc)
..()
datum/design/item/weapon/nuclear_gun