22965 Commits
Author SHA1 Message Date
Casper3667andGitHub d6f2c56e00 Fixes the case dossier files sometimes self-deleting (#23141)
As per the title. I did a mistake, whoops. I'm pretty sure this fixes
it.
2026-08-25 22:42:16 +00:00
DreamySkrellGitHubDreamySkrell <>
8468c8210c Ship gun loader auto connects to ship gun (#23101)
.

---------

Co-authored-by: DreamySkrell <>
2026-08-25 17:32:26 +00:00
FabianK3andGitHub 17d6672e1c Fix buta tendon reaction (#23137)
# Summary

This PR fixes the Butazoline OD/cryo treatment reaction not properly
healing cut tendons.
2026-08-24 21:40:14 +00:00
Casper3667andGitHub 9cd197a338 Reduce warehouse psirens spawn frequency (#23120)
The relevant lore arc is over, so here is the PR to reduce it. Only a
little delayed.
2026-08-24 20:55:14 +00:00
Casper3667andGitHub 19c4fe100f Makes unathi able to drink ethanol and eat nutriments (#23119)
Per unathi lore's request.
Unathi can now eat nutriments, but it has half efficiency, while protein
was upgraded to double efficiency.
They can now also drink ethanol with no issues. Note they had an
existing ethanol weakness making them 20% more vulnerable to it compared
to humans.
2026-08-24 19:39:16 +00:00
KanoandGitHub ec5f726615 Slight refactor for wall colouring (#23123)
## About PR

- Materials no longer cache pre-coloured icons, instead this is handled
by color var. This will allow mappers to colour walls more conveniently
without resorting to code crimes

- Clears some repetitive checks in the wall code

- Adds RESET_COLOR flag to some wall overlays, so they don't inherit the
walls' color

Tested the init time with and without the changes on horizon map several
times, with away sites disabled. There's no change in speed
2026-08-24 19:38:56 +00:00
GeevesandGitHub 56bae6cc24 Mining Points DB Fix (#23016)
* Mining point balances are now loaded only when interacting with mining
machinery or transferring a mining point card, preventing unrelated ID
cards from querying mining point history.
* Claiming zero mining points no longer creates a persistent balance
record.

AI usage disclosure: Code committed by myself were generated using GPT
5.6 Sol.
2026-08-23 21:29:50 +00:00
antandGitHub 39007368a7 the media office returns, death to the journalist office (#23114)
linking because i dont wanna have to do the description again

https://github.com/Aurorastation/Aurora.3/pull/23100
2026-08-23 15:02:09 +00:00
GeevesandGitHub 4590d7da08 Emissive LED Collar Fix (#23125)
* Turned LED collars into an emissive, it no longer renders above
everything.

<img width="114" height="127" alt="image"
src="https://github.com/user-attachments/assets/f1056359-68b8-4870-9adb-e668d942df08"
/>
2026-08-22 13:36:26 +00:00
Casper3667andGitHub 1d258388c9 The takeout box (#23068)
This adds a takeout box that can be crafted from cardboard and found in
the kitchen dinnerware vending machine.
Food (made and grown) can be put into it as well as liquid reagents to
create a meal. It cannot be taken out once put in it.
When all food in it has been eaten, it is turned into a trash item.
The box itself can be eaten from with any utensil and can be opened and
closed with alt-click or using it in-hand.

<img width="210" height="160" alt="dreamseeker_RghC7jk3th"
src="https://github.com/user-attachments/assets/92f7c4a0-f02d-496d-8fd8-ed783c6daa49"
/>

### Asset Licenses
The following assets that **have not** been created by myself are
included in this PR:
- Takeout boxes

| Path | Original Author | License |
| --- | --- | --- |
| icons/obj/kitchen.dmi | Tomixcomics (Aurora Station) | CC-BY |
2026-08-22 13:19:45 +00:00
FenodyreeAvandGitHub e73f49e9e7 Slight decloner damage nerf, Tumors are now a chance (#23102)
Reduces decloner damage so it falls just under the threshold to give a
tumor, on all but the most powerful guns.

Tumors from genetic damage are now also a chance, rather than guaranteed
at any genetic damage over 10.
You are guaranteed to have at least one tumor if your limb reaches
maximum genetic damage.
2026-08-22 01:23:14 +00:00
FabianK3andGitHub 144a6a943b Revert "Refactor Get Pain" (#23118)
Reverts Aurorastation/Aurora.3#22847
2026-08-21 01:25:32 +00:00
GeevesandGitHub 1fc3b2343c Gear Selection Icons (#23090)
* Gear loadout item variant selections now display item icons in a
searchable list.

<img width="988" height="779" alt="image"
src="https://github.com/user-attachments/assets/58f5704c-7445-4430-892f-145771c029b9"
/>

AI usage disclosure: Created using GPT 5.6 Sol.
2026-08-21 00:01:50 +00:00
7565a99703 Fix null stat_panel read in subsystem fire (#23066)
* Please describe the intent of your changes in a clear fashion.
This PR addresses the `Cannot read null.stat_panel` error occurring in
`SSstatpanels/fire()`.

**Root Cause:**
The primary cause was a race condition during client login. A `client`
object was added to `GLOB.clients` in `client/Login()` before its
`stat_panel` member had been fully initialized. This allowed the
`SSstatpanels/fire()` subsystem, which iterates over `GLOB.clients`, to
attempt to access `target.stat_panel.is_ready()` on a `null`
`stat_panel`, leading to a runtime error. Recent changes increasing the
frequency of `stat_panel` updates exacerbated this issue.

**Solution:**
1. **Reordered Client Initialization:** In
`code/modules/client/client_procs.dm`, the line `GLOB.clients += src`
has been moved to occur *after* `stat_panel = new(src, "statbrowser")`
and `stat_panel.subscribe(...)`. This ensures that a client is only
added to the global list once its `stat_panel` is properly instantiated,
eliminating the race condition.
2. **Defensive Null Checks:** Additional null checks for `stat_panel`
have been added in `code/controllers/subsystems/statpanel.dm`:
* In `fire()`, the condition `!target.stat_panel.is_ready()` was updated
to `!target.stat_panel || !target.stat_panel.is_ready()`.
* In `refresh_client_obj_view()`, an early return
`if(!refresh.stat_panel) return` was added.

These defensive checks provide robustness against any future reordering
issues or unexpected scenarios where `stat_panel` might be null.
* Please make sure that, in the case of mapping changes, you include
images of these changes in the PR's description.
* Please make sure to mark your PR as wip or review required by making a
comment with !wip or !review required
* If you include sprites/sounds/... (assets) that you have not created
yourself specify the license and original author below.
* Ensure that you also credit them in the appropriate location /
changelog as specified in the contributor guidelines

### Asset Licenses
The following assets that **have not** been created by myself are
included in this PR:

| Path | Original Author | License |
| --- | --- | --- |
| icons/example.dmi | ExamplePerson (Example Station) | CC0 |

Fixes
[SERVER-PROD-1M4](https://aurorastation.sentry.io/issues/7547575486/?seerDrawer=true)

---------

Co-authored-by: VMSolidus <evilexecutive@gmail.com>
2026-08-20 15:46:08 +00:00
933ae32a1a Fix: Prevent on_user_login runtime when machine is a mob (#23061)
* Please describe the intent of your changes in a clear fashion.
This PR addresses a runtime error occurring in `mob/proc/LateLogin()`
when `machine.on_user_login(src)` is called. The error happened when the
`machine` variable on a mob was unexpectedly set to a
`/mob/abstract/ghost/observer` (instead of an `/obj`), typically during
the shared dreaming (Srom) wakeup process.

The `on_user_login()` proc is defined on `/obj` but not on `/mob` types.
The fix adds a type check `isobj(machine)` before attempting to call
`machine.on_user_login(src)` in `code/modules/mob/login.dm`, ensuring
the proc is only invoked when `machine` is indeed an object, thus
preventing the 'undefined proc or verb' runtime.
* Please make sure that, in the case of mapping changes, you include
images of these changes in the PR's description.
* Please make sure to mark your PR as wip or review required by making a
comment with !wip or !review required
* If you include sprites/sounds/... (assets) that you have not created
yourself specify the license and original author below.
* Ensure that you also credit them in the appropriate location /
changelog as specified in the contributor guidelines

### Asset Licenses
The following assets that **have not** been created by myself are
included in this PR:

| Path | Original Author | License |
| --- | --- | --- |
| icons/example.dmi | ExamplePerson (Example Station) | CC0 |


Fixes
[SERVER-PROD-2SZ](https://aurorastation.sentry.io/issues/7666863585/?seerDrawer=true)

---------

Co-authored-by: VMSolidus <evilexecutive@gmail.com>
2026-08-20 15:29:48 +00:00
VMSolidusandGitHub 40e88e0d2d Refactor Get Pain (#22847)
This PR refactors get_pain() to be essentially performance free.
Previously it was a member of the top 5 most expensive procs.
I had to touch a metric shitton of files to make this happen. Notably
get_pain() was also 1/3rd of the entire processing cost for Mobs - Life
2026-08-19 22:50:40 +00:00
GeevesandGitHub 53cb94745b Tail Hologram Fix (#23022)
* Fixed tails layering oddly in character preview, holograms, photos,
etc.

AI usage disclosure: The code for this was created using GPT 5.6 Sol.
The sprite edits were all done by myself, manually.
2026-08-19 22:50:27 +00:00
FyniandGitHub a8eebee94b Overmap Icon Fixes (#23050)
Adds the missing [!] to the gravity anomoly overmap icon and a new
psiren overmap icon, so they no longer share an icon with carp.

---------

Signed-off-by: Fyni <itsfyni@gmail.com>
2026-08-19 22:50:22 +00:00
6cd7332292 BAPI - mapmanip directional submap insert marker (#23080)
```
changes:
  - rscadd: "Directional submap insert marker."
```

<img width="1691" height="585" alt="image"
src="https://github.com/user-attachments/assets/b3d734f8-d23d-449a-bd17-9397f5b81139"
/>

---------

Signed-off-by: DreamySkrell <107256943+DreamySkrell@users.noreply.github.com>
Co-authored-by: DreamySkrell <>
Co-authored-by: AuroraBuildBot <action@github.com>
Co-authored-by: FabianK3 <21039694+FabianK3@users.noreply.github.com>
2026-08-19 22:08:30 +00:00
DreamySkrellGitHubDreamySkrell <>
27be532e9a External Airlock Marker (#23075)
makes `/obj/effect/map_effect/marker/airlock` into `ABSTRACT_TYPE()`

for better organization and stuff

adds:
```
/// External airlock marker, for non-docking non-shuttle airlocks.
/// Just a plain external access airlock.
/obj/effect/map_effect/marker/airlock/external
```

---------

Co-authored-by: DreamySkrell <>
2026-08-19 18:11:45 +00:00
FenodyreeAvandGitHub d5e38f9fc0 EMPs check armour and drain less cell power (#23053)
Any ion currently oneshots a mech, by draining it's power cell to zero.

The amount of cell power drained is now random, up to the max charge of
the cell for a heavy EMP.
Up to half the max charge of the cell for a light EMP.

This PR makes EMPs respect energy armour, as the description of energy
armour says they should.

Energy armour is averaged across the mob, weighted for limb size.
This is then the chance to downgrade the EMP.
A heavy EMP can be downgraded into a light EMP, but no further.
A light EMP can either be negated completely, or only affect the mob's
contents.

Eg. A human wearing Ablative armour, (Energy 40), gives a 33% chance to
downgrade a heavy EMP to a light, as it leaves the hands and feet
uncovered.

The same mob struck by a light EMP has a 33% chance to have the EMP only
affect it and not it's contents (internal organs), if that is
successful, there is a further 33% chance to negate the EMP completely.

This means a mech with EM armour is guaranteed to downgrade a heavy EMP
to light, and to ignore light EMPs completely.

All other types of mech armour have Energy 10.

Almost all EMPs are heavy, with the edge of EMP grenades being the only
source of a light EMP.

Ion rifles EMP the target twice, 8 heavy EMP's downgraded to light, will
still seriously damage an unpowered EM armoured mech.

---------

Signed-off-by: FenodyreeAv <fenodyree.av@gmail.com>
2026-08-19 18:10:42 +00:00
984c308e09 Fix ammo pile scatter crash (#23062)
* Please describe the intent of your changes in a clear fashion.
Addresses a "list index out of bounds" error occurring in
`obj/item/ammo_pile/proc/remove_ammo` when
`obj/item/ammo_pile/proc/scatter()` was called.

The root cause was a race condition where `scatter()` iterated over the
`ammo` list and called `remove_ammo()` for each item. `remove_ammo()` in
turn called `check_ammo()`, which would `qdel(src)` (and thus empty the
`ammo` list) when only one round remained. This left `scatter()` to
continue its loop and call `remove_ammo()` on an already empty list,
leading to the crash.

The fix rewrites `scatter()` to directly handle the unregistering of
signals, force-moving, and throwing of each bullet. After all bullets
have been processed, the `ammo` list is cleared, overlays are cut, and
the pile is `qdel`'d. This avoids the problematic mid-loop calls to
`remove_ammo()` and `check_ammo()`, preventing the list index out of
bounds error.
* Please make sure that, in the case of mapping changes, you include
images of these changes in the PR's description.
* Please make sure to mark your PR as wip or review required by making a
comment with !wip or !review required
* If you include sprites/sounds/... (assets) that you have not created
yourself specify the license and original author below.
* Ensure that you also credit them in the appropriate location /
changelog as specified in the contributor guidelines

### Asset Licenses
The following assets that **have not** been created by myself are
included in this PR:

| Path | Original Author | License |
| --- | --- | --- |
| icons/example.dmi | ExamplePerson (Example Station) | CC0 |


Fixes
[SERVER-PROD-3N](https://aurorastation.sentry.io/issues/7405041136/?seerDrawer=true)

---------

Co-authored-by: VMSolidus <evilexecutive@gmail.com>
2026-08-19 18:10:10 +00:00
81c4eb2b79 Fix reagent temperature mismatch crash (#23063)
* Please describe the intent of your changes in a clear fashion.
This PR addresses a crash (`SERVER-PROD-2R6`) caused by a temperature
mismatch when adding new reagents, particularly in low-volume metabolism
holders.

The root cause was identified as a combination of:
1. A coarse rounding guard in `set_thermal_energy` that discarded
small-but-valid thermal energy changes.
2. A temperature assertion in `add_reagent` that was too sensitive to
floating-point inaccuracies.
3. The `nicotine` reagent lacking an explicit `fallback_specific_heat`.

Changes implemented:
- **`code/modules/reagents/Chemistry-Temperature.dm`**: Modified
`set_thermal_energy` to remove the `round(delta, 1)` guard. Now,
`if(!delta)` is used, allowing small, non-zero energy changes to be
processed.
- **`code/modules/reagents/Chemistry-Holder.dm`**: Updated the
temperature assertion in `add_reagent` from `round(temperature, 1) !=
round(get_temperature(), 1)` to `abs(temperature - get_temperature()) >
0.1`. This provides a more robust, tolerance-based comparison.
-
**`code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm`**:
Added `fallback_specific_heat = 1.67` to
`/singleton/reagent/mental/nicotine` to ensure it has a proper specific
heat value.

* Please make sure that, in the case of mapping changes, you include
images of these changes in the PR's description.
* Please make sure to mark your PR as wip or review required by making a
comment with !wip or !review required
* If you include sprites/sounds/... (assets) that you have not created
yourself specify the license and original author below.
* Ensure that you also credit them in the appropriate location /
changelog as specified in the contributor guidelines

### Asset Licenses
The following assets that **have not** been created by myself are
included in this PR:

| Path | Original Author | License |
| --- | --- | --- |
| icons/example.dmi | ExamplePerson (Example Station) | CC0 |


Fixes
[SERVER-PROD-2R6](https://aurorastation.sentry.io/issues/7661064998/?seerDrawer=true)

---------

Co-authored-by: VMSolidus <evilexecutive@gmail.com>
2026-08-19 18:09:57 +00:00
0a16ab6564 Fix carp migration hard delete (#23064)
* Please describe the intent of your changes in a clear fashion.
This PR addresses issue SERVER-PROD-12K by correcting a hard delete
warning related to `/mob/living/simple_animal/hostile/carp` during the
carp migration event.

Previously, in `code/modules/events/carp_migration.dm`, the `end()` proc
was calling `qdel(carp_weakref)` instead of `qdel(fish)`. This meant the
weakref datum was being deleted, but the actual carp mob was left
without a proper `qdel()` call, leading to BYOND's garbage collector
performing a 'hard delete' and logging a warning.

The fix changes `qdel(carp_weakref)` to `qdel(fish)` on line 103,
ensuring the carp mob is correctly soft-deleted when the event ends.

* Please make sure that, in the case of mapping changes, you include
images of these changes in the PR's description.
(No mapping changes in this PR)
* Please make sure to mark your PR as wip or review required by making a
comment with !wip or !review required
* If you include sprites/sounds/... (assets) that you have not created
yourself specify the license and original author below.
* Ensure that you also credit them in the appropriate location /
changelog as specified in the contributor guidelines

### Asset Licenses
The following assets that **have not** been created by myself are
included in this PR:

| Path | Original Author | License |
| --- | --- | --- |
| icons/example.dmi | ExamplePerson (Example Station) | CC0 |
(No new assets included in this PR)

Fixes
[SERVER-PROD-12K](https://aurorastation.sentry.io/issues/7522667244/?seerDrawer=true)

---------

Co-authored-by: VMSolidus <evilexecutive@gmail.com>
2026-08-19 18:09:28 +00:00
KanoandGitHub 2ef48f07a9 Tweaks turf add overlay logic (#23071)
## About PR

Makes it so when a turf calls the overlay subsystem (if overlay layer
was left as default) it'll add overlays slightly above the turf layer.
With this we'll no longer have the silly issue where turf smoothing
overlays appear under the adjacent turfs depending on turf load order

In short, here's what it fixes

Before:

<img width="396" height="601" alt="Screenshot_10"
src="https://github.com/user-attachments/assets/91708402-c6c6-433f-af9f-5293ce926731"
/>

After:

<img width="391" height="598" alt="Screenshot_9"
src="https://github.com/user-attachments/assets/556d48dd-d463-4f76-b075-f0d77340e837"
/>

---

to-do:
- [x] Figure out whether to change `is_plating()` check method or add
the missing `initial_flooring` for every exoplanet turf type since this
plays a role in deciding decal layer, suffer as both paths are equally
agonizing
2026-08-19 18:08:28 +00:00
85ec63da94 Fix IPC posibrain die() null transfer (#23060)
* Please describe the intent of your changes in a clear fashion.
The `die()` proc for the positronic brain
(`/obj/item/organ/internal/machine/posibrain/die()`) was attempting to
transfer `owner.mind` to `stored_mmi.brainmob` without first checking if
`owner.mind` was null. This led to a runtime error (`Cannot execute
null.transfer to().`) when the IPC mob was mindless (e.g., an NPC, a
disconnected player, or if the mind had already been transferred).

This change adds a null-check (`if(owner.mind)`) around the
`transfer_to()` call in `die()` at line 103 of `posibrain.dm`. This
prevents the error by ensuring the transfer only occurs when a mind
object actually exists, mirroring the safe pattern already present in
the `removed()` proc.
* Please make sure that, in the case of mapping changes, you include
images of these changes in the PR's description.
* Please make sure to mark your PR as wip or review required by making a
comment with !wip or !review required
* If you include sprites/sounds/... (assets) that you have not created
yourself specify the license and original author below.
* Ensure that you also credit them in the appropriate location /
changelog as specified in the contributor guidelines

### Asset Licenses
The following assets that **have not** been created by myself are
included in this PR:

| Path | Original Author | License |
| --- | --- | --- |
| icons/example.dmi | ExamplePerson (Example Station) | CC0 |


Fixes
[SERVER-PROD-RG](https://aurorastation.sentry.io/issues/7496141971/?seerDrawer=true)

---------

Co-authored-by: VMSolidus <evilexecutive@gmail.com>
2026-08-19 18:07:53 +00:00
GeevesandGitHub 1b93c850ca Hivebot Beacon Heisenbug Fix (#23082)
fixes a heisenbug related to hivebot beacons and their smoke spawning in
2026-08-19 18:04:41 +00:00
BatrachophrenoandGitHub 96d9151817 Post-Arc Bugfixes, Non-Sea Balance, etc. (#22836)
Fixes bugs associated with Lemurian Sea. Former test merge PR
2026-08-19 17:35:13 +00:00
f75264df3c BAPI - mapmanip submap weight (#23069)
changes:
  - rscadd: "Bapi mapmanip submap weight."

---------

Co-authored-by: DreamySkrell <>
Co-authored-by: AuroraBuildBot <action@github.com>
2026-08-16 17:21:59 +00:00
GeevesandGitHub b2837ab09a Sparks Heisenbug Fix (#23091)
fixes sparks causing heisenbugs when the test ends while theyre still
animating

AI usage disclosure: Created using GPT 5.6 Sol.
2026-08-16 16:14:41 +00:00
VMSolidusandGitHub 27f727b71f Mechanical Engineering Cross Role Interactions (#22880)
<img width="606" height="144" alt="image"
src="https://github.com/user-attachments/assets/f1c88863-37be-41e0-be79-27fca980a3f3"
/>

This PR adds new "Cross-Role Interactions" for the Mechanical
Engineering skill, with two specific kinds that are aimed at a variety
of different roles.

1. **Bonus damage vs. structures**: Having ranks in MechE makes you deal
bonus damage when melee attacking structures like Airlocks and Windows.
This makes it a desireable niche pick for any kind of job that can see
themself wanting to take a breaching to a room's entrance! For example,
paramedics, shaft miners, and security can all make use of it on
occasion.
2. **Mech Repair Speed**: This one is aimed specifically at Machinists.
Repairing mechs with a welder is no longer instantaneous (That was very
powergamey in practice for 'battle machinists'). Instead it has a repair
speed (and repair amount) that scales with your Mechanical Engineering
skill.

Why MechE and not Robotics? To encourage further "Machinist
Specialization". Machinist players were already pretty naturally
inclined to position their character as either being a Robotics
Specialist, or a Mechatronics Specialist, by sheer virtue of there being
two machinist slots and two noticeably distinctive roles. This
separation of skill interactions is there to further encourage this
degree of separation between machinist skillsets.

As a side note, just so I'm not thoroughly pissing off every machinist
main. As a quality of life improvement, I've made it so that attempting
to repair a mech with a welder will loop the repair until completed or
interrupted.

---------

Signed-off-by: VMSolidus <evilexecutive@gmail.com>
2026-08-16 16:13:43 +00:00
FenodyreeAvandGitHub 6ae7fc8b2e Fixes the Loner Mend power (#22884)
Split this off the larger PR coming that adds the new psychic damage
mechanics to loner, as this is nearly a pure bugfix.

Limitations, mend can't interact with anything not organic, it won't fix
prosthetics, or wounds with embedded objects.

This can leave bleeding wounds if there are serious wounds with shrapnel
in them, I added a message to make it clear that this is intentional
behavior.

The limb-processing PR means that sometimes limbs can get stuck with
pain, which happens occasionally when using mend, but this is fixed in
#22847 so I didn't address it.

changes:
- bugfix: "Fixes the Mend power taking 15 seconds to scan every organ,
even if the organ is healthy."
  - bugfix: "Fixes the Mend power not being able to fix blindness."
  - bugfix: "Fixes the Mend power not being able to fix heart attacks."
- bugfix: "Fixes the Mend power not being able to fix brute or burn
damage."
  - bugfix: "Fixes the Mend power not being able to fix tendons."
  - bugfix: "Fixes the Mend power not respecting psychic sensitivity."
- bugfix: "Fixes the Mend power thinking every external organ is
robotic."
2026-08-16 16:13:41 +00:00
FenodyreeAvandGitHub e489e77a7b Circuit printers print uncharged batteries (#23003)
Having to manually open closed circuits and install a battery in each
individual one was pain when cloning large volumes.

Now the circuit printer spawns the circuit with an uncharged battery.

If you want a better battery, or a charged one you still have to take it
out.
2026-08-16 16:13:08 +00:00
FenodyreeAvandGitHub be17521156 Fixes armour checks, rubbers checking siemens and pain interrupting t… (#23023)
**_- bugfix: "Fixes all rubber bullets dealing damage twice."_**
Rubber bullets were dealing their pain damage twice, while checking if
they should shake your screen or not.

_**- bugfix: "Fixes all attacks that dealt pain damage checking siemens
coefficient. This makes everything but hardsuits and voidsuits stronger
against rubber bullets. Insulated gloves are also no longer immune to
rubber bullets."**_

Hardsuits has siemens 0.1, meaning they took 10% damage from all stuns.
Now rubber bullets check their melee armor. Hardsuits are now weaker, or
the same against stuns.

Regular armor all has siemens 0.5, they took a flat 50% reduction.
Security armour is slightly weaker to rubbers, ablative and ballistic
are much weaker. Combat armour is roughly the same, or slightly better.
Riot armour is a lot better.

Voidsuits all had better siemens than armour, all voidsuits are now
weaker against stuns.

Finally, all jumpsuits had 0.75 siemens, but no (or nearly no) armor.
Combined with the fix of them hitting twice this means that rubber
bullets previously dealt 50% more damage against people in jumpsuits
than they do now.

**_- bugfix: "Fixes pain failing to make your blurt out whatever you
were typing. Now getting shot will cause you to say whatever was in the
typing window when you were hit and close the window immediately,
allowing you to move."_**

No more getting stuck in the typing window when you're getting sprayed
down by an STS!
 

_**- bugfix: "Fixes all attacks that had manually set armour checks,
previously they ignored the armour they were meant to check and decided
what armour affected them based only on their damage type."**_

Weapons that were set to specifically target armour types, such as
explosive projectiles (rockets, etc) were instead defaulting to the
damage type they dealt. So a rocket to the head was checking your melee
armour, not your bomb armour.

---------

Signed-off-by: FenodyreeAv <fenodyree.av@gmail.com>
2026-08-16 16:13:03 +00:00
FenodyreeAvandGitHub 5f78469fce Lets you wear your integrated circuit PDA (#23028)
Integrated circuits support being worn by mobs now!
Lets the circuits that previously said their clips were decorative
actually be worn.

Also lets small ICs be put in the helmet slot, for expeditionary helmet
cameras.
<img width="119" height="111" alt="image"
src="https://github.com/user-attachments/assets/07b1f108-be8d-403d-975f-080ad3a10838"
/>

Hopefully getting a go-pro like sprite for it soon.
2026-08-16 16:13:01 +00:00
mineymonkeyandGitHub 7fd734ba38 Electronic Radio Clarity and Actually Updates Storage Capability of IC Printer (#23030)
Yeah so I did all but the actual important information on how much
phoron and steel that is held in the printer, woops that's my bad. Fixed
that.

Also added mechanical hints to the examine menu on the electronic radio
headset.
2026-08-16 16:12:59 +00:00
Casper3667andGitHub 9d859a0000 Removes the access restriction on fuel tanks from ops (#23047)
Now with fuel tanks being persistent and
https://github.com/Aurorastation/Aurora.3/pull/23027 making the welding
packs start empty, machinists need a way to get welding fuel. As the
fuel tanks from ops are locked to engineering, it is creating a barrier
for them to get it. Hence the removal of the access restriction.
2026-08-16 16:12:56 +00:00
4816c7cdc1 Idris Delights - Have an Idris Summer! (Adds new foods and treats) (#23057)
-Adds the new Idris Delights vending machine and the various treats sold
within it
-Adds multiple new kitchen dishes (French toast, Lava cakes, Tiramisu,
and Takoyaki)

---------

Signed-off-by: tomixcomics <11053204+tomixcomics@users.noreply.github.com>
Co-authored-by: VMSolidus <evilexecutive@gmail.com>
2026-08-16 16:12:39 +00:00
002a9e7960 Brain food [RESUBMIT] - Let's fry these bad boys. Again. (Adds Psiren cuisine) (#23070)
-Adds Psiren cuisine
-Changes Psirens a bit to better fit cuisine purposes
-Adds a line of code to make sure the game doesn't freeze if flavors
don't get listed correctly for some reason
-Fixes the nutriment amount of Citrus Delight (I forgot to do that in
the generic food update)

---------

Signed-off-by: tomixcomics <11053204+tomixcomics@users.noreply.github.com>
Co-authored-by: VMSolidus <evilexecutive@gmail.com>
2026-08-16 16:12:25 +00:00
5df674622c Looping Sound Channel (#22918)
* Added the option to manually change the looping sound channel volume
in the SFX Preferences tab.


AI usage disclosure: The code for this was created in-part using GPT 5.6
Sol.

---------

Signed-off-by: Geeves <22774890+Geevies@users.noreply.github.com>
Co-authored-by: VMSolidus <evilexecutive@gmail.com>
2026-08-16 18:19:53 +02:00
GeevesandGitHub 5a410180b5 Closing Eyes (#22957)
* You can now close your eyes. This blinds you, but gives you protection
against flash effects.
* Welding while blind takes three times as long and has an 80% chance to
fail, with a risk of burning yourself.

<img width="825" height="571" alt="image"
src="https://github.com/user-attachments/assets/14871444-e1c6-4d0f-8f56-d07e56055db0"
/>
<img width="875" height="633" alt="image"
src="https://github.com/user-attachments/assets/134379bb-474c-4c5d-b069-2559d9390305"
/>


AI usage disclosure: The code for this was created in-part using GPT 5.6
Sol.
2026-08-13 16:57:18 +00:00
DreamySkrellGitHubDreamySkrell <>
3ad4c47ca2 initial_generic_waypoints be optional (#23043)
```
changes:
  - rscadd: "Overmap sector list `initial_generic_waypoints` is now optional."
  - refactor: "Small refactor of landmarks and docking markers on the SCC Scout Ship."
```

The `initial_generic_waypoints` could maybe be removed from all maps in
the future, but I didn't want a giga huge diff on this PR.

---------

Co-authored-by: DreamySkrell <>
2026-08-13 16:56:44 +00:00
FenodyreeAvandGitHub 038abdc905 Integrated circuits can be recycled and charged in rechargers (#23004)
Also generalizes autolathe recycling so that other containers can alt
click it to be recycled. Currently its still only circuits and the part
exchanger.

changes:
- qol: "Integrated circuit assemblies can now be recycled in autolathes.
They can't be recycled in the printer, because clicking the printer with
the circuit is required to scan it for cloning."
  - qol: "Integrated circuits can now be charged in rechargers."



https://github.com/user-attachments/assets/1b8325a8-aca0-4df0-a2a3-763eb8cec989
2026-08-13 16:25:05 +00:00
hazelratandGitHub f604244197 IPC power core rejigging (#23018)
By modifying power cell capacities,
https://github.com/Aurorastation/Aurora.3/pull/21285 inadvertently
tripled the amount of power available to IPCs in their roundstart power
core, going from 20000 --> 60000. This drags that down to 30000 with a
high-capacity power cell, still half again higher than the original
value, and increases the efficiency of recharge stations a little so
sitting in them is less tedious.
2026-08-13 16:24:55 +00:00
FenodyreeAvandGitHub 44b11d6804 Reduces damage to pilots from shots penetrating the cockpit (#23033)
I mistakenly assumed mech armour was good.

Only combat armour reduces the damage of any rifle round, all other mech
armour is worthless against actual weapons.
2026-08-13 16:22:56 +00:00
hazelratandGitHub bcd7a179bb Adds the stickbug hivebot boss (#23032)
Adds the stickbug of doom for admin use, plus a few QoL changes for
hivebots.

<img width="237" height="300" alt="image"
src="https://github.com/user-attachments/assets/7c8c1c29-f2f7-4532-b861-5674a3cd7ac5"
/>

- [x] Fix hivebot blood on the boss appearing red.
- [x] Verify the beacon creation ability is functional - could make it
spawn playables?
- [x] Implement the beacon boss sprite for future use.
2026-08-13 16:22:55 +00:00
Casper3667andGitHub 2e06b7c45e Prevents psiren omens, beckoners and the matriarch from being summoned (#23055)
Done on behalf of @VMSolidus. The reasoning is that the morale damage of
the omens and beckoners is balanced around there only being a couple,
while the gold slime core and the technomancer could spawn enough to
tank everyones morale damage to the ground. The matriarch was removed
from the gold slime core as an unintended spawn, due to its strength.
2026-08-13 16:20:59 +00:00
DreamySkrellGitHubDreamySkrell <>
18ab9035cc Door paint markers (#23045)
changes:
  - rscadd: "Door paint markers."

---------

Co-authored-by: DreamySkrell <>
2026-08-13 16:20:57 +00:00
KanoandGitHub 622814f794 Ports various platform sprites (#23054)
As title, ports some sprites from CM as a supplement for our generic
platforms. I wasn't able to find the authors due to how .dmi change
history is stored in git

## Images

<img width="731" height="797" alt="Screenshot_8"
src="https://github.com/user-attachments/assets/fb2cf11e-be85-4e16-b747-00d710fb9b1c"
/>


### Asset Licenses
The following assets that **have not** been created by myself are
included in this PR:

| Path | Original Author | License |
| --- | --- | --- |
| icons/obj/structure/platforms.dmi | Colonial Marines | CC 3.0 BY-SA |
2026-08-13 16:20:39 +00:00
6cad437c4a B(re)aking b(re)ad - Adds two new Adhomian Cuisine dishes (#23056)
Adds two new Adhomian cuisine dishes - The Meaty breadbake and the
Cheesy breadbake

---------

Signed-off-by: tomixcomics <11053204+tomixcomics@users.noreply.github.com>
Co-authored-by: CatsinHD <31459154+CatsinHD@users.noreply.github.com>
2026-08-13 16:20:35 +00:00