mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-11 07:59:08 +01:00
17 lines
430 B
Plaintext
17 lines
430 B
Plaintext
/obj/item/ammo_casing/caseless
|
|
desc = "A caseless bullet casing."
|
|
firing_effect_type = null
|
|
heavy_metal = FALSE
|
|
|
|
/obj/item/ammo_casing/caseless/fire_casing(atom/target, mob/living/user, params, distro, quiet, zone_override, spread)
|
|
if (..()) //successfully firing
|
|
moveToNullspace()
|
|
QDEL_NULL(src)
|
|
return TRUE
|
|
else
|
|
return FALSE
|
|
|
|
/obj/item/ammo_casing/caseless/update_icon()
|
|
..()
|
|
icon_state = "[initial(icon_state)]"
|