Skip to content

Commit

Permalink
moves the broken xeno domes from ears to hair, and fixes them (#6743)
Browse files Browse the repository at this point in the history
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->
<!-- You can view Contributing.MD for a detailed description of the pull
request process. -->

## About The Pull Request

<!-- Describe The Pull Request. Please be sure every change is
documented or this can delay review and even discourage maintainers from
merging your PR! -->

## Why It's Good For The Game

<!-- Argue for the merits of your changes and how they benefit the game,
especially if they are controversial and/or far reaching. If you can't
actually explain WHY what you are doing will improve the game, then it
probably isn't good for the game in the first place. -->

## Changelog

<!-- If your PR modifies aspects of the game that can be concretely
observed by players or admins you should add a changelog. If your change
does NOT meet this description, remove this section. Be sure to properly
mark your PRs to prevent unnecessary GBP loss. You can read up on GBP
and it's effects on PRs in the tgstation guides for contributors. Please
note that maintainers freely reserve the right to remove and add tags
should they deem it appropriate. You can attempt to finagle the system
all you want, but it's best to shoot for clear communication right off
the bat. -->

:cl:
fix: fixed 4 xenohybrid domes and moved them to hair (where they belong)
/:cl:

<!-- Both :cl:'s are required for the changelog to work! You can put
your name to the right of the first :cl: if you want to overwrite your
GitHub username as author ingame. -->
<!-- You can use multiple of the same prefix (they're only used for the
icon ingame) and delete the unneeded ones. Despite some of the tags,
changelogs should generally represent how a player might be affected by
the changes rather than a summary of the PR's contents. -->
  • Loading branch information
TheLordME committed Sep 11, 2024
1 parent 1d9590a commit 87083b1
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 23 deletions.
1 change: 0 additions & 1 deletion citadel.dme
Original file line number Diff line number Diff line change
Expand Up @@ -4805,7 +4805,6 @@
#include "code\modules\sprite_accessories\ears\antenna.dm"
#include "code\modules\sprite_accessories\ears\horns.dm"
#include "code\modules\sprite_accessories\ears\misc.dm"
#include "code\modules\sprite_accessories\ears\xenomorph.dm"
#include "code\modules\sprite_accessories\ears\animal\avian.dm"
#include "code\modules\sprite_accessories\ears\animal\bee.dm"
#include "code\modules\sprite_accessories\ears\animal\bovine.dm"
Expand Down
22 changes: 0 additions & 22 deletions code/modules/sprite_accessories/ears/xenomorph.dm

This file was deleted.

22 changes: 22 additions & 0 deletions code/modules/sprite_accessories/hair/species/xenomorph.dm
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,25 @@
species_allowed = list(SPECIES_XENOHYBRID)
random_generation_gender = null

/datum/sprite_accessory/hair/xenohead
name = "Xenomorph Drone dome"
id = "ears_xeno_drone"
icon = 'icons/mob/sprite_accessories/xeno_parts.dmi'
icon_state = "xenohead_standard"
do_colouration = 1
legacy_use_additive_color_matrix = FALSE

/datum/sprite_accessory/hair/xenohead/royal
name = "Xenomorph Royal dome"
id = "ears_xeno_royal"
icon_state = "xenohead_royal"

/datum/sprite_accessory/hair/xenohead/warrior
name = "Xenomorph Warrior dome"
id = "ears_xeno_warrior"
icon_state = "xenohead_warrior"

/datum/sprite_accessory/hair/xenohead/net
name = "Xenomorph Net dome"
id = "ears_xeno_net"
icon_state = "xenohead_net"

0 comments on commit 87083b1

Please sign in to comment.