From c353e8c43623072fc6fbdc4be61d129117402dec Mon Sep 17 00:00:00 2001 From: Samuel Dweller Date: Wed, 9 Nov 2022 13:42:39 -0600 Subject: [PATCH 1/2] plastic utensils are no longer explosive in the microwave --- code/game/objects/items/kitchen.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/objects/items/kitchen.dm b/code/game/objects/items/kitchen.dm index b1662c129..ca7f34c1f 100644 --- a/code/game/objects/items/kitchen.dm +++ b/code/game/objects/items/kitchen.dm @@ -61,6 +61,7 @@ force = 0 w_class = WEIGHT_CLASS_TINY throwforce = 0 + materials = list(MAT_PLASTIC=80) grind_results = list(/datum/material/plastic=80) var/break_chance = 25 @@ -113,6 +114,7 @@ w_class = WEIGHT_CLASS_TINY throwforce = 0 throw_range = 5 + materials = list(MAT_PLASTIC=100) grind_results = list(/datum/material/plastic = 100) attack_verb = list("prodded", "whiffed","scratched", "poked") sharpness = IS_SHARP @@ -217,6 +219,7 @@ force = 0 w_class = WEIGHT_CLASS_TINY throwforce = 0 + materials = list(MAT_PLASTIC=120) grind_results = list(/datum/material/plastic=120) var/break_chance = 25 From 439d1c304d51d0ce6950c0cbf8b4fc3e71f59a80 Mon Sep 17 00:00:00 2001 From: Samuel Dweller Date: Wed, 9 Nov 2022 19:49:32 -0600 Subject: [PATCH 2/2] Plastic forks, knives, and spoons no longer are conductive. --- code/game/objects/items/kitchen.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/objects/items/kitchen.dm b/code/game/objects/items/kitchen.dm index ca7f34c1f..37519aa62 100644 --- a/code/game/objects/items/kitchen.dm +++ b/code/game/objects/items/kitchen.dm @@ -58,6 +58,7 @@ name = "plastic fork" desc = "Really takes you back to highschool lunch." icon_state = "plastic_fork" + flags_1 = null force = 0 w_class = WEIGHT_CLASS_TINY throwforce = 0 @@ -110,6 +111,7 @@ icon_state = "plastic_knife" item_state = "knife" desc = "A very safe, barely sharp knife made of plastic. Good for cutting food and not much else." + flags_1 = null force = 0 w_class = WEIGHT_CLASS_TINY throwforce = 0 @@ -216,6 +218,7 @@ name = "plastic spoon" desc = "Just be careful your food doesn't melt the spoon first." icon_state = "plastic_spoon" + flags_1 = null force = 0 w_class = WEIGHT_CLASS_TINY throwforce = 0