Fixes https://github.com/Aurorastation/Aurora.3/issues/20990
Fixes https://github.com/Aurorastation/Aurora.3/issues/21730
Fixes https://github.com/Aurorastation/Aurora.3/issues/21735

changes:
- bugfix: "Mechatronic fabricator no longer needs to be manually synced
on round start to populate all available parts."
  - bugfix: "Freebooters can now pilot their own subshuttle."
- bugfix: "Greimorian eggs toxin can no longer infest synthetic limbs."
- qol: "Vintage rifle mechanical feedback text has been clarified for
ease of use (before it wouldn't tell you how to rack it properly)."
- rscdel: "Removes pause/unpause functionality from earbuds due to
general bugginess in favor of play/stop."
This commit is contained in:
Batrachophreno
2026-01-25 18:06:48 +00:00
committed by GitHub
parent b07d54ad06
commit edd8698ffe
7 changed files with 47 additions and 33 deletions
@@ -1063,7 +1063,9 @@
if(!victim.internal_organs_by_name[BP_GREIMORIAN_EGGCLUSTER] && prob(20))
var/obj/item/organ/external/affected = pick(victim.organs)
// Give the victim an extra chance to NOT get an eggsac in their head; reroll.
if(BP_IS_ROBOTIC(affected))
return
// Give the victim an extra chance to NOT get an eggsac in their head; reroll. Ditto mechanical limbs.
if(affected == BP_HEAD)
affected = pick(victim.organs)
var/obj/item/organ/internal/parasite/greimorian_eggcluster/infest = new()