Sound port sprite fixes (#6869)

This commit is contained in:
Cerebulon
2020-03-19 04:12:52 +00:00
committed by VirgoBot
parent 32b68a17c6
commit ef5f66184d
8 changed files with 6 additions and 18 deletions

View File

@@ -229,6 +229,7 @@
SPECIES_TESHARI = 'icons/mob/species/seromi/gloves.dmi', SPECIES_TESHARI = 'icons/mob/species/seromi/gloves.dmi',
SPECIES_VOX = 'icons/mob/species/vox/gloves.dmi' SPECIES_VOX = 'icons/mob/species/vox/gloves.dmi'
) )
drop_sound = 'sound/items/drop/gloves.ogg'
/obj/item/clothing/proc/set_clothing_index() /obj/item/clothing/proc/set_clothing_index()
return return
@@ -362,6 +363,7 @@
SPECIES_TESHARI = 'icons/mob/species/seromi/head.dmi', SPECIES_TESHARI = 'icons/mob/species/seromi/head.dmi',
SPECIES_VOX = 'icons/mob/species/vox/head.dmi' SPECIES_VOX = 'icons/mob/species/vox/head.dmi'
) )
drop_sound = 'sound/items/drop/hat.ogg'
/obj/item/clothing/head/attack_self(mob/user) /obj/item/clothing/head/attack_self(mob/user)
if(brightness_on) if(brightness_on)
@@ -517,6 +519,7 @@
SPECIES_TESHARI = 'icons/mob/species/seromi/shoes.dmi', SPECIES_TESHARI = 'icons/mob/species/seromi/shoes.dmi',
SPECIES_VOX = 'icons/mob/species/vox/shoes.dmi' SPECIES_VOX = 'icons/mob/species/vox/shoes.dmi'
) )
drop_sound = 'sound/items/drop/shoes.ogg'
/obj/item/clothing/shoes/proc/draw_knife() /obj/item/clothing/shoes/proc/draw_knife()
set name = "Draw Boot Knife" set name = "Draw Boot Knife"

View File

@@ -1,9 +1,4 @@
/obj/item/clothing/gloves
desc = "you aren't supposed to see this."
name = "strange gloves"
icon_state = "black"
item_state = "bgloves"
drop_sound = 'sound/items/drop/gloves.ogg'
/obj/item/clothing/gloves/yellow /obj/item/clothing/gloves/yellow
desc = "These gloves will protect the wearer from electric shock." desc = "These gloves will protect the wearer from electric shock."

View File

@@ -1,11 +1,6 @@
//Hat Station 13 //Hat Station 13
/obj/item/clothing/head/
name = "hat"
desc = "Apply on head."
drop_sound = 'sound/items/drop/hat.ogg'
/obj/item/clothing/head/collectable /obj/item/clothing/head/collectable
name = "collectable hat" name = "collectable hat"
desc = "A rare collectable hat." desc = "A rare collectable hat."

View File

@@ -1,6 +1,6 @@
//Generic Ring //Generic Ring
/obj/item/clothing/ring /obj/item/clothing/gloves/ring
name = "generic ring" name = "generic ring"
desc = "Torus shaped finger decoration." desc = "Torus shaped finger decoration."
icon_state = "material" icon_state = "material"

View File

@@ -1,8 +1,3 @@
/obj/item/clothing/shoes
name = "shoes"
icon_state = "white"
desc = "A pair of shoes."
drop_sound = 'sound/items/drop/shoes.ogg'
/obj/item/clothing/shoes/black /obj/item/clothing/shoes/black
name = "black shoes" name = "black shoes"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 204 KiB

After

Width:  |  Height:  |  Size: 207 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 26 KiB