Skip to content

Commit

Permalink
Airburst Packet Typo Fix (#3871)
Browse files Browse the repository at this point in the history
# About the pull request

Fixes typo related to grenade airburst packets

# Explain why it's good for the game

It isn't. This will actively worsen the experience of the game.

# Changelog
:cl:
spellcheck: Fixed typos relating to M74 airburst packets.
/:cl:
  • Loading branch information
Ben10083 committed Jul 14, 2023
1 parent 58efb20 commit dd63c93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion code/controllers/subsystem/x_evolution.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#define EVOLUTION_INCREMENT_TIME (30 MINUTES) // Evolution increases by 1 every 25 minutes.

SUBSYSTEM_DEF(xevolution)
name = "Evilution"
name = "Evilution" //This is not a typo, do not change it.
wait = 1 MINUTES
priority = SS_PRIORITY_INACTIVITY

Expand Down
6 changes: 3 additions & 3 deletions code/modules/projectiles/ammo_boxes/grenade_packets.dm
Original file line number Diff line number Diff line change
Expand Up @@ -110,19 +110,19 @@ var/list/grenade_packets = list(
content_type = /obj/item/explosive/grenade/high_explosive/m15/rubber

/obj/item/storage/box/packet/airburst_he
name = "\improper M74 airbust grenade packet"
name = "\improper M74 airburst grenade packet"
desc = "It contains three M74 airburst fragmentation grenades. This end towards the enemy."
icon_state = "agmf_packet"
content_type = /obj/item/explosive/grenade/high_explosive/airburst

/obj/item/storage/box/packet/airburst_incen
name = "\improper M74 airbust incendiary grenade packet"
name = "\improper M74 airburst incendiary grenade packet"
desc = "It contains three M74 airburst incendiary grenades. This end towards the enemy."
icon_state = "agmi_packet"
content_type = /obj/item/explosive/grenade/incendiary/airburst

/obj/item/storage/box/packet/airburst_smoke
name = "\improper M74 airbust smoke grenade packet"
name = "\improper M74 airburst smoke grenade packet"
desc = "It contains three M74 airburst smoke grenades. This end towards the enemy."
icon_state = "agms_packet"
content_type = /obj/item/explosive/grenade/smokebomb/airburst

0 comments on commit dd63c93

Please sign in to comment.