From 2e309d4eadf0edbd7f03a67dbcad4d4b01f63f88 Mon Sep 17 00:00:00 2001 From: ArcaneDefence <51932756+ArcaneDefence@users.noreply.github.com> Date: Wed, 24 Mar 2021 16:48:30 -0600 Subject: [PATCH] Adds materials to PDAs (#57923) Puts a small amount of iron, glass, and plastic into a PDA 'cause that sort of material usage makes sense to me --- code/game/objects/items/devices/PDA/PDA.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/devices/PDA/PDA.dm b/code/game/objects/items/devices/PDA/PDA.dm index ed4316f9a50..abfae688a9d 100644 --- a/code/game/objects/items/devices/PDA/PDA.dm +++ b/code/game/objects/items/devices/PDA/PDA.dm @@ -31,6 +31,7 @@ GLOBAL_LIST_EMPTY(PDAs) light_power = 0.6 light_color = "#FFCC66" light_on = FALSE + custom_materials = list(/datum/material/iron=300, /datum/material/glass=100, /datum/material/plastic=100) //Main variables var/owner = null // String name of owner