Make glass and bone knives not conduct electricity and shocks from grille (#73679)

## About The Pull Request
Just making shivs more consistent with what is expected. It's weird when
glass shard allows you to smash grille connected to power while shivs
made out of glass dont. Extended to bone knives for the same reason.
## Why It's Good For The Game
Immersium
## Changelog
🆑 Remuluson2
fix: After pressure from Nanotrasen, Space Wizard Federation made glass
and bone knives non-conductive again.
/🆑

---------

Co-authored-by: san7890 <the@san7890.com>
This commit is contained in:
remuluson2
2023-02-28 16:45:05 -07:00
committed by GitHub
co-authored by san7890
parent 4e282f6409
commit 074045bf4b
+8
View File
@@ -148,6 +148,10 @@
throwforce = 15
custom_materials = null
/obj/item/knife/combat/bone/Initialize(mapload)
flags_1 &= ~CONDUCT_1
return ..()
/obj/item/knife/combat/cyborg
name = "cyborg knife"
icon = 'icons/obj/items_cyborg.dmi'
@@ -169,6 +173,10 @@
armor_type = /datum/armor/none
custom_materials = list(/datum/material/glass=400)
/obj/item/knife/shiv/Initialize(mapload)
flags_1 &= ~CONDUCT_1
return ..()
/obj/item/knife/shiv/plasma
name = "plasma shiv"
icon_state = "plasmashiv"