diff --git a/code/datums/changelog/changelog.dm b/code/datums/changelog/changelog.dm
index 1b7c7623253..5f4942ff9e8 100644
--- a/code/datums/changelog/changelog.dm
+++ b/code/datums/changelog/changelog.dm
@@ -7,7 +7,7 @@
/datum/changelog/ui_interact(mob/user, datum/tgui/ui)
ui = SStgui.try_update_ui(user, src, ui)
if (!ui)
- ui = new(user, src, "Changelog")
+ ui = new(user, src, "BubberChangelog") // BUBBER EDIT CHANGE: Changelog 2: Original: ui = new(user, src, "Changelog")
ui.open()
/datum/changelog/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
@@ -21,11 +21,22 @@
changelog_items[params["date"]] = changelog_item
return ui.send_asset(changelog_item)
+// BUBBER EDIT CHANGE BEGIN: Changelog 2
+/datum/changelog/ui_assets(mob/user)
+ return list(
+ get_asset_datum(/datum/asset/simple/server_logos)
+ )
+// BUBBER EDIT CHANGE END: Changelog 2
+
/datum/changelog/ui_static_data()
var/list/data = list( "dates" = list() )
var/regex/ymlRegex = regex(@"\.yml", "g")
+ // BUBBER EDIT ADDITION BEGIN: Changelog 2
+ var/list/tg_files = flist("html/changelogs/archive/")
+ var/list/bubber_files = flist("html/changelogs/bubber_archive/")
+ // BUBBER EDIT ADDITION END: Changelog 2
- for(var/archive_file in sort_list(flist("html/changelogs/archive/")))
+ for(var/archive_file in sort_list(tg_files |= bubber_files)) // BUBBER EDIT CHANGE: Changelog 2: Original: for(var/archive_file in sort_list(flist("html/changelogs/archive/")))
var/archive_date = ymlRegex.Replace(archive_file, "")
data["dates"] = list(archive_date) + data["dates"]
diff --git a/code/modules/asset_cache/asset_list.dm b/code/modules/asset_cache/asset_list.dm
index 033ec58a4cd..02efce9ad0c 100644
--- a/code/modules/asset_cache/asset_list.dm
+++ b/code/modules/asset_cache/asset_list.dm
@@ -148,21 +148,25 @@ GLOBAL_LIST_EMPTY(asset_datums)
/datum/asset/changelog_item/New(date)
item_filename = SANITIZE_FILENAME("[date].yml")
SSassets.transport.register_asset(item_filename, file("html/changelogs/archive/" + item_filename))
+ SSassets.transport.register_asset("bubber_[item_filename]", file("html/changelogs/bubber_archive/" + item_filename)) // BUBBER EDIT ADDITION: Changelog 2
/datum/asset/changelog_item/send(client)
if (!item_filename)
return
- . = SSassets.transport.send_assets(client, item_filename)
+ // BUBBER EDIT CHANGE: Changelog 2: Original: . = SSassets.transport.send_assets(client, item_filename)
+ . = SSassets.transport.send_assets(client, list(item_filename, "bubber_[item_filename]"))
/datum/asset/changelog_item/get_url_mappings()
if (!item_filename)
return
. = list("[item_filename]" = SSassets.transport.get_asset_url(item_filename))
+ . += list("bubber_[item_filename]" = SSassets.transport.get_asset_url("bubber_[item_filename]")) // BUBBER EDIT ADDITION: Changelog 2
/datum/asset/changelog_item/unregister()
if (!item_filename)
return
SSassets.transport.unregister_asset(item_filename)
+ SSassets.transport.unregister_asset("bubber_[item_filename]") // BUBBER EDIT ADDITION: Changelog 2
//Generates assets based on iconstates of a single icon
/datum/asset/simple/icon_states
diff --git a/html/changelogs/AutoChangeLog-pr-3434.yml b/html/changelogs/AutoChangeLog-pr-3434.yml
deleted file mode 100644
index 7aa06ec6439..00000000000
--- a/html/changelogs/AutoChangeLog-pr-3434.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-author: "pixelkitty286"
-delete-after: True
-changes:
- - bugfix: "chameleon model foot steps"
- - code_imp: "moved many of the borg defines to their correct _defines file and folder"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-3447.yml b/html/changelogs/AutoChangeLog-pr-3447.yml
deleted file mode 100644
index 886e658ed06..00000000000
--- a/html/changelogs/AutoChangeLog-pr-3447.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: "Jinshee"
-delete-after: True
-changes:
- - bugfix: "Fix Podperson eye color selection"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-3448.yml b/html/changelogs/AutoChangeLog-pr-3448.yml
deleted file mode 100644
index 78985cfce81..00000000000
--- a/html/changelogs/AutoChangeLog-pr-3448.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: "sippykot"
-delete-after: True
-changes:
- - rscadd: "added 4 new large shark tail options - large shark, large shark (finless), large shark (striped), and large shark (striped, finless)"
\ No newline at end of file
diff --git a/html/changelogs/archive/2021-05.yml b/html/changelogs/archive/2021-05.yml
index 7aa13a74c97..0870da3ce07 100644
--- a/html/changelogs/archive/2021-05.yml
+++ b/html/changelogs/archive/2021-05.yml
@@ -602,57 +602,11 @@
added.
- bugfix: Removed instances of duplicated pipes in icebox atmos.
2021-05-24:
- Cheshify:
- - rscadd: New gear is available within Mothership Astrum.
- - balance: Mothership Astrum has been entirely rebalanced.
- - bugfix: The Abductor Helmet is not longer being overriden by the Astrum helmet.
- - rscadd: The Rodstopper, a new machine able to halt looping immovable rods, can
- be found within the CE's locker.
- - bugfix: Bows, Goliath Shields, and Bone Swords now all have back icons
- - balance: All of the Tribal Expanded crafting & weapon damage has been massively
- reworked.
- DuffCreeper:
- - bugfix: Fixed up pipes in Metastation atmos so scrubbers are no longer connected
- to the public gas pumps
- FlamingLily:
- - code_imp: Cleanup of surgery and organ code
- Gandalf2k15:
- - rscadd: Black mesa is now finished.
- - rscadd: Expeditionary corps has been added!
- - rscadd: 'The trusted player system is now in place, see: TBA'
- - rscadd: A new gateway map has been added, Black Mesa.
- - rscadd: Lots of new Black Mesa content has been added.
- - rscadd: A new VOX system has been added.
- GoldenAlpharex:
- - bugfix: Nanotrasen's Paranormal Containment Team has been hard at work, rendering
- all of their cell-powered equipment unable to be tampered with by the dead.
- - imageadd: Player-made buttons now use the same sprite as the ones that can be
- found on the maps at round-start.
- GoldenKeyboard:
- - rscadd: Cryopods can store items; and their control computer can dispense them.
PositiveEntropy:
- imageadd: The cyborg toolset is now all new and improved, with a new coat of paint!
RandomGamer123:
- spellcheck: Attacking someone with a blood filter now uses the correct verb conjugation
- bugfix: Lockers can now only be unlocked if you're next to them.
- SkyratBot:
- - bugfix: Fixed another source to the bug preventing reconnect.
- - bugfix: Lockers can now only be unlocked if you're next to them.
- - bugfix: The delta station toxin thermomachines are now properly linked to waste
- and the chamber vents should no longer connect to the output pipes.
- - bugfix: Removed instances of duplicated pipes in icebox atmos.
- - bugfix: The secret documents on tram is now inside the cabinet and not the safe
- - rscadd: Hop has a trapdoor
- - imageadd: Departmental security officer ID cards show their department on the
- non-department access color bar, like Lawyers or Psychologists
- - imageadd: The color on the assistant trim's bar has been returned from previous
- ID card models.
- - imageadd: The rainbow ID card has been resprited.
- - imageadd: The flames ID card has been slightly improved.
- - spellcheck: Attacking someone with a blood filter now uses the correct verb conjugation
- - refactor: tamable component + egg layer component, animal variety element
- Sonic121x:
- - imageadd: ID trim for department peace keeper
SpaceDragon00:
- qol: Inspecting a weapon shows a warning label. By default, this shows force,
throwforce, armour_penetration, and block_chance in an esoteric manner. Inspecting
@@ -661,9 +615,6 @@
and the damage of those modes
- qol: Using credits on a PDA, Laptop, or Tablet now inserts the credits into the
contained ID card, if there is one
- ZephyrTFA:
- - admin: LOOC can now be muted. How you managed to earn a LOOC mute is beyond me
- though.
alexkar598:
- code_imp: Removed a proc thats used nowhere and implemented nowhere
maxymax13:
@@ -673,81 +624,6 @@
ID card models.
- imageadd: The rainbow ID card has been resprited.
- imageadd: The flames ID card has been slightly improved.
- thestubborn:
- - bugfix: blueshield jacket should show up now
- - rscadd: Tentacle Beard!
- tralezab:
- - refactor: tamable component + egg layer component, animal variety element
- unit0016:
- - bugfix: LZ-2's ruins can now spawn properly
- - bugfix: The mapper Kobold has finally pressed their keyboard enough for me to
- release a PR for them - I tried talking to them about why they've been doing
- nothing for 31 hours at this point but all they responded with was "A". On a
- related note, there's now the missing air alarms Interdyne was supposed to have.
-2021-05-25:
- Azarak:
- - rscadd: Added a liquids system, which includes a lot of changes. See https://github.com/Skyrat-SS13/Skyrat-tg/pull/4584
- Cheshify:
- - bugfix: Not as much "gamer loot" is available within Mothership Astrum
- DuffCreeper:
- - bugfix: 'Fixes #5907'
- - bugfix: Fixes plenty more that I just cant list off aaa
- - bugfix: Fixed up type paths in liquids
- FlamingLily:
- - rscadd: Surgical pain messages to every single surgery.
- - bugfix: Stasis sleepers now correctly say when they open close
- - bugfix: CDO's no longer get the detective's private access
- Gandalf2k15:
- - rscadd: The gateway can no longer be accessed by measly assistants.
- OrionTheFox:
- - bugfix: Delta Arrivals has had a few structural modifications, most important
- being that the shuttle now properly aligns with the dock! At least, on the side
- it docks to.
- - bugfix: Delta's Disposals will now make it to cargo, rather than exploding against
- their outer wall.
- SkyratBot:
- - code_imp: ai upload now doesnt lag you as much
- - spellcheck: The Research Director's plasmaman envirosuit is now labelled as belonging
- to the Research Director rather than the Chief Engineer.
- unit0016:
- - bugfix: the fire alarm for central primary is no longer located in a wall
- - bugfix: When the tile.. when the tile.. the tile. No longer does the funny.
- - rscadd: Several new ruins have been added to Rockplanet.
-2021-05-26:
- Cheshify:
- - bugfix: Ash arrows can be properly crafted.
- - bugfix: Organ Manipulation surgery no longer involves infinitely grinding up someone's
- torso/head with a saw
- FlamingLily:
- - bugfix: Fixes missing implant removal surgery pain
- - bugfix: Ghosts are no longer able to be pushed by the tide, nor are immoveable
- things.
- - bugfix: Ghosts have been banned from the splishy splashy. You wanna splash? Exist
- in our reality, nerd.
- Gandalf2k15:
- - rscadd: Maps have been reset. Report any bugs on discord.
- Melbert:
- - bugfix: Fixes being unable to feed chickens for eggs
- SkyratBot:
- - bugfix: Water vapor can be purchased instead of shipping an empty crate
- - bugfix: The express console can purchase gas canisters again
- - bugfix: Gas canisters come in a large crate again
- - bugfix: Fixed borgs dropping their equipment when cryo'd.
- - bugfix: Fixed being able to noogie harm people as a pacifist.
- - bugfix: Fixes the pda alert using the wrong overlay and displaying an error state
- - bugfix: fixed backpack firefighter tank nozzle refilling not working in extinguisher
- mode
- - bugfix: You can select the config again in the greyscale debug menu with admin
- controls enabled
- - balance: Canister leaks are more consistent rather than jittery, but slower.
- - bugfix: Certain objects that were migrated to a new greyscale system could no
- longer be colored via washing machine. This has been fixed.
- - bugfix: Muscled Veins is now correctly labelled as muscled veins, and not threaded
- veins.
- - bugfix: Gastrectomy now correctly has a surgery failure message
- - rscadd: From June 23rd to June 29th, celebrates pride week w/ rainbow floor tiles.
- - rscdel: Removed the toggle intent selection style preference
- - bugfix: Fixes the jumpskirt in hand icon displaying an error
tralezab:
- refactor: tamable component + egg layer component, animal variety element
2021-05-25:
@@ -793,38 +669,6 @@
- rscadd: Adds Integrated Circuits back to science. Circuit Components can be printed
off and placed onto these circuits. These circuits can be placed into shells
that can be printed at the protolathe.
- Yawet330:
- - tweak: Mold weight & Max occurances
- - tweak: Mold rats now respect hardsuits.
- thestubborn:
- - rscadd: Holobadges for...the majority of sec
- - bugfix: added a missing light to the det office in tram
- unit0016:
- - bugfix: Integrated Circuitry has been reimplemented onto NSS Journey and the Lavaland/Icemoon
- syndicate bases.
-2021-05-27:
- Gandalf2k15:
- - rscadd: 'PC MOB POLICY UPDATE: As a player controlled mob you are expected to
- play the role to the best of your ability. This means if you''re an animal,
- act like one. You shouldn''t display much intelligence if any. This also means
- if you''re engaging in combat you should refrain from mercing people fully.
- Play not to win but to create a challenge. You''re there to replace AI, make
- others enjoy the situation as well. If your simple mob is not above simple or
- mute intelligence, using structures such as welding tanks/canisters/boxes to
- hinder your opponent is entirely forbidden. Do not do this.'
- PositiveEntropy, Twaticus, AdipemDragon:
- - imageadd: Replaces the old stool sprites with new and improved ones made by Twaticus
- and AdipemDragon!
- - imageadd: Ports new and improved Tau Ceti bookshelf sprites!
- RatFromTheJungle:
- - balance: tones back the armor values of peacekeeper boots.
- - bugfix: professional tailors have repaired the gaps previously found in ALL polychromic
- wintercoats.
- SkyratBot:
- - bugfix: fixed check plumbing admin verb
- - bugfix: Jatum handles better non-assoc list
- - bugfix: Fixed UIs like the cargo chatroom console and the genetics console not
- opening.
dragomagol:
- qol: door remotes now use balloon alerts instead of chat messages
ninjanomnom:
@@ -848,76 +692,6 @@
- balance: Broken prescription glasses can be repaired using cloth or a welding
tool
- balance: Increased point cost of Nearsighted quirk from -1 to -4
- Swiftfeather:
- - bugfix: Teleportation now blocked at gateway missions
- tf-4:
- - bugfix: Hypospray hypo_spray will now spray the spray. Spray.
- unit0016:
- - bugfix: There are no longer two intersecting arrivals shuttle on Delta station.
- - bugfix: Random Mining now no longer loads on Icebox.
-2021-05-28:
- FlamingLily:
- - bugfix: Surgery.
- - bugfix: Silicons can now use stasis unit health scanners, too.
- Gandalf2k15:
- - bugfix: Shoes should now show up for digis.
- - bugfix: Floors now show up.
- - bugfix: Your balls will no longer fall out your pants.
- ORCACommander:
- - server: Please Run SQL Schema Update Queries
- Ryll/Shaps:
- - bugfix: Embeddable items like ninja stars can once again embed in people
- Skoglol:
- - bugfix: Organ damage messages are now only sent if you are conscious.
- - balance: Powersinks now generate heat when absorbing energy, and are a lot easier
- to counter with the SM than before.
- SkyratBot:
- - bugfix: Blob camera no longer falls through zlevels.
- - config: Explorer drone adventures are now stored in the db instead of config
- cacogen:
- - bugfix: Human burgers can name themselves after their ingredient sources again
- thestubborn:
- - bugfix: fixed the badge thing
-2021-05-29:
- FlamingLily:
- - bugfix: the power of flight has been removed from the space hotel's APCs
- SkyratBot:
- - code_imp: Added an optimization to the input subsystem.
- - bugfix: Fixed reagent multiplication exploit with 1u foam
- - bugfix: Some debris leftover from extending Kilostation have been cleared
- - bugfix: Deltastations kitchen's privacy shutters work again
- - bugfix: Some screwdriver inhand icons have been fixed to not show an error
- - bugfix: Some prison jumpsuit inhand icons have been fixed to not show an error
- thestubborn:
- - bugfix: grave b gone
- unit0016:
- - imageadd: The sprites for the grandfather clock and trash piles have been changed
- up - Expeditionary troopers now are also properly labelled as part of science.
- - rscadd: Protolathes can now manufacture the engineering plumbing RCD.
-2021-05-30:
- SkyratBot:
- - bugfix: Fixed not being able to add telecomms frequency filters
- - bugfix: Changed the color of command frequency in telecomms and headset GUI from
- blue to yellow to match chat color
- - bugfix: Starlight condensation now heals you on glass tiles exposed to space,
- multi-z stations, lavaland, and unroofed structures correctly.
- - bugfix: Fixes AND/OR gates not properly functioning because of null inputs.
- - bugfix: Mime crayons don't make you multicolored when you eat them.
- - bugfix: Smoking no longer spills spaghetti from your pockets
- - bugfix: Lit cigarettes no longer keep falling off
- - spellcheck: Removed extra "the" from item knockdown messages
- thestubborn:
- - bugfix: hopefully actually fixed the painting
-2021-05-31:
- RatFromTheJungle:
- - balance: returns the incoming damage modifiers to synths(1.6 brute, or 60% more
- 1.5 burn, or 50% more), and nerfs the heat damage, (2x, down from 3x.), Raises
- the cold damage to be in-line (1.2 or 20% above baseline).
- SkyratBot:
- - bugfix: Fixed some incorrect uses of UnregisterSignal
- - bugfix: Fixed duplicate PunPun in Tramstation bar
- - bugfix: Fixed duplicated chemistry locker embedded in the Tramstation HPLC machine
- - bugfix: Organs without owner no longer runtime
PositiveEntropy, Twaticus, AdipemDragon:
- imageadd: Replaces the old stool sprites with new and improved ones made by Twaticus
and AdipemDragon!
diff --git a/html/changelogs/archive/2021-06.yml b/html/changelogs/archive/2021-06.yml
index 0bbef2f594d..06e1a943ecd 100644
--- a/html/changelogs/archive/2021-06.yml
+++ b/html/changelogs/archive/2021-06.yml
@@ -2,154 +2,6 @@
Arkatos:
- refactor: Notice board now uses tgui.
- bugfix: Notice boards will now properly drop their contents upon destruction.
- KathrinBailey:
- - bugfix: Wildcat magazines now show up.
- - rscadd: Prototype version of Privateers, including a new shuttle for their exclusive
- use!
- SkyratBot:
- - bugfix: Fix oversight where Dynamic can assign antag datums to the minds of players
- who will be forcefully returned to the lobby.
- - bugfix: Screwdrivers no longer cause an error icon while in the belt
- - code_imp: removed the piece of code that causes carpotoxin to qdel temporal scars
- (hopefully I identified it correctly)
- - bugfix: Fixed dynamic latejoins.
- ZephyrTFA:
- - bugfix: OneClickAntag no longer dies when you remove someone's obsessed role
-2021-06-02:
- Inept:
- - rscadd: Some new holidays have been added.
- Melbert:
- - rscadd: GAGS flowers (Rainbow bunch flowers now look prettier!)
- - refactor: Rainbow bunch flowers now use GAGS instead of their old method of greyscaling
- - rscadd: GAGS Lizard Plushes. Now, lizard plushes get a randomly generated lizard
- color when they're made.
- SkyratBot:
- - bugfix: railings drop rods on deconstruction
- - bugfix: 'Some duplicate pipes in kilo atmospherics have been fixed. qol: Various
- piping improvements in kilo atmospherics.'
- - imageadd: The desk, green and banana lamps have been resprited.
- - imageadd: Better greyscale support has been added to datum materials allowing
- objects to have more complex compositions of sprites. The golden cleric mace
- is extra shiny now.
- - bugfix: Chairs no longer runtime when being deconstructed
- - bugfix: Mime shoes no longer runtime when generating their icon. This may fix
- some graphical oddity or do nothing at all since they get colored pure white
- anyway.
- - bugfix: Thermomachines across all maps have now been properly linked to waste
- and will work properly now. Trit huffers rejoice
- - bugfix: The SM pipe on metastation will no longer connect to waste and burn up
- the entire mix if your newly-chosen engineer friend accidently uses a grey pipe.
- - bugfix: Box whiteship now has a proper thermomachine setup for its cryo.
- - bugfix: Metastations xenobiology freezer is now properly connected.
- - bugfix: Icebox Supermatter setup's thermomachines are no longer connected to the
- injector and should no longer empty all of waste.
- - bugfix: Fixes up some randomly visible adaptors on metastation toxins and connects
- its freezer to waste.
- - bugfix: Kilostation's toxin freezers are now connected properly.
- - bugfix: Deltastation's supply freezer is now connected properly.
- - bugfix: Metastation's supply freezer is now connected properly.
- - bugfix: Tramstation's toxin freezers are now linked up to waste correctly
- - bugfix: Icebox N2 to pure pipe is now named correctly
- - bugfix: Fixed the duplicate piping infront of the n2 pipe on icebox
- - bugfix: Offering an item multiple times no longer causes runtimes
- - bugfix: The Cryopod bays on Icebox, Metastation and Deltastation have been wired
- into the station's power grid
- - bugfix: the extra vent on deltastations incinerator has been removed
- unit0016:
- - bugfix: NSS Journey now has the curator's console like Icebox.
-2021-06-03:
- KasparoVy:
- - bugfix: Skunk Ears are now connected to the head when facing north or south.
- - bugfix: The west-facing sprite for the Belly torso marking is lined up properly
- to the left.
- - tweak: Eevee Ears now let you colour a secondary theme.
- Melbert:
- - code_imp: removes some pointless initialize definitions
- Mordent:
- - refactor: Split DnaConsole interface into separate files.
- SkyratBot:
- - bugfix: Switchblades' blades now actually pop out like intended
- - bugfix: RD's liver now has the TRAIT_ROYAL_METABOLISM trait.
- - bugfix: Dynamic will no longer create malf humans.
- - code_imp: Atmos machinery now properly returns alt click
- - bugfix: Large energy crossbow now sounds like an energy crossbow
- - bugfix: AIs should no longer occasionally have their lawset randomly and silently
- returned to Asimov.
- - bugfix: Heretic's reality phase ability is no longer affected by the bag of holding
- tf-4:
- - bugfix: The crusader belt is now visible once more.
-2021-06-04:
- FlamingLily:
- - code_imp: Species helpers for robotic species are up to date
- - bugfix: General, Medical, and Security records work again.
- - bugfix: Minimal CMEs are now minimal.
- JJRcop:
- - bugfix: Drone tools can no longer be inserted into an autolathe.
- Merek2:
- - rscadd: Added line about a nice little bluespace portal.
- - rscdel: Removed the wise cow message in the shuttle catastrophe thing.
- SkyratBot:
- - bugfix: Local insurance providers have realized that they should advertise their
- services BEFORE the occurrence of the very accidents they are supposed to insure
- against.
- - bugfix: Fixed banana juice having x2 chance of appearing in mystery soup
- - bugfix: Attacking something as morph no longer floods your chat with "You're already
- in your normal form!"
- - bugfix: Fixes AI screen blur not disappearing after getting creampied
- - bugfix: Custom outfits will now save their ID trim.
- ZephyrTFA:
- - balance: Doing surgery in surgery or robotics with the correct equipment now gives
- you a multiplier to your operation speed.
-2021-06-06:
- FlamingLily:
- - bugfix: Synths screaming in non-existent pain when being operated on
- SkyratBot:
- - rscdel: Removed the EER from the examine text
- - bugfix: The full version of the greyscale configuration menu now properly displays
- all layer steps again.
- - rscadd: anonymous names feature content
- - spellcheck: any reference to ai triumvirate as "tripAI" has been obliterated.
- use the right case next time, jagoff
- - code_imp: Moved ai triumvirate off SSTicker
- - refactor: ai triumvirate is now a singleton datum controller
- - admin: anonymous names has two new themes and some optional enabled theme features
- - bugfix: Coniine no longer makes you suffocate even after it leaves your system
- - rscadd: Added the Internal GPS, Direction, Health, Pull and Signal Combiner circuit
- components.
- - rscadd: Added the Money Bot shell which can dispense and receive money and also
- added the ability to lock shells by scanning your ID over the circuit and then
- over the shell once inside the shell.
- - rscadd: You can now rename integrated circuits so that they appear on the attached
- shell.
- - code_imp: Restructured the circuit components folder to be more organised.
- - spellcheck: The text for the surrender emote is now grammatically consistent.
- - bugfix: DeusVend's name is now consistent across both the vendor and restocking
- unit
- - bugfix: The message for new duplicate keybinds should only appear once now
- - bugfix: Resetting your keybinds to classic mode works correctly now
- - bugfix: Hotkey mode is now actually used when new hotkeys with a default setting
- are added
- - bugfix: You will no longer get a duplicate keybinding conflict message for new
- hotkeys with no default key, they will just be silently set to unbound
- - rscadd: Ghosts can now find out how much power is in the network by examining
- cables
- - bugfix: dynamic will no longer spawn abductors if there aren't enough applicants
- for a proper 2-person abductor team
- - bugfix: Reaction chambers no longer drop beakers when deconstructed
- - bugfix: fix temperature pump exploit that allows the users to go over 1e8 limiter.
- This is done by a power usage equation that become exponential upon reaching
- 3e7 and will eat through the room APC charge (so no makeshift power drain).
- - admin: Sorted the traitor panel a bit.
- - bugfix: Fixed wrong icons in Orion Trail general market event
- - balance: Increased the minimum pop for heretics to 18 players.
- - bugfix: Gun scopes no longer work if you don't have the gun in your hands
- - bugfix: Fixes split personality sometimes switching to other person upon death
- - bugfix: connected the kilo medbay lobby apc to the grid
- ZephyrTFA:
- - bugfix: Making windows is now inline with making walls in that its not magically
- instant
- mozi_h:
- - bugfix: Fixed a small icon inconsistency with the notice board.
FlamingLily:
- qol: Surgery masks no longer block surgery.
Gamer025:
@@ -333,29 +185,6 @@
are now required to manually end the shift through Reboot World in the Server
verb tab or Reboot-World in the command bar. The shift will no longer automatically
restart past this point just because an admin undelayed end.
- - bugfix: 'Fixed defibrillator paddles and wall mounts not detecting charge changes.
- qol: Examining defibrillators now tell you if there is a power cell inside and
- how to remove it'
- - bugfix: Removes random camera and railing in space near xenobio on metastation
- - bugfix: Shaft Miners can now access Cargo on Tramstation
- - bugfix: Replaces unusable TEG board on derelict with boards for a turbine setup
- instead.
- Wallem:
- - bugfix: Matchbox sprite properly empties.
- ZephyrTFA:
- - rscadd: Interaction Menu
- - rscadd: Basic Interactions for the IM
- tf-4:
- - bugfix: You can no longer snort cocaine through a helmet or mask
- - bugfix: The electric welder is once again functional
- - refactor: The electric welder is now a welding tool subtype
- - bugfix: Shotguns now shoot buckshot properly once more
- - code_imp: adds ishorrorling() helper for all your horror ling checking needs
- thestubborn:
- - rscadd: added loadout stuff to the everyone vendors
- unit0016:
- - bugfix: Xenobiology on NSS Journey no longer generates roundstart atmos diffs.
- - rscadd: Interdyne has been remapped from the ground up.
- bugfix: Straight jackets and cargo gauntlets no longer pretend they're trying
to equip themselves when you hold them in your hand and mouse over an inventory
slot they can be equipped to.
@@ -416,28 +245,6 @@
Arkatos:
- bugfix: Fixed a case where slip mood debuff was not triggering at all. You should
think about being more careful next time...
- SkyratBot:
- - admin: Opening and closing job slots is now logged.
- - bugfix: The tram control console now displays an icon for science correctly.
- - imageadd: Three new hair gradients, a pair of shorter fades and a spiky wave.
- - bugfix: stimformation should not be called if no gas is actually being formed.
- - bugfix: Fixed a runtime with the comparison components.
- tf-4:
- - bugfix: The electric welder turns on
-2021-06-13:
- Gandalf2k15:
- - bugfix: The gateway now actually works as intended.
- ORCACommander:
- - bugfix: SQL Compliance Shall be Enforced
- - server: Database Admins please run update sql schema query
-2021-06-15:
- Arkatos:
- - bugfix: Cayenne will no longer keep flickering an error sign when carrying a disk.
- - bugfix: Radial info boxes will now layer properly over the radial button, so it
- is actually visible and clickable.
- GoldenAlpharex, but actually Mothblocks:
- - bugfix: Looking at the images in the Color Customization of the GAGS menu will
- no longer make you feel like you dropped your glasses.
JohnFulpWillard:
- admin: Opening and closing job slots is now logged.
Thunder12345:
@@ -458,83 +265,6 @@
They all like saltwater!
- rscadd: A few new snacks are also now available at the station's snack vendors,
for those of you too lazy to visit the kitchen.
- Mqiib's spritework:
- - imageadd: Skeletons and Robots now have unique wing sprites
- Ryll/Shaps:
- - admin: The Modify Transform -> Translate option in the VV dropdown will now remind
- you which way positive or negative numbers will move the sprite in question.
- For those of you wondering, on the Y-axis, positive moves you up and negative
- moves you down.
- - bugfix: Dogs are now properly restricted to being able to fetch/pick up items
- only, and can no longer fetch you lockers and full size cars
- SkyratBot:
- - spellcheck: fixed a typo in disembowelment
- - rscadd: When a midround ghost event doesn't get any applicants, a sleeper agent/syndicate
- infiltrator will roll in its place.
- - bugfix: Made statpanel relay used mouse button when clicking on turf contents.
- - bugfix: Fixed moneybots dispensing 0 credits and added a failure signal if it
- tries to dispense 0 credits.
- - bugfix: The Enhanced Interrogation Chamber's mid-interrogation messages will now
- actually be received.
- - bugfix: The hypnoflash (and flashes in general) now work on sleeping people.
- - refactor: Refactored tram code to be more robust and easier to read.
- - sounddel: The space-jam ambient sound will no longer play inside the AI's core.
- - bugfix: Fixed wrap and charge abilities for tarantula and broodmother spiders
- bobbahbrown:
- - admin: The interview system has been improved with in-chat clickable links for
- interviews and ability to include links in interview questions.
- tf-4:
- - bugfix: All meta prison wing turnstiles now have the same access requirements
- thestubborn:
- - bugfix: makes the pizza stuff and keffiyeh show up
-2021-06-16:
- Gandalf2k15:
- - rscadd: A new type of "pirate" event has been added! The Imperial Enclave Audit,
- watch out for those imperial scumbags!
- Mothblocks, ArcaneMusic for sprites:
- - rscadd: Bot circuits can now use USB cables to connect to computers and machines
- that support it. Currently, only the tram controls computer supports this, but
- support should roll out for other systems.
- - rscadd: Bot shells now have a button that you can register to.
- SkyratBot:
- - admin: Adding and removing quirks using the VV dropdown is now more reliable in
- adding or removing the effects of quirks.
- - code_imp: Refactors quirks and (hopefully) improves their code, squashing some
- runtimes associated with quirks on deleted mobs and increasing the performance
- of some quirks. There should be no player-facing changes, however any problems
- with quirks should be reported on the Github issue tracker since they may stem
- from this PR.
- - bugfix: Fixed the RAM component retaining its output type after the input port
- is cleared.
- - bugfix: Flipping a gun will no longer unload all its bullets.
- - bugfix: Wigs work when on your head again.
- - rscadd: Neon carpets exists. Bug your local chemist or quartermaster for a supply.
- - code_imp: Decals support user-defined planes and some forms of smoothing.
- - bugfix: carbon roses can no longer mutate into carbon roses
- - refactor: Refactors how spans are done in code.
- - balance: Bartenders now properly have a weapon's permit for their gun.
- - rscadd: Allows people to now examine fire alarms to detect their thermal sensor
- state. Silicons can now also Ctrl+Click to enable and disable at the sensor
- at a whim
- - code_imp: Cleaned up single letter variables in firealarm.dm
- capsaicinz:
- - bugfix: moved vendor + fixed atmos piping in sec
- thestubborn:
- - bugfix: badge error thing b gone
-2021-06-17:
- FlamingLily:
- - bugfix: The thief that stole Delta Station's visitation shutter buttons has not
- been caught. Insurance has provided new buttons.
- Gandalf2k15:
- - balance: Armadyne has invested in stocking your stations with ammunition workbenches.
- - rscadd: Armadyne R&D has come up with a brand new quantum printing machine, designed
- exclusively for ammunition!
- Melbert:
- - rscadd: 'There are now over a dozen new plant traits, but they''re not really
- new. A bunch of unique plant behaviors (like holymelon''s anti-magic) are now
- un-graftable, un-shearable, un-mutatable plant traits that show up on the plant
- analyzer now. qol: The plant analyzer now differentiates between traits you
- can mess with and traits you cannot.'
JohnFulpWillard:
- qol: Sloths can now be picked up.
2021-06-14:
@@ -562,42 +292,6 @@
- code_imp: Autodoc'd grown food / plant gene code
- refactor: Refactored grown food / plant gene code
- admin: A bunch more botany grief stuff is logged now
- SkyratBot:
- - bugfix: Fixed the tgui changelog dates sometimes being inaccurate to the source
- files.
- - bugfix: Amanitin (destroying angel toxin) is now back to its original amount of
- deadliness prior to human metabolisation changes.
- Yawet330:
- - tweak: Blueshields now get the lynx
- thestubborn:
- - bugfix: fixed the parka, digi ira uniform
-2021-06-18:
- ZephyrTFA:
- - bugfix: Flipped Tables are no longer coder bait
- - bugfix: Turnstiles are no longer coder bait
-2021-06-19:
- Cheshify:
- - rscdel: The Medical Beamgun is no longer available at cargo.
- Gandalf2k15:
- - balance: The taser has been rebalanced.
- RatFromTheJungle:
- - rscdel: Removed the nasty ass TK head glow.
- SkyratBot:
- - bugfix: Power fist no longer occasionally and randomly says it does not have enough
- gas when it has enough
- - rscdel: Removed the fake error texture floor tiles.
- - bugfix: Connects Delta's cryopod room to the station's power grid
- Useroth:
- - rscadd: Added ticket counter in the ticket statpanel
- ZephyrTFA:
- - server: SSjobs no longer runtimes if it can't find a single job in the job config
- capsaicinz:
- - bugfix: Moved the cargo chatroom and supply request console.
- thestubborn:
- - bugfix: digi bastards can now wear thankfully wear briefs, and sadly the ira uniform
- - bugfix: countess, karn, and formal red now hide shoes
-2021-06-20:
- Arkatos:
Mothblocks:
- rscadd: When a midround ghost event doesn't get any applicants, a sleeper agent/syndicate
infiltrator will roll in its place.
@@ -758,12 +452,6 @@
perk
- bugfix: Usable_limbs can no longer be set below 0, which let people walk when
they shouldn't be able to
- - bugfix: Tachyon-doppler arrays now connect with servers on different z-levels.
- - bugfix: Makes roleblocks in mafia actually end properly
- ZephyrTFA:
- - bugfix: Cryo Storage now silences PDAs that it hoovers.
-2021-06-22:
- ATHATH:
Timberpoes:
- bugfix: H.A.U.L. gauntlets no longer output a message about losing their grip
power when you drop them to the floor.
@@ -805,15 +493,6 @@
called Wallet ID Spoofing. Selecting this option will automatically snap the
Agent ID card to the front of any wallet, allowing the traitor to hide more
valuable ID cards behind it. This is disabled when the card is unforged.
- - refactor: Refactors dbcore.dm to possibly resolve the crashes that happen on Terry.
- coiax:
- - tweak: You can now open your own mail, even after being mindswapped into a different
- body. Or being podcloned. Or some other horrific body replacement experiment.
-2021-06-23:
- Cheshify:
- - bugfix: Anthromorphs can now wear chaplain stuff.
- Gandalf2k15:
- - rscadd: Synthetics can now suffer moderate to severe wounds, watch out!
Watermelon914:
- refactor: Refactors dbcore.dm to possibly resolve the crashes that happen on Terry.
carshalash:
@@ -924,75 +603,6 @@
including bags, wallets, tablets and PDAs without having to open them or remove
ID cards first by right clicking. You can still open containers to steal accesses
from exact cards as before.
- - rscadd: 'Added new mechanics or gameplay changes expansion: Expands content of
- an existing thing qol: made something easier to use'
- - spellcheck: Fixes bug in Ripley mech construction where it would say "securing
- the screwdriver"
- - bugfix: fixed inaccurate foodtypes/taste tags
- - balance: Disabled AI from interacting with the door shell.
- - bugfix: Fixed being able to re-enable the timer on the door shell.
- - bugfix: Made android and skeleton wings work instead of telling the user "you
- feel nothing but a terrible aftertaste" when they drink strange elixir
- - bugfix: Made android and skeleton wings not use a mutant colour overlay like lizard
- wings
- - imageadd: Fly wings :)
- - code_imp: Added android species check
- Tupinambis:
- - balance: Energy weapon tokens are now locked to Amber instead of Red security.
- - balance: Energy guns may now be acquired using energy weapon tokens.
- capsaicinz:
- - bugfix: fixes the names of the cargo office to mining dock airlock on icebox and
- journey
- jjpark-kb:
- - rscadd: added scrubbers to kilo's dorms
- oilysnake:
- - rscadd: Made loincloths colorable.
- theOOZ:
- - rscadd: Adds overlay emotes like *sweatdrop, *blush, *exclaim, *realize, *annoyed,
- and *glasses.
- - rscadd: Adds *turf emote, letting you place a temporary species-related object
- or leave a footprint behind on your position.
- - rscadd: Adds 4 new quirks that grant a particular style for the *turf emote.
- unit0016:
- - bugfix: Toxins is no longer a nightmare on NSS Journey.
-2021-06-27:
- Cheshify:
- - bugfix: A lockdown button has been added to astrum
- - balance: Astrum has been minorly rebalanced.
- SkyratBot:
- - bugfix: Fixes passive vents on space tiles flooding space with whatever was being
- vented
- - bugfix: fixes not being able to upload mutations from disk to dna console
- - bugfix: Fixes an issue where right clicking on an ID-secured locker would unintentionally
- trigger twice, locking then unlocking the locker. Right clicking now correctly
- attempts to lock and unlock a locker only once.
- SpookyTheFox:
- - bugfix: fixed multiple implants
- jaber134:
- - rscadd: Added two new reagents
- - imageadd: added drink icons
- jjpark-kb:
- - rscadd: added computers (not modular computers) to connect
- - imageadd: added connected computer images
- lyricalpaws:
- - tweak: Removes tacticool armour
- - bugfix: Gives tacticool sensors
- - rscadd: New turtleneck sprites
- unit0016:
- - rscdel: Oldstation is now the /tg/ variant again, pending a more soulful remap.
-2021-06-28:
- Arkatos:
- - bugfix: Spider egg clusters now stop processing when they mature to improve performance.
- - refactor: Spider egg clusters were integrated into the mob spawner system. This
- means you will now see grown spider eggs in the ghost spawners interface.
- - admin: Alien-banned players are no longer allowed to spawn from the spider egg
- clusters.
- Bluetshirtguy, RaveRadbury:
- - imageadd: New emojis for OOC chat and Mime PDAs
- SkyratBot:
- - rscadd: Added funtionality so free golems get an alert from policy.json.
- - rscdel: Deleted a line of text for Free golem's flavor text. Since in my opinion
- the spawn-in text, with the addition of the policy.json text was a bit too much.
carshalash:
- bugfix: fixed inaccurate foodtypes/taste tags
2021-06-27:
@@ -1010,8 +620,6 @@
Resource blobs
- code_imp: Added an initial HP define that is set as a normal blob's integrity
upon Initialize
- - refactor: 'hunger mechanics are now inherent to stomaches expansion: ethereal
- charge mechanic is now unique to their stomache and can be transferred freely'
Timberpoes:
- rscadd: Baseball bats can now be used to break kneecaps with their right click
attack. This requires the target to be one of either prone, immobilised or buckled
diff --git a/html/changelogs/archive/2021-07.yml b/html/changelogs/archive/2021-07.yml
index 0edd094e33c..ae73dc30d1c 100644
--- a/html/changelogs/archive/2021-07.yml
+++ b/html/changelogs/archive/2021-07.yml
@@ -286,63 +286,6 @@
as well
PositiveEntropy, Kryson, maxymax13:
- imageadd: The Security TV, Smartfridge, and Booze-o-Mat now have new updated sprites!
- SkyratBot:
- - bugfix: Fixed the component printer's layout being broken.
- unit0016:
- - rscadd: NSS Journey has been updated /a lot/. Visit your local NT Rep's office!
- - rscadd: Corporate Airlocks! Buildable via metal sheets, RCD, or airlock painters.
- - bugfix: The NT Rep's office is no longer labelled as the Blueshield's still. Yee-Honk.
-2021-07-11:
- "@\_Azarak":
- - bugfix: pipes sprite fix
- - refactor: pipe sprites now uses bitmasks
- Nari Harimoto:
- - bugfix: AI intellicards can no longer be teleported out of intellicard slots on
- consoles using telekinesis or silicon access range
- SkyratBot:
- - balance: Downgrades the Chem Dispenser and Heater to their Ghetto Counterparts
- - bugfix: fixes a plumbing harddel
- - bugfix: 'Fixed some station name html encoding for plaintext handlers like: Station
- Charter announcements, the World Name (SS13 window title), and in Cross Server
- Messages both custom and news about the crews ultimate fate.'
- - bugfix: Fixed and improved wabbajack polymorph logging.
- - bugfix: Fixed CQC sometimes not registering attacks and grabs properly.
- - bugfix: Fixed all clients being forced to Fit Viewport regardless of their Auto
- Fit Viewport preference being set to manual.
- - imageadd: Replaced old Mjolnir sprites with new Mjolnir sprites.
- - bugfix: Fixed moth wings not showing up when you have a suit on.
- - bugfix: two floor decals that were on a wall in delta xenobio are no longer
- - balance: The Bluespace RPED can no longer teleport chems in reagent containers,
- instead emptying any reagents from containers inserted into it.
- - bugfix: Silicons can now toggle emitter locks with secondary attack.
- - bugfix: Flash implant now displays its message instead of runtiming when used
- on cooldown
- - bugfix: Fixed Tram ghost magnet and other cases of observer forceMove.
- - code_imp: Renamed some observer code vars for better readability. Portals check
- types less.
- ZephyrTFA:
- - bugfix: Corrected the issue where borgs could use non-home gateways
- lyricalpaws:
- - balance: Changes a few quirk's points
- unit0016:
- - bugfix: Maintenance's loottable is once again safe to use for ruins, gateways,
- etc.
-2021-07-13:
- Cheshify:
- - rscadd: Gives Vanguard Operations specialized roles.
- - bugfix: Actually adds splints to the tactical medkit.
- - rscdel: removed combat defibs from gateways en-masse.
- - balance: gateway maps and gear have been seriously rebalanced. No more vanguards
- walking around with syndicate gear and spooking security.
- GoldenAlpharex:
- - bugfix: Turnstiles no longer make you forget how to move.
- - refactor: Refactored turnstiles to make better use of signals and existing procs.
- Nari Harimoto:
- - bugfix: anti-magic now prevents you slipping from the magic flying incorporeal
- bananas fired by the honks staff
- SkyratBot:
- - bugfix: restraints now use equip_to_slot() instead of snowflake code when applied,
- thus fixing issues such as cuffs not falling off when hit by a shrink ray.
Time-Green:
- refactor: "A majority of species features have been turned into organs. Soon you\
\ will be able to combine a moth and a lizard into one \xFCber being"
@@ -444,59 +387,6 @@
- code_imp: Added a proc to initialize a list of object subtypes keyed to their
object paths
- code_imp: Turned Hits_To_Crit into a define
- - code_imp: 'Improved the clarity of some comments, along with adding some where
- they were previously missing qol: A gun''s weapon notes now gives you the notes
- of its magazine, which gives you the notes of its ammo, making it so you don''t
- need to take out ammo to see its damage.'
- - bugfix: marine ert engineers spawn with welding goggles instead of nvgs so they
- can actually weld
- - bugfix: Venus human traps and swarmers' names are now numbered.
- - imageadd: The pumpkin, blumpkin and their carved varieties have new sprites.
- - bugfix: Fixes the mech mounted teleporter.
- - bugfix: Fixes intrinsically paralytic mobs being cured from their paralysis just
- because they got a brand new (prosthetic) limb.
- - bugfix: Hostile critters such as lobstrosities and giant tarantulas won't throw
- themselves at you after dying while charging their attack.
- - bugfix: Monkeys and dogs no longer yoink items they can't reach.
- - bugfix: Fixed Chat Highlighting only working for the first comma separated entry.
- - bugfix: Your own messages sent over a radio and dchat now properly avoid_highlighting.
- - bugfix: fixes the equipment menu lacking from the honker mech html UI because
- of bad copypasta.
- - bugfix: Fixed ai monkeys appearing as catatonic on examine()
- - bugfix: Roundstart stationary air tanks now have the proper 21:79 oxygen:nitrogen
- gas mix that is used throughout the station.
- - bugfix: Fixes inhand holder jank separating pAIs holoforms from their shells in
- some occasions.
- - balance: Railings integrity has been lowered from 300 (default for structures)
- to 75 (grilles integrity times 1.5) and their armor changed to match that of
- grilles.
- - bugfix: Deletes a duplicate chat feedback on [mob/carbon/proc/swap_hand()]
- - bugfix: energy guns now have the correct icon, and no longer look like nanotrasen
- brand super soakers
- - bugfix: the set of duplicate icons for energy guns that caused the guns to look
- different in map editors is no longer
- - bugfix: Fixes lone stationary tanks having 5000L instead of 2500L volume.
- - bugfix: Fixes being able to simultaneously perform an attack and a tackle as a
- xeno or monkey with right click and combat mode on.
- - bugfix: apparently mothwings were supposed to go above spacesuits, oops
- - bugfix: fixed the blackout station trait affecting unrelated areas like CentCom
- quarters.
- - bugfix: fix some moth and lizard preferences missing
- - bugfix: the metastation genetics monkey pen no longer has a ' in front of its
- name
- - bugfix: Fixed admin observer special radio keys double sanitizing input.
- - bugfix: you can no longer get infinite chems from holodeck bees
- - bugfix: Fixed morph speed being slower while undisguised and some old code related
- to it.
- - bugfix: When someone ties a neckerchief near you, it no longer tells you you did
- it.
- - bugfix: Fixed admins getting spammy logs from arrest console circuits.
- - bugfix: Cannon balls should no longer destroy "indestructible" walls.
- - bugfix: Watchers no longer search 9 tiles away for stuff then throw the result
- away if it's more than 1 tile away
- - spellcheck: Circuit board for All-In-One Grinder is now named appropriately
- - bugfix: The Tram whiteship now has a chance to spawn!
- - bugfix: latejoin arrivals are less likely to spawn on top of each other now.
- code_imp: Improved the clarity of some comments, along with adding some where
they were previously missing
- qol: A gun's weapon notes now gives you the notes of its magazine, which gives
@@ -510,24 +400,6 @@
- balance: Ashwalkers now have lungs adapted for the atmosphere of Indecipheres,
and now breathe. However, if the Indecipheres atmosphere has miasma, they are
immune to it.
- itseasytosee:
- - bugfix: Syndicate hardsuit helmet sprites will now properly update when combat
- mode is activated.
- theOOZ:
- - rscadd: Added Bumbles to hydroponics
- - rscadd: Added Markus to cargo
- - rscadd: Added Poppy to engineering
- - rscadd: Added E-N to robotics
- thestubborn:
- - imageadd: made the cowbell collar unshit
-2021-07-14:
- Cheshify:
- - rscadd: Lavaland flora seeds can be purchased from cargo.
- SkyratBot:
- - bugfix: fixed the charge moodlet lingering after a ethereal stomach removal.
- - bugfix: Packages sent through disposals to Virology on Icebox won't end up at
- Xenobio anymore.
- - admin: Adds a safety check to the "Release Obj" admin proc
dragomagol:
- bugfix: The Tram whiteship now has a chance to spawn!
itseasytosee:
@@ -604,54 +476,6 @@
- bugfix: Fixed AI hologram transmit runechat text.
- bugfix: Fixed the AI radio help message giving false info about the generic department
key.
- - bugfix: Fixed the rat king's abilities being usable while dead.
- - bugfix: Fixed the rat king's Domain ability being usable on cooldown.
- - balance: Removes the refresher crystal from lavaland loot.
- Spc-Dragonfruits:
- - balance: Reduced firerate of M45A5 Elite.
- - balance: Reduced magazine size of M45A5 Elite.
- - balance: Reduced firerate of CFA Lynx.
- - spellcheck: Renamed Blueshield's "stun baton" to "electric prod"
- - code_imp: Removed some unnecessary comments.
- Yawet330:
- - rscadd: Neural lacing and mechanics behind it
- capsaicinz:
- - bugfix: replaced arborlink vault broken catwalks with tiles. also removed any
- trace of air tanks because apparently those are fucked.
- unit0016:
- - bugfix: NSS Journey's toxins SHOULD be fixed.
-2021-07-15:
- SkyratBot:
- - code_imp: Improved Jaunt Move checks a little bit.
- - bugfix: Eggs now work when cracked into glasses
- - bugfix: Resolves my sanity as truncate now returns a valid value when it does
- nothing
- - spellcheck: The notification that ghosts receive when someone raises a spectral
- blade no longer contains an incorrect usage of the word "the"
- Spc-Dragonfruits:
- - spellcheck: Made caliber classifications clearer
- - spellcheck: Shortened the names of Armadyne firearms drastically
- - spellcheck: Made some descriptions easier to read / More descriptive
- - spellcheck: Fixed some grammatical errors
- - balance: Re-added M112 DMR to primary list
- - balance: Added disabler to sidearm list.
- - tweak: M112 DMR fires slower.
- - tweak: All 9x19mm firearms have a higher RoF.
- - tweak: All 10x25mm firearms have a lower RoF.
- - balance: Completely remade 6.3mm. Turned into special purpose rounds. Flechette,
- Fragmentation, Disuassion.
- - tweak: All 9x19mm firearms have a higher ammo count.
- - tweak: Some 10x25mm firearms had their ammo counts lowered.
- - balance: The DTR-6 no longer is a spray can that uses bullets for paint.
- - balance: 9x19mm deals less damage. 10x25mm and 12.7x30mm deal more damage.
- - balance: The P-3, G-17, R-8, DZR-10 and VKC have been removed from token options.
- They are still in-game.
- - code_imp: 'Added some useful comments and deleted some useless comments. remove:
- P-3, G-17, R-U, DZR-10 and VKC gunsets have been deleted. The firearms themselves
- are still in-game.'
- lyricalpaws:
- - bugfix: Brushing someone's hair no longer tells them they brushed their name's
- hair
2021-07-15:
Wayland-Smithy:
- qol: Revenants can orbit adjacent people and things with Right Click, unless they
@@ -676,11 +500,6 @@
now causes you to die of burn damage, not brute damage.
- rscadd: A special suicide has been added to space helmets. It has a special variant
for if you attempt it in a cold environment (while not immune to cold).
- Cheshify:
- - bugfix: An unidentified object in black mesa has been resolved
- Mordent:
- - bugfix: Hover effect on tgui Tabs made less visually laggy.
- SkyratBot:
Mordent:
- bugfix: Hover effect on tgui Tabs made less visually laggy.
Watermelon914:
diff --git a/html/changelogs/archive/2021-08.yml b/html/changelogs/archive/2021-08.yml
index 6aad056b728..2bf6722baea 100644
--- a/html/changelogs/archive/2021-08.yml
+++ b/html/changelogs/archive/2021-08.yml
@@ -37,140 +37,6 @@
now share an APC and air alarm
- bugfix: trams toxins storage room now uses its correct area, added an APC to power
the room
- RatFromTheJungle:
- - imageadd: new demonic core sprite (ooo animated ooo)
- SkyratBot:
- - bugfix: fixes being able to mind transfer into someone protected against it by
- targetting their holoparasite/guardian.
- - rscadd: People with the phobia of falling are now afraid of open space turfs.
- - bugfix: Fixes martial grab combos working while inside objects.
- - bugfix: The outputs on the Launchpad USB component now work as they should.
- - spellcheck: You no longer "accidently" shoot yourself spinning a gun
- - bugfix: The wisdom cow no longer spawns in space.
- - imageadd: Added new sprites and animations for module duplicator
- - bugfix: 'fixed issue where plasmaman clown and mime would die to the filtered
- plasma, clown and mime masks no longer have filters roundstart qol: filters
- can be removed with rclick'
- - bugfix: riding offsets actually work now
- - bugfix: Fixed copies of stamped papers sharing the same `stamps` list.
- - bugfix: Clumsily hitting yourself with the classic baton now gives you the message
- with the appropriate perspective
- - bugfix: Fixes unremovable components counting towards overall capacity. BCIs are
- no longer 6 slot instead of 10
- - bugfix: cannons lost their sprites in the last feature addition for them... now
- they have those back!
- - bugfix: All cargo manifest exports should now work as expected. No more gaining
- money from selling erroneously denied manifests and not gaining/losing money
- from incorrect manifests.
- - bugfix: Fixed e-bolas being unblockable, and not being able to ensnare flying/floating
- mobs (though kinda pointless because they ignore the slowdown).
- Snakebittenn:
- - rscadd: Adds a linguist trait to get one more language point.
- SpooksAnno:
- - bugfix: Limits advanced modules to 1 for borgs
- - bugfix: Advanced materials, exclusive for engi borgs
- Tennessee617:
- - rscadd: 'Adds a space-ruin expansion: Expands the possible space-ruin options'
- ma44:
- - rscadd: Weapon rechargers will now be more noticeable when it has finished recharging
- something.
- softcerv:
- - balance: Mediguns can no longer heal corpses
- - balance: Mediguns shots are more potent but also take up more energy.
- - balance: The Medigun kit from cargo no longer comes with cells included.
- - bugfix: Medigun shots can no longer heal borgs and synths
- - bugfix: fixed mediguns fitting inside of turrets and emitters
- tf-4:
- - bugfix: Delta permabrig now has atmos piped in
- - bugfix: Cleaned up some areas on NSS Journey
- - bugfix: the Lynx and Wildcat now have safeties.
- unit0016:
- - bugfix: BMT can no longer steal departures on NSS journey.
- - balance: The DS-2 Admiral's office now starts bolted and unhackable, to curb tiding.
- - bugfix: The Interdyne Virology monkey has been made to stay in a constant state
- of euphoria so it may not harm the masses.
- - bugfix: The Interdyne Deck Officer's office now is command only - but has some
- extra goodies for the DO when they wake up.
-2021-08-04:
- FlamingLily:
- - rscdel: the gas giant doesn't existthe gas giant doesn't existthe gas giant doesn't
- existthe gas giant doesn't existthe gas giant doesn't existthe gas giant doesn't
- existthe gas giant doesn't exist
- - bugfix: Some alt title functionality
- ForrestWick:
- - rscadd: 'Added more ashwalker clothes. expansion: Expanded the previous ashwalker
- nest ruin into a larger village qol: Gives Ashwalkers more tools, barter options,
- and general gameplay options for their rounds.'
- - config: put the new map in the config file
- Gandalf2k15:
- - bugfix: You will now join as your set size.
- GoldenAlpharex:
- - bugfix: Nanotrasen decided to fix the issue in its formal coat production line,
- resulting in the Nanotrasen Representative receiving their CentCom formal coat
- once again, now with some extra buttons to toggle its look on the go!
- Improvedname:
- - bugfix: Anti-tider mister is no longer invinsible inhand
- RatFromTheJungle:
- - bugfix: "fixes slime sprites why don't we have a 'spritefix' cl \U0001F614"
- Seris02:
- - bugfix: batons stamcrit again
- - rscadd: mentor chat filter
- SkyratBot:
- - bugfix: ethereal hair will now change with ethereal color without an external
- update
- - bugfix: Beef wellingtons cannot be sliced to produce beef wellington slices that
- can be sliced to produce beef wellington slices that can be sliced to produce
- beef wellington slices...
- - code_imp: Improves BCI code by removing an easily bypassable `add_to` check for
- circuit components and implementing proper typechecking in the addable BCI components
- - bugfix: Fixed the UI notices about the supported types not showing up on all BCI
- components
- - admin: 'Adds admin components that allow admins to set variables, get variables,
- call procs and execute sdql via circuits. To enable these components to function,
- an admin needs to enable the admin_only variable on a circuit. qol: Adds more
- entity information to shell outputs to allow circuits to identify who used the
- shell. expansion: Adds list literals.'
- - admin: adds list getter and text2num to sdql wrappers
- - bugfix: Fixed phantom slipping caused by synthesized banana peels.
- - refactor: refactored spirit possession used in the possessed blade into a component.
- now ANYTHING could be possessed if you so desire!
- - bugfix: The pip count, layout, and orientation of standard D6s has been brought
- in line with a standard casino D6.
- - bugfix: Being clumsy no longer protects you from grenades sticking to your hands.
- - bugfix: CTF will no longer delete objects on CTF maps that shouldn't be deleted
- and it'll also successfully regenerate the map once a CTF round ends.
- - bugfix: Using Twisted Construction on an AI shell no longer ghosts the AI
- - bugfix: Fixed the metabolism unit test randomly failing because of neurowhine
- - balance: BCI now has it's own research node.
- - bugfix: You no longer can remove BCI core and actions from BCIs and insert them
- into other circutry.
- - bugfix: Cultists can once again draw runes in lavaland mining station
- - code_imp: Pavlova has better code :)
- - spellcheck: Pavlova has a different description now
- - refactor: Revenant, Sentient Disease, Space Pirates, and Obsessed have been registered
- into dynamic mode.
- - bugfix: Vehicles can now be buckled to again.
- - bugfix: fixes soulstones granting themselves every language... instead of the
- spirit inside. lol.
- - bugfix: Cultists using Twisted Construction on a Cyborg will no longer spawn 2
- constructs.
- - bugfix: Phazon microtool arrays no longer have an error sprite
- - bugfix: Fixed rad collectors ignoring letting anyone (un)lock them with their
- ID.
- - bugfix: Fixed a bug preventing the Plexagon HR Core app from de-prioritising jobs
- when 5 or more jobs were prioritised.
- - bugfix: Fixed medical HUDs not showing the defib icon.
- SpooksAnno:
- - bugfix: fixes the affection upgrade not able to be used more than once
- carshalash:
- - bugfix: Eggs now work when cracked into glasses
-2021-08-05:
- ForrestWick:
- - rscadd: 'New gateway: Scalamov Prison. Custom-made enemies and clothes specific
- to the gateway, but can be adapted to other stuff.'
- - imageadd: icons for the new items and enemies.
- - code_imp: added code and items for the prison, such as jumpsuits, enemies, and
- the ghost roles.
Ryll/Shaps:
- qol: Adds a new preference for photosensitive players in the OOC preferences menu
to replace the bright white flash from things like flashes/flashbangs with a
@@ -251,114 +117,6 @@
- rscadd: The stairs leading to the bar have been made very accessible from the
tram dock, being right beside the kitchen entrance. The lower segment of the
bar has been redesigned the better fit this change.
- Melbert:
- - code_imp: Uncomments the code that makes chaplains enjoy holymelons. Chaplains
- will now gain positive moodlets from eating holy melons once again.
- SkyratBot:
- - refactor: Refactors datatype code completely for integrated circuits.
- - refactor: Options have been moved to their own input port with their own special
- type known as the "Option" type.
- - balance: Standard bananium floor is now viable for clown decoration and isn't
- slippery. Custom bananium floor tiles can be used to slip people though.
- - bugfix: Fixed CTF breaking when it restarts.
- - bugfix: Custom vendor bluescreen
- - bugfix: List literal components no longer append their output with garbage data.
- - rscadd: Makes Icebox Service Multi-Z through retroaction.
- - rscadd: The first Multi-Z kitchen on /tgstation/
- - bugfix: 'Tosses out the non Multi-Z aspects of the previous service qol: You can
- now use stairs to visit the various areas of Icebox Service'
- - bugfix: This should force ruin spawns out and away from the center of the station.
- Next step is to actually add icebox ruins that are small but help force that
- spawn condition.
- - bugfix: Dead Cyborgs are thrown back into their body when turned into a Cultist
- construct.
- - bugfix: manned turret projectiles now actually go towards where you aim
- - soundadd: new heavy machinegun sound from tgmc
- - code_imp: deployable component, for deploying things from other things
- - bugfix: You no longer need to unbuckle twice from xenomorph nests to be free
- - spellcheck: Gutlunches no longer eat through their nutrient sacs.
- lyricalpaws:
- - rscadd: Traitor items
- - rscdel: removed Elite Suit from Uplink
- unit0016:
- - rscadd: The Imperial pirates no longer use a near identical shuttle structure
- to the other slaver shuttle that also exists.
-2021-08-06:
- 3D-Bat:
- - rscadd: Low wings
- FlamingLily:
- - bugfix: Surgical procedures done by cyborgs no longer insert a living organ storage
- bag into your chest cavity
- - spellcheck: Surgery pain uses span procs
- ForrestWick:
- - bugfix: removed debug machine that was not supposed to be there
- - bugfix: dialed back most of the gamer loot from the zombie prison gateway, fixed
- some code errors in the enemy AI, added some new enemies to increase difficulty
- since people noted that it's a bit easy to get through zombies, reworked the
- loot lists for enemy drops
- - bugfix: made the flavortext for the scalamov ghost roles less confusing, fixes
- a lot of other oversights with shutters, buttons, and the warden boss fight.
- - rscadd: Added hatchet, new building, ORM, mining vendor, and changed up a few
- bits of the ashwalker village
- Gandalf2k15:
- - rscdel: Removed bluespace lockers.
- Melbert:
- - bugfix: Rust Heretics now need to stand on Rust to heal again, instead of passive
- free healing
- SabreML:
- - imageadd: Added vox sprites for the owl mask.
- Seris02:
- - bugfix: SOOC works again
- SkyratBot:
- - code_imp: Removes (almost) all misc files from the clothing module
- - bugfix: Fixed being able to polymorph pAIs into other mobs. It changes their
- holoform now instead.
- - bugfix: Fixed being able to polymorph mimics spawned from a staff of animate
- - bugfix: Tailored winter suit hoods are now colored correctly
- - balance: Doubles capacity for most shells
- - admin: adds an additional log file, mob_tags, for referencing mob numbers in logs
- - bugfix: Contractor pods won't land on groundless turfs such as chasms, lava or
- open space anymore.
- - refactor: 'refactored the thrownthing datum a little. qol: you can now throw stuff
- at movables with no density, such as mobs lying on the floor, mice, APCs, light
- bulbs etcetera etcetera.'
- ZephyrTFA:
- - bugfix: Augments now correctly apply on characters
- axietheaxolotl:
- - rscadd: Adds CMO turtleneck to code, and puts it in locker.
- linnpap:
- - rscadd: Added wrestling rings
- - bugfix: You can now actually craft crack bricks.
- unit0016:
- - bugfix: Blue robotics isn't real. And now, it can no longer hurt you... on NSS
- Journey. Watch out, Kilo fans! I hear they bite...
-2021-08-07:
- 3D-Bat:
- - rscadd: A nice sink for doctors to get water from
- Azarak:
- - bugfix: Fixes blank liquids and division by zero in them
- FlamingLily:
- - bugfix: everything (relating to alt titles)
- - rscadd: more alt titles
- - bugfix: Employment contracts now are uh good for RP and shit
- ForrestWick:
- - rscadd: put pandemics down and modified zombie damage
- - bugfix: shrunk down some parts of the map to help with performance hits, loot
- reductions
- Gandalf2k15:
- - balance: NPC zombies can now be any job(apart from command jobs)!
- - bugfix: NPC zombies are now actually zombies.
- - refactor: The preferences system has been reset. Report any anomalies to github.
- - bugfix: Ghost roles work now.
- SkyratBot:
- - code_imp: Made the Occupational Corruption Device's deadchat message less cryptic,
- and repathed it to something more descriptive
- - bugfix: Reinforced walls should now smooth properly.
- - bugfix: Wirecutters have their correct belt slot icon again.
- - rscadd: 'Added new mechanics or gameplay changes expansion: Expands content of
- an existing thing qol: made something easier to use'
- - bugfix: railings can now be vaulted/climbed over from both sides.
- - admin: Admins now have a "View All Circuits" button to investigate circuits easier.
Mothblocks:
- bugfix: Fixed medical HUDs not showing the defib icon.
SmArtKar:
@@ -485,78 +243,6 @@
- bugfix: Icebox - Kitchen was missing the Processor and Grinder, you can now find
them in the freezer and downstairs respectively.
- bugfix: Icebox - Changes the bot portal in the bar to the correct subtype.
- - bugfix: Folded gold wheelchairs are now actually made of gold.
- - bugfix: Adds a missing wall on CentCom in the supplypod facility
- - bugfix: Most if not all CentCom windows should now be on plating
- ZephyrTFA:
- - balance: NT has signed an agreement to properly stock station atmos tanks.
- axietheaxolotl:
- - rscdel: Removed HOS Parade jackets.
- - rscadd: Added new HoP clothing (satchel, backpack, duffle bag, turtleneck, and
- turtle skirt.)
- - rscadd: Added unique HoP satchels to loadout
- - rscadd: Gave HoP their own Bowman.
- - imageadd: added icons for the HoP satchels, and turtleneck, and skirt.
- capsaicinz:
- - rscadd: warden's disabler is back from comment hell.
- - bugfix: security officer is no longer cucked by a weird pr change. disabler back.
- softcerv:
- - bugfix: fixes runtime errors with the medigun
- twilightwanderer:
- - bugfix: Fix the program at the cyborg tablet
- unit0016:
- - bugfix: Icebox
-2021-08-08:
- SkyratBot:
- - bugfix: Fixed circuit component options
- capsaicinz:
- - rscadd: sec sarge now gets a sidearm token.
-2021-08-09:
- CandleJaxx:
- - rscadd: 'added vox language sprite qol: swarmer gone edit: changed ''shrieks''
- to ''skrees'' - minor verbage change but one that brings it into line with other
- servers'' vox verbs'
- FlamingLily:
- - bugfix: Suit sensors and alt titles
- SkyratBot:
- - bugfix: Pathfinding component should now properly go around walls every time.
- - bugfix: Accounting machines now assign the job to the bank account, meaning that
- new accounts can buy things without being considered budget cards.
- - code_imp: Moves most circuit component defines to their appropriate files
- - bugfix: pais will no longer get hurt by the rod of asclepius
- - bugfix: added parentheses to properly calculate days in round time
- jjpark-kb:
- - rscadd: added Xenoarchaeology
- - rscadd: added the basic tools for xenoarch (1,2,3,5,10 hammers, brush, and measuring
- tape)
- - rscadd: added the basic storage for xenoarch (belt and bag)
- - rscadd: added the basic machines for xenoarch (researcher, digger, recoverer,
- and scanner)
- - rscadd: added the advanced tools for xenoarch (advanced hammer and brush)
- - rscadd: added the advanced storage for xenoarch (advanced bag)
- - rscadd: added the strange rock (think lootbox)
- - rscadd: added reagent forging
- - code_imp: changed species IDs into defines
- softcerv:
- - code_imp: removed unnecessary/redundant code from the medigun
- - spellcheck: Fixes description for the standard medigun case to be more accurate
- to the removal of included cells with the gun.
- tf-4:
- - bugfix: The Meta SM air alarm now starts unlocked
-2021-08-10:
- ForrestWick:
- - balance: Changed some loot in scalamov and buffed the zombies to compensate
- - bugfix: decreases enemy count in Scalamov, hopefully reducing tidi hits
- Spc-Dragonfruits:
- - balance: 'Applied changes from PR #6901 to remaining firearms.'
- - bugfix: DZR-9 was described as a 9mm PDW, but had its caliber set to 10MM in its
- code.
- - spellcheck: Changed certain descriptions to reflect a fix.
- - spellcheck: 'Magazine names now match those applied in PR #6901'
-2021-08-11:
- BurgerLUA:
- - balance: Nicotine addiction is now more realistic and has additional side effects
- from a pool of possible side effects.
2021-08-08:
Mokiros:
- bugfix: added parentheses to properly calculate days in round time
@@ -630,26 +316,6 @@
- bugfix: Default AI behavior cooldowns have been returned back to 0,8 seconds instead
of 0.1 seconds, meaning Ian will no longer disembowel you with 20 attacks in
2 seconds.
- Seris02:
- - bugfix: fixes SOOC
- SkyratBot:
- - bugfix: fix reattaching of monkey bodyparts
- Yawet330:
- - balance: Venus humantraps are no longer incidentally far too weak due to a combination
- of our nerfs, buffs and /tg/'s changes
- axietheaxolotl:
- - rscadd: Added update HoP parade jacket
- - imageadd: added da new icons
- - rscadd: added new LIZARED underwear
- - imageadd: added appropriate icons
- linnpap:
- - rscadd: Adds new hairstyle (sprited by waodo) called "Spicy"
- softcerv:
- - imageadd: Adds unique textures for the different tiers of medicells and revamps
- the existing medigun textures.
- - bugfix: Mediguns now eject Medicells into the user's hands instead of always on
- the floor.
-2021-08-12:
2021-08-12:
EricZilla:
- imageadd: Centcom finally sent us new PDAs. The uh, clown one keeps looking at
@@ -660,7 +326,6 @@
- code_imp: url_encode and decode now try to stringify inputs
Gamer025 & Wayland-Smithy:
- bugfix: Submenus like Sound and Ghost inside Settings are no longer gone
-
Gurkenglas:
- qol: All circuit component input ports act as a combiner.
- refactor: 'Circuits: set_input and set_output are now put. input_value and output_value
@@ -669,86 +334,10 @@
- rscadd: the crystallizer can now produce crystalized hyper noblium that makes
your clothes pressure proof! not dying to pressure from other people is not
guaranteed.
-
MMMiracles:
- bugfix: Spider midwives can no longer send commands while dead
- bugfix: Nurse spiders can no longer heal dead spiders and get a message when trying
to do so.
- SkyratBot:
- - imageadd: Centcom finally sent us new PDAs. The uh, clown one keeps looking at
- me.
- - bugfix: Megafauna are no longer stopped by corpses and chairs.
- - bugfix: fixes cannons not working
- - bugfix: Fixed up distro pipes on botany of tramstation, adds 2 extra water tanks
- - bugfix: Navigation computers can now arbitrarily land on top z-level openspace.
- - refactor: 'Circuits: set_input and set_output are now put. input_value and output_value
- are now value.'
- jjpark-kb:
- - rscadd: Added the floor demon
- - soundadd: added floor demon sounds
- - bugfix: the floor cluwne won't change your name now
- - rscadd: the ashwalker tendril can now stablize cores (ashwalker only)
- - rscadd: the ashwalker tendril can now corrupt lanterns, making them a little better
- (ashwalker only)
- - rscadd: the ashwalker tendril can now transform people into ashwalkers (2 ashwalkers
- required nearby, requires human consent)
- - imageadd: added modern water basin, anvil, and forge
- linnpap:
- - rscadd: Added a new ghoul species
-2021-08-13:
- SkyratBot:
- - rscadd: the crystallizer can now produce crystalized hyper noblium that makes
- your clothes pressure proof! not dying to pressure from other people is not
- guaranteed.
- - admin: Improved invisimin toggle messages.
- - bugfix: Fixed shotgun meteorslugs not displacing airlocks.
- - bugfix: dchat clogging of clientless mobs is gone
- - bugfix: Fixed chocolate surprise easter eggs being edible before they are unwrapped
- and tasting like egg.
- - bugfix: Food preference quirks are no longer broken by species change.
- - bugfix: fixes some megafauna shooting too fast
- axietheaxolotl:
- - bugfix: fixes HOP Alt Clothing, CC/Cap/HOP/HOS Parade Jackets not working on digitigrade
- - rscadd: Added Command clothing vendor
- - rscadd: Changed the parade outfit names, from parade to formal at the request
- of nerds on discord.
- - rscadd: Added vendor to Meta, Delta, Kilo, Icebox
- - rscdel: Removed some job-specific items from the loadout
- - rscdel: Removed a bunch of clothing from Command member's lockers
-2021-08-14:
- RatFromTheJungle:
- - balance: heavily increases the cost of the believer bundle (25 to 35)
- SkyratBot:
- - admin: Round id when a note was made in now displayed in the notes panel
- - bugfix: Fixes changelogs parsing on linux enviroments
- - bugfix: Fixed Oingo Boingo Punch-face! not displacing airlocks.
- Snakebittenn:
- - bugfix: Fixes Linguist quirk to give more language.
-2021-08-15:
- Foxtrot (Funce):
- - admin: Runtime viewer now shows the number of "organized" runtimes when you're
- in organized view mode.
- jjpark-kb:
- - bugfix: ovens to prison and kitchen
- lyricalpaws:
- - bugfix: 'A lot of security, BS, and NTR can no longer roll certain antags as referenced
- in #6406'
- - server: changes to `config/dynamic.json` should be reflected
-2021-08-16:
- AMonkeyThatCodes:
- - spellcheck: Areas where it makes sense now have \improper pre-fixed to them
- Azarak:
- - rscadd: The sense of smell - Ported from Horizon
- - rscadd: 'Added a pollution system, which is used for air pollutants, such as cigarette
- smoke, deadly carbon pollution, perfumes, food scents etc. See #7453 for all
- changes'
- Colovorat:
- - bugfix: Controller shell extra button now works properly
- - bugfix: Cyborg emergency reboot module now is no longer dropped if revive is succesful
- ForrestWick:
- - balance: removed some loot left over as an oversight and nerfed the Warden boss
- fight a bit.
- - bugfix: removed and replaced some zombies that spawned invisible
Whoneedspacee:
- bugfix: Megafauna are no longer stopped by corpses and chairs.
sqnztb:
@@ -781,98 +370,6 @@
- bugfix: You finally figured that using a stamp on a clipboard was more important
than using the pen that's currently attached to it. Congratulations!
- code_imp: Added support for preventing a pen from being removed from a clipboard.
- - spellcheck: Ambitions now properly tell admins that auto-approve lasts TEN, not
- FIVE minutes.
- OrionTheFox:
- - bugfix: Icebox Disposals no longer spew trash into service, nor clog above the
- library. Rejoice!
- SkyratBot:
- - bugfix: Fixed new ticket ahelp message double sanitizing.
- - rscdel: Removed crank.
- - balance: Mushroom hallucinogen has a new trippy effect, but no longer makes you
- druggy or dizzy.
- - bugfix: freezers will now actually protect their contents from explosions once
- like iamgoofball intended almost 4 years ago.
- - code_imp: Moved all the integrated circuit core files into a new subfolder called
- core
- - spellcheck: DNA activators will now become expended once used, even if it hasn't
- activated anything.
- - spellcheck: Removed a space when recycling an activator at a DNA console.
- - config: Added a config flag for mirroring the logging of certain failed logins
- to their own file.
- - balance: liquid electricity grants more charge to ethereals.
- - balance: Ethereal racial foods contain more liquid electricity.
- - bugfix: bright white spheres when attacking things with an item that has a light
- source attached
- - bugfix: inventory and action buttons creating light sources
- - bugfix: HFR fuel mixes now properly consume the correct amounts
- - bugfix: constructed atmos devices now show the correct color in the name (no longer
- all grey)
- - bugfix: Buckling to nearby objects and roundstart shuttle buckling now result
- in the proper facing direction.
- Yawet330:
- - bugfix: Regen cores are now scaled to correctly clear stamina.
- jjpark-kb:
- - rscadd: made the scythe into four tiers. Researchable, and printable at the service
- lathe.
- - balance: venus man eaters heal slower walking through vines.
- - balance: vines are more mutative.
- linnpap:
- - rscadd: Added new 'Feline Traits' quirk
- tf-4:
- - bugfix: The hairbrush is now tiny, making it fit in boxes and pockets
- unit0016:
- - balance: Jacob's ladder can no longer reach space levels that aren't empty. It
- can still reach lavaland and the station, however.
-2021-08-18:
- Gandalf2k15:
- - rscadd: Nanotrasen Fleet Command expansion!
- GoldenAlpharex, with some help from AlexPlayz for finding the bugs:
- - bugfix: Space-proof beret now actually appears to have been made into a beret,
- instead of a reality-bending bunch of letters.
- - bugfix: CMO's beret received a new coat of paint, making it fit with the rest
- of their clothes a lot better.
- OrionTheFox:
- - bugfix: Detectives can now pass through police tape unhindered, Engineers through
- atmospheric tape, and Medical/Science staff through Biohazard tape
- Orion_the_Fox, Gob:
- - rscadd: '5 new hairstyles are circulating the popular barber shops: "Sabitsuki",
- "Jessica", "Gently Brushed", "Country Side-Braid", and "Beachwave"! (Credit
- to Gob for sprites <3)'
- SkyratBot:
- - bugfix: NTNet Transmitter now works
- - admin: Admins can now find "banned account in connection history" admin alerts
- mirrored to the suspicious logins log file.
- - bugfix: Fixed freezers protecting their contents after being exploded.
- - bugfix: The insufficient black market credits message now properly displays.
- - refactor: Refactors connect_loc_behalf and caltrops to both be components. This
- will likely solve a lot of current issues with connect_loc_behalf as storing
- states will be much more stable on it.
- - bugfix: Defined the in-hand state for the chaplains' unholy pitchfork. The in-hand
- sprites will now actually appear.
- axietheaxolotl:
- - rscadd: axolotl hardsuit tail
- - imageadd: added axolotl hardsuit sprite
- - imageadd: worn icon for AC-2 carbine
- jjpark-kb:
- - rscadd: added xenoarch section to mining on icebox
- thestubborn:
- - rscadd: old cowboy ponch now uses neckslot, still toggleable
- - bugfix: mantles now have an obj sprite
-2021-08-19:
- GoldenAlpharex:
- - bugfix: Nanotrasen realized that not being able to preview color changes that
- were to be applied to the items they were hoping to sell in their vendors has
- drastically reduced interest in those items. They hope to bring back interest
- on them by enabling the preview once again.
- - code_imp: icon2html now supports an override to use it even if it's meant to be
- disabled on here.
- jjpark-kb:
- - bugfix: fixes that one stair on icebox
-2021-08-20:
- GoldenAlpharex:
- - bugfix: Space-proof beret now actually appears to have been made into a beret,
- instead of a reality-bending bunch of letters.
JohnFulpWillard:
- spellcheck: DNA activators will now become expended once used, even if it hasn't
activated anything.
@@ -1054,123 +551,10 @@
constructed by using a Multitool on the rapid HFR boxes. The core still needs
rotating if your design requires it, and is best done before you step away unless
you want to disassemble and move a side component.
- Superlagg:
- - bugfix: Character preference ringtones should actually work again.
- softcerv:
- - rscadd: Hypospray kits can be now be Ctrl+Shift clicked to change the design.
- thestubborn:
- - bugfix: Fixed the paramedic jacket's sprite.
2021-08-25:
AccountName5:
- bugfix: Fixed bug that prevented you from placing vertical bridge pipes on horizontal
smart pipes.
- FlamingLily:
- - tweak: Made it more clear that combat indicator is an in character state.
- GoldenAlpharex:
- - bugfix: Nanotrasen's Linguist Team managed to finally teach the crew about changing
- language on the fly, which didn't seem to be an universal thing. Now it is!
- - bugfix: Adds the Sailor dress to the loadout, after it's been missing from there
- for ages for no reason.
- SkyratBot:
- - bugfix: Fixes the lone operative event hardly ever rolling even if the disk is
- left on the same place for hours because of dynamic.
- - bugfix: stargazers can now form slime links again.
- - bugfix: Fixed dash abilities, like from Hiero Club, null owner refs.
- Snakebittenn:
- - balance: Medical Bandolier now holds 2x the items. Can't hold beakers or the syndicate
- syringe gun anymore.
-2021-08-26:
- Colovorat:
- - bugfix: Cables from protolathe and autolathe should merge just fine now
- ORCACommander:
- - bugfix: fixed a few things Paramedic Overcoats no longer break the space time
- continuum
- SkyratBot:
- - bugfix: Repairing clothing now immediately updates the sprite
- - bugfix: Fixes monkey being unable to access right click functions on several objects
- such as stacks and storages.
- - imageadd: better fish and fish food sprites
- - admin: Made admin only shells not interactable to non-admins
- - bugfix: Outgoing comms console messages to allied stations will not be shown again
- as incoming messages.
- jjpark-kb:
- - rscadd: splits serviceborg's shaker into four separate ones; additional reagents
- to work with.
- - rscadd: adds the cooking multitool to serviceborg.
-2021-08-27:
- GoldenAlpharex:
- - server: SQL database schema updated to have a new `discord_reported` column in
- the `ban` table.
- ORCACommander:
- - bugfix: SQL Versioning
- - server: Double check to make sure the Database version was properly updated
- Seris02:
- - bugfix: fixed the fire doors being invisible
- SkyratBot:
- - bugfix: Fixed an exploit
- - bugfix: Fixed crayon and spraycan text input to behave properly
- - bugfix: Temperature Control Units now display their color when set or changed,
- rather than always displaying as grey.
- - spellcheck: The HFR now correctly describes the recipe cooling modifier as adjusting
- the maximum cooling, rather than the minimum cooling.
- - bugfix: fixes heart attack message spam for synthetic organs!
- - bugfix: Honorbound followers can now perform surgery.
- - bugfix: Honorbound followers can no longer punch the innocents.
- - bugfix: Fixes traits added by quirks not being removed when those are deleted
- (like from eigenstasium).
- bobbahbrown:
- - admin: Add Requests Manager to view all prayers/centcom and syndicate requests/and
- nuke code requests within a round.
- jjpark-kb:
- - bugfix: fixed a lavaland farming oversight (item/grown AND item/food/grown)
-2021-08-28:
- ForrestWick:
- - balance: Brainwash surgery is no longer restricted to doctors and roboticists,
- meaning any traitor can get it. The price has gone up to 9TC to make it more
- fair as well.
- Nari Harimoto:
- - bugfix: icebox service has been slightly renovated to ensure disposals runs smoothly
- without issue, as well as minor changes to the kitchen freezer for usability,
- and pushed the service hallway wall back a bit.
- SkyratBot:
- - bugfix: fixes field generators not being interactable
- - rscadd: 'TGUI autolathe expansion: You can now input a custom amount to print(hard
- limit at 50 or maximum stack size) expansion: Can now search and change categories
- while the autolathe is busy, line up those designs!'
- jjpark-kb:
- - bugfix: fixes some of the ash farming
- tf-4:
- - bugfix: NSS Journey's disposals got an overhaul, and now no longer break in departures
-2021-08-29:
- AlinaStarkova:
- - bugfix: Disposals will no longer spit out trash into the Gateway room on NSS Journey
- FlamingLily:
- - tweak: Corpse examine text is more in line with RP.
- - rscdel: Curtains from metastation's prison
- - bugfix: Latejoin borgs are synced to the AI again
- Gandalf2k15:
- - balance: CME's have yet again been reworked and are now more rewarding and easier
- to deal with.
- GoldenAlpharex:
- - bugfix: Borers should now properly get disposed of.
- - rscdel: The Nanotrasen Ventilation Experts have finally equipped the vents with
- anti-clown filters, ensuring that their stations would not get attacked by vent-crawling
- clown monsters anymore.
- - bugfix: Fixing CI, a bit.
- Halcyon:
- - imageadd: The Syndicate have noticed a severe design flaw in exposing the most
- vulnerable part of their operative's bodies and has rectified it by covering
- their operative's faces in their hardsuit's combat mode
- - imageadd: High command has dished out some new coats for their beloved admirals.
- Made with real wolf fur.
- LeonY24:
- - imageadd: DTR-6 Ostwind, DMR Norwind, Vintorez and PCR-9 now have dual-wielded
- sprites.
- ORCACommander , ZephyrTFA:
- - bugfix: missing entries in jobs lists in jobs subsystem
- - code_imp: added a stack trace to job list initialization from text file
- - config: Reorganized jobs.txt and added missing entries
- SkyratBot:
Colovorat:
- bugfix: Cables from protolathe and autolathe should merge just fine now
Ghommie:
@@ -1242,66 +626,6 @@
- bugfix: infinite power consumption (capped)
- bugfix: efficiency not being tied to laser tiers (issue connected to infinite
power consumption)
- - refactor: Area based lighting can be varedited and changed now
- - bugfix: colossus bolts no longer instantly explode you if youre in a car/mech
- - bugfix: roundstart offstation antagonists such as wizards and nuke ops no longer
- have quirks (either from preferences or hardcore random) assigned to them or
- count toward the hardcore random score.
- Yawet330:
- - bugfix: Breaching hammers now actually only delay your next action by 5 seconds
- if you try and breach a door.
- - tweak: Vintorez now doesn't have the sinful 15 round mags (which don't exist IRL)
- - tweak: pepperballs no longer inject 50u of reagents (What the fuck?)
- axietheaxolotl:
- - rscadd: Readds Peacekeeper lockers with animation
- - rscadd: adds animation for cc locker
- - rscadd: new airlocks
- - rscadd: 'also added a new contraband poster :trollface:'
- - rscadd: Gave Warden Security Megaphone
- jjpark-kb:
- - rscadd: added cortical borer (view https://github.com/Skyrat-SS13/Skyrat-tg/pull/7554
- for more info)
- - balance: venus human traps no longer heal upon moving on vines
- - balance: venus human traps will lose health if not on vines
- - balance: venus human traps will gain health slowly if on vines
- - balance: venus human traps cannot pull living mobs
- - balance: venus human traps are set down a layer, right below vines
- - balance: venus human traps can help vines grow every second
- - balance: you are required to buy t3/t4 scythes from cargo
- - bugfix: vines can no longer infinitely attack fast on vines
- - balance: ashwalker lair is less, with the same aesthetic
- lyricalpaws:
- - balance: Gives the blueshield centcomm comms, like all other NTF crew
- - balance: Gives the fleetmaster a bowman headset and loudmode
- - balance: Actually locks the damn armoury
- softcerv:
- - balance: Buffs the injection/spray speed on the standard Hypospray.
- - balance: Standard Hypovials can now inject their entire storage and have more
- selection modes
- - balance: Nanotransen Representative now has the same job restricted quirks as
- a head of staff, instead of having the ones of a security member.
- - code_imp: Makes the hypospray vial insertion code into a proc.
- - refactor: refactors a bunch of code pertaining to the healing on medicells.
- - rscadd: The botany area of the ghost cafe now has a botany chem dispenser along
- with the kitchen now having an oven.
- tf-4:
- - spellcheck: Spelling and grammar has been cleaned up for the Organic Interface
- Update items.
-2021-08-30:
- FlamingLily:
- - code_imp: is helper cleanup, more is helpers
- GoldenAlpharex:
- - bugfix: The Oil Shamblers will no longer leave behind napalm upon dying, they
- will instead evaporate, leaving you to wonder if they were even there to begin
- with...
- - code_imp: Changed some spans to span procs in mold mob code.
- SkyratBot:
- - balance: 'Spiders have received some slight balance changes to make them less
- oppressive when they have the upper hand whilst letting them slightly handle
- atmos changes. One major change is that broodmothers now take 15 seconds to
- lay eggs as opposed to 10 seconds. qol: Spiders can see further in the dark
- now.'
- - spellcheck: Changed the wording on antag panel policy a little bit.
tralezab:
- bugfix: fixes field generators not being interactable
2021-08-29:
diff --git a/html/changelogs/archive/2021-09.yml b/html/changelogs/archive/2021-09.yml
index 526ef9b04cc..9bd6888bef2 100644
--- a/html/changelogs/archive/2021-09.yml
+++ b/html/changelogs/archive/2021-09.yml
@@ -1,9 +1,4 @@
2021-09-01:
- GoldenAlpharex:
- - bugfix: Cyborgs and AIs can now understand and speak all the languages the crew
- speaks at the beginning of a shift, with a few rare exceptions.
- - code_imp: Changed the Neo-Russkya and the Yangyu's typepaths to reflect their
- actual name.
AlinaStarkova:
- bugfix: Maint areas have been cleaned up to properly cover maint, minor tiles
and airlocks which had space areas were fixed to have an actual maint area
diff --git a/html/changelogs/archive/2021-10.yml b/html/changelogs/archive/2021-10.yml
index 463548c4012..ce338ec264e 100644
--- a/html/changelogs/archive/2021-10.yml
+++ b/html/changelogs/archive/2021-10.yml
@@ -1,202 +1,3 @@
-2021-10-06:
- AMonekyThatCodes:
- - refactor: Adds basic mobs, a replacement for simple mobs that will hopefully destroy
- the subtype. This is so far applied to cockroaches (and their variants)
- ATHATH:
- - bugfix: The negative moodlet from being held at gunpoint will no longer last indefinitely
- under certain conditions.
- - bugfix: Dreaming is now less rare.
- AccountName5:
- - balance: Temperature pump power consumption no longer increases exponentially.
- Removes maximum operational temperature as it is now obsolete.
- - bugfix: Fixed temperature pump exploit. It should no longer treat output as having
- a much lower heat capacity than it actually has.
- - admin: Revenant emag now logs correctly.
- - bugfix: 'Roulette: You no longer win when betting on even and rolling 0.'
- Aether217:
- - rscadd: 'Added 4 new templates: Mind Control Victim, Lone Pirate, Cyber Terrorist,
- Stamp Collector.'
- - rscadd: Added an extra objective to the Data Theft template
- Arkatos:
- - bugfix: Templates in the Plexagon Access Management app will now show correctly.
- - refactor: Cyborg Station Alerts UI now uses tgui.
- - refactor: AI Station Alerts UI now uses tgui.
- - spellcheck: Fixed a misspelling of the word "availability" in the Plexagon HR
- Core app description.
- - spellcheck: Fixed a few grammar mistakes in the nullrod radial menu descriptions
- and better clarified some block chances of the certain nullrod variants.
- - bugfix: Station alert console will now always show a correct icon when an alert
- is added or cleared.
- - bugfix: Station alert console and Canary application icons will no longer get
- stuck in an alert mode forever.
- Arturlang:
- - balance: Constructs and shades now return to their old bodies on their death.
- - balance: The offer rune will no longer gib carbons or humans, instead, simply
- killing them and popping most of their organs out.
- BurgerBB:
- - bugfix: Fixes the Ant Reagent Recipe.
- Burgerman, tralezab:
- - bugfix: You can now see the nuke code in your memories
- CalamaBanana:
- - bugfix: Missing color choices for undershirt/socks in loadout
- - bugfix: Broken preview sprites for undershirts
- - bugfix: Missing color choices at the dresser
- CandleJaxx:
- - rscadd: A fresh batch of swanky-looking trenchcoats and fedoras have found their
- way to the Frontier!
- - rscadd: The Expeditionary Corps finally got some custom suits for Vox.
- - rscadd: NanoTrasen Frontier Stations have been shipped some synthahol for their
- more robotic crewmembers.
- Cherno00:
- - bugfix: ushanka shows hair while worn.
- CodeMonkey:
- - bugfix: Fixes parallax animations
- - bugfix: Robot tourists now stop attacking you after they show you who's boss.
- Ebin-Halcyon:
- - bugfix: Interdyne and DS-2 now have windows again.
- - bugfix: Vox now wear their correctly fitted shoes and don't steal digitigrade
- crewmember's shoes anymore.
- - rscadd: The Syndicate have sent Deep Space 2 a new shipment of gear for their
- armory, holsters, chest rigs and more.
- - rscadd: Gorlex have supplied spare Blood-red hardsuits to Deep space 2 for their
- armory.
- - rscdel: The Syndicate have realized that they already send their brig officers
- off with bullet proof armor worn and have taken DS-2's extra ones in the armory
- for use elsewhere
- - rscdel: The Syndicate have taken an extra SyndiMed after noticing a lack of cortical
- stack removers and implanters for field agents, in replacement for this they
- have salvaged an old Cybersun Cruiser's SyndiMed filled with actual medical
- supplies
- - bugfix: Space ruins should spawn properly and not be missing parts and pieces
- of themselves.
- FlamingLily:
- - bugfix: RPDs now have four different directions to choose from once again
- - bugfix: Narsie no longer stops the shuttle leaving from beyond the eldritch grave.
- - bugfix: Syndicate high command now only requests you extract targets on-station.
- ForrestWick:
- - bugfix: made the Scalamov ghost roles function properly. They can now be any species,
- use aliases, and have less restrictive flavortext.
- - rscadd: 'new ghost role: Cargodise Lost, starring six marooned and stranded space
- truckers in deep space. Become spacetiders, merchants, and beat up Russians.'
- - bugfix: Made it so the cargodise lost ruin is on one single area with a single
- APC, meaning power issues are solved. The SMES and APC have been moved apart
- as well to help with this. Loot spawners have also been re-added.
- - balance: Scalamov Warden fight is now much less of a nightmare, at the cost of
- being a bit less interesting as a fight.
- - bugfix: Corrected a couple loot items on Scalamov so they aren't stuff that people
- shouldn't have.
- - bugfix: resolved merge conflict from zombieprison.dmm by deleting an inproperly
- pathed item.
- - rscadd: added six new space ruins, two of which are combat focused while the rest
- are more exploration based.
- - rscadd: Overhauled the entire prison for NSS Journey to be more like a proper
- prison instead of a luxury resort; added a cargo bounty pad and console, removed
- private cells and made hidden ERP rooms instead.
- - bugfix: makes APCs in NSS Journey prison high-cap, removes some excess lights.
- - rscadd: The prison now has salt and pepper again
- - bugfix: 'Fixed the lack of air alarms and blast doors on cargodise not working.
- expansion: Added spider enemies and delivery labels to the crates for RP potential.'
- Gandalf2k15:
- - refactor: Blob has been reset to TG stanrdard.
- - rscadd: Space ninjas can now randomly roll.
- - balance: 1.5x'd the ninja teleport CD
- - balance: removed most of the shoes slowdown reduction.
- - balance: 'Added a tiny amount of speed up for wearing the suit, so they aren''t
- absolutely fucked in a chase. removed: The communications hacking objective,
- things can quickly snowball out of control from a almost-calm round to round-ending
- chaos within five minutes.'
- - balance: Spacedragon has been reset to TG standard.
- - rscadd: Added the ability to choose where your loadout spawns! See OOC prefs!
- - bugfix: Due to the fact we actually use the singularity as an engine, we have
- repaired it's ability to consume it's own containment and pull the glass out
- of your glasses.
- - refactor: All maps have been reset to TG standard as of 14/09/21
- - balance: Xenomorphs have been disabled and reset to TG standard.
- GemInee:
- - rscadd: Added icons for additional inventory slots in separate files from default
- files.
- - code_imp: Added separate code for handle organic UI icons.
- GoldenAlpharex:
- - bugfix: Issues can no longer go stale.
- - bugfix: Ash Walkers have realized that credits mean nothing and as such, have
- decided to prevent their clothing "vendor" from asking for some. Money's a corporate
- lie tribal lizards don't know about just yet!
- - bugfix: Cyborgs can now be given the affection modules after getting their model
- reset while they had them.
- - bugfix: Fixed master.
- - bugfix: Maps aren't yelling at us in CI anymore.
- - bugfix: The Delta Cargo Shuttle will finally land again normally.
- - bugfix: Flavor texts will now allow you to skip lines once again.
- - bugfix: SSDecay will no longer break glass floors.
- - code_imp: SSDecay will no longer take a few seconds to load even when it's deemed
- not to be active for the shift.
- - config: Added a SSDECAY_DISABLED config option, to be uncommented in order to
- disable SSDecay, particularly useful for map test-merges.
- - bugfix: The changelog might now be functioning again.
- - bugfix: Fixed the pAI Host Scan being unable to work from within a PDA or anywhere
- that wasn't your hands or your pockets.
- - spellcheck: Fixed typoes in the pAI interface related to signaler being written
- "signaller"
- - code_imp: Improved the pAI code, mostly around the softwares.
- - admin: Clicking someone's name after they opened a ticket in chat will now mark
- you as handling the ticket, because clicking (HANDLE) is too complicated.
- - bugfix: Flowers now properly display on people with mutant ears, meaning that
- they no longer hide within cat ears anymore.
- - bugfix: Welding goggles no longer hide in your hair when you pull them up, they
- will now properly display above your hair (and mutant body features if you have
- any).
- - code_imp: Glasses and headwear can now appear over hair and all mutant body features,
- meaning that they shouldn't get wrongly hidden anymore.
- - bugfix: Admins will no longer spam you with the message that they're handling
- your ticket every time they click your name to reply to it.
- Guillaume Prata:
- - bugfix: Removes some of the odd items that didn't have an icon from the Janitor's
- winter coat suit store and fixes Security's ones being unable to hold the base
- items like internals.
- - bugfix: Space heater actually turns On with right click now, for reals this time!
- - bugfix: Huge scrubbers will use their own sprite instead of their little brother
- one.
- Halcyon:
- - rscadd: The Syndicate have gotten a new shipment of double beds for DS-2.
- - rscdel: Old double beds have been sent in to be reclaimed for materials
- Iamgoofball:
- - refactor: Forward ports species organs.
- - balance: Changes the surgery speedup to be based on whether the patient is knocked
- out or on painkillers, instead of on literal byond area.
- Improvedname:
- - bugfix: Gibbers now produce 3 pieces of meat at tier 1 again
- - rscadd: You can now easels with 5 wood
- - rscadd: RD/Roboticists/Cmo/Doctors can now buy a syndi brand MMi from their uplink
- for 2 tc
- IsaacTheSharkWolf:
- - rscadd: Master RnD server to server room.
- - rscadd: Liberty cap seeds in the botanical black market stand.
- - rscdel: Roundstart singularity and tesla beacon.
- - rscdel: Kudzu pod in maints.
- - bugfix: Atmos project room APC direction.
- IsaacTheSharkWolf, AxieTheAxolotl, Floofball:
- - rscadd: 'Nanotrasen Science Vessel Codename: Blueshift has been put into service!'
- KathrinBailey:
- - bugfix: Supermatter fixed on all maps.
- - bugfix: Cryo is now in all of the prisons again.
- - bugfix: All maps now have all-access autodrobes in dorms again.
- - bugfix: All maps have posibrain alert consoles again.
- - bugfix: Blueshields are no longer imprisoned in their own office roundstart.
- - bugfix: Lustwish vendors should now be back in dorms.
- - bugfix: Whatever happened to the plasma tank in Journey/Spacebox Atmos has been
- fixed.
- - bugfix: Blueshields should always start in their office on Meta. Or more accurately,
- off station when the station is Meta.
- - bugfix: Command vendors back on the maps.
- - bugfix: Interrogation room on Icebox is now accessible.
- - bugfix: Journey / Spacebox now has a freezer in the R&D server room to keep the
- boxes cool.
- Kevinz for Citadel, who was ported to TGMC by XSlayer300, now ported to tg by Ryll/Shaps:
- - rscadd: Text modifiers have been added! You can now |italicize| _underline_ and
- +bold+ your messages.
- Kush1Push1:
- - rscadd: Russian players can use unique races text formation (from lizardmen and
- fly persons tongues) with their language.
2021-10-01:
Mooshimi:
- code_imp: AIs will no longer get the asimov lawset on unique-lawset station trait
@@ -226,103 +27,6 @@
grid and not directly back into the dinner area.
- bugfix: Tramstation's directional signs have been updated to properly show department
directions.
- - rscadd: Tramstation's Security and Service wing has been flipped around.
- - rscadd: Tramstation's commissary has been placed above in the central wing beside
- the kitchen.
- - rscadd: Tramstation's EVA and Gateway rooms have been adjusted. EVA now has one
- extra suit storage unit.
- - rscadd: Tramstation's maintenance near the Service and Security wing has had reworked
- layouts.
- - rscadd: Tramstation's asteroid now leaves behind breathable turfs so digging out
- a room isn't as tedious.
- Melbert:
- - spellcheck: Fixes some errors in the changeling antagonist UI
- - rscadd: Icebox Chemistry Lab is now multi-z'd, with maintenance changes to match.
- - bugfix: fixed a maintenance door in the icebox HFR room that had the wrong access
- / name
- - bugfix: Some invisible chaplain weapons are now visible again
- - balance: The firebreath Mutation is now a cone of fire, instead of a real fireball.
- - bugfix: Durathread, Jupiter Cups, Fairy Grass, and a few other plants can no longer
- hard species mutate into themselves.
- - bugfix: Telescopic shields are bulky again when extended, and the balloon alerts
- are shorter
- MetalClone:
- - rscadd: Added the handlebar moustache, available in the character setup
- - rscadd: Added the handlebar moustache 2, available in the character setup
- - imageadd: added both handlebar moustache icons
- Microvolnovka19:
- - imageadd: new benis sprites for taur
- Mothblocks, Floyd on lots of the design:
- - refactor: The preferences menu has been completely rewritten in tgui.
- - refactor: The "Stop Sounds" verb has been moved to OOC.
- Nanotrasen Fashion Department (unrelated to the Fascist Department):
- - bugfix: Our defabricator has stopped incinerating ushankas, sadly this has came
- at the cost of anything with mixed fabric, and a 45% chance to give felinids
- colon cancer. It's advised they wear a radiation suit on Thursdays.
- Nanotrasen Ritual Division, Hat Subdivision:
- - bugfix: Said Ritual had the unintended side effect of causing these hats to show
- up on people with long faces, and noses, and mouths.
- Nari Harimoto:
- - bugfix: you can no longer print from a protolathe at a distance, and the operating
- computer tgui will grey out if you walk away again
- - bugfix: Admins can now use their godly powers of AdminGhostAI to interact with
- every machine again
- - bugfix: kilostation now has an unlocked mix chamber air alarm, 3 cores in the
- launch room, the telescreen can see the test site, and a fancy launch controller
- - bugfix: you no longer hit space heaters when wrenching or screwdrivering them
- - bugfix: Slime console can now use its hotkey to scan slimes and drop/pickup monkies
- - bugfix: icebox disposals no longer spits trash on the mailroom floor
- - bugfix: Emergency Access can no longer be spammed to cause sound and text pain
- - bugfix: the aux base console now wont block an empty tile
- - bugfix: machines can be dragged with CtrlClick again
- - bugfix: All of Disposals now works, no infinate loops, no random pipes shooting
- into a room, no sections inaccessible due to a wrong junction
- ORCACommander:
- - bugfix: fixed pirate shuttle window CI failure
- - bugfix: CI Errors
- - bugfix: CI failure fix
- - bugfix: NT Engineers have identified several areas of the Interlink and NSS Journey
- occupying the same place and time. They have corrected this breach in reality.
- OrionTheFox:
- - balance: Awaking from their collective nightmare, the Ashwalkers storm outside
- to see it wasn't real, and their old home remained. However, seeing how their
- hoarded technology had corrupted their hard-working spirit, they shunned it,
- deciding they could do better without having to protect such dark relics.
- Pepsiman0:
- - bugfix: holosword doesnt have blockchance
- Plateau (made some funny screenshots), GeneriedJenelle (done the actual content part):
- - imageadd: made the sprite for the wedding veil not a riceball
- Plateau who basically done nothing, and TheFakeElon from bee who done everything:
- - rscadd: Felinids now land on their feet.
- Plateau, Your Neighbor Dave and the Nanotrasen Sewing Division:
- - bugfix: We learned that, actually, having bent knees with regular pants is sore
- as fuck.
- Ported by Dragomagol, original PR by monster860:
- - rscadd: Locker doors are now animated!
- PositiveEntropy:
- - imageadd: All folders are now resprited!
- - imageadd: Adds new colo cup sprites, originally from the lean cup sprite. The
- description of the colo cup item is also changed for only a single, mildly rare
- variant.
- PositiveEntropy, Kryson, maxymax13, Salla:
- - imageadd: Resprites iron and material chairs into new ones, originally from Yogstation!
- QuarianCommando:
- - bugfix: Attempting to create a table with the aforementioned materials will no
- longer result in a normal metal table.
- Qustinnus:
- - bugfix: Oozes can now eat food again
- RatFromTheJungle:
- - rscadd: Added the Environment Proof Bodybag to the mining equipment vendor for
- 500 points.
- - rscadd: Re-added the ripped jeans to the loadout.
- Ryll/Shaps:
- - bugfix: Disposal outlets no longer constantly shoot you out at an incredibly dangerous
- speed, and no longer deal a base 35 damage + guaranteed dislocation/likely hairline
- fracture when you hit a wall or other person. Instead, they're back to the old
- 10 brute damage they were at last year, though you can still multitool/emag
- them to make them shoot out things faster....
- - admin: "You can now ping other admins (or whatever other roles) in asay by using\
- \ @\_theirckey in your message"
Melbert:
- balance: The firebreath Mutation is now a cone of fire, instead of a real fireball.
Mooshimi:
@@ -391,194 +95,6 @@
below at the cost of taking some extra damage. Note that floors with plating
will still hold steady, so you can still use flooring to make getting hit by
the tram insanely lethal, it just takes a bit more effort.
- - balance: Bone wounds in general have been made less obnoxious, especially when
- suffered on the legs. Instead of limping every step with that leg, you now have
- a chance to limp each step with that leg that scales with the severity of the
- wound. Putting your leg in a sling also reduces this limp chance per step, in
- addition to reducing the delay the limp adds.
- - balance: Skeletons and plasmamen can now apply bone gel directly to fractured
- limbs, take no damage from applying this fix, don't need surgical tape, and
- recover 4x as fast as fleshy humans do from these improvised fixes. Shine on,
- you crazy bone-bags!
- - balance: Sticky tape (and especially surgical tape) makef for much more effective
- slings than before, with surgical tape even outshining gauze.
- - spellcheck: Adjusted some bone wound examine descriptions to be more obvious what
- they represent
- - refactor: Refactored item offering, allowing items to decide if they want their
- own special behaviors.
- - rscadd: You can now offer someone a kiss on the cheek by offering with a *kiss
- in hand
- - balance: Removed the overly punishing negative moodlet for trying to offer a high-five
- with no one around.
- - rscadd: Added a new achievement for cultists who like to mess with NT's shuttle
- corps, "WHAT JUST HAPPENED".
- SabreML:
- - bugfix: Fixed GAGS clothing for Vox. (Some coloured jumpsuits, berets, shoes,
- etc.)
- Seris02:
- - rscadd: Added blueshield winter coat
- - config: changes the admin midround pick time from 10 seconds to 60 seconds
- - bugfix: fixed the examine menu sprite preview
- - bugfix: stops the mutant_bodyparts from not updating and causing ghost images
- - bugfix: ghost cafe loadout now appears + ghost cafe borgs now spawn with their
- name
- - bugfix: fixed bloody soles on digitigrade legs again
- SishTis:
- - rscadd: If a human mob speaks with a language their tongue counts as native one
- (like draconic for forked tongue), their speech will sound normally.
- SkyratBot:
- - bugfix: Fixed RPD arrows, strip menu eyes, etc not being styled properly.
- - bugfix: Round setup hints and circuit board descriptions that mention production
- of research points through power generation no longer appear. This functionality
- was removed a long time ago.
- - bugfix: burning vehicles can now be extinguished.
- - admin: Added a new smite for admins that allows them to give any mob a permanent
- imaginary friend of the admin's choosing, including additional customisation
- for the looks allowing the imaginary friend to take on the appearance of the
- player inserted into it.
- - bugfix: Spawners Menu buttons once again work to jump or spawn as ghost roles.
- - bugfix: Fix space lighting with lattices
- - bugfix: fix scrubbers/vents/injectors/etc from being able to be placed on all
- layer on the same turf
- - bugfix: fixed holosigns not counting towards the max limit and not being deleted
- when clicking the creator.
- - bugfix: Basic Cytology Scan Experiments no longer ask for Unknown fluids instead
- of mice.
- - bugfix: Emergency Tramstation Fixes. This should resolve currently existing Merge
- Conflict Markers. Please make an issue report for anything that is still out
- of place and we'll do our best to get to them in a timely manner.
- - bugfix: fixed non-combat mechs doing 0 damage
- - imageadd: resprited pens and paper bins
- - imageadd: four color pen now has a sprite
- - bugfix: Imaginary friends will show up properly again
- - balance: 'Replaces the hardcoded material restriction for exporting protolathe
- designs to autolathes with a variable that does the same when set FALSE. Energy
- bolas, gun part kits, tele shield, enegy bolas and jaws of life currently have
- it set FALSE. TL;DR: You can export designs like bluespace cells to autolathes.
- qol: Added a chat feedback when unable to import designs to autolathes.'
- - balance: The Odysseus no longer fires magical syringes that only react their contents
- when the target is hit. It now fires syringes that react as soon as your fire
- your Ody's syringe gun. You have been warned.
- - bugfix: fixes a bad icon state for filled mid_joiners
- - bugfix: fix gases not having an overlay
- - balance: Ethereals can taste again.
- - refactor: Rendering has been refactored, remember to report bugs
- - admin: Circuit components to perform animations and manipulate filters have been
- added. These components are the "Begin Animation", "Animation Step", "Add Filter",
- "Filter Remover", "Filter Parameter Helper", and "Animation & Filter Bitflag
- Helper" components. Refer to their descriptions for more information.
- - bugfix: Midround wizard is now selectable.
- - admin: Admin only menus now have a new SVG background
- - bugfix: Gets rid of a genturf on icebox underground
- - bugfix: some small critters that should have been able to fit in the vim but couldn't,
- now can
- - bugfix: stun-harm-batoning for stunbatons has been fixed.
- - server: 'Added a new word filter configuration: word_filter.toml, which can specify
- *why* words are banned.'
- - bugfix: 'Emotes are now properly filtered. qol: For players, you will now see
- which word you said was filtered.'
- - bugfix: Auxiliary base construction consoles now work, instead of deleting the
- drone before it exists.
- - balance: lowered disco ball's max volume
- - bugfix: Fixed progress bars appearing white.
- - bugfix: traitors now get objectives again.
- - bugfix: Fixed module circuit size not taking up capacity equal to the amount of
- circuit components inside of it.
- - bugfix: Organ repairing chemicals now repair your organs again (but for real this
- time).
- - bugfix: Fixed not being able to disable specific antagonists randomly.
- - balance: Devastating explosions will now deal damage equivalent to 40% to 75%
- of a dragon's max health.
- - balance: Carp rifts will no longer be instantly destroyed to devastating explosions.
- - bugfix: bees, hivelord, its brood and legion skulls no longer use the MOUSE_OPACITY_OPAQUE
- setting that makes the invisible portions of their icons count toward mouse
- clicks, which can get in the way of players trying to click stuff below their
- layer. Instead, to be easier to click on, they use a component that gives them
- a near-invisible underlay.
- - refactor: refactored some behavior in pride hammer and carp'sie plushie, you may
- notice a few more examines and error messages for fail cases but otherwise it's
- all the same
- - imageadd: resprites the smoke, forcewall, lightning and blind spells
- - bugfix: The Abandoned Zoo ruin no longer has duplicate copies of an APC, power
- cable, and rack on the same tile.
- - imageadd: New sprites for adjusted shaft miner's jumpsuit.
- - spellcheck: The cargo tech jumpskirt now has correct punctuation.
- - bugfix: Fixed betting on singles never paying out if the chosen number is 0.
- - bugfix: The SM/HFR will now always play harsh accent sounds when they should
- - code_imp: Replaced the MATERIAL_NO_EFFECTS material flag with MATERIAL_EFFECTS.
- - bugfix: No more gazillions of atoms having the beauty element.
- - bugfix: Observers can no longer directly observe people on the lobby screen and
- can instead only observe valid points of interest.
- - server: Dynamic now has an extra configuration value, max_threat_level. Defaults
- to 100 threat.
- - bugfix: fixed as slew of failed to validate config setting errors
- - rscdel: Removed deprecated config flags
- - server: game_options.txt has been updated
- - admin: Adds a couple of missing traits relating to cult and bloodshot eyes to
- the Modify Traits VV dropdown menu for mobs.
- - balance: If you are on Combat Mode, your bullets no longer pass through prone
- people
- - bugfix: The crate spawner spawns full crates rather than empty ones again. fix:The
- neglected fern can actually spawn now
- - bugfix: The neglected fern now has the standard 2-4 cell ines per sample rather
- than 1.
- - bugfix: The Icebox Mining Basement Levels now utilize power and air provided by
- the main station. Some areas were changed to accomplish this.
- - bugfix: The Icebox Mining Basement Levels now utilize pipe layers 2 and 4 instead
- of the improper 3, and 4.
- - bugfix: You can now use the B-2 level of Icebox mining safely and reliably, a
- new, quaint layout affords miners easy access to the B-2 exploration Z.
- - bugfix: Due to the extent of the alterations on for mining's B-2 level, the B-1
- level has received some upgrades as well. Please look forwards to them.
- - refactor: turns stickmen into basic mobs
- - balance: wizard paper robe now makes stickmen hostile to things that arent stickmen
- and arent you
- - bugfix: Fixed quirks being automatically removed.
- - bugfix: thirteen look no longer puts you to sleep
- - bugfix: Removes the spare stool from the Icebox Theater.
- - imageadd: CTF armour has a shiny new look
- - code_imp: CTF shielded armour has been changed from a hardsuit to a vest to clear
- the way for modsuits (coming 2021 by Fikou)
- - code_imp: Any item of clothing can now be given an energy shield, not only hardsuits
- - bugfix: CTF marksman outfits are now named correctly
- - rscadd: Penthrite now has Balloon alerts for when it first starts processing and
- when it finishes processing.
- - imageadd: The mega arachnid's flesh snare now has a visible sprite.
- - bugfix: Captains can sleep tight at night knowing that Disky no longer fears escape
- shuttle rides at the end of the shift. The nuke disk will no longer teleport
- itself back to the station from the emergency shuttle when the emergency shuttle
- departs.
- - spellcheck: going postal now uses the correct ui theme and isn't confused with
- tiger cooperative
- - bugfix: You can now hold people at gunpoint from range!
- - bugfix: Fixes evolved xenos deaths being broadcasted in dchat with the old larva
- name .
- - bugfix: Firelance can no longer be used when out of battery
- - bugfix: Fixed a money generation exploit with the roulette machine.
- - spellcheck: Removed the extra 's' in the food/drug eating verb.
- - bugfix: fixes people catching fire when using jump or rocket boots to leap over
- a gap of lava.
- - refactor: refactored lava burn and weather immunities code.
- - bugfix: The HFR interface now uses correct units, and avoids references to tickrate.
- - bugfix: The HFR no longer rapidly absorbs all available fuel from the fuel port
- at rates far exceeding the fuel injection rate.
- - bugfix: Fixes access on Maint airlocks on the tramstation bar
- - rscadd: MOONICORNS. Watch out for their horn!
- - refactor: during a code refactor for cow, they may be SLIGHTLY faster or SLIGHTLY
- slower as an accidental result
- - bugfix: UI with tooltips will now be much faster to create them, such as R&D console
- searching or preferences menu tab switching.
- - admin: You can now cancel incoming and outgoing cross comms console messages.
- - bugfix: spirit holder exorcisms now make sounds
- - bugfix: fixes possessed blade not actually being able to be possessed
- - refactor: null rod's subtype picking is now an element
- - balance: Changed gambling loot, prison_contraband, armory spawners
- - imageadd: Added new rainbow random spawner icons for mapping
- - code_imp: Changed the file paths to most spawners and put them into separate files. All
- random spawners inherit from the base random class.
- - refactor: Refactor spawner code to make it clean and unison. All of the random
- spawners now follow the same formatting.
- - spellcheck: fixed airlocks id from entrence to entrance
esainane:
- bugfix: The Space Hotel ruin's Staff Room and Staff Store now use distinct areas,
and no longer have APCs fighting each other for control.
@@ -850,36 +366,6 @@
- balance: Bluespace launchpads will now show a beam that fades out between the
target turf and the launchpad after it has done the teleportation. Again, does
not apply to traitor launchpads.
- - bugfix: Fixed two issues with paper code. Namely paper text being always colored
- black outside of edit mode and signatures showing the current name and not the
- real name.
- jjpark-kb:
- - bugfix: 'lavaland: bring back the xenoarch lab (was removed due to map reset)'
- softcerv:
- - bugfix: Hypovials now properly display their intended overlay texture, instead
- of the chemical overlay textures from bottles.
-2021-10-13:
- SkyratBot:
- - bugfix: MMI components can't be no longer attached to modules. This was causing
- race conditions with other MMI components present in the circuit (not much of
- a good thing).
-2021-10-14:
- Colovorat:
- - bugfix: You can no longer extract and transform DNA of species that have no DNA
- Gonenoculer5:
- - rscadd: Families gear to the loadout. God this hurts.
- - rscadd: Trekkies gear to the loadout. Rejoice!
- - rscadd: Jorts to the loadout. Thats it. Just Jorts.
- Guillaume Prata:
- - imageadd: Engineering clothes have working reflective stripes now. Easier for
- someone to find your corpse in maints, harder for you to hide in the dark to
- do bad things.
- Lyroy:
- - bugfix: fixes the has_banned_species proc for jobs
- - bugfix: The recent strong storm keeping the Ash Walkers trapped and isolated has
- finally ended. Miners should be cautious, as the Lavaland natives might start
- showing up again.
- - bugfix: Primal Podpeople have finally managed to exit their cryopods again.
esainane:
- bugfix: The CE's blueprints can now once again show an overlay of the station's
original structural layout! Cleaning up after an explosion is now - well, realistically,
@@ -898,91 +384,6 @@
still open and close them with alt-click.
- refactor: Toggle Suit component for labcoats, suit coats, and formal coats (and
some others)
- Seris02:
- - bugfix: server erp prefs will now actually turn off the erp emote
- SkyratBot:
- - bugfix: Contractor support units now do not get a second uplink with 20 TC in
- them.
- - bugfix: fixes mode switch actions on storage items being broken
- - bugfix: Fixed base lighting appearance inheritance.
- - admin: Datum input ports can now have atoms and datums uploaded to them.
- - bugfix: Malf AIs cannot be rolled midround if one has already been rolled roundstart.
- - bugfix: Fixes filter list component not being a filter list component
- - admin: Admins can now stop animations on an object as well as decide if it starts
- parallel or not.
- - bugfix: 'Fixed animating filters in steps not working at all. qol: Gave instantly
- executing ports special datatypes to distinguish what ports cause instant execution'
- - bugfix: Fixed a runtime with the integrated circuit duplicator
- - admin: Signal Handler circuit components are no longer limited to 1 registered
- object.
- - admin: Get variable circuit components can now get GLOB variables
- - admin: Animate and Save Shell circuit components will now apply DF_VAR_EDITED
- - bugfix: regal rat can now eat cheese + runtime fixes for its signal
- - bugfix: Syringe/Hypospray failure messages now reflect the proper body part.
- - bugfix: list literal can now contain tables,like they are supposed to
- Station Engineering Safety Association (SESA):
- - bugfix: Atmospherics Helmets are properly fitted for muzzled/beaked crewmembers
- now
- YakumoChen:
- - balance: Reverted some Venus Human Trap nerfs, which removed their ability to
- pull mobs and heal by walking in vines, in exchange for being able to grow vines
- slightly faster.
- jjpark-kb:
- - rscadd: added the conveyor sorter, which can force move things to a direction
- if in the sorting list
- - rscadd: added admin-spawned supermatter cascade
- linnpap:
- - rscadd: Added vape carts
- - rscdel: Removed lipolicide from cannabis
- - rscadd: Adds increased hunger as an effect of THC
- softcerv:
- - refactor: Mediguns and Medicells are now subtypes of Cell-Based guns and Weapon-Cells.
- - refactor: 'Medicells now use a balloon alert rather than a notice when toggling
- between safe and unsafe. qol: examining medicells now shows the ammo type that
- is added when using them on a gun. qol: Medigun upgrade kits now use the conversion
- kit framework, making them easier to upgrade.'
-2021-10-15:
- Iamgoofball:
- - bugfix: Fixes Medical Cyborg reskins to be selectable again.
- Lyroy:
- - bugfix: gives the ash walker camp power to fix their machines not working
- Melbert:
- - rscadd: 'Icebox: The Chapel, Library, and Departures Lounge (and some maintenance
- around it) have been revamped and expanded to utilize multi-z.'
- - bugfix: You no longer see yourself in everything you double examine
- ORCACommander:
- - bugfix: CI now passes the gates
- - bugfix: missing config flag
- - config: new conflig flag
- - admin: new conflig flag. inactive by defualt
- Ryll/Shaps:
- - spellcheck: Fixed incorrect "the"'s being inserted before the names of improper
- nouns in item stripping code.
- - rscadd: Added new quirk, "Shifty Eyes", which rarely causes people who examine
- you while standing closeby to think that you both made eye contact, even when
- you didn't.
- - balance: The time window for making eye contact with someone else has been extended
- from examining each other within 1 second to within 2 seconds.
- Seris02:
- - bugfix: pAIs are no longer invisible head creatures
- - bugfix: radio jammers no longer activate when deactivating and vice versa
- - bugfix: flares no longer continue to burn after running out of fuel
- - bugfix: stops tgui from migrating prefs when it shouldn't be
- SkyratBot:
- - bugfix: Fixed a bug where bans could not be applied if the database connection
- was not immediately established, even after a re-establish.
- - server: Updated database schema to allow for null round IDs in bans and tickets.
- - bugfix: Lavaproof borg upgrade for miner borgs now works properly.
- - bugfix: Leftover plasma tanks formerly intended for radiation collectors have
- been removed.
- - bugfix: Fixes openspace not working if the floor below has been changed
- - bugfix: Pipes now properly fulfill your nicotine cravings.
- - balance: The super matter crystal can no longer be immediately delaminated by
- firing a gun into it, only brought close to the delamination threshold.
- - bugfix: Fixes the holoparas breaking their users glasses when manifesting bug.
- ihavenoideahowtonamemyaccount:
- - rscadd: even more halloween costumes options in the loadout
-2021-10-16:
tralezab:
- bugfix: Basic mobs can once again be vareditted
2021-10-13:
@@ -1043,77 +444,6 @@
outages caused by rogue syndicate mice operatives.
- bugfix: Patched up a few missed spots involving pipe/wiring for departments like
Botany/Courtroom.
- SkyratBot:
- - bugfix: Fixed monkeys having the wrong on fire overlay when ablaze.
- - spellcheck: No more phantom hand grabbing.
- - bugfix: quantum pads and other things with fault do_teleport calls no longer cause
- runtimes
- - refactor: refactored drowsiness code
- jjpark-kb:
- - rscdel: removed sm cascade sea
-2021-10-17:
- Guillaume Prata:
- - balance: Atmospheric Technicians will have external airlock access by default
- now instead of only on skeleton crew.
- - imageadd: Atmos Optical glasses have a new icon for it's connectable mode.
- - imageadd: Fire extinguishers now have a worn sprite when they are stored on your
- Firesuit.
- Merek2:
- - rscadd: Deckers maskless outfit.
- - imageadd: Added decking_jumpsuit to two costume.dmi files for icon and wear state.
- - code_imp: Modified clothesmate to add deckers maskless outfit.
- SkyratBot:
- - bugfix: fixes combat hypospray locking itself out from 10u transfers to 5u when
- used in-hand
- - bugfix: Pets no longer enjoy being shoved around.
- - balance: Growing vats can now be set to regrow the sample upon completion.
- - balance: Increased the volume of growing vats from 200 to 300u.
- - bugfix: Organs will now consistently "Fail" once they have reached max damage
- - rscadd: added ability to change hologram appearance to custom character
-2021-10-18:
- ATHATH:
- - bugfix: 'The "don''t allow any organics to escape on the emergency shuttle alive"
- objective no longer counts inorganic species like golems, plasmamen, androids,
- etc. qol: Some malf AI objectives have had their descriptions updated to reflect
- them only caring about player-controlled creatures.'
- Gandalf2k15:
- - rscadd: Did you know you can interact with someone by ctrl+shift+clicking them?
- - rscadd: Added a new job, the barber!
- - rscadd: Hand dryers!
- - rscadd: A salon!
- Horatio22 borrowed Iamgoofball and Surrealaser , spriter d4n0w4r:
- - imageadd: added 2 new outfits to the detective autodrobe
- Iamgoofball:
- - rscadd: 'Adds the Self-Actualization Device for Medbay! Find it under Genetics
- research. qol: Operating Tables have been equipped with stasis functionality!
- qol: Cyborgs are no longer immune to surgery speedups.'
- - rscadd: You now work faster when alone with a patient!
- - bugfix: Painkillers now properly numb pain.
- PositiveEntropy, EricZilla:
- - imageadd: Resprites pinpointers!
- SkyratBot:
- - balance: The Goon Source code item is now invulnerable to deletion (aside from
- ninja intervention), similar to every other high risk item.
- - spellcheck: Fixed capitalisation errors in hypernoblium crystal usage messages.
- - rscadd: When all else fails, dusting a Clown can alter the Supermatter's containment
- field. It might make the situation better. It might not. Who knows, HONK
- - bugfix: Admins who aghost won't be dragged back to their body when someone attempts
- to defib them.
- - admin: Assembly bomb creation is now logged in Kelvin.
- - bugfix: Fixes the mind name of aliens not being updated when evolving (for real
- this time)
- - bugfix: Fixed supermatter lightning bolt target selection. Previously, two grounding
- rods were always* safe. Now, one grounding rod is always* safe.
- - bugfix: fixes an error in department officers spawning with wallets
- - spellcheck: fixed a single bracket typo
- - bugfix: fixed abductor and advanced tools' recycling results being heavily diminished
- or taken from their basic counterparts
- - bugfix: Monkeys can now open worn backpacks by clicking on them.
- - bugfix: you can no longer exploit the pink crossbreeding power to strip factions
- from mobs
- - bugfix: Secways will now say it's broken, rather than it's component.
- - code_imp: removes color_legacy prefs and changes sanitize_hexcolor()'s default
- to 6 characters
Maurukas:
- balance: The super matter crystal can no longer be immediately delaminated by
firing a gun into it, only brought close to the delamination threshold.
@@ -1204,34 +534,6 @@
curve.
- bugfix: Tesla Coils no longer generate power using half the smoothing that Radiation
Collectors used. This was due to a mistake in handling delta_time.
- - code_imp: 'Removed many magic numbers from power generation code. qol: Tesla Coils
- will now display energy stored in Joules and power being produced in Watts,
- much like Radiation Collectors did. qol: Grounding Rods will now display recent
- energy they''ve absorbed and the sustainable power that this energy could be
- producing. It should now be very obvious if you could use more Tesla Coils.'
- - bugfix: Fixed the join/ready buttons not reverting if the game fails to setup.
- - bugfix: Players with the monkified mutation now have a generic monkey name as
- opposed to their actual name again.
- - bugfix: probital now works properly on ingest. you now get mitogen again
- - bugfix: Non wallsocket lights will be properly colored again. Whoops
- - spellcheck: Gives shaft miner a more accurate job description
- jjpark-kb:
- - rscadd: added the cargo teleporter, item that can teleport items to markers
- - rscadd: added ceramics skillchip
- - rscadd: added glassblowing skillchip
- - rscadd: added glassblowing, ceramics, and fishing skillchips to maint loot and
- the fun vender
- - rscadd: unfinished ceramics can now be sold for 300
- - rscadd: unfinished/finished ceramics will now not have elastic selling prices
-2021-10-19:
- Gandalf2k15:
- - rscadd: 'Added a new quirk, oversized. See: for more details.'
- - rscadd: Oversized people cannot enter mechs or be patted on the head!
- NotRanged:
- - rscadd: Re-implemented silicon flavor texts!
- - bugfix: Fixes dogborg models getting an improper pixel offset on their sprite.
- - bugfix: Dogborgs get their rest and rest-style verbs back. They are located under
- AI commands.
- code_imp: Removed many magic numbers from power generation code.
- qol: Tesla Coils will now display energy stored in Joules and power being produced
in Watts, much like Radiation Collectors did.
@@ -1302,17 +604,6 @@
- refactor: Rolling paper will now use the customizable reagent holder component.
This cleans up the code and expands the possibilities for using the component
by adding support for dried items.
- softcerv:
- - bugfix: medical bandoliers can now hold hypovials again.
-2021-10-20:
- RatFromTheJungle:
- - bugfix: Makes the irish sweater actually work in the loadout.
- SkyratBot:
- - rscadd: Emagging the communications console will now let you purchase dangerous
- shuttles. The Gigafactral and the Monastery were moved over (and made cheaper),
- while the Disco Inferno and Oh, Hi Daniel make a return.
- jjpark-kb:
- - bugfix: added a range after mark selection for cargo teleporters
esainane:
- bugfix: Removed a scrubbers pipe that didn't lead anywhere near Upper Hydroponics
on Tram.
@@ -1339,308 +630,11 @@
variables (which are zero by default) become nonzero.
- bugfix: Butter bear attacks are now considered to be blunt instead of sharp for
the purposes of wounds.
- Gandalf2k15:
- - rscadd: Added a mob spawner function for admins.
- MMMiracles:
- - bugfix: Pacifists can now fire the circuit gun.
- - rscadd: Added new pair of glasses that can be found within the trash piles of
- maintenance.
- SkyratBot:
- - bugfix: da vim can now be entered again.
- jjpark-kb:
- - bugfix: fixed ash farm plants from becoming unharvestable
- - rscadd: ash farm plants can have regen cores used on them to drop (as a chance)
- their produce
- - rscadd: ash farm plants can have watcher sinews used on them to have (as a chance)
- a lower growing time
- - bugfix: primitive fishing rod recipe is fixed
- - balance: fishing rods require 2 hands now
- - balance: easier to get the fishing skill chip (higher chance while fishing)
- - balance: trash is now within the pool to get loot from for fishing
- - balance: fishing will yield less strange rocks
- softcerv:
- - bugfix: Hypovials now fit inside of medical belts again.
-2021-10-22:
- Melbert:
- - bugfix: Fixes people getting rejected by the panic bunker when they probably shouldn't
- have been (if you can read this, it probably doesn't affect you anymore)
- RatFromTheJungle:
- - rscadd: PepperballGun goody+crate
- SkyratBot:
- - balance: Syndicate masks are now fire + acid proof
- - bugfix: CentCom now has one APC per area.
-2021-10-23:
- Echopsychotic:
- - imageadd: tails were added here
- ForrestWick:
- - rscadd: Added many new mobs to the game files for use in future map projects and
- admin events. They've also been placed in a few of the skyrat-specific space
- ruins where appropriate.
- MeyHaZah, Onule, Fikou:
- - imageadd: mining gear resprite
- SkyratBot:
- - bugfix: The proc call, set var, and spawn atom circuit components will properly
- resolve any weakrefs passed to them through their list ports.
- - admin: The signal handler circuit component has two new presets, item_pre_attack_secondary
- and item_afterattack_secondary.
- - bugfix: 480x480 titlescreens now load up centered as intended from the widescreen
- title changes
- - rscadd: makes it so lockers/crates can have access electronics removed/inserted
- - admin: Added a "suppress_message_admins" variable to SDQL spells, which prevents
- the spell's query from getting output to all admins' chat panels. The query
- will still be written to the game log.
- - bugfix: The SDQL spell parse error modal grows properly.
- - bugfix: fixed implant abilities not being properly removed when the implant is
- removed.
Coconutwarrior97:
- rscadd: Adds a hydroponics airlock type, and replaces old medical hydroponics
doors with the newer airlock type.
- bugfix: Fixes an issue where people with the doctor phobia were afraid of hydroponics
doors.
- - bugfix: Fixed the contents of certain coded or mapped closets exceeding their
- storage capacity, like the HoS closet on Delta, which had redundant grey HoS
- jumpsuit, trenchcoat and beret, or the mixed wardrobe closet with its duplicate
- bandanas, jacket and green jumpsuits,
- - bugfix: The Lavaland Syndicate Base is now Powered again.
- - code_imp: repathed /unpowered Syndicate Base areas to /powered
- - bugfix: Gas Filters will now always attempt to move gas, as long as at least one
- output has space available. Any gas not able to be moved to its destination
- is returned to the input as if it was never removed. Previously, only gases
- for the main output port would continue to move when the other output port was
- full.
- - bugfix: Gas Filters again no longer leaves empty entries for gases that were filtered
- in the main output.
- - bugfix: Gas Filters again no longer outright destroys gas when no filters (or
- a bad filter, somehow) are set. Instead, it will go through to the main output,
- as before, or if the main output is full, be returned back to the input, as
- if never removed.
- - bugfix: Backup human names are once again respected when forcibly humanizing what
- would otherwise be a non-human head of staff.
- - bugfix: 'Prying open one of a pair of cycle-linked airlocks will now always close
- the other (if it is powered). expansion: Arrivals, escape, and pod airlocks
- now restrict those without access from exiting directly to space. Use is unrestricted
- when entering the station or a shuttle is docked.'
- - tweak: Shuttle departures will now force exterior airlocks closed on both the
- shuttle and docking bay. The lives of your fellow crew members are more important
- than your tardiness and limbs, employee!
- - bugfix: Fixed the numbering of escape pods in certain maps.
- - rscadd: 'Titlescreens are now widescreen''d up. qol: The titlescreen is no longer
- described as "Effectively impervious to conventional methods of destruction."
- and only the splash screen can be interacted with'
- - bugfix: The american sausage has become edible AND roast-stick-friendly!
- - bugfix: Fixes advanced roasting stick griddling itself when used on a bonfire
- with a rod griddle built over it instead of using the bonfire to roast the sausage.
- - bugfix: fixes mining drills showing as pickaxes when worn or held in-hand
- - bugfix: borgs will no longer leave MMIs while cryoing
- - bugfix: Fixed maintenance drones being unable to examinate things they currently
- can't interact with throgh shift-click.
- - bugfix: Fixed clown car drivers being unable to examinate things or interacting
- with their inventory while the car is in cannon mode.
- - bugfix: Fixed honorbound people being unable to pull, examinate and alt-click
- other living mobs while holding an item that could be used as a melee weapon.
- - bugfix: Fixed mechas firing their weapons or using their tools when the pilot
- is examinating things through shift-click.
- - bugfix: Security Plasmamen spawn with their suit sensors set to Maximum
- - imageadd: Added thin prescription glasses
- - bugfix: The Orion Trail's instructions screen is usable again.
- - bugfix: Changelings that re-adapt with pheremone receptors on, will have them
- forcefully removed.
- axietheaxolotl:
- - imageadd: resprited the HoP's wintercoat
- - balance: HoP's coat can now hold their egun
- jjpark-kb:
- - rscadd: added directional icons for the conveyor sorter
- softcerv:
- - bugfix: fixes the placement of type overlays on Medicells.
- - refactor: refactors the method that cell based guns use to visually display the
- currently loaded ammo type. As a result of this, temperature adjustment cells
- now have a yellow select color.
-2021-10-24:
- Ebin-Halcyon:
- - bugfix: The Syndicate have cleaned up the tribals making their bases into lavaland
- patches
- Guillaume Prata:
- - bugfix: Space Heaters won't change temperature without draining it's cell charge
- anymore.
- ORCACommander:
- - bugfix: The Following Stations are now in compliance with NT EVA Safety Protocols
- Submerged Kilo Station, NSS Journey and Blueshift
- SkyratBot:
- - bugfix: Fixes some hydro airlocks having null in their req_access.
- - bugfix: Members of the Science department can no longer get given the objective
- to steal their own server's source code.
- - balance: cattleprods can no longer be held in suit storage slots
- axietheaxolotl:
- - balance: removed the sec wintercoat glob
- thestubborn:
- - rscadd: Canidae Trait! Speak like a dog! Be irresistible to white women!
-2021-10-25:
- ForrestWick:
- - rscadd: gives the cargodise lost/cargo freighter ghost role an iv drip so they
- don't die of bloodloss
- - bugfix: fixed badnana spider factions
- Gonenoculer5:
- - balance: SEVA suits no longer accept goliath plates, as was intended by the original
- PR author, and now add two seconds of stun to goliath grabs. Dont shoot the
- messenger.
- - bugfix: A recent factory mixup in the core worlds made it so that SEVA suits were
- comming with plate hooks for enviromental suits. Centcom has corrected this,
- and as such SEVA suits are now back to their manufactuing spec.
- - code_imp: Relocated SEVA from explorer subtype to its own, to avoid inheriting
- plate addition from the hooded/explorer/XYZ subtype.
- NotRanged:
- - rscadd: Blob, swarmer, and xeno events should roll naturally again.
- PositiveEntropy:
- - imageadd: Resprites the defibrillator!
- SkyratBot:
- - bugfix: fixes bomb implants blowing you up anyway when closing the window instead
- of pressing the "No" option
- - bugfix: fixes bomb implants blowing you up when clicking the action button while
- the confirmation popup is still up
- - bugfix: The SM air alarm on MetaStation and TramStation once again starts unlocked,
- and can also be locked and unlocked by Engineers instead of just Atmospherics
- Technicians. This matches the setup on Delta, IceBox, and Kilo.
- - spellcheck: Offering items to other players now has punctuation
- - rscadd: Added a rare skillchip to maint.
- - balance: Makes wizard a high impact ruleset.
- - bugfix: Fixes pacifists wielding mjollnir being able to shock people.
- - bugfix: Regular/Advanced mops are now in the same categories of the auto/protolathe.
- Statickx:
- - bugfix: Added suit sensors to blood-red pajamas in the loadout menu.
-2021-10-26:
- ForrestWick:
- - bugfix: 'Syndicate Mouseperatives will not longer try to murder their own team
- grammar: Renames the imp to Talon Demon'
- SkyratBot:
- - bugfix: fixes a slight issue with the hair color not being visible on ghosts after
- the legacy color removal
- - bugfix: Backup human names will now properly only apply when you are a nonhuman
- head of staff, rather than any head of staff.
- - code_imp: LabeledList.Item now supports arbitrary nodes as labels. String labels
- still work as previously.
- - code_imp: RoundGauge now supports an alertBefore property, for when warnings need
- to happen below a threshold. This can combine sensibly to form ranges with alertAfter.
- - refactor: 'The HFR interface has been heavily rewritten and restructured, fixing
- many edge cases where data was empty, unset, or took extreme values. Major parts
- now have their own file. The structure of gas lists is now consistent. Static
- data is used for more values. Much presentation layer logic has been moved to
- tgui instead of dm. Some processing that should never have happened, in tgui
- or anywhere else, is now gone forever. qol: The HFR UI now displays the recipe
- specific gases that each fuel will create in a large table inside an expandable
- area. This can be collapsed when not needed. qol: The HFR UI now uses a minimum
- mass for the scale of its gas lists. This should provide a visual cue for when
- a gas mix is running out, or needs more fuel to start. qol: The HFR UI now graphs
- its various gas mixtures on a unified logarithmic scale, and tells you how fast
- the temperatures are changing in real units after all effects. qol: The HFR
- UI now displays reactor status through gauges, with scales set to indicate typical
- ranges involved, and warnings to indicate when something is going wrong. qol:
- The HFR UI now directly displays reaction instability, reaction activity, and
- the cell charge of the local APC. Reaction activity is the amount of heat output
- relative to what is permitted by the heat output limiter. This is effectively
- making explicit the result of a calculation you would otherwise need to do anyway,
- and makes it easier to notice when a reaction has stalled. qol; The HFR UI will
- now helpfully inform you in discerning red text if you have no recipe set, or
- if any one of the gas mixtures is empty. This should be particularly helpful
- for noticing when you didn''t add any coolant. Please involve coolant when operating
- a nuclear reactor. qol: The HFR UI now always lists Plasma, BZ, and Proto-Nitrate
- in the moderator gas list, and provides tooltips explaining their usage and
- purpose. qol: The HFR UI now has many other tooltips, from explaining the function
- and purpose of the various reactor controls, to the fringe effects of uncommon
- moderator gases.'
- - code_imp: heat_output_bool is gone forever yes this deserves its own changelog
- entry
-2021-10-27:
- GoldenAlpharex:
- - bugfix: The razors will now properly direct you towards the right areas to aim
- for instead of letting you maim the person you're trying to shave, unless you
- have combat mode turned on. At that point, maim away.
- - spellcheck: Fixed the name of a few of the barber's tools.
- - code_imp: Both hair dyes are now merged together in one, super powerful hair dye
- spray!
- Iamgoofball, Azarak:
- - rscdel: Departmental Security has been removed.
- - rscadd: 'Departmental Guards(Orderly, Bouncer, Customs Agent, Science Guard, Engineering
- Guard) have been added. qol: Security armory firearms now fire Hardlight Bullets.
- This will help with performance at extreme pop(120+) and game balance.'
- - balance: Security armory firearms have gotten a complete rebalance. They now fire
- stronger, accurate shots, with each Rifle serving a unique niche now.
- - bugfix: Flashbangs no longer flash through sunglasses.
- - balance: Stun Batons stamina crit in 3 hits.
- - balance: You can talk over the radio while cuffed/aggro grabbed again. Just remove
- someone's radio or disable it using the myriad of tools we have to disable radios.
- - balance: The Disabler is now more effective.
- - balance: All armory energy based guns can be reloaded by hitting them with a new
- power cell.
- - rscdel: Maint Mobs have been removed due to being unfun, unwanted, and existing
- entirely as a thinly veiled justification to give every Security Officer a lethal
- sidearm at all times.
- - rscdel: Security sidearm tokens have been removed.
- - balance: Stamina has been reworked to be more reliable, more functional, and more
- useful in combat.
- - balance: Maint-Fu has been restored to its former glory.
- - balance: Security armor stats have been reworked back to original levels alongside
- a full rebalance of all their clothing to be proper alt-gear instead of upgrades.
- - balance: AKA, security officers who choose to wear redsec are no longer at a disadvantage
- to officers who choose to wear peacekeeper.
- MMMiracles:
- - rscadd: Tramstation now has stocked the various departments with either a basic
- break room or basic starter food to give a growing crew what they need to stay
- healthy.
- - rscadd: Some extra public-access vendors for junkfood and cigarettes have been
- added to the public halls of Tramstation.
- - rscadd: Security now has an evidence room to store confiscated things.
- Melbert:
- - code_imp: auto-grow for hydroponics trays now use a setter
- - bugfix: Some special plant reagent genes now show up on the plant analyzer properly
- again
- NotRanged:
- - rscadd: Added the Teshari species.
- - rscadd: Added the Schechi language, innate to Teshari but usable by anyone, described
- as an avian language.
- - imageadd: Added Teshari bodymarkings, 13 ear variants, and 3 tail variants.
- SkyratBot:
- - rscadd: Cargo's Delivery Tagger now uses TGUI
- - bugfix: Directional firelocks are now transparent, consistent with full-tile firelocks.
- This avoids some very strange behavior where you could see through a directional
- firelock when you were on the same tile.
- - rscadd: Added facial hair to Ethereal customisation.
- - rscdel: the captain can no longer unlock his display case on delta without breaking
- it
- - code_imp: 'Stuff that lets you interact with the benches and beds in-game, so
- that you too can enjoy being a king. sprites: Ports the Benches and Double Bed
- sprites from Skyrat sprites: Flipped Beds'
- - bugfix: BCIs no longer runtime when they're created at mapload.
- - imageadd: recoloured the CC commander envirosuit
- - bugfix: Assemblies attached over a wire will now always pulse the wire on activation,
- even if the wire is cut. You can create voice or signal activated airlocks again!
- - bugfix: The RD's office in IceBox once again contains an AI Core circuit.
- - bugfix: You can no longer use the *collapse emote to cheat your way out of stamcrit.
- - rscadd: A new frosted over building has been unearthed in the wastes of icebox.
- - bugfix: Reinforced walls will now properly re-smooth when nearby reinforced walls
- are created or destroyed.
- - bugfix: Objects which use custom materials and break above 0 integrity no longer
- spawn broken.
- - code_imp: Made a comment which warned against breaking this sort of thing more
- explicit.
- - admin: The terrible code ocelot haunting the editing ban panel has been banished.
- Editing bans now actually works again.
- SpaceVampire:
- - bugfix: The HoP coat has returned to it's old glory.
- - bugfix: The parade jacket no longer has random armor, along with gun-sized pockets.
- Sacrifice for your drip.
- axietheaxolotl:
- - imageadd: Adds botany door sprites
- softcerv:
- - rscadd: Adds in the Hardlight Gown Medicell, used to easily clothe nude patients.
- tf-4:
- - bugfix: Automatic mining scanners are visible once again
- - bugfix: A few wallmounts on Journey in toxins launch are now mounted on the wall
- - bugfix: a few default atmos pipings on Journey around science now make more sense
-2021-10-28:
- OrionTheFox:
- - imageadd: Digitigrade sprites for the Tacticasual Uniform and Cargo Tech Casual
- Wear
- SkyratBot:
Ghommie:
- balance: Moved Pun Pun away from the kitchen on Delta. It's now behind the bar
counter.
@@ -1873,42 +867,6 @@
case the word is in
- config: Adds new config options for soft filters
- admin: Admins will get notifications when a soft filtered word is said
- - bugfix: Fixes notes and bans being shown to players on connect when the note or
- ban doesn't belong to them.
- - bugfix: fixes hats glued to corgis' heads when dressing corgis up
- - bugfix: orion can now no longer give you multiple prizes
- - bugfix: Squirt cider now requires salt. Tomato soup no longer becomes squirt cider
- - admin: Players now see any notes they may have gotten whilst disconnected when
- they join the server for the next time
- - rscdel: Removes the book "Singularity and Tesla for Dummies"
- - bugfix: Ethereals will no longer take burn damage from breathing air which they
- can stand in safely with internals
- - bugfix: emagging ethereals works again
- - bugfix: A roundstart Mannitol pill should no longer cause overdose on its own.
- - bugfix: DNA unique identity and unique feature strings once again generate correctly,
- which also means they work correctly again.
- - rscadd: Bans are now more user friendly
- - balance: If you try using the staff of change, the staff of chaos or the staff
- of healing as a crewmember, then it'll backfire. The Staff of change wabbajacks
- the user, like the pool of change; this means you can't become a xenomorph or
- a syndicate borg. The Staff of chaos has a 5% chance of firing the bolt directly
- at the user using it. The Staff of healing now behaves like a medibeam gun to
- non-wizards trying to use it.
- Solgov Station Engineering Safety Association (SESA):
- - imageadd: New thinklite(tm) brand reflective strips are now included on non-humanoid
- engineering wear as well! The Association has also updated the non-humanoid
- Atmospherics Hardhat to be up to spec!
-2021-10-29:
- Ebin-Halcyon:
- - rscadd: '''Contraband'' gear to SyndiVends, is it really contraband in the Syndicate?'
- GoldenAlpharex:
- - bugfix: Ambience music should now be cut a lot less often.
- - bugfix: The colorable leather jacket was promptly reminded of the "colorable"
- part of its name and can now be changed in-game again.
- - bugfix: Middle and corner benches have become corporeal again.
- SkyratBot:
- - rscdel: Removed leftover HTML from spawner menu
- - refactor: Spawner menu is now easier to read
Sealed101:
- expansion: Spooky headless corgi spirits have been sighted across the Sector!
- bugfix: fixes hats glued to corgis' heads when dressing corgis up
@@ -1955,23 +913,6 @@
of mining access.
- bugfix: Removed access requirements from southern mining station public external
airlocks.
- - bugfix: The SM now properly provides bonus power for operating in a low pressure
- environment. Make sure you can keep it cool enough, and remember, space or a
- vacuum won't work, but it will damage the SM!
- - code_imp: Calculations relating to the SM pressure bonus are now derived from
- human readable parameters.
- - bugfix: Double Bedsheets now properly show the bedsheet sprites.
- - bugfix: Felinids can no longer be head of staff if human authority is required.
- - bugfix: The foreigner quirk on felinids now works as it does with all other nonhumans
- who have their own languages, rather than also giving Galactic Uncommon.
- - bugfix: Bank machines will now immediately stop withdrawing funds if the machine
- is broken or unpowered.
- - bugfix: fixed a runtime in physical experiments trying to unregister a signal
- from a non-existant atom
- - bugfix: The crafting menu now uses scrollable sections, fitting the window regardless
- of resize. A little easier to use.
- - bugfix: Fixed an issue with the crafting menu not being fully dimmed while crafting.
-2021-10-30:
Guillaume Prata:
- expansion: Atmospherics Technicians can receive some useful things from their
mail now.
diff --git a/html/changelogs/archive/2021-11.yml b/html/changelogs/archive/2021-11.yml
index f6fc047203c..70bdd6601fd 100644
--- a/html/changelogs/archive/2021-11.yml
+++ b/html/changelogs/archive/2021-11.yml
@@ -71,18 +71,6 @@
they're already irradiated (or can't be).
- balance: Breathing tritium will now irradiate you after a certain amount, as well
as deal toxin damage.
- - code_imp: vampire drain now uses the cooldown system
- - rscadd: 'There''s a new traitor flavor: The Champions of Evil'
- - bugfix: Shapeshifting into a Human while in a vent will once again gib you.
- - bugfix: Fixes catwalks being added on top of each other infinitely.
- jjpark-kb:
- - bugfix: fixes glassblowing and ceramics to work on the forge again
- tf-4:
- - bugfix: Due to budget cuts, the NCV Titan no longer has seven APCs in the same
- area.
-2021-11-04:
- SkyratBot:
- - bugfix: Removes a XSS vulnerability while picking religious sect.
phasenoisepon:
- bugfix: admin heals no longer delete all restraints in target's inventory
2021-11-04:
@@ -96,33 +84,6 @@
mobs, or effects. As a side effect, you should no longer accidentally trigger
your explosive lance on the wrong target by misclicking on a piece of graffiti
during the heat of combat.
- GoldenAlpharex:
- - bugfix: The titlescreens are now centered again.
- Melbert:
- - spellcheck: Dormat -> Dormant
- SkyratBot:
- - bugfix: Fixes an exploit that allowed players to disable holodeck safety without
- following the proper conditions
- - bugfix: fixed some buttons having zero width
- - bugfix: Fluid ducts will no longer duplicate when unwrenched
- - bugfix: Fixed blind mobs not receiving messages for when a food item has finished
- baking ("You smell something great / a burnt smell...")
- - spellcheck: Added punctuation to the above messages.
- - bugfix: Fixes an exploit that allowed players to arbitrarily spawn any path.
- - admin: the party alarm now flashes roughly 2.5 times slower
- - bugfix: PACMANs could previously be emaged, but now there's a indicator when you
- do so successfully.
- - bugfix: Corpses will no longer scream when their limbs melt to the bone in icemoon's
- plasma lava
- - bugfix: fixed guns that are supposed to be undroppable (implant guns, guns when
- using an anti-drop implant) dropping anyway when you shoot yourself in the leg
- due to being Clumsy
- thestubborn:
- - bugfix: the victorian suits are in the loadout now
-2021-11-06:
- ReinaCoder:
- - bugfix: Fixes the two Disco Elysium detectives suits to be non-adjustable
- SkyratBot:
AndAllThatJazz:
- bugfix: Fluid ducts will no longer duplicate when unwrenched
ArcaneDefence:
@@ -137,15 +98,6 @@
cork item when its trajectory has finished.
- bugfix: This also fixes a small exploit with hand-thrown corks knocking people
down, which was unintended.
- - server: Init profiles are now logged separately from standard ones, in init_profiler.json
- - bugfix: Fixed the curator PDA having some inconsistent-looking icons for slotted
- in IDs and pAIs.
- - bugfix: Vampires and Dullahans can no longer select Cat ears and Cat tails. You
- monsters.
- - bugfix: sharding someone no longer causes an invisible dead mob
- - bugfix: Radstorms dont mutate people who are immune to rads
- - admin: Added the color matrix editor. It is available from a dropdown option in
- an atom's View Variables menu as well as when editing an existing color matrix.
- bugfix: Fixed the curator PDA having some inconsistent-looking icons for slotted
in IDs and pAIs.
- bugfix: Fixed blind mobs not receiving messages for when a food item has finished
@@ -193,52 +145,6 @@
example "screams and shouts*damnit!" with any relevant radio keys, language
keys and all that used as normal, for example, ";,o screams and shouts*damnit!"
or you can use just the emote, ie, ";screams!*"
- - bugfix: Corpses will no longer cough, spit, or choke on blood when you hit them
- in the chest really hard
- SpaceVampire:
- - bugfix: Those who stand below the shoulders of giants, are now correctly unable
- to reach up to that glorious head above.
-2021-11-07:
- Bumtickley00:
- - bugfix: Cold seiver now quickly heals your radiation instead of quickly killing
- you
- Detrender:
- - rscadd: added chestwrap and loincloth uniform
- - rscadd: added added ash walker tunic
- - rscadd: added ornate mantle
- - rscadd: added ornate leg wraps
- - rscadd: added mundane leg wraps
- - rscadd: added ash walker waistcloth
- - rscadd: added chestwrap and loincloth, ashwalker tunic, ornate mantle, ornate
- leg wraps, mantle, mundane leg wraps, ashwalker waistcloth, and loincloth to
- ashwalker vendor
- - rscadd: added donator item "ashen cloak"
- Echopsychotic:
- - rscadd: Added new tails and ears
- - bugfix: Datashark was not on the select screen before it is now
- - imageadd: Added addition snake tail sprites Striped and dual colored as well as
- deer ears from virgo
- GoldenAlpharex:
- - bugfix: The Auto-Dementor pref will now start unchecked, so people know that they
- are actually mentors.
- - bugfix: Fixes a few minor issues with our modular maps.
- - bugfix: Our modular MetaStation map will now be the one that loads in case the
- map config loading fails for one reason or another.
- GoldenAlpharex, with some oversight from Timberpoes:
- - bugfix: Maps will now correctly be loaded at the start of a round. Hurray!
- - code_imp: Improved the code for loading map configs and made it more documented,
- while also removing a way to delete config files while I was at it.
- ORCACommander:
- - bugfix: fixed erp server toggle runtime
- RatFromTheJungle:
- - spellcheck: changes around and otherwise corrects odd grammar in a specific PR's
- items.
- - bugfix: fixes security snowmobiles.
- SkyratBot:
- - bugfix: Godmoded shades should no longer spawn from posessed blades spawning spirits
- too fast.
- - imageadd: Added fallback icons for clothing inhands
- - server: Patches multiple(?) arbitrary file related vulnerabilities
TheBonded:
- bugfix: Corpses will no longer cough, spit, or choke on blood when you hit them
in the chest really hard
@@ -260,18 +166,6 @@
- bugfix: Fixed the random double bed sheets spawners spawning normal bedsheets.
- bugfix: Fixed double bed sheets other than the standard white one looking like
single bed sheets when dyed.
- YakumoChen:
- - bugfix: Trash Piles can spawn in place of Maint Crates once again.
- dawsonkeyes:
- - bugfix: fixed corporate deceit bundle error item
- jjpark-kb:
- - balance: ashwalker staff no longer has charges
- - balance: ashwalker staff can only be used by ashwalkers
- - balance: ashwalker staff can only be used on tiles right next to it
- softcerv:
- - rscadd: adds in the Hardlight Salve Medicell, please read https://github.com/Skyrat-SS13/Skyrat-tg/pull/9268
- for more details.
-2021-11-08:
GoldenAlpharex, with some oversight from Timberpoes:
- bugfix: Maps will now correctly be loaded at the start of a round. Hurray!
- code_imp: Improved the code for loading map configs and made it more documented,
@@ -361,83 +255,6 @@
- bugfix: The pixel offsets of Intercoms, Fire Alarms, Fire Extinguisher Cabinets,
Flashers, and Newscasters have been made consistent between roundstart and constructed
instances.
- - bugfix: 'Constructed Turret Controls will no longer oddly overhang the wall they
- were placed on. qol: Defibrillator mounts now better indicate which side of
- the wall they are on.'
- - bugfix: Some instances where there were multiple identical lights on the same
- tile have been fixed to only have one.
- - bugfix: Chimps no longer get grumpy when you hug them or throw things with no
- throw force at them.
- - imageadd: Adamantine textures.
- - bugfix: Stops the "You lack optic scanners, you get stunned" singularity event
- from affecting blinded or dead mobs.
- - bugfix: Blob structures can no longer be animated with bolts of animation.
- - balance: The nob + antinob hfr fuel type is now limited to 1e8 instead of 1e8
- * 1.2
- - bugfix: The phobia of authority will no longer make mobs afraid of regular id
- cards.
- thestubborn:
- - bugfix: restored items to the lustvendor
-2021-11-12:
- Azarak:
- - balance: Pollution has been changed to be less intrusive with the smoke.
- Echopsychotic:
- - rscadd: Hyena hair
- - rscadd: drago_wings (two colors)
- - rscadd: Spider legs
- SkyratBot:
- - rscadd: Felinids don't like getting sprayed with water.
- - code_imp: Adds a new status effect, incapacitated, which causes your do_afters
- to stop.
- - bugfix: The color matrix editor now logs all modifications it makes to colors.
- - bugfix: Fixes an exploit that allowed players to spawn crates marked as special.
- - rscadd: Vending machines now have nicer welcome screens
- - refactor: Vending machine UIs now do not hide bank balance information while scrolling
- - admin: Priming grenades are now logged in individual's attack logs.
- Tastyfish:
- - spellcheck: Fixes a typo in the ambitions screen.
- softcerv:
- - bugfix: Using a conversion kit will no longer display a first person message to
- people besides the user.
-2021-11-13:
- SkyratBot:
- - spellcheck: Fixed a typo when resetting a multilayer cable
- - rscadd: You can now pull on a felinid's tail to make them happy! - Except not,
- you're welcome! -Golden
- - bugfix: When it gets too much, ending it all with an atmospherics piece will now
- always do something special.
- - bugfix: Fixes an exploit that allowed players to purchase role restricted uplink
- items that they shouldn't be able too.
- - bugfix: The account registration device should no longer create ID cards that
- cause vending machines to bluescreen.
- - bugfix: Fixes an exploit in chef order console that let players potentially lag
- the server.
- - bugfix: Fixed traitor uplinks not letting you buy items that aren't restricted.
- - bugfix: Some diagonal cameras are back to being placed on walls, instead of floating.
- SolGov Engineering Safety Association (SESA):
- - rscadd: Various colored hardhats/weldhats are back in the EngiDrobe, and spare
- Construction Pouches in the EngiVend!
- - bugfix: The EngiDrobe can now properly vend Hazard Jumpsuits again
- Toastgoats:
- - imageadd: Resprited hatchet inhands and made them face outwards.
-2021-11-14:
- Elli-Skala:
- - balance: nerfs ash walker bone spears to one range
- RatFromTheJungle:
- - rscdel: Removed the Singularity crate from cargo, to prevent it getting wiley
- in the engineering wing. It couldn't even be used as a power source anymore
- anyway.
- SkyratBot:
- - code_imp: protects the filename global regex
- - balance: Nerfs the felinid tail grab mood buff.
- - bugfix: You now only go on click cooldown if you actually threw something.
- - bugfix: Changelings no longer get sent to Argentina when using last resort
- - bugfix: Blind people and those without eyes are no longer affected by changeling's
- last resort explosion.
-2021-11-15:
- Ebin-Halcyon:
- - bugfix: Interdyne and DS-2 air alarms/fire alarms are properly oriented, defibrilators
- are returned to their mounts
- bugfix: Constructed Turret Controls will no longer oddly overhang the wall they
were placed on.
- qol: Defibrillator mounts now better indicate which side of the wall they are
@@ -688,68 +505,6 @@
instead of detonating the PDA right off the bat. Because of this and the possibility
that a portion of these messages goes "unreplied", the TC cost of the item has
also been reduced to 4 and the number of charges upped to 6.
- GoldenAlpharex:
- - bugfix: Mentors will now no longer get de-mentored by default.
- ORCACommander:
- - refactor: Updated Over 20 skyrat maps to new directional wall items
- OrionTheFox:
- - imagedel: Removed outdated min-max security jumpsuit icons; they now use GAGS,
- as the base prison suit already used. Visually no difference.
- SkyratBot:
- - rscadd: 'All of your favorite simple bot friends aboard the station now have a
- much better interface in TGUI qol: You can now lock and unlock bots, including
- their maintenance hatches, via the UI.'
- - bugfix: You can no longer access the body type option on genderless species by
- setting your gender to other then changing species.
- - rscdel: Cryostasis pods have been removed from all maps and code.
- - bugfix: Team antag HUDs will now properly display when they should, and won't
- display when they shouldn't.
- - bugfix: Antag HUDs will now properly show on round end again.
- - bugfix: The witchunter hat no longer hides your hair
- - balance: Increase the CO2 SM heat penalty to 6
- - rscadd: replaced the request consoles in each department with department order
- consoles, which order for free on a cooldown. cargo gets these orders and delivers
- the crates, which are locked until delivery. upon delivery, cargo gets paid
- the value of the crate, and can then sell the crate back on the shuttle.
- - balance: cargo doesn't start with a budget, other departments get what their budget
- was split up amongst them
- - bugfix: 'Antag HUDs will no longer clear on deconversion if the player was another
- antag. qol: Antag HUDs (as seen by admins and at the round end) will now animate
- between all antagonists, rather than just choosing the most latest.'
- - bugfix: Fixed some potential issues that may lock the economy subsystem in "market
- crashing" mode or accidentally clear it.
- - balance: space adaptation has been split into two mutations. pressure adaptation
- giving you full immunity to pressure and temperature adaptation giving you full
- immunity to temperature. these are not compatible with each other.
- - bugfix: You can no longer challenge multiple elite mining mobs at once and get
- potentially warped between two arenas because of it.
- - bugfix: You can now lose against elite mining mobs even if you can't die (cough
- cough Memento Mori) if you're over the minus 200 health threshold. Be careful
- not to bite the dust.
- Tokorizo:
- - rscadd: Adds Vox lore to their bio page
- - rscadd: Adds Vox strengths and weaknesses to their bio page
- - rscadd: 'Vox now start with their native language as a species perk update: The
- Vox bio page'
- - rscadd: vox ruffhawk hairstyle
- - rscadd: vox mane
- dawsonkeyes:
- - rscadd: Marine suit now in the code
-2021-11-16:
- Gandalf2k15:
- - rscadd: Cryopods have been modularised and readded.
- GoldenAlpharex:
- - bugfix: All maps will now properly be covered by the GitHub Compile Maps Action,
- meaning that we'll finally know of all the bugs on our maps before merging PRs
- that break stuff.
- ORCACommander:
- - bugfix: Air Alarms have been reinstaleld in the correct orientation
- Seris02:
- - bugfix: stripping pockets will no longer give the warning if you did it correctly
- but didn't have thieving gloves
- SkyratBot:
- - bugfix: cargo consoles aren't breaking when department orders buys a canister.
- seriously though who buys canisters man
Mothblocks:
- bugfix: Team antag HUDs will now properly display when they should, and won't
display when they shouldn't.
@@ -814,26 +569,6 @@
before
- imageadd: a new centcom themed combat uniform
- imageadd: objectively better looking marine armor
- - bugfix: Atheists will no longer mistakenly attempt to get closer to a god they
- do not believe in when committing suicide with their fedora
- - bugfix: Special air alarms (syndicate, ruins, unlocked, engine, etc) should now
- all be facing the correct direction.
- - bugfix: IceBox's Mixing Chamber air alarm is now placed on the correct tile.
- - balance: Wings now allow falling short distances without taking damage (you will
- still suffer from knockdown)
- - bugfix: UpdatePaths will now handle lists that contain strings.
- - imageadd: 'New barrier grenade sprite qol: Easier to differentiate the barrier
- grenade and flashbang'
- Superlagg:
- - rscadd: PDA customization is now set and saved per character.
- - rscadd: PDA ring messages can now be set in character preferences.
- nikothedude:
- - bugfix: Fixes all borg emotes. Woo! Also adds some new emotes to borgs.
- - refactor: Borg emotes are now handled in synth_emote.dm.
- tf-4:
- - code_imp: many spans to procs
- - bugfix: Departmental order consoles are now present on station
-2021-11-28:
RaveRadbury:
- qol: You can now load plates onto trays
UnokiAs:
@@ -1105,116 +840,6 @@
- bugfix: Cyborgs and those with rad immunity will no longer get the radiation burn
message when near something being dusted by the supermatter.
- spellcheck: Rewrote some messages when near something that was dusted by the SM
- Cobalt, Ramirez, Flavrius:
- - rscadd: A new ERT type, the NRI.
- Gandalf2k15:
- - rscdel: The automerge workflow has killed itself.
- - rscadd: 'KUDZU MUTATION: Carbon recycling - Basically replaced any carbon in the
- air with oxygen, much like what a real plant would do...'
- - rscadd: 'KUDZU MUTATION: Breach fixing - Fixes any breaches that occur.'
- - rscadd: 'KUDZU MUTATION: Low layer - Changes the kudzu to be the same layer as
- the floor, to the same effect of xeno grass.'
- - code_imp: 'Kudzu has been cleaned up just a little. remove: KUDZU: Removed co2
- producing, co2 absorbing, nitrogen producing, and oxygen producing as they null
- the above. remove: KUDZU: Removed teleportation as it ruins the ability to make
- beneficial vines.'
- - bugfix: The invisible plant has been exterminated.
- GoldenAlpharex:
- - code_imp: Improved a bit some of the subtle and subtler code.
- - rscdel: Nanotrasen denies any and all allegations of slacking off when hiring
- their HR Interns. Coincidentally, after several interns suddenly went missing,
- the severity of bureaucratic mistakes was severely reduced for brand-new stations.
- - bugfix: Votes now work again.
- - bugfix: Areas loaded from map templates should generate their lighting objects
- upon being loaded, which means that admin or game-spawned map templates will
- now have functional lights.
- - code_imp: Improved the barber code some more.
- - bugfix: Fixed the barber sign not looking like anything when picked up.
- - imageadd: Sitting down on a barber's chair will now allow you to sit properly
- in it, rather than awkwardly lying on top of everything, armrests included!
- - bugfix: Mass hallucinations are over! Drinking glasses should no longer ever be
- invisible!
- - bugfix: Quantum pads have had their blueprint tweaked by Nanotrasen's finest Bluespace
- Technicians, and will no longer break the laws of teleportation by teleporting
- themselves when they shouldn't.
- - bugfix: Benches should no longer be looking like errors on mapping editors.
- - bugfix: Fireplaces will now properly display their fire when there's over 80%
- fuel capacity, whoops!
- - bugfix: Cryopods will now store items properly again.
- - bugfix: You will no longer be able to message people that are cryo'd, as was intended.
- - bugfix: Torches and all those other light sources that shouldn't make a flashlight
- sound when turned on, should no longer make that noise upon being turned on.
- - bugfix: Desk lamps now properly start the round lit when they're meant to be lit.
- - bugfix: Lanterns burn oil, yellow slime extract flashlights are reacting to being
- squeezed, and therefore they do not need a power cell. So they shouldn't have
- one, and no longer have one.
- - refactor: Refactored the flashlight code to make all of its features actually
- work, at long last.
- Guillaume Prata:
- - balance: To improve the forensics efforts and professionalism our Security staff,
- evidence bags are standard equipment given to every member of security now.
- Iamgoofball:
- - imageadd: Recolors the HUD icons for Security back to the original variants.
- - balance: Security Cyborgs are now locked behind the techweb! Requires the Mother
- of God experiment to research!
- IsaacTheSharkWolf:
- - rscdel: 'deleted variety of unbalanced items in maints, armory and secure tool
- storage. qol: added shortcuts for atmos and mining so they don''t have to take
- the scenic route to print some wire or a flashlight from the autolathe in their
- respective departmental office. qol: placed the security techfab/protolathe
- outside of the armory. qol: placed produce console in the kitchen (finally).'
- - bugfix: fixed the vacuum tiles at the bottom of the stairs leading to the atmos
- front desk.
- - bugfix: tiles not being vacuum tiles in toxins burn chamber
- - bugfix: tiles in bomb test area breaking from explosions, making them drop to
- other z's on subsequent tests making follow up bomb tests impossible unless
- the floor were to be repaired.
- - bugfix: cameras facing the wrong way due to the recent direction var update.
- - bugfix: removed the increased roundstart power draw due to me not knowing how
- smesses work.
- - bugfix: fixed vacuum turfs spawning at the bottom of the stairwell that leads
- to the atmospherics desk.
- - bugfix: added air alarms to the incinerator as well as adding a few additional
- air alarms in places they really needed to be (atmos test chamber).
- - bugfix: rotated 2 cameras in the correct direction (i missed these last time)
- - bugfix: correctly rotated most stools and bar stools so they face the proper way
- now, this was apparently also broken due to the direction var update.
- Melbert:
- - bugfix: Spading plants correctly updates the tray icon again
- - refactor: Refactored cult rune inscribing into a component
- - refactor: Refactored null rod rune clearing into a component
- - bugfix: Icebox mining outpost's doors are powered properly
- - bugfix: Harvesting plants says the correct number of produce again
- ORCACommander:
- - code_imp: Nanotrassen Station Architects may continue to proceed upon their descent
- into madness
- OrionTheFox:
- - bugfix: Fixed modular posters mucking up the new TG posters
- - bugfix: After several months of complaints, NanoTrasen has finally updated their
- HUD databases, properly representing their newer jobs, SolGov, and more to come!
- - bugfix: Departmental Guards' ID Trims will now properly appear
- - rscadd: The Ranger Poncho (brown cowboy poncho) is now Greyscale-able! (The default
- values are the same as the old sprite, so you dont NEED to customize it)
- PositiveEntropy:
- - imageadd: In no short effort of our best tailors, every Central Command outfit
- have been either redesigned or reshaded! All of them!
- - imageadd: 'Resprites the Black, Red and Blue lawyer suits! expansion: Adds the
- Good Lawyer Suit, for those who truly want to be a CRIMINAL lawyer!'
- - rscdel: Removes the Black Female Suit and Black Female Suit Skirt
- Seris02:
- - bugfix: stops medhuds from seeing DNRs as revivable
- - rscadd: adds a deer tail
- - code_imp: whitespace is now properly handled in the examine menu
- ShizCalev:
- - bugfix: Fixed ghosts' boo ability going on cooldown when the light they tried
- to flicker didn't flick
- SkyratBot:
- - rscdel: Batform is gone!
- - rscadd: "...Replaced by vampire houses as a preference. Join your department as\
- \ a vampire m\xE9nage!"
- - code_imp: space heater now process on process_atmos()
- - bugfix: fixed stealthadmin nicknames should load now
- - bugfix: department order consoles include circuitboards
KathyRyals:
- balance: Heretics no longer gib their target when sacrificing them, instead outright
killing them and spilling all their organs everywhere in a gruesome manner.
@@ -1229,221 +854,6 @@
extracts to performing a dissection surgery on a nonhuman.
- rscadd: Xeno-organ biology and Alien Biological Tools' now have additional discounts
for performing a dissection surgery on a xenomorph.
- - bugfix: Some things such as heretic influences won't spawn on open space anymore.
- - rscadd: Wooden pews now require a wrench in hand to be rotated
- - admin: The admin who adds a known alt is now logged in the table.
- - bugfix: Fixed clown mobs spawning banana peels on turfs they can't reach or while
- inside objects.
- - bugfix: Having the bad touch trait correctly prevents you from gaining a good
- mood event from being tail pulled.
- - bugfix: Catwalk Tiles will now properly show underfloor items
- - admin: Added options to disable footstep sounds and parallax to the lag switch
- panel.
- - admin: Non-deadminned admins are now exempt from all chat filters.
- - rscadd: Added a station trait for varying colored assistant jumpsuits.
- - bugfix: Fixed tend wounds being inacessible without an operating table + computer.
- - bugfix: Fixed vampire clan last names applying to everyone.
- - bugfix: Abandoned crates no longer delete living mobs or indestructible objects
- inside them when exploding.
- - bugfix: They also no longer explode when deconstructed/emagged while unlocked.
- - bugfix: Their anti-tampering mechanism will now properly reactive if locked again
- after being unlocked.
- - bugfix: Cyborgs who perform research is now logged in the RD's server console,
- rather than showing up as Unknown.
- - bugfix: 'Scams Deleted: You will no longer be charged full price for items listed
- as discounted in the vendor.'
- - bugfix: fix message spam for manual pipe crafting
- - bugfix: fixes an oversight where mime and clown couldn't use their own department
- orders console
- - bugfix: Aspiring xenobiologists and ambitious wizards can no longer mindswap into
- ghost poly or otherwise make them sentient in an attempt to gain godmode + ghost
- speed + the ability to go through walls.
- - rscdel: change the name of the "Cosa Nostra Starter Pack" to a more generic "Mafioso
- Starter Pack", remove racist innuendo in the description
- - code_imp: Change the description and name of the Mafia set from cargo back to
- Cosa Nostra
- - spellcheck: Fixed a mistake in the Drone repair message feedback when repaired
- by someone else.
- - bugfix: Hair gradient preference no longer shows for species that don't have hair
- - bugfix: Fixed the dye kit missing a lot of checks which made it able to dye mobs
- out of reach or while incapacitated.
- - bugfix: Fixed some logic errors in vendor prices. Offstation items are free once
- again. Discounted items still give
- - bugfix: Crafting while in the crafting menu now properly dims the entire crafting
- list.
- - bugfix: Mulebots no longer runtime
- - bugfix: Lavaland ash storms once again replenish basalt turfs.
- - bugfix: Toy shotguns (and toy crossbows) can be fired with only one hand again.
- - imageadd: Due to lobbying pressure from the Yee-haw Conservation Society, Nanotrasen
- vending machines now stock five new cowboy hats and an old-west vest.
- - bugfix: Random names (such as from the secrets panel) will no longer override
- your preferences.
- - admin: Players can now send urgent ahelps when no admins are on for potentially
- better responses.
- - bugfix: Pacifists can no longer attach c4 to other living creatures.
- - code_imp: better logic for plural_s()
- - rscadd: Added a system of forms and the ability to print them
- - bugfix: prison plates have fixed text in some interactions
- - admin: The camera report verb now works... at least as well as it used to.
- - bugfix: You can tie your shoes in-hand again.
- - bugfix: You can no longer try to tie lace-less shoes.
- - imageadd: added new sprites for the energy axe
- - bugfix: Fix the space dragon's rift not healing the dragon.
- - admin: 'hypnotized players now have a visible antag hud, are visible in the check
- antag panel, and have objectives visible on the traitor panel expansion: hypnotized
- victims and their objectives are now visible on the round end report'
- - bugfix: All wall mounted dispensers - that is, the virus food dispenser and the
- pepper spray dispenser - are now considered wall items, instead of just the
- pepper spray dispenser. You can no longer use a metal sheet on it to turn it
- into a plumbed "stationary dispenser". You can still use metal sheets on mobile
- tanks to turn them into plumbed stationary dispensers.
- - bugfix: When a TGUI web page is refreshed, send new data to that page.
- - bugfix: Fixes the master controller dying in a rare case of the godslayer armor
- - bugfix: Cargo exports will now start deleting items only after everything is sold.
- This will fix issues such as unachievable exports (like machine ones) and getting
- less credits than what export scanners says.
- - bugfix: Donuts found in sec vendors and boxes can now be used to make glazed donuts
- - bugfix: Vampire victims no longer receive messages about bloodsucking while unconscious.
- - rscdel: removed nitryl
- - rscdel: removed stimulum
- - balance: merged the two into nitryum that shares the two gases features and that
- can make a crystal of itself in the crystallizer, the gas is made with trit,
- nitrogen and bz at over 1500 K
- - balance: the gas effect can be chosen by the partial pressure of the gas, low
- pressure and you have the old nitryl effect, higher and you'll have both
- - bugfix: The crew monitor and crew manifest now correctly sort custom jobs according
- to ID trim.
- - refactor: Data cores now internally track ID trim when HoP updates cards, as well
- as initial job.
- - admin: The secrets manifest now also shows the registered trim for each player.
- - balance: Heretics no longer gib their target when sacrificing them, instead outright
- killing them and spilling all their organs everywhere in a gruesome manner.
- - bugfix: Fixed some issues with the PDA UI, such as the skill tracker app and the
- messages list of the messenger app being inaccessible.
- - balance: Diagonal movement is now slightly faster
- - bugfix: The space heater right click toggle now works correctly.
- - rscadd: 'Added new reskins of the Catwalk Tiles, which will blend better with
- other types of floor! These can be selected via a radial on the base catwalk
- tile, crafted with iron rods. expansion: Floorbots will automatically place
- catwalks when they''re in a maintenance area, and will repair damaged/burnt
- tiles rather than fully replacing them.'
- - bugfix: Floorbots will actually place a plating when repairing a breach with tiles,
- rather than haphazardly laying a tile that has space below it.
- - bugfix: fixes non-chaplains being able to invoke rites
- - rscadd: If a clown car picks up a person that drank more than 30u of Irish Car
- Bomb, the clown car will explode five seconds later in a half max cap sized
- explosion.
- - bugfix: Fixed a mistake that made space bartenders sad (drinking glasses looking
- all the same regardless of drink).
- - bugfix: Pipe layer changes now occur on right + alt click
- - bugfix: Fixed emptied shot glasses having the drinking glass filling icon.
- - bugfix: Certain pumps/filters in atmospherics and engineering now show their more
- descriptive names which haven't been showing up properly for months.
- - imageadd: Added a contraband advert for a seedy lumber company
- - bugfix: Armless people can now open emergency access doors.
- - rscadd: Adds timezones to US Thanksgiving so it's active on the server when it's
- celebrated in real life
- - bugfix: Missing HUD icons (Defib, clown/mime fan) once again show up.
- - bugfix: fixed icebox ordnance burn chamber's air alarm working for the wrong area
- - balance: The HoS, warden and officers no longer spawn with a stunbaton in their
- bags.
- - bugfix: Fixed comms console not acknowledging admin rejects.
- SolGov Engineering Safety Association (SESA):
- - rscadd: Congratulations, Nanotrasen Space Station! Your engineering crew has passed
- safety inspections with a grade of "C-", clearing you for use of spectroscopy/infrared
- based Atmospheric Analyzers! These Ranged Analyzers should be a large improvement
- to the standard.
- Wallem:
- - bugfix: People with robotic limbs are now incapable of using Sign Language if
- their limbs are disabled.
- - refactor: Refactored Sign Language
- Zonespace27:
- - bugfix: Bulldog ammo can now be bought from traitor uplinks
- - bugfix: Borgs can no longer shove people off tables at range.
- axietheaxolotl:
- - imageadd: new blueshield drip
- - code_imp: improves some of the code for blueshield clothing
- - imageadd: new and redone HoP uniforms
- dawsonkeyes:
- - rscdel: No more ERP mood mechanic changes
- itseasytosee:
- - bugfix: The correct cinematic now plays when nuke ops fail to escape the station
- after blowing it up.
- magatsuchi:
- - rscdel: removes the part of the observer popup that says you cant respawn
- nikothedude:
- - rscdel: Removed nymphomania.
- softcerv:
- - code_imp: Improvements were made to the image code behind loading hyposprays,
- allowing them to have unique icons based on what kind of hypovial is loaded
- - balance: Hypospray kits can now be holstered on the belt slot.
- tastyfish:
- - bugfix: The captain is now at the top of the crew monitor again.
- tf-4:
- - refactor: Ballgags have been refactored, including conversion to GAGS
- - rscdel: The kazoo gag has been removed
- - bugfix: Extraneous bodyparts will no longer be exterior.
- - bugfix: broken span procs are no longer broken
- - bugfix: You can now cryo on the interlink, on icebox station, in permabrig of
- all maps, and in the ghost cafe.
- - bugfix: Departments now have their cargo order consoles on icebox
- - refactor: refactored organic interface chemicals
- - rscdel: cum and aphrodisiac kegs have been removed
- - rscdel: A broken and obsolete captain's clothing item has been removed
- - rscadd: Poly now listens to basic voice commands, but she only recognizes the
- CE's authority! Say "Poly, up" or "Poly, perch" to get her on your shoulder,
- or "Poly, off" or "Poly, down" to get her off again!
- - bugfix: AOOC, SOOC, and people's ckeys in each are no longer visible to everyone
- - bugfix: Digis and voxes can once again wear jumpsuits and sneakers without them
- imploding
- - spellcheck: Fixed spelling error in donator item
- - bugfix: Mentorwho no longer looks funky
- - bugfix: The captain and HoP now have barber access by default
- - bugfix: The barbershop is now connected to power on Delta
- "\u041F\u0435\u043B\u044C\u043C\u0435\u0448\u043A\u0430":
- - bugfix: You could see parallax over blackness
-2021-11-29:
- Helios7-1:
- - rscadd: NanoTrasen Cyborg division has introduced a new Inducer upgrade for engineering
- model cyborgs! Contact your roboticist today!
- RatFromTheJungle:
- - rscadd: hemophages are now a roundstart race (even w/out halloween), have had
- their healing reduced, and their ashing removed, they also cannot batmorph outside
- of halloween.
- - bugfix: golden is very smart, and I am not, and now hemophages and people who
- also can't get diseases no longer get their hair colored purple by the revenant.
- Seris02:
- - rscadd: big antler horns
- - bugfix: fixed lots of records runtimes on examine
- - code_imp: improved records code on examine and moved it around so it matches up
- - bugfix: fixed the spider + robowings
- - rscadd: added dual color fluff
- SkyratBot:
- - spellcheck: Captain's wintercoat now has spaces separating between some words.
- - bugfix: Bots will no longer turn invisible when being turned on/off
- - bugfix: 'Fixed yet another couple TK teleportation tricks: airlock notes and cloth
- cut from gauzes.'
- - bugfix: Fixed the bitfield_to_field() proc not working
- - code_imp: 'GAR glasses are now (mostly) subtypes rather than all their own thing
- qol: GAR glasses now layer above hair, rather than under it.'
- - rscadd: 'Malfunctioning Ais now roll for backstory, much like traitors! expansion:
- Malfunctioning Ais now get a unique antag panel!'
- Zonespace27:
- - rscadd: Traitors can now buy empty magazines for the Bulldog Shotgun and the C-20R
- SMG from uplinks for 1 TC each.
- fighterslam:
- - rscadd: Ports the Captain's Jacket over from Beestation, now found in the Command
- Vendor!
- nikothedude:
- - rscadd: 'New synthetic emote: *beep2'
- - bugfix: '*beep now works for synths.'
- tastyfish:
- - bugfix: Alternative job titles in the Occupations screen are now used in-game.
- tf-4:
- - balance: Removed a lot of unbalanced loot from Blueshift.
- zydras:
- - balance: Quartermaster now requires 40hr of Supply playtime, like every other
- Department Head requiring 40h of their department's.
PositiveEntropy:
- imageadd: In no short effort of our best tailors, every Central Command outfit
have been either redesigned or reshaded! All of them!
@@ -1531,15 +941,6 @@
to prevent more physics-defying operations.
- code_imp: Improved the industrial lift code by adding documentation and trying
to enforce the coding standards in there while I was at it.
- MMMiracles:
- - bugfix: The Tramstation Tram no longer force unbuckles you from chairs/vehicles
- when moving.
- OrionTheFox:
- - rscdel: Outdated catwalks have been removed and fully replaced with TG catwalks
- SkyratBot:
- - bugfix: Some erroneous green paint has been scraped off the hydroponics airlocks.
- - imageadd: The blast cannon & blast wave projectile has new sprites.
- - bugfix: The camera circuit will now actually work.
Krysonism:
- imageadd: The blast cannon & blast wave projectile has new sprites.
Melbert:
diff --git a/html/changelogs/archive/2021-12.yml b/html/changelogs/archive/2021-12.yml
index a02076e36e3..566bb721665 100644
--- a/html/changelogs/archive/2021-12.yml
+++ b/html/changelogs/archive/2021-12.yml
@@ -1,6 +1,4 @@
2021-12-01:
- SkyratBot:
- - imageadd: Resprited the lipsticks
FernandoJ8:
- imageadd: Resprited the lipsticks
Fikou:
@@ -18,44 +16,11 @@
your loneliness.
- rscadd: pAI door jacks have been given a bit more UI feedback.
- rscdel: Requesting and downloading a pAI no longer uses two separate screens.
- - bugfix: Fixed nuke ops leader not having an antag HUD to other nuke ops.
- - bugfix: Baseball bats now correctly knockback targets in the direction of the
- bat to the target.
tastyfish:
- bugfix: Cleanbots no longer disappear.
- bugfix: Fixed edgecase causing PDA Skill Tracker to hard lock the PDA as your
reward for getting legendary level.
2021-12-02:
- Ebin-Halcyon:
- - imageadd: Winter Hardsuit EVA sprite changes
- - bugfix: Winter Hardsuit tails now color themselves correctly
- GoldenAlpharex:
- - bugfix: Numpad keys are now properly recognized by the keybinds menu.
- Guillaume Prata:
- - bugfix: Swaps the engineer jumpsuit description still referencing them being resistant
- to radiation, now it correctly reference them being resistant to fire.
- Iamgoofball:
- - bugfix: Fixes the Armory not spawning guns by reworking how the armory spawners
- work.
- Melbert:
- - bugfix: Mjol the Creative's summons can't be dispelled by observers anymore
- Melbert, Orion_the_Fox:
- - rscadd: Deltastation - Service and arrivals complete revamp! Cargo tweaks! (Manually
- added to our Modular map as well, PLUS NT rep office! -Orion)
- SkyratBot:
- - balance: the Head of Personnel no longer has access to Security Office nor Mechs
- (outside of mining ones).
- - bugfix: fullauto now checks for incapacitated instead of stat
- - bugfix: Fixed being scared of the dark even if you have mesons.
- - bugfix: TK can no longer be used to teleport onto weight machines.
- - balance: gasmasks give a slightly darkening overlay, effect will stack with other
- items that have tint.
- - code_imp: tint code has been updated to properly work.
- - admin: Improved logging for radio emotes in game logs and player panel logs.
- - imageadd: Makes mob ID sprites smaller, mob PDA sprites more consistent
- - bugfix: Fix telecomms relays to work across multi-z
- - bugfix: Fixes an exploit with regenerative mesh and burn wounds.
- - code_imp: increased atmos performances a bit more
Aerden:
- bugfix: Fixed being scared of the dark even if you have mesons.
Ghilker:
@@ -107,22 +72,6 @@
- balance: Proto nitrate BZ response hallucination and gas production now occur
at the same time, instead of hallucinations only appearing below 30 moles and
gas production + radiation (previously it just deleted BZ) above 30 moles.
- - bugfix: tanks being destroyed in cans/pumps/scrubbers wont cause errors now
- - bugfix: ED-209s can be constructed once more!
- - bugfix: The ship-in-a-bottle is now resistant to icebox/snowdin plasma rivers.
- - balance: Downgrades the purchasable knives in cargo from Combat Knives to Survival
- Knives, moves them from Security to Service.
- - spellcheck: Made reagents consistently capitalized.
- tf-4:
- - spellcheck: Converted the names of a lot of items to lower case
-2021-12-03:
- Guillaume Prata:
- - bugfix: Fixes a rogue airlock at the SM room on Icebox having the wrong access
- requirement.
- Melbert:
- - bugfix: The lathe in Deltastation's service hall can print circuit boards again.
- Reco201:
- - bugfix: Cyborg pka can now be seen again.
SuperNovaa41:
- bugfix: Fixes an exploit with regenerative mesh and burn wounds.
Tastyfish:
@@ -155,35 +104,6 @@
admin player panel, you can now choose from ghost/human/monkey/cyborg/AI, and
all options work whether the target is currently a human/other living mob/ghost.
Seris02:
- - bugfix: mediborgs now have proper pixel placement
- - bugfix: borgs no longer have pixel shifting issues, specifically dogborgs
- - bugfix: silicons now show laws on examine
- - refactor: remade the borg modules to rely on the upstream system
- - code_imp: made the borg shapeshifting module better
- SkyratBot:
- - imageadd: Fire mutation now has the sprite of old space adaption while Pressure
- is a blue version of it.
- - bugfix: Fixed some bugged lighting
- - balance: The Irish Car Bomb + clown car interaction has been nerfed from a big
- gibbing explosion to throwing out all the mobs (with the usual chance of spilling
- out slipping foam)
- - admin: You now have to confirm that you want to reset the station name from the
- secrets panel.
- - bugfix: Fixes the cult sacrifice softlocking if the target is deleted before being
- sacced. It'll reroll a new target if that happens.
- - bugfix: Removed two map-based runtimes for Syndicate Lavaland Base and The Derelict
- - bugfix: Blind people now get a chat message when being cuffed.
- Zonespace27:
- - bugfix: Stripper poles and all other ERP equipment can no longer be built in boxes.
- tf-4:
- - bugfix: The Titan no longer has too many APCs. Again.
-2021-12-04:
- Gandalf2k15:
- - rscadd: Added new advanced detachable cell weapons that utilise microfusion cells.
- - rscadd: Microfusion guns can have cells removed, click them with an empty hand.
- - rscadd: Microfusion cell tech tree.
- - balance: Reload times now take an amount of time.
- - rscdel: Removed proprietary temporary hardlight guns.
- qol: made hair gradient color preferences not show up if no gradient is selected
axietheaxolotl:
- rscadd: Pride Pins
@@ -205,56 +125,6 @@
- bugfix: Nanotrasen's Paranormal Containment team had some budget cuts, meaning
that ghosts are no longer stripped of their hair colors- You can finally sport
that bright pink floor bedhead even in death once again!
- - spellcheck: Fixes a spelling mistake in the feedback for fishing something.
- - spellcheck: Renamed to fishing master skillchip to something cooler and more in
- line with the skillchip naming theme.
- MMMiracles:
- - rscadd: You can now run over the goat plushie.
- ShizCalev:
- - bugfix: Fixed mapeditted scrubbers and vents having the incorrect names.
- SkyratBot:
- - rscadd: Saving pAI candidacy information now outputs an error when unsuccessful.
- - rscadd: pAIs now get a door jacking progressbar. It remains obscenely slow, though.
- - bugfix: Fixes not being able to access pAI config if it's slotted into your PDA.
- - admin: More Silicon related loggings have been moved to silicon logs.
- - balance: allows the attaching of bayonets to pipe guns
- - bugfix: Fix all tend wounds showing when selecting a surgery after upgrading.
- - bugfix: Forged agent id cards will no longer break wallets
- - bugfix: The job overflow station trait will now work again. I look forward to
- infinite captains
- - admin: Crafting is now better logged.
- - rscadd: Pride Pins
- - spellcheck: Looking up in space no longer says there's a ceiling. There's no ceiling
- in space, promise. Please don't try to look for it.
- - bugfix: Fixed solars and nearstation areas being pitch black, restores the fullbright
- they ought to have
- - bugfix: fix an oversight where sec hailer shouldn't have the tint changes, the
- eye protection and the pepper immunity. All other sec masks (the swat and spacepol)
- are unchanged
- tf-4:
- - rscdel: deprecated engines have been removed from engineering secure storage on
- Blueshift
- - bugfix: The FTU 'Ignis' plasma sword is functional once again.
- - bugfix: Blueshift crematorium now has a button to activate it.
- - rscdel: Removed two direct character references from Blueshift
- theOOZ:
- - rscadd: Added tri-tone 'low wings' to the wing selection.
- - rscadd: Added jeweled 'low wings' to the wing selection.
-2021-12-05:
- SkyratBot:
- - rscadd: You can now tan wet hide into leather by lighting it on fire or placing
- it on a bonfire grill.
- faaaay:
- - rscadd: The Personal Space trait, which allows you to harmlessly block attempts
- at slapping your ass... or deliver a swift slap to the ass-slapper if you're
- in combat mode.
- - rscdel: Iron Ass trait has been removed for replacement with Personal Space
- tastyfish:
- - bugfix: Fixed a few corrupted tiles in DS-2.
- tf-4:
- - admin: Ambitions now count towards tickets handled
- - balance: Captain and NT Rep gunsets have been removed in favour of energy guns.
- - rscdel: References to players removed from cargo freighter space ruin
HarseTheef:
- bugfix: Forged agent id cards will no longer break wallets
JohnFulpWillard:
@@ -298,30 +168,6 @@
GoldenAlpharex:
- bugfix: Meat and pizza walls and floors should no longer cause a runtime every
time they're built.
- - bugfix: You can no longer have an ID declare you as underage thanks to your good
- buddy the Head of Personnel.
- Melbert:
- - bugfix: Chefs on Deltastation can now tussle in their Cafeteria.
- SkyratBot:
- - bugfix: Mismatched door ids on the starboard side of pirate shuttles will no longer
- prevent egress from that side of the ship
- - bugfix: ethereals no longer get the "he" pronoun accidentally
- - bugfix: You can now deliver kilo department orders (the delivery area didn't exist
- on kilo)
- - bugfix: fixed APC making too many damage runtimes.
- - bugfix: BCI manipulation chambers no longer drop the contained BCI when opened.
- - bugfix: Locked circuits cannot have USB cables attached to them anymore.
- - bugfix: health scan, gas scan, and atmos scan results will now show up on info
- tab instead of the local tab
- Tokorizo:
- - imageadd: New vox sprites ranging from security, drake armor, and cowboy hats!
-2021-12-07:
- Cobalt, Microfusion gun update:
- - bugfix: The RGB/Heatsink are now in the tech tree.
- - bugfix: Removing an attachment should now update the bullet before firing.
- - bugfix: The undercharger now actually functions as intended, removing recoil when
- on, and adding it when off.
- - balance: Phase emitters increase by 500 C per level instead of 1000 C.
Melbert:
- bugfix: Chefs on Deltastation can now tussle in their Cafeteria.
Paxilmaniac:
@@ -350,55 +196,6 @@
error in their factory line that resulted in every bench cover being darker
than it was supposed to be, bringing them back to what they were supposed to
look like!
- SkyratBot:
- - bugfix: Screwdrivers can now be inserted into the destructive analyzer through
- left-click
- - bugfix: chaplains can once again convert themselves into an android
- - bugfix: Ais no longer get the wrong antagonist added to them from "everyone is
- traitor" secret
- - spellcheck: Mime finger gun description now states that it mutes your target instead
- of stunning.
- YakumoChen:
- - bugfix: removed safeties on the PKA and plasma cutter because they aren't helpful
- tastyfish:
- - rscadd: New skill tracking app for your PDA's called ExperTrak Skill Tracker.
-2021-12-08:
- Pope:
- - bugfix: fixed an issue in orion.dm and orion_event.dm to let silicon play orion
- trail
- SkyratBot:
- - rscadd: Added tray sprite to mirror_belt.dmi
- - bugfix: Bardrones no longer recieve tools.
- - bugfix: Transit tube dispensers will no longer eat up immovable rods.
- - bugfix: Fixed away missions not loading when the config was enabled.
- - bugfix: Department orders no longer bugs out and asks you to take the deliveries
- to central primary hallway
- - rscadd: There's been a Moffuchi's Family Pizzeria on the surface of the icemoon
- but we only just noticed it
- - bugfix: The maroon objective will no longer fail due to your target being borged.
- - refactor: 'Refactored and standardized multiz movement code. This should fix some
- issues about it. qol: You can now drag movables, ride vehicles and fireman carry
- mobs upstairs and downstairs.'
- - imageadd: Resprites all of the abductors surgical tools
- Snakebittenn:
- - bugfix: The heatsink and RGB attachments are now actually printable.
- tf-4:
- - rscdel: Blueshift now only has one autolathe shift-start, located in cargo.
- - rscdel: Shift-start multi-cell chargers are now only single-cell chargers on Blueshift.
- - rscdel: The psychologist no longer has a spare skillchip on Blueshift.
-2021-12-09:
- AtoriBirb:
- - code_imp: Added supports_variations_flags = NONE to robes/cloak/mask for heretic
- - code_imp: Adds two if statements to swap between mutant_variant = none and default.
- I would do an else but I dunno what other variables might hit it on accident.
- If it works, it works.
- Seris02:
- - rscadd: adds the nitrogen breathing quirk
- SkyratBot:
- - rscadd: TGUI input boxes are on the way! You can find new preferences in the menu.
- They will be on by default.
- - rscadd: IV drips now cause a moderate pierce wound when ripped out
- - bugfix: You will once again see events that required a playercount to run.
Pickle-Coding:
- spellcheck: Mime finger gun description now states that it mutes your target instead
of stunning.
@@ -438,18 +235,6 @@
a Head of Security.
- admin: Admins can now promote people to Family Leader with a button from the traitor
panel.
- tf-4:
- - bugfix: A charging microfusion gun will no longer runtime on examine
- - bugfix: Removed multiple lattices from the same spot on Blueshift
-2021-12-10:
- ArdentSpark:
- - bugfix: Restores missing claw melee attack icons for species with the Claw unarmed
- attack sound effects. Akula, Aquatic, Anthromorphic Insect, Anthromorph, Tajaran,
- Unathi, Vox, Vulpkanin, Xenomorph Hybrid and Teshari. This is visual only and
- does not give Sharp.
- SkyratBot:
- - bugfix: Fixed the strip menu not being warded against telekinesis shenanigeans
- (No item was stripped from longer distances, but warnings were still sent).
JohnFulpWillard:
- bugfix: Magic mirrors will now allow you to swap species again.
Mothblocks:
@@ -514,37 +299,6 @@
- bugfix: You can no longer duplicate rods with rough false walls.
- code_imp: Due to code structural changes the mole amount from welding plasma related
objects may get buffed or nerfed. Mostly buffed.
- - bugfix: Hints in bureaucracy forms
- - rscadd: You can now become patron of your favorite painting by buying sponsorship
- from Nanotrasen Trust Foundation.
- - rscadd: 'Painter''s palettes are now available at library vendor. qol: Can use
- strokes in paintings now'
- - bugfix: Burnt-out flashes once again update their in-hands correctly
- - bugfix: Flashing no longer goes through when the attempt has burnt out the flash
- - bugfix: Fixes clothing protection tags being displayed incorrectly.
- - bugfix: you can no longer buckle onto chairs that are under dense atoms (like
- machines)
- - bugfix: You can no longer use the disease browsing console to summon satan
- - bugfix: The disease browsing console will now properly show you the mobs the disease
- effects
- - bugfix: AI shells will no longer be instantly converted into a construct shell
- by the Twisted Construction spell.
- jjpark-kb:
- - bugfix: 'blueshift: medicals protolathe to techfab'
- softcerv:
- - bugfix: the body teleporter medicell no longer teleports people that are still
- alive
-2021-12-11:
- LemonInTheDark:
- - code_imp: I've changed how job equipment and organs are loaded, if you end up
- with someone else's head/id card/eyes, please let me know yeah?
- - code_imp: The preferences menu is now much more efficient. Hopefully you'll see
- less small jitters at highpop.
- Melbert:
- - bugfix: Fixes a runtime with starlight condensation
- SkyratBot:
- - bugfix: Closing the confirmation alert from headcrabs will no longer continue
- to headcrab you.
2021-12-11:
CandleJaxx:
- bugfix: edited runechat layers for clarity and consistency with old PRs
@@ -557,136 +311,6 @@
\ stocks seeds for T\xF6chta\xFCse Berries, a common ingredient in moth cooking,\
\ in the Megaseed vendors. Additionally, herbs and bell peppers have also made\
\ their way to the station's stock. Botanists, you know what to do."
- - bugfix: F2 works for quick screenshotting again.
- - bugfix: Deconstructing an active AI shell will no longer ghost the AI inhabiting
- it.
- - bugfix: Turning off tgui inputs in game preferences now disables tgui input lists.
- - refactor: 'Converted several list inputs to tgui, including: Many AI functions,
- wayfinders, most cult inputs, observer functions.'
- - bugfix: Pruno fermentation uses up the mix upon turning into pruno.
- - bugfix: fixed bots getting stuck on railings and crashing anyone with a diagnostic
- hud who dares come near
- - bugfix: A lack of candidates for certain antags will no longer runtime
- - balance: Nerfs level of toxin/venom spat out by spiders.
- - code_imp: Fixed some really insane move counts that were sourced from Login()
- betraying me. I've killed it now so there should be slightly less stutter sometimes
- depending on the weather and position of the moon
- tf-4:
- - rscdel: You can no longer pick the "nanomachine programmer" title for scientist.
- As there are no nanomachines.
-2021-12-12:
- DiscordWizard:
- - balance: Gives bone spears their 2 tile range back
- GoldenAlpharex:
- - bugfix: Everyone will no longer be forced to be human without any other external
- organs.
- SkyratBot:
- - bugfix: Fixed hitting a move input inside a small grace period in move code leading
- to teleportation. It's a side effect of when movement used to be verbs, and
- holding a button down meant constantly sending the server move commands
- - bugfix: Bot covers now respect access again.
- - bugfix: Cameras will no longer runtime if the mob has no client
- - admin: makes (the logging of xenobiology renaming potions better)
- - bugfix: Drones can no longer use the keycard authentication device.
- - rscadd: Account registration devices added to service and cargo techfabs.
- - admin: Admins are now told what Theme that Families has rolled.
- jjpark-kb:
- - code_imp: changed some addtimer to cooldown in the posi alert console
- - rscadd: posi alert consoles can now be muted
- tf-4:
- - bugfix: The white fly moth fluff accessory no longer has a stray floating pixel.
-2021-12-13:
- AtoriBirb:
- - code_imp: deletes the rollerbed out of the sec-meds heirloom list
- Seris02:
- - bugfix: fixed something that allowed people to insert their own titles
- Zenitheevee:
- - bugfix: techpriest robes can now be visible on anthromorphs/mutants
- coldud13:
- - bugfix: fixed some space tiles in maint on blueshift
- tf-4:
- - bugfix: Haggis can now be sliced into chunks with a knife.
-2021-12-14:
- GoldenAlpharex:
- - bugfix: The Access Report from the Plexagon Access Management app will now be
- smarter and actually remember who it was prepared by, even if the ID used for
- the login was removed before printing said Access Report.
- Iamgoofball:
- - rscadd: Re-adds the glowy TK head we removed because being able to have TK with
- absolutely zero trade-off is terrible in practice.
- MMMiracles:
- - rscadd: Genpop removes the usual isolated timed cells and adds the ability to
- assign timers to prisoner IDs for holding them in a general prison area.
- Melbert:
- - bugfix: You can actually reskin the pride pin now
- Orion_the_Fox, Arctaisia (Sprites):
- - rscadd: Added the NMC Phoenix, NMC Chimera, NMC Drudge, and NMC Manticore 'advanced
- shuttles' as new mining/labor shuttles
- - rscadd: The NLV Consign (Cargo shuttle) has been retrofitted to match up to this
- standard, and returned to use aboard the station. Though, their manual piloting
- was, ah, damaged, and will not return.
- - balance: You can no longer hide in wall lockers. Sorry, but, uh, 'what? how?'.
- Small animals still fit, however.
- - balance: The NTV Relay (Arrivals shuttle) no longer starts with higher quality
- internals tanks than engineering, nor a seclite.
- - bugfix: The NAV Monarch (CC Ferry), NTV Relay, and evac shuttle now have floortiles
- that all match up with eachother. No more random uneven floors!
- - bugfix: The NAV Monarch now aligns with the CC dock, so both doors are usable.
- - bugfix: Wall closets can no longer fit humans. How it was possible, not even science
- can answer, but the demons that allowed it have been dispelled.
- - bugfix: Rockplanet now uses the correct landing dock ID for the public shuttle
- Retlaw34:
- - imageadd: New suit storage sprites
- Seris02:
- - bugfix: fixed quirks not spawning in the ghost cafe properly
- - code_imp: made the equipping quirk's code a bit better
- SkyratBot:
- - bugfix: fugitives are now their own antagonist toggle, instead of polling for
- traitors for some reason
- - bugfix: Nuclear operatives will only win if they actually nuked the station and
- didn't nuke space instead.
- - bugfix: Removed a hidden doublepipe, you'll never find the rest, FOOLS
- - bugfix: HoPs can now use security record consoles again.
- - bugfix: The archmagister's ID card icon now exists. Whoopsies.
- - bugfix: Jumpsuits, such as in species icons, are now grey again instead of white
- on the preferences menu.
- - bugfix: Removes hypnosis from the list of traumas neruwhine can cause, fixing
- a pair of related bugs.
- - bugfix: Cyborgs can no longer attack clown cars when inside them.
- - refactor: Several input prompts have been converted to TGUI. Nukie prompts, newscasters,
- stacks of materials, hand labelers, station charters. Check them out!
- - bugfix: Fixed the skin tones on the preferences menu not having colors.
- - bugfix: Magic mirrors will now allow you to swap species again.
- - bugfix: cigarette pack has correct sprite now.
- - admin: PDA bomb logging shouldn't be as confusing now.
-2021-12-15:
- SkyratBot:
- - bugfix: fix kilostation emergency pods controls staying locked at red and delta
- alerts
- - bugfix: Fixes being able to telekinesis through cameras.
- - bugfix: Fixes being able to telekinesis across z-levels.
- - bugfix: fix oversight where HFR can EMP its own APC
-2021-12-16:
- Gandalf2k15:
- - bugfix: You should now experience random events again...
- - rscadd: Security has had a major outfit overhaul!
- Iamgoofball:
- - rscadd: The 911 buttons have been moved to the bottom of the UI to reduce accidental
- clickage.
- - rscadd: Cops have been renamed to Marshals in 911.
- - rscadd: There are now confirmation prompts on most 911 related prompts.
- - rscadd: S.W.A.T. has had the calling method reworked, from being a dedicated false
- call to being a more generalized backup call if the first responders feel they're
- being threatened and/or the call is faulty.
- - rscadd: Beamout tools are given to all 911 responders to leave the station when
- they're done, with prisoners in tow.
- - rscadd: All 911 responders have cell phones to communicate with.
- - rscadd: Order from Dogginos today with an emagged comms console!
- - rscadd: S.W.A.T. now has a way to respond appropriately if the station has decided
- to engage in treason against the Sol Federation.
- SkyratBot:
- - bugfix: CentCom has finally begun shipping helmets with working flashlight mounts
- to Deltastation's armory.
Jackraxxus:
- bugfix: Deconstructing an active AI shell will no longer ghost the AI inhabiting
it.
@@ -811,49 +435,6 @@
the window (assuming the input is valid)
- refactor: Many more inputs have been converted to TGUI - PDA messaging, GPS tags,
cult runes, roulette machines, custom vendors, more.
- - bugfix: Fixes the security warrant computer runtiming if you have no ID.
- - bugfix: fixed rough iron false wall telling you that you need two rods instead
- of five.
- - bugfix: fixed rough iron wall dropping two rods instead of five.
- SpaceVampire:
- - bugfix: Radial spawners now work correctly.
-2021-12-17:
- OrionTheFox:
- - bugfix: Moffucci's and Donk's poster printers have been restocked with ink besides
- black and pink.
- SkyratBot:
- - bugfix: Cat ears will no longer display only on every other render in the preferences
- menu. God who added these things
- - bugfix: fixes fugitives preference having missing textures
- - bugfix: Stops malf AIs in intellicards from activating doomsday device.
- tf-4:
- - bugfix: The mateba has had an uplink price increase to match the .357, as they're
- mechanically identical
-2021-12-18:
- Gandalf2k15:
- - rscadd: Deployable barricades! Check out some sheets and materials!
- - rscadd: C.U.C.K.S - The Compact Universal Complex Kinetic Self-expanding Barricade.
- Great for deploying quick fortifications.
- Melbert:
- - bugfix: Placing tiny fans in the aux base gives feedback
- - bugfix: Breaking / deconstructing aux base turrets no longer brick the console
- OrionTheFox:
- - bugfix: Nanotrasen has begun properly stocking internals boxes again, including
- returning the spare N2 for vox, the expanded O2 for engineers, and removing
- the extra epi-pen
- SkyratBot:
- - bugfix: Fixed a bug with taste description generation for fruit wine.
- - balance: Moved Pun Pun away from the kitchen on Delta. It's now behind the bar
- counter.
- - bugfix: Fixes Families runtimes and not making enough gang leaders
- - spellcheck: Fixed a small typo in Cargo's mail console, saying mail had homing
- beacons in them.
- - bugfix: Bot cover lock button is now disabled when you lack sufficient access.
- - bugfix: The rat spit's OD effect will no longer repeat on players already under
- the Rat King's rule.
- - bugfix: Fixed gas flowing into windows from above, I am.... so tired
- - bugfix: Fixes gas sometimes not moving up from below after a structure change,
- see above
vincentiusvin:
- bugfix: fixed rough iron false wall telling you that you need two rods instead
of five.
@@ -880,53 +461,6 @@
Crummy vacation destination, don't go there.
- bugfix: Fixes directional shoving just not working
- bugfix: Fixes shoving people carrying other people being weird
- Tokorizo:
- - rscadd: Vox sprites
- - bugfix: Syndicate infiltrator armor now works for Vox, new sprites have been added.
- Zonespace27:
- - rscadd: Readded hypnoflash (7 TC) and hypno flashbang (12 TC) to traitor uplinks
- jupyterkat:
- - bugfix: fixed lewd furnitures spawning in people's hands
- tf-4:
- - spellcheck: Corrected a few miscapitalisations of "Nanotrasen"
-2021-12-19:
- SkyratBot:
- - bugfix: Fixes being able to table slam through impassable objects.
-2021-12-20:
- MMMiracles:
- - bugfix: "The prison gate in Tramstation's Prison is no longer made of Papier-m\xE2\
- ch\xE9"
- Seris02:
- - rscadd: Adds the nerve staple, a nodrop item that pacifies you, and the corresponding
- quirk
- SkyratBot:
- - bugfix: Long civilian bounty texts (specifically viro) no longer overflow the
- button. The window is slightly wider as a result.
- - bugfix: Pandemic machine no longer blue screens while inserting premade viruses.
- - bugfix: The Pirate's shuttle scrambler will now ONLY work if you tell it to.
- - bugfix: Power control consoles now alert you if you lack access.
- - bugfix: When the nuke goes off, the "you are shredded to atoms" message no longer
- displays to people not on the z-level or on the station.
- - bugfix: The nuke now kills everyone on a station z-level if blown up on the station.
- - bugfix: Basic mobs (Cows, cockroaches), count as Animals for the DNA vault.
- - bugfix: Adds the High-performance liquid chromatography machine to the Syndicate
- Lavaland Base.
- - bugfix: Camera consoles now require you to be close by and alive in order to operate.
- - bugfix: Mr. Pingsky no longer spams AI private because he wants to leave AI satellite
- but can't (free him). Autopatrol set to off.
- - bugfix: Nested containers (lockers, crates, etc) can be resisted out of.
- - bugfix: Ninjas can no longer call reinforcements if the comms console is depowered
- - bugfix: neurotoxin spit no longer hits the xeno that spat it
- - admin: Actions done from the R&D console is now logged
- - bugfix: Enemies of the State and (Command-only) Enemies of the Revolution are
- now ACTUALLY blacklisted from being defibrilated.
- - bugfix: TramStation's tram console is no longer shifted over to the right
-2021-12-21:
- AtoriBirb:
- - rscadd: More particle effects for use in the tele_effects.dmi, modular icons
- - balance: Changes how TK is identified.
- - code_imp: Swaps which particles the TK movement points to.
- SkyratBot:
Melbert:
- bugfix: Placing tiny fans in the aux base gives feedback
- bugfix: Breaking / deconstructing aux base turrets no longer brick the console
@@ -985,18 +519,6 @@
again.
- refactor: refactored syndicate sentience potion and abductor all access gland
to use the new simple_access component.
- - bugfix: Headrevs only get a revolutionary banner if they actually win.
- - bugfix: fixed energy axe sprites's clipping issues and incorrect facing directions
- Zonespace27:
- - bugfix: You can now close the L6-Saw LMG's dust cover without removing the magazine.
-2021-12-22:
- GoldenAlpharex:
- - rscdel: Removed Power Armor, as it will soon be replaced by something else.
- - bugfix: CI shouldn't randomly fail on a striping-menu-related test anymore.
- - config: Updated the jobs.txt config on the repo to have parity with the one on
- the server, to stop all those nasty runtimes on test servers.
- - config: SSDecay is now turned off by default in the config, to save about 4~ish
- seconds of loading time on test servers.
Melbert:
- bugfix: Removed a floating teleport beacon in Icebox's chapel
- bugfix: Fixed APC visibilty in icebox science outpost / RD office
@@ -1028,10 +550,6 @@
View-Tags button at the bottom of the Admin -> Game status panel section.
- admin: Tagged datums can also be referenced for things like proccalls and VV var
edits, similarly to Marked objects.
- SkyratBot:
- - bugfix: You can no longer shove megafauna that you can't normally push.
- - bugfix: Adds seeds to vending machines as intended. Corrects pathway for lasagne.
- Fixes issue with Bell peppers and baking cheese.
Watermelon914:
- bugfix: You can no longer shove megafauna that you can't normally push.
carshalash:
@@ -1042,130 +560,6 @@
station horrifically blows up to be more accommodating towards the person directly
responsible for making sure it didn't horrifically blow up.
2021-12-23:
- Melbert:
- - bugfix: Removed a floating teleport beacon in Icebox's chapel
- - bugfix: Fixed APC visibilty in icebox science outpost / RD office
- - bugfix: Fixed Air alarm accessibility in icebox atmos office
- SkyratBot:
- - rscadd: Gas Masks now limit your field of view
- - rscadd: Added field of view mechanics. It's darkness can be tweaked by a pref
- - rscadd: Blind, nearsighted and fov-limited people will now see sounds as visual
- effects.
- - bugfix: Flying over lava no longer erroneously ignites you ablaze.
- - bugfix: Balloon alerts when picking up staffs as a non wizard now properly appears
- over the player's head.
- - bugfix: Fixed players appearing above fire and foam.
- - bugfix: Fixed garbage bags being uncleanable by mops, for silly silly reasons
- - bugfix: fixed a missing wire in Deltastation's Arrivals Solar array, connecting
- the control console to the array
- - bugfix: TGUI list input will now respond to having large/swapped buttons in preferences.
- - bugfix: BYOND functionality restored in TGUI input lists - keyboard support. Up/Down,
- type a letter to jump to it (while search is not visible).
- - bugfix: Allows the supermatter crystal to produce gases while powered, even in
- absolutely empty turfs, excluding space turfs.
- - bugfix: You can no longer wrap a locker to bypass the drag slowdown.
- - bugfix: fixed potential bucket corruption in timer reset_buckets
- kannthus:
- - spellcheck: Fixed a typo on the barricade
-2021-12-24:
- Ebin-Halcyon:
- - bugfix: Syndicate operatives have been taken off unpaid break and are back to
- work on Bioweapon research. Along with other workers returning to work.
- - bugfix: DS-2 and Interdyne's air alarms no longer float off walls.
- Gandalf2k15:
- - rscadd: CME has been nerfed
- GoldenAlpharex:
- - bugfix: Fixed external organs not showing on certain species (again).
- Higgin:
- - balance: Doing surgery on somebody without first making them unconscious now leaves
- them with a lingering mood penalty. The mood penalty's time and intensity can
- be reduced with numbing agents like copious amounts of alcohol, Miner's Salve,
- Lidocaine, and Morphine _if used prior to surgery._
- - rscadd: Roboticists can now purchase two forms of anesthetic in their job wardrobe
- vendors (N2O gas/morphine.)
- - balance: Things which apply stasis now maintain unconsciousness if you go into
- stasis unconscious and numbing effects if you go into stasis numbed.
- OrionTheFox:
- - rscadd: 'Added a whole new load of security drip, including gauntlets, new HuDs/NV
- HuDs, new tackler gloves/Krav Maga gloves, remodeled visor helmets (which fit
- muzzles now!), boot reskins, a blue belt, and a white uniform. Security are
- also unable to spawn with skirts now as well, seeing as they have no peacekeeper
- sprite. qol: The Peacekeeper Outfitting Station has had a new model shipped
- out by Lopland themselves, giving Peacekeepers all the uniforms they''ll ever
- need. This has replaced all old P.O.S''s'
- - bugfix: Metastation's lockerroom-to-firingrange door has been fixed. Again.
- - bugfix: 'Security''s helmet lights should stop being weird whenever their visor
- is toggled qol: Security reskins can now be set to the default skin; no more
- radial menu spam on your black belts!'
- - bugfix: Icebox Gas Miners Do Not Exist; as a bonus, Icebox prison isnt breached
- any more
- RatFromTheJungle:
- - bugfix: Fixed an icon-file oopsie with the new sidecuts
- - rscdel: Deletes modular adv-egun crafting recipe, making it once more crafted
- with energy guns, and not laser guns.
- - rscadd: the crusader belt can now hold like, half the swords present on station,
- namely the ones that already fit on the belt-slot.
- SkyratBot:
- - bugfix: Fixed mops wetting the turf when you refill them from the mop bucket I'm
- oranges and I don't put changelogs on my PRs
- - bugfix: Non-headrev revs can be properly revived after a revolution is quelled
- again.
- - bugfix: Inverse reagents are now properly consumed when being transferred into
- a living body (eg. through syringes).
- - bugfix: Fixes FoV mask and hiding in potted plants
- - bugfix: You can no longer continue a surgery if the organ in question is somehow
- removed whilst mid operation.
- - bugfix: You will no longer spasm if you're unconscious/dead.
- - bugfix: skin tone sorting
- - refactor: refactor various color procs to use natives instead
- - spellcheck: Fixed a number of typos in HTML elements that would cause messages
- to not render properly.
- - bugfix: Changed the font of some messages to better reflect if they were errors,
- notices.
- - bugfix: You can no longer bypass the red alert lock on the escape pod safe.
- - bugfix: Fixes an exploit with thermite burn times.
- - bugfix: Fixes width on black market uplinks to show three delivery options. Technology!
- - bugfix: Void cloak (and other items intended to be invisible) can longer be seen
- and unequipped in the strip menu.
- - bugfix: Fixes the ablative trenchcoat giving you a permanent sechud.
- - bugfix: Fixes Tramstation Vacant Commissary not having shutters
- - bugfix: Engineers now have access to the SM's External Airlock on Tramstation
- Spc-Dragonfruits:
- - rscadd: Added 4 new half-shave hairstyles
- - imageadd: Added icons for long half shave, messy half shave, long messy half shave
- and glamorous half shave.
- armhulen:
- - refactor: Mob spawns are refactored, no more assortment of "random, instant, and
- roundstart" vars on every mob spawn type
- - refactor: if there are some minimal differences in how mob spawners feel, that's
- why!
- axietheaxolotl:
- - bugfix: The NT Rep's jacket now uses a proper name and subtyping
- dawsonkeyes:
- - rscadd: The Marked One now resides in his arena on Lavaland
- - rscadd: A new crusher trophy and weapon are now obtainable on Lavaland
- kannthus:
- - bugfix: Rotates the Chapels Morgue on Icebox to make it functional again
- - rscadd: Alternative Jester outfit and hat to Autodrobe
- - rscadd: Jester shoes to the Loadout, job restricted for clown
- sasichkamega:
- - bugfix: with a flavor length of FLAVOR_TEXT_CHAR_REQUIREMENT characters, you can
- now join the game
- tastyfish:
- - bugfix: The advanced camera console's and AI's camera search function now works
- again.
- - bugfix: Advanced shuttle tiles now show the underlying environment on the transparent
- parts instead of a black void.
- tf-4:
- - bugfix: 'Old sidearms are unobtainable once more, as they should be. Armoury discrepancies
- have been normalised. qol: That one shocked grille has been removed from Blueshift.
- You know the one.'
- theOOZ:
- - bugfix: Ninja-cyborgs can access their module's tools again.
-2021-12-25:
- AtoriBirb:
- - imageadd: added new hair sprite to our modular hair.dmi
- GoldenAlpharex, sprites from WalterJe:
JohnFulpWillard:
- bugfix: Balloon alerts when picking up staffs as a non wizard now properly appears
over the player's head.
@@ -1199,33 +593,6 @@
- refactor: Brought up to today's standards conveyor codes, alongside properly documenting
it. Also changed how conveyor corners are handled to make them both more intuitive
for mappers and for people in-game.
- Iamgoofball:
- - balance: You can no longer expand non-32x32 cyborg sprites.
- - rscdel: Removes the Cyborg Shrinker from the techweb.
- Kapu1178:
- - tweak: Actual Round Timer is now actually accurate.
- OrionTheFox:
- - bugfix: Security's caps and gauntlets fit better now
- SkyratBot:
- - bugfix: the observe button's tgui is now functional.
- - spellcheck: Fixed a small spelling mistake in the sparring rite ritual.
- - refactor: 'Many more tgui inputs have been converted over: Paystands, paintings,
- pet names and more.'
- - bugfix: TGUI inputs now support automatically selecting preexisting input (BYOND
- default behavior).
- - bugfix: You can now press ESC to exit TGUI inputs.
- - bugfix: Fixes a bluescreen when turning on admin mode in NtOS chat software.
- - bugfix: 'Literally 1984: NtOS chat admins can now properly mute others.'
- - bugfix: Turning off NtOS admin mode now properly returns you to the channel.
- - bugfix: NtOS chat screen widened slightly to fix clipping issue on the participants
- panel.
- - bugfix: Clipping and sizing issues on drone consoles have been fixed.
-2021-12-26:
- E3N Artificial Intelligence:
- - rscadd: Surplus SolFed Marine IPCs have been shipped to Nanotrasen in a trade
- deal.
- Fikou, theOOZ:
- - imageadd: adds a new janiborg sprite!
ReinaCoder:
- bugfix: Fixes Tramstation Vacant Commissary not having shutters
- bugfix: Engineers now have access to the SM's External Airlock on Tramstation
@@ -1254,25 +621,6 @@
As part of this, space wind pushing you is handled by gravity negation, not
noslips.
- balance: Hardsuits no longer defend from tackles, but negating gravity does.
- - code_imp: 'Adds support for digitigrade compatible shoes. qol: Piercing syringes
- now pierce when used from hand, not just as projectile.'
- - code_imp: Removes the unused outside of admin shenanigans cult hardsuit requirement
- for spells.
- Higgin:
- - balance: Medibot healing time increased by a factor of five.
- Melbert:
- - bugfix: Updated the binary key's description / examine text to actually describe
- its abilities.
- OrionTheFox:
- - bugfix: The Explorer Gasmask now has a muzzle variant
- - bugfix: Various masks now show muzzles thru them, as they were meant to. Luchador
- momento.
- - bugfix: Helmets will now properly hide masks beneath them, instead of causing
- sprite clipping.
- - code_imp: Added the SHOWSPRITEEARS flag, to force ears to show over an item with
- HIDEHAIR. This will let sprites with earholes actually fit ears thru them, but
- not show the hair instead
- SkyratBot:
- code_imp: Adds support for digitigrade compatible shoes.
- qol: Piercing syringes now pierce when used from hand, not just as projectile.
- code_imp: Removes the unused outside of admin shenanigans cult hardsuit requirement
@@ -1303,18 +651,6 @@
with new ones that are differently styled. Something about the old ones being
literally impossible to find in bright conditions. Or maybe they just didnt
like how it looked so they changed its "sprite".
- - imageadd: Resprites the sec grenade launcher
- - bugfix: Disarming a heavily incapacitated person with krav maga will no longer
- make them recoil in pain.
- - bugfix: The HoP will now get strange reagent in the mail if Ian is dead, as originally
- intended.
- - imageadd: The PanD.E.M.I.C 2200 is now visually different than the ChemMaster
- - bugfix: Fix AIs inside a AI restorer computer now die if the computer is destroyed
- while they are inside it.
- - bugfix: Tesla reactive armour now has separate emp and cooldown messages
- - bugfix: plopped an xmas tree in tramsation's chapel
- - bugfix: dogs will no longer forget to unbuckle themselves when fetching items
- thrown nearby
Cheshify:
- imageadd: The PanD.E.M.I.C 2200 is now visually different than the ChemMaster
Fikou, theOOZ:
@@ -1341,21 +677,6 @@
refocus. You can also quick search by typing while the search bar is hidden.'
- refactor: Support for current value selections has been added to tgui input lists
- lists now work for suit sensors, etc.
- jjpark-kb:
- - soundadd: added a started/stopped typing sound for tts device
- softcerv:
- - balance: the toxin mode on the medigun now heals more or less according to how
- many non-medicine chemicals are inside of the patient's bloodstream.
- 'tf4, Sprites: Zydras':
- - rscadd: Mince pies are now available to create!
-2021-12-27:
- AtoriBirb:
- - bugfix: small line of code in hair.dm
- Gandalf2k15:
- - bugfix: The SAD no longer churns out mutated abominations of yourself and should
- work correctly.
- - bugfix: Ghost role spawners can now use your character.
- SkyratBot:
tf-4:
- bugfix: Disarming a heavily incapacitated person with krav maga will no longer
make them recoil in pain.
@@ -1390,96 +711,6 @@
it's because of that.
- admin: The nations ruleset is back(?) and disabled for admins to run fi they so
desire
- - bugfix: Makes all cyborg storage items drop their contents on module change.
- - bugfix: Fix all types of grenades to be deleted when shot bullets.
- - bugfix: Sechailer no longer has FOV.
- - bugfix: SWAT mask no longer has a tint.
- - bugfix: the protect objective now checks for mob and brain suicides
- - bugfix: Restores the cardborg sprite.
- - bugfix: Cult robes now have sprites for when the hood is down
- axietheaxolotl:
- - imageadd: Resprited the Tactical Turtleneck Suit
- thestubborn:
- - bugfix: instead of not working, the Executive Suit and Executive Suitskirt Alts
- work, someone accidentally turned the working button off :(
-2021-12-28:
- GoldenAlpharex:
- - bugfix: The Automated Announcement System went through therapy and is no longer
- feeling so socially anxious it forgets how to use a radio to announce anything
- over Common.
- Iamgoofball + whoever made the contractor baton sprites I codersprite modified:
- - rscadd: 'All maps now have proper Departmental Guard offices, instead of Security
- outposts in each department. The computers in said offices have been adjusted
- where needed. expansion: Departmental Guards now have lockers that contain two
- sets of departmental guard gear in their new offices.'
- - rscadd: Departmental Guards now have Departmental Batons.
- - balance: Departmental Batons work as normal inside their department.
- - balance: Departmental Batons have three charges for non-departmental uses.
- - balance: A charge is expended when you baton someone outside of your department.
- - balance: If all three charges are expended, the baton is unusable until you return
- to your department and reactivate the baton.
- - balance: This will reduce the ability of Guards to roll around the station and
- exert authority where they aren't supposed to be exerting authority.
- - balance: This will encourage Guards to naturally stay near their department and
- keep it safe.
- - balance: The charges system allows Guards to punish people who kite around the
- edge of their department, while punishing Guards who over-extend too far and
- should be calling Security.
- - balance: Departmental Guards have had their cuffs replaced with colored cableties
- for their department.
- - rscadd: Departmental Guards are given security HUDs, not HUDglasses, primarily
- so that they can see job icons and see if someone who ran into their department
- followed by redshirts is wanted by Security or not, so as to improve communication.
- - balance: They do not have the access needed to adjust records, however, and will
- be on read-only mode.
- - rscdel: All Departmental Guard, Security Officer, HoS, and Warden Stun Batons
- have been removed from the backpack, and are now in the belts in your security
- lockers, instead of in your backpack.
- - balance: 'This is to keep the number of batons on the map at a consistent level
- regardless of Security staffing. qol: Your Security Belt can now be reskinned
- between Security and Peacekeeper variants.'
- - balance: Brig Officers have had their baton replaced by a Departmental Prison
- Baton.
- - balance: Brig Officers have had their taser removed and replaced with a disabler
- because it's not 2012 anymore and we don't give Security tasers.
- - rscdel: Security Medics have had their telescopic batons removed, because that's
- a Head of Staff item and shouldn't be available to rank and file staffers. Telescopic
- baton creep is a problem and is being slowly addressed.
- - rscdel: Security Medics have had their firearm removed, as it was an oversight
- from the original Goofsec PR, and they shouldn't be packing heat like that over
- other officers.
- - bugfix: Map icons have been added for the spawn points of all new Skyrat jobs.
- - bugfix: Spawn points have been added to all maps for Departmental Guards.
- - rscdel: Security Sergeant has been removed after discussion with policymakers
- and other developers on the project.
- - rscadd: An additional Security Officer slot has been opened.
- OrionTheFox:
- - bugfix: Icebox's prison maint door has the right access, and the tcomms control
- room doesnt start out frozen
- SkyratBot:
- - spellcheck: Removed a visible b> from Cult's objective text.
- - bugfix: Tramstation Court Room and Lawyer's Office now have lights
- - admin: The Save Shell admin circuit component now properly loads circuits that
- use a BCI or MODsuit module as their shell.
- - bugfix: fixed weird "Mob Spawner" objects showing up when you killed clowns
- - refactor: Mech Fabricator's `output_part_info()` proc is much more optimized.
- - bugfix: You can no longer get an alert by checking your mood with telekinesis.
- - bugfix: Some antags (like Abductors) no longer have 2 antag gain messages.
- - spellcheck: Gaining and losing antagonist status will now be properly written
- with 'the', as needed.
- - bugfix: Fixes phylactery exploits. Liches can no longer be soulstone captured
- or be debrained and put into an MMI.
- lessthnthree:
- - bugfix: Tajaran species now has feline voice modifier.
-2021-12-29:
- GoldenAlpharex:
- - bugfix: Fixes fireplaces not producing light when they should be fully lit.
- - rscdel: Removes the new janiborg sprites so we can properly add them back when
- all the tall borgs are finished.
- Melbert:
- - bugfix: Dirt piles can no longer exceed their maximum reagent capacity by 10.
- Sorry prison botanists.
- SkyratBot:
2021-12-28:
Fikou:
- bugfix: the mod installer from charliestation no longer has infinite uses
@@ -1491,54 +722,6 @@
the pathfinder
- bugfix: fixes modsuits deleting everything inside when they explode
- bugfix: fixes ais in modsuits not being able to use abilities
- - bugfix: 'fixes the tether not being able to hook onto catwalks/lattices qol: ais
- in modsuits now make the user stand up instead of weirdly crawling qol: a modsuit
- being destroyed with an ai inside now pops it out as a small card you can recover
- from with an intellicard qol: modsuit module radial is now more friendly, showing
- you tooltips and which modules are active qol: mech fabricator module list is
- now sorted'
- - bugfix: Mulebots can be turned on/off again, and their wires can once again be
- interacted with
- - bugfix: pAI's can once again be placed in Bots.
- - bugfix: Unlocked bots can once again be interacted with, even if you don't have
- access to it, if already unlocked.
- - bugfix: italian mafioso now get their proper names
- - admin: admins can now view family objectives from the traitor panel
- - bugfix: fixed zombie powder not sleeping you on ingestion and on further ingestion.
- - bugfix: fixed a say emoting bug where forced says' were being turned into emotes
-2021-12-30:
- Gandalf2k15:
- - rscdel: The ambitions system has been banished to hell.
- - rscdel: The antagonists module has been reset to TG
- GoldenAlpharex:
- - bugfix: Fixes turrets causing runtimes in the Syndicate bases.
- - bugfix: Removes a few duplicate lattices from Shuttle5832.
- - bugfix: Fixes the runtimes with Orderlies and Custom Agents not having the right
- accesses to apply their trims, which popped up at every round start.
- - bugfix: Fixes the tactical suit not using the right file and therefore runtiming
- at roundstart.
- SkyratBot:
- - bugfix: Ghosts can now enter a posibrain that has already had a player in it before.
- - bugfix: ais in modsuits without wearers cant magically move out of closets/disposals/morgues
- anymore
- - bugfix: speed potions work on modsuits and use a signal system
- - bugfix: Forcefully tampered with a customer bot's wiring, it should pay for Ale
- now.
- jjpark-kb:
- - rscadd: added the crank cell; alt-click it to charge it-- it will lose charges
- over time. Find in trash piles and xenoarch loot
- - rscadd: added the auto-charge cell. Find it in xenoarch loot
- tastyfish:
- - bugfix: Dogginos is now accepting emergency orders again.
- theOOZ:
- - rscadd: Mime mask checks snout type upon variation selection.
-2021-12-31:
- Melbert:
- - bugfix: Exo-drone fuel pellets delete when empty.
- - bugfix: Exo-drone launchers now update their icon correctly when adding / removing
- fuel. Removing fuel with a crowbar also doesn't smack the launcher when done.
- - bugfix: Fixes a hard-del with the exo-drone launcher.
- SkyratBot:
- bugfix: fixes the tether not being able to hook onto catwalks/lattices
- qol: ais in modsuits now make the user stand up instead of weirdly crawling
- qol: a modsuit being destroyed with an ai inside now pops it out as a small card
@@ -1581,16 +764,6 @@
assures you that this security exploit will never happen again.'
- bugfix: you cant make radios play comms with a broken speaker by setting their
frequency anymore.
- - bugfix: Spidercharges can now only be blown up in their intended location.
- - bugfix: Non-suicided brains put into suicided bodies will no longer be marked
- as suicided. Consequentially, said suicided bodies can be used for brain transplants.
- - bugfix: The ablative trenchcoat actually gives you a sechud again.
- - bugfix: accessories on clothes placed inside garment bags will no longer delete
- themselves.
- - code_imp: space/openspace turfs now exist to make multi-z space turfs act more
- space-like.
- tastyfish:
- - spellcheck: Fixed augmented lung messages.
Melbert:
- bugfix: Hulk is removed more consistently when the user actually enters soft crit.
- bugfix: Exo-drone fuel pellets delete when empty.
diff --git a/html/changelogs/archive/2022-01.yml b/html/changelogs/archive/2022-01.yml
index fb2f9675fce..cff76a26c47 100644
--- a/html/changelogs/archive/2022-01.yml
+++ b/html/changelogs/archive/2022-01.yml
@@ -1,33 +1,4 @@
2022-01-01:
- ErdinyoBarboza:
- - bugfix: Model 23-37 and M2 Auto are now 12 gauge again. Also fixes the descriptions
- of the Armory Shotguns
- GoldenAlpharex:
- - bugfix: The blackmarket uplink shouldn't run into issues loading the different
- categories of items it can order when it was created during mapload.
- - bugfix: Fixed a few instances of catwalks being on the same tile as lattices on
- the salvage post ruin, which means less runtimes trying to load that space ruin.
- Yay!
- Iamgoofball:
- - balance: Re-enables the goodie packs for Stingbangs, the Detective's alternative
- ammunition, and the Survival Knife.
- Melbert:
- - bugfix: Hulk is removed more consistently when the user actually enters soft crit.
- SkyratBot:
- - bugfix: You will no longer hear medibot voicelines whilst in crit.
- - bugfix: Possessing a mob no longer lowercases your ckey in admin messages.
- - bugfix: fixed basil boys uniform being offset by one pixel
- - bugfix: Pipe dispensers no longer produce broken invisible pipes.
- thestubborn:
- - bugfix: some loadout exclusive stuff is now in vendors, shout at me about the
- stuff I missed please
- - spellcheck: capitalised those annoying all lowercase stuff in the loadout, says
- the man who speaks in all lowercase
-2022-01-02:
- Iamgoofball:
- - balance: All Shotguns in the armory are now Riot Shotguns that load normal shotgun
- shells.
- - balance: The armory shotgun ammunition storage now contains normal shotgun shells.
SmArtKar:
- bugfix: MODsuits no longer runtime when EMPed with no module selected
SuperNovaa41:
@@ -65,98 +36,6 @@
top and bottom levels of the map.
- rscadd: Cargo now resides over a small bank vault that stores both the station's
materials and wealth.
- SkyratBot:
- - spellcheck: The exosuit fabricator should now spit out (more) grammatically correct
- messages.
- - bugfix: Silicons and other mobs that shouldn't be able to lie down now won't lie
- down no matter what happens.
- - bugfix: fixes pirates not getting their antag status, alongside a non-pirate name
- - bugfix: Fixed a clipping issue with the brainwash objective text. Brainwashed
- victims can now properly lead longer objectives about the clown being a zombie,
- etc.
- - bugfix: MODsuits no longer runtime when EMPed with no module selected
- - bugfix: Bodies will no longer (sometimes) be fully deleted when escaping a disposal
- pipe trap.
- - bugfix: Fixes blastcannons not actually having any light range regardless of the
- bomb they used.
- - bugfix: Fixes blastcannons being blocked by cigarette butts.
- - code_imp: Unspaghettis some variable definitions.
- - code_imp: Brings phasic carbine rounds into compliance with the rest of the projectiles.
- - bugfix: Fixes field of view handler perceiving the wrong eye
- - bugfix: Things on fire moving over a bonfire will now ignite its flame
- theOOZ:
- - imageadd: Adds a new bird beak, it's small
-2022-01-03:
- Gandalf2k15:
- - rscadd: Tactical pants.
- SkyratBot:
- - bugfix: Russian Revolver can't longer be able to be examined to determine if it
- has a bullet in it's chamber or not.
- tastyfish:
- - bugfix: Fixes Interdyne radios (pending an upstream fix as well).
-2022-01-04:
- Deek-Za:
- - imageadd: Added sprites for cargo cap when flipped
- ErdinyoBarboza:
- - balance: AKM, M16, FG42, PPSh and StG are now bulky instead of normal sized items.
- Goodbye backpack M16!
- - bugfix: Made the MP40's description in line with contributor guidelines
- - spellcheck: "FG-42 is named as is instead of Fallschirmj\xE4gergewehr 42"
- Fikou, modified sprites from Onule, descriptions by Nerevar and Halcyon:
- - balance: MODsuits no longer slow you down when undeployed in backpack form
- - balance: tray modules cost less complexity, organ thrower is incompatible with
- microwave beam
- - balance: 'nukie suits no longer start with the thermal module qol: the recall
- module automatically tries to deploy the suit, without sealing it'
- GoldenAlpharex:
- - bugfix: Fixed issues with line endings on two of our modular maps that were preventing
- me from not having them included in literally every PR.
- - bugfix: Admin deadsay will now properly be sent to admins that are on the lobby
- screen, with their deadchat toggle turned on.
- - code_imp: Admin deadsay shouldn't be as prone to cause small runtimes anymore.
- GoldenAlpharex, Halcyon for the sprites:
- - code_imp: 'Adds a new flag to hide spines for clothes, mostly for when you want
- to still show the jumpsuit and yet still cover the tail with something else.
- sprites: Adds sprites to each MODsuit model to make them compatible with digitigrade
- legs and with snouts!'
- - bugfix: MODsuits don't look all bugged for characters with digitigrade and/or
- muzzled sprites.
- Iamgoofball:
- - balance: Only half of the Sol-Fed response needs to vote for an upgrade in severity.
- OrionTheFox:
- - bugfix: After lots of stress and confusion, Lopland and Armadyne are proud to
- announce that they've finally sorted out how to make helmets with both a visor
- and a flashlight function properly. Security will be given these new models
- that are much less... janky. Lopland has also taken the opportunity to update
- the helmets in general, including properly fitting them for muzzled crew, lengthening
- the forehead plating as to not make the wearer appear bald any more, and rounding
- out the very edges of the bulletproof helmet.
- SkyratBot:
- - refactor: The majority of user facing input lists have been converted to TGUI.
- - refactor: Tgui text inputs now scale with entered input.
- - bugfix: Many inputs now properly accept cancelling out of the menu.
- - bugfix: Fixes an edge case where users could not press enter on number inputs.
- - bugfix: Custom vendor bluescreen.
- - bugfix: You can now press ENTER on text inputs without an entry to cancel.
- - bugfix: ghosts can no longer mess with modsuits
- - bugfix: Fix glass floors appearing as lower z-level when on the same z-level.
- - bugfix: Fix catwalks appearing as current z-level when they were on a lower z-level.
- - bugfix: Fix transparent turfs to display lower z-level properly.
- - bugfix: Fix lighting overlays appearing as current z-level when they were on lower
- z-level. (for transparent turfs)
- - bugfix: Fix mapping icons for catwalks to display correct icon state
- - refactor: Refactor turf transparency to be more robust.
- - refactor: Refactor catwalks to be elegant code.
- - bugfix: Massively decreased initialization times in best case scenarios.
- - admin: Simplemobs attacking objects is now properly logged, when the mob is playercontrolled.
- - bugfix: Sacrificing a mindshielded person no longer causes their soul to be left
- in their brain instead of getting transfered to the soulstone
- - admin: RD server controllers now log remotely shutting off/turning on RD servers.
- - bugfix: Cardboard boxes and Body bags no longer claim to be welded together when
- examined.
- - bugfix: Chemical grenades no longer evaporate into thin air upon detonation. As
- a result, gunpowder and teslium now work with them. Also, you can recycle cleaner
- grenades if you want to bother.
Mothblocks:
- rscdel: The station name has been removed from the hub entry.
- bugfix: Massively decreased initialization times in best case scenarios.
@@ -213,68 +92,6 @@
- refactor: Turns cult eyes and cult halos into elements, and improves the code
a touch.
- bugfix: Spidercharge ACTUALLY can't be used anywhere now.
- - server: MS13 is the best
- - bugfix: All of service can now access the Service cargo console.
- - bugfix: Stuffing bread full of weed and such will no longer consign some of the
- reagents to the void.
- - imageadd: Adds the trash bag of holding icon to the janicart
- - rscdel: The station name has been removed from the hub entry.
- Whoneedspacee:
- - refactor: Refactors megafauna abilities to be mob actions which are grantable
- to any living mob.
- - admin: Added a verb under admin events which lets you grant mob actions to a marked
- living mob.
- tastyfish:
- - bugfix: Centcom and CTF headsets now work properly again.
-2022-01-05:
- ErdinyoBarboza, Sprite originally done by Eris, and edited by @axietheaxolotl:
- - bugfix: And the updated description to match.
- - balance: Wildcat and Lynx are now Bulky guns. They no longer fit into your backpack
- - balance: Blueshield now comes with a special Hellfire Laser Gun
- Gandalf2k15:
- - rscadd: Armadyne have stocked your clothing vendors with the old-style clothing
- variants.
- - rscadd: Fake sunglasses.
- GoldenAlpharex:
- - bugfix: Fixed a few roles not being properly separated in the Crew Monitor console.
- More colors!
- - bugfix: Fixes the NT Rep and the Quartermaster not being labelled properly as
- Heads in the Crew Manifest.
- Iamgoofball:
- - balance: The breaching hammer throwforce values have been reduced from 20 throwforce
- to 10 throwforce.
- - balance: The breaching hammer no longer gives you a 25% chance to block.
- - balance: The breaching hammer no longer has wound bonuses.
- - balance: The breaching hammer no longer functions as a baseball bat plus stun
- baton combo.
- Melbert:
- - bugfix: Rust heretic ascension spread rusts everywhere again.
- - bugfix: Fixes cult dagger error with holywater purging.
- SkyratBot:
- - imageadd: Brand new sabre and sheath sprites!
- - bugfix: Fixed an incorrect calculation in the crystallizer preventing most crystallizer
- recipes from ever producing high quality products.
- - bugfix: Papers pinned to airlocks will now visibly show if it has anything written
- on it.
- axietheaxolotl:
- - rscadd: Added some demonic, and very red suits.
- tf-4:
- - balance: Medical cyborgs no longer get a pinpointer upgrade, nor the remote crew
- monitor access that comes with it.
-2022-01-06:
- SkyratBot:
- - bugfix: The gladiator helmet is no longer a missing texture.
- - bugfix: Fixes crates duplicating materials with the recycler.
- jjpark-kb:
- - bugfix: brought back the ashwalker den
-2022-01-07:
- Fikou, Armhulen:
- - bugfix: fixes MODsuit pins not working
- - balance: specific MODsuit designs now gain smoke protection
- GoldenAlpharex:
- - bugfix: Fixed the mentor PMs appearing in bold pink when it shouldn't be.
- - code_imp: Did some cleaning up of parts of the mentor code.
- - bugfix: Fixes a hard-deletion related to the void hood.
TemporalOroboros:
- bugfix: Stuffing bread full of weed and such will no longer consign some of the
reagents to the void.
@@ -326,38 +143,6 @@
- bugfix: Changelings can no longer unintentionally take DNA from monkeys.
- bugfix: Changeling lesser form now toggles between "lesser form" and "human form"
when used.
- SkyratBot:
- - bugfix: Silicons can disable holodeck safeties again.
- - bugfix: Fixes admins being able to sucessfully JMP as a new player mob.
- - bugfix: The assembly shell can now be attached to wires as intended
- - bugfix: Windoor exam text now properly displays whether the panel is open.
- - refactor: Windoor tool_act code is updated to the latest century.
- - code_imp: Some code changes to thermomachine ports and appearance. No gameplay
- changes expected though.
- - balance: Malfunctioning AI should now happen more frequently.
- - bugfix: After being broken again, magic mirrors have been RE-fixed and will ONCE
- again change your species.
- - bugfix: Pen's can update an item's description again.
- - bugfix: If you aim at something through cameras you will now aim at the thing
- you aimed at from the perspective of yourself instead of the camera you were
- using to aim.
- - bugfix: Exploding paper no longer causes a runtime.
- - bugfix: Modsuits DNA lock module will no longer stop you from changing up the
- suit's modules while not worn, even if you are it's rightfull owner.
- - bugfix: Revenants (and any other non human) will no longer turn red/blue from
- the medieval shuttle teambuilding machines.
- - bugfix: Icebox telecomms control is no longer frozen. Rejoice, to the 2 people
- who actually go in there. The catwalks are nicer all around too.
-2022-01-08:
- AtoriBirb:
- - bugfix: fixed berserker hardsuit/godslayer cloak to show up on anthros
- CRITAWAKETS:
- - bugfix: Knee-High and Thigh-High Ace Socks have their sprites appear now.
- ErdinyoBarboza:
- - bugfix: Security Gloves are fireproof once again
- - rscadd: Added new sprites for Departmental Batons
- Fikou, sprites from Azlan:
- - bugfix: fixes mouth hole not working
Mothblocks:
- qol: Restored the original manual refresh for the orbit menu.
OrionTheFox:
@@ -414,65 +199,6 @@
like abductors.
- bugfix: When switching from Dullahans to a different species, your old head will
no longer stay behind.
- - bugfix: 'After a long series of tiresome meetings and heated debates, the Nanotrasen
- Executive Board is happy to announce that all departments will be able to obtain
- additional headsets for their departments from their clothing vendors, so more
- poorly-paid internships can occur! (N.B.: The Head of Personnel is reponsible
- for service headsets, refer to them if you''d like to acquire one for your service
- internship)'
- GoldennAlpharex:
- - bugfix: Cut half of the overlays that would currently be applied to computers
- due to connecting computer, reducing their impact on performance in that regard,
- hopefully.
- - imageadd: Fixed the sprite for the arrival shuttle recall terminal so it isn't
- fullbright all the time and gave it a neat little animation.
- Melbert:
- - bugfix: You can see rust again
- SkyratBot:
- - bugfix: 'Cargonians and Janitors Rejoice: Disposals on TramStation have been fixed!'
- - bugfix: Eigenstasium will no longer teleport undroppable items out of your inventory.
- - bugfix: Fixed having a limited vision whilst in the abductor ship.
- - bugfix: Admin ghosting from a camera eye will no longer runtime.
- - bugfix: Fix open/space/openspace to have dark shadow borders to indicate it's
- openspace
- - bugfix: Spiders no longer cause runtimes when coming into contact with spider
- webs. Also their AI no longer breaks due to this.
- - bugfix: Basic mobs (i.e. cows) can be properly ridden.
- - bugfix: Drones can now vent crawl if there are humans around.
- - spellcheck: Nanotrasen has undergone a corporate reorganization, reallocating
- powers previously gone to Central Command back into their own fold.
- Triiodine, TetraZeta, PositiveEntropy:
- - imageadd: Resprites the labcoats, removing the asbestos and charcoal grime from
- them!
- kannthus:
- - bugfix: Disco DetDrobe items being permanantly sold-out
- tf-4:
- - bugfix: You can no longer override a firelock's closing mechanisms from range.
- timothymtorres, TheBonded:
- - bugfix: Fixed some quirks to not process if player is sleeping or unconscious.
-2022-01-09:
- ErdinyoBarboza:
- - rscadd: Adds contraband to Delta Station Armory
- GoldenAlpharex:
- - bugfix: Fixes mentor-related issues, properly this time.
- Paxilmaniac:
- - bugfix: fixed catwalks stacked on top of each other in the shipbreaker ruin
- SarmentiCampbell:
- - bugfix: Chaplain are now able to use prayer beads.
- SkyratBot:
- - bugfix: The supermatter will once again emit radiation when it is about to explode.
- - bugfix: Fix transparent floors clipping objects from bottom z-level to above z-level.
- - refactor: The spider charge has slightly less shit-code now.
- - rscadd: The Icemoon Engineering Outpost has been remapped, and received an /area/
- to go with!
- - bugfix: The regal rat has full access to it's abilities again.
- - rscadd: Adds the captain's aid
- tastyfish:
- - rscadd: Adds a windoor to the last recycler->mass driver space in the Blueshift
- waste disposal room.
- thestubborn:
- - bugfix: icebox's lawyer office has always had a drobe, stop gaslighting
-2022-01-10:
- bugfix: Fixes a hard-deletion related to the void hood.
Mothblocks:
- balance: Malfunctioning AI should now happen more frequently.
@@ -542,39 +268,6 @@
- bugfix: 'Tram medical: Changes windoor directions in the pharmacy, fixes access
on shutters'
- bugfix: 'Tram medical: Privacy shutters for the CMO''s office'
- SkyratBot:
- - bugfix: Wardens and Heads of Security Rejoice! You are now able to send tiders
- to the gulag to labor for the better of the station after they steal your third
- baton (on TramStation)!
- - bugfix: stools on the main station are now facing the correct directions
- - bugfix: The status screen in the ERT Bay in CentComm has been moved to the other
- side of the wall because we accidentally kept sending them down and the crew
- would keep selling them.
- - bugfix: Sholean Grapes can use their gel cocoon ability again.
- - bugfix: The holopad is now back in Security's meeting room on MetaStation! Silicon
- lovers and cold-callers rejoice!
- - bugfix: TK will no longer try to interact with your HUD (again).
- - balance: Clarke can now attack in all directions
- - balance: Clarke can now search for ruins
- - balance: Clarke no longer gets a diagnostic HUD
- - rscdel: Removed monkey mode from the code, when admins ran it it was broken anyways
- - rscdel: Jungle fever no longer spreads via monkey bites after conversion, and
- it is now jungle flu.
- - rscadd: 3 new space ruins, 2 chunks of a blown up space station and a NEW asteroid!
- Stalkeros:
- - rscadd: Added xenoarchaeology room to every mining map that lacked one.
- linnpap:
- - rscadd: Added a ton of clothing sprites for teshari (made by Halcyon)
- nikothedude:
- - rscadd: Added a new verb that allows you to emote using the container your mob
- is in, using their name. The verb's name is *exme and either be used using the
- say window, command bar, or the IC tab as "Emote using Vehicle/Container".
- - bugfix: Mechs can now use CI! Rejoice!
- - rscadd: New proc to allow emote_flick to be called on objects.
- softcerv:
- - bugfix: hypovials can fit inside fridges again
- tastyfish:
- - bugfix: Interdyne and DS-2 ID cards are now registered to their owner again.
Nari Harimoto:
- expansion: Centcom has approved the funds to re-arrange Icebox's medbay department
with a new design that better facilitates multiple level functionality
@@ -621,16 +314,6 @@
like the other animal masks are. This oversight has been corrected.
- bugfix: The toggleable voice modification boxes of animal masks that don't cover
your mouth now actually work.
- Ebin-Halcyon:
- - imageadd: Missing Teshari sprites and files that are named wrong
- GoldenAlpharex:
- - rscdel: 'Striking News: The Syndicate has temporarily put on hold their contract
- with the Spider clan, resulting in shortage in Cyborg Ninja kits in the uplinks.
- No further information was given, but rumor has it that there was many changes
- to one of its main items and that the Syndicate will take a moment to adapt
- it to their needs.'
- - bugfix: Fixed the instances where speech wasn't handled properly, such as hulks
- not yelling and tongue modifications.
EOBGames:
- rscadd: A number of new posters have been introduced, for your decorating pleasure.
- rscadd: Billboards have also made their way to the sector.
@@ -649,10 +332,6 @@
- refactor: Refactored cult buildings to exorcise some copy+paste. Some cosmetic
cult buildings won't drop metal now (but still work for cultists!).
- balance: Buffed hydroponics dirt tray's capacity to 15u.
- Ryll/Shaps:
- - admin: Log messages for being deconverted from a revolution are now also registered
- in the mob's individual logs instead of just to the game.log
- SkyratBot:
Pepsilawn:
- bugfix: Stray pixel on the drop pod sign removed.
Pickle-Coding:
@@ -771,23 +450,6 @@
names, letting you look up a silicon named "H.E.R.A." by simply searching "hera".
- bugfix: Stealthed admins orbiting something will no longer count for that atom's
orbiter count in the orbit menu
- SarmentiCampbell:
- - rscadd: Added mush kit to curator's heroic beacon
- SkyratBot:
- - bugfix: Emotes will now parse properly in dchat.
- - bugfix: Drone tools can no longer be removed from the drone.
- - bugfix: The HoS in mafia can now properly unselect their target for the night.
- - bugfix: Stops vending machines from runtiming when broken.
- - rscadd: Adds progression traitors and reworked traitor objectives to give reputation
- and telecrystals, which can be used to purchase equipment.
- - balance: Traitor gear now has a soft timelock. Most gear becomes accessible 30
- minutes into a round.
- - refactor: Refactored the uplink UI code completely to be in typescript and modernizes
- it.
- - rscdel: Removed romerol, surplus crate and the special syndicate kits from regular
- traitor uplink. Romerol is now a final objective that you can receive.
- - bugfix: Can no longer open storage containers in a locker (or other container)
- via right click.
SuperNovaa41:
- bugfix: Emotes will now parse properly in dchat.
- bugfix: Drone tools can no longer be removed from the drone.
@@ -800,73 +462,6 @@
2 tiles.
- bugfix: The viewing range limit of 2 tiles also applies to the SecurEye tablet
software.
- - bugfix: Fixes the equipment menu from runtiming if you the outfit has a skillchip.
- - rscdel: Removed podcaster reference shirt.
- - balance: "Replaces the Cr\xE8me de Menthe in Quadruple Sec with Grenadine because\
- \ mint with triple citrus tastes awful and Grenadine turns drinks red"
- - code_imp: Traumas.dm is now spanned out and alphabetized. Just a small code improvement.
- - bugfix: Fix to where other forms of being dead (ie decapitation/braindeath) now
- shows up on crew monitors when vitals are available via the red square.
- - refactor: stationary pipe dispensers now take advantage of tgui
- - bugfix: You can no longer use telekinesis to teleport with the bluespace prophet
- brain trauma.
- - bugfix: Fixed a runtime with syringe injection text.
- - server: Added support for define toggle live ref tracking. Consider using it if
- you're hunting hard deletes
- - admin: Station traits are now logged at roundstart.
- - bugfix: You feel space itself shift around you. Atmos has changed. Please report
- any strange behavior, if you can notice it.
- Stalkeros:
- - bugfix: Made Icebox's public mining actually public and accessible.
- Zenitheevee:
- - rscadd: Adds Port Tarkon, an abandoned asteroid-embedded mini-station over-ran
- with problems.
- - rscadd: Added Abandoned Crew ghost roles to Inhabit Port Tarkon.
- - rscadd: 1 unique gun that spawns in a pair in the security office.
- axietheaxolotl:
- - bugfix: Blueshield's headset now protects against flashbangs as it should
- - rscdel: Removed blueshield loudmode
- - rscadd: New Coat and Uniform for detective.
- jjpark-kb:
- - bugfix: fixes the random space tiles on tramstation
- - bugfix: places some missing APCs on tramstation
- - bugfix: places some missing Air Alarms on tramstation
- - bugfix: fixes some wiring on tramstation
- - bugfix: fixes some atmos piping on tramstation
- - bugfix: fixes some disposal piping on tramstation
- - bugfix: fixed the map config for tramstation
- nikothedude:
- - rscadd: Re-adds the old flavor text preview! Check your character creation screens,
- there should be new text boxes by both normal and silicon flavor text.
- - code_imp: 'Adds a few more span thingies. YOu know what I mean. change: Temp flavor
- text now makes it more clear when someone has temp flavor text.'
- sasichkamega:
- - bugfix: stasis beds now have anesthetic effect
- theOOZ:
- - imageadd: Adds two new overlay effects to *snore and *sigh
- - rscadd: Adds *question emote
-2022-01-14:
- Melbert:
- - bugfix: Fixes gang induction, sentient disease abilities, birdboat's vomit button,
- and the ooze's boost button
- SkyratBot:
- - bugfix: Fixes stamps being randomly applied to paper even when not blind.
- - bugfix: fixed nuclear particle's incorrect flag variable which could cause a runtime.
- - bugfix: Fortune cookies now give you your fortune.
- - bugfix: Guns can once again target individual pixels rather than always shooting
- at the center of their target.
- - bugfix: Pluoxium formation via supermatter will no longer consume oxygen that
- doesn't exist.
- - spellcheck: When a pAI holomatrix shell "perks up", you'll no longer be on the
- edge of your seat, holding your breath to see what could possibly come next.
- - bugfix: NanoTrasen has broken up the AI Static Union and thus AI static will no
- longer intermittently decide to stop working.
- - bugfix: Fixes the spider charge not giving ninjas their objective
- - bugfix: To everyone who likes sleep, hopefully you can all dream a little bit
- sounder now that all of your bedsheets actually cover you now rather than persist
- under you (and any other mobs).
- - bugfix: The carp plushie null rod variant now properly gives the carp faction
- to holy people instead of favouring the unworthy.
san7890:
- code_imp: Traumas.dm is now spanned out and alphabetized. Just a small code improvement.
2022-01-14:
@@ -920,14 +515,6 @@
- bugfix: separatists no longer have a bad greeting message
- bugfix: united nations lawset is now properly rejecting law changes unless it
completely overrides the laws
- - balance: Venting now has an indicator
- jjpark-kb:
- - rscadd: added a xenoarch guide to the xenoarch lockers
- nikothedude:
- - code_imp: Increased flavor text preview from 60 to 200 chars. Added 2 spaces.
- theOOZ:
- - balance: Roomba cyborg models can be flipped.
-2022-01-15:
2022-01-15:
MMMiraclkes:
- bugfix: Tramstation's prison area is no longer powered by a secret bathroom APC.
@@ -947,66 +534,6 @@
- bugfix: Bullets that deal both brute and stamina damage like .38 Rubber will now
properly have both their brute and stamina damage reduced after each ricochet,
instead of just the brute.
- SpookyTheFox:
- - rscadd: Added new functionality to the botany toolset arm implant
- - balance: Made a moderately strong weapon available if emagged
- nikothedude:
- - bugfix: made examining obscured people work
-2022-01-16:
- MMMiraclkes:
- - bugfix: Tramstation's prison area is no longer powered by a secret bathroom APC.
- SishTis:
- - bugfix: The corvid beak from character selection is visible.
- SkyratBot:
- - rscadd: A number of new posters have been introduced, for your decorating pleasure.
- - rscadd: Billboards have also made their way to the sector.
- - bugfix: Fix deaf people being able to hear in certain text messages.
- - rscadd: Added a medical medal lockbox to spawn within CMO's secure locker which
- contains two medals
- - rscadd: The Captain and Corporate MODsuits now have an inbuilt hat stabilizer,
- which can also rarely be found in maintenance!
- - code_imp: Internal Affairs gamemode (not the traitor flavor) has been removed.
- - bugfix: added buttons for the chapel privacy shutters on Deltastation
- - bugfix: added missing chapel privacy shutters in the office on Deltastation
- - rscadd: 'Honk Co. is proud to announce their new project: clown operative MODsuits!
- Adds the "Honkerative" theme to Syndicate MODsuits, and a paint kit module to
- clown operative uplinks. Honka honka.'
- - bugfix: there is now a fire alarm in Metastation arrivals
- - bugfix: Moved the poster and newscaster in the bar on Deltastation so they aren't
- ontop of other wall objects for ghosts/AIs
- - rscdel: Removes swarmers! The griefiest, lowest fun value antagonist is removed
- from the game.
- - bugfix: People banned from head revolutionary will no longer roll Head revolutionary.
- - bugfix: Bounty pads can now be deconstructed like regular machinery.
- - bugfix: Prisoners can no longer roll roundstart revhead or cultist, and can no
- longer roll latejoin revhead. This fixes an accidental change from an earlier
- PR.
- - bugfix: you can now get wet again!
- - bugfix: Cult airlocks properly throw non-cultists across the room now.
- - bugfix: The tram can no longer consume and delete the Supermatter.
- - bugfix: Assigning timers on people's IDs now work properly, yay Tramstation Brig!
- - bugfix: Mulebots wont crush people in no gravity
- itseasytosee:
- - bugfix: Fixed some drugs keeping you high forever
- san7890, sounds courtesy of Capsandi:
- - soundadd: Nanotrasen has sourced fire locks from a new vendor, on the cheap, and
- nearly identical to the ones on past stations. Assistants describe the new sound
- as "throaty" and "bassy".
- tf-4:
- - balance: MODsuits can no longer be equipped with MCR cells.
- - bugfix: Underchargers will no longer permanently affect a gun's stats under certain
- circumstances.
- - bugfix: MCR scatter attachments will no longer permanently reduce the number of
- pellets in your gun.
- thestubborn:
- - rscadd: Ghost Cafe management are NOT dead! They have just added some brand new
- themed rooms (and the other goodies...), go check them out!
-2022-01-17:
- Fikou:
- - balance: 'Undeployed modsuits now have 1/5 of the slowdown instead of 0 (from
- 0.15 on quick suits like rescue and 0.2 on semi quick like advanced or medical
- to 0.35 on research and 0.4 on prototype) qol: the storage modsuit module now
- tries to scoop up the suit storage item'
SmoSmoSmoSmok:
- bugfix: Mulebots wont crush people in no gravity
Vexylius:
@@ -1050,73 +577,6 @@
a snapshot. Did some other things to it to hopefully make it look nicer
- rscadd: Very minorly changed self attack animations
- bugfix: Attack animations will display properly now
- - balance: Atmospheric gas masks are now normal-sized, the same as other full-face
- gas masks.
- That REALLY Good Soda Flavor:
- - imageadd: Added a stamina indicator to the human mob's HUD.
- jjpark-kb:
- - rscadd: added four new circuit components- mining, target scanner, cell charge,
- and item interact
- theOOZ:
- - bugfix: Fixes posters and adds the new TG ones
- thestubborn:
- - bugfix: tram is now hopefully less shit, medical have privacy settings, public
- garden has vendors, sec has holobadges!
- - bugfix: no more interlink couch vore
-2022-01-18:
- Melbert:
- - balance: 'Placed traitor bugs should have fingerprints and fibers now. Remember:
- You can clean your fingerprints off of things with soap or other cleaning methods.'
- Paxilmaniac:
- - bugfix: tram, similarly to all the other maps, now has an arrivals shuttle recall
- console
- SkyratBot:
- - bugfix: Trying to make weak virus plasma will no longer plasmaflood virology.
- - bugfix: Fixes AIs not being able to announce any custom laws.
- - bugfix: Fixes floorbots dropping full toolboxes.
- - bugfix: Borgs who are untipped ahead of time and re-tipped will not have their
- first self-untip timer untip them the second time.
- - balance: Nuke disks must now be held by a player or pulled by a player in order
- to count as moving to not increase the chances of lone ops. This means no more
- disk conveyor belts.
- - bugfix: sleeping people no longer show up as dead on crew monitor
-2022-01-19:
- LT3:
- - bugfix: All security roles now have access to SOOC like they're supposed to.
- OrionTheFox:
- - balance: Trauma Team ERT services are once again available on the frontier, with
- updated equipment!
- OrionTheFox for Modularisation:
- - rscadd: Adds a syndicate handheld mirror that lets you change your hair and beard
- to chameleon kits. As well as hairdye.
- - code_imp: Chameleon Kit Population has been moved to modular. The description
- of chameleon kit has been edited.
- Paxilmaniac:
- - bugfix: fixes strange, duplicate, floating section of the permabrig in space on
- delta
- RatFromTheJungle:
- - balance: Stun batons deal ten less damage, or equal to another hit to stamcrit,
- and no longer 'confuse' people whom get hit by one.
- SarmentiCampbell:
- - bugfix: Fixed the Chaplain's Ritual Dagger[Null Rod]'s Icon
- SkyratBot:
- - bugfix: To lessen confusion, DeltaStation's customs areas have been split into
- two, so the average scientist doesn't need to perform a kilometer long trek
- up and down the station looking for those sweet, sweet anomaly cores.
- - bugfix: Fixed a metastation active turf, enjoy slightly faster loading
- - bugfix: Blood brothers will now be told who their teammates are in their antagonist
- info window.
- - rscadd: patch icon choosing in the chem dispenser and chem press
- - rscadd: Added a new system to allow for partial random generation of space ruins
- (and maybe more)
- - rscadd: The russian DJ station has been overhauled and given randomly generated
- variations.
- - bugfix: fixes the centcom commander outfit not having a modsuit counterpart
- - rscadd: You can also exit this laundry room onto a caringly, yet sloppily placed
- bridge to explore the ice planet (if you really want to). Watch your step, and
- watch for wolves.
- - rscadd: To accommodate the grand new laundry room, the locker room (and surrounding
- maintenance tunnels) have been shuffled around.
ReinaCoder:
- bugfix: there is now a fire alarm in Metastation arrivals
Ryll/Shaps, credit to Crystalwarrior of Hippiestation:
@@ -1161,7 +621,6 @@
- server: Hello admins. Spamming meteors will no longer lag things out quite so
much. Still not amazing cause of all the explosions, but it won't kill things
anymore. Blow some people up for me yeah?
- - bugfix: Teleport runes made by wraiths now show their custom names properly.
SuperNovaa41:
- bugfix: Fixes not drawing cards from non-standard decks.
That REALLY Good Soda Flavor:
@@ -1224,77 +683,6 @@
allowing medical and science access.
- bugfix: Fixes the fire extinguisher on a disposal bin on Icebox
- bugfix: Fixes the placement of a camera in Icebox medical
- - bugfix: Replaced snowed over plating in icebox airlocks with regular plating to
- make the plating unable to generate dangerous gases
- - spellcheck: Exploration Drone Control Console's computer board is now properly
- spelled.
- Zenitheevee:
- - bugfix: E-welder flame no longer ethereal and infinite even when turned off.
- jjpark-kb:
- - rscadd: borers have universal objectives again
- - rscadd: borers now give the screwy health hud effect (similar to miner's salve)
- - rscadd: borer hosts will naturally take toxin damage, up to 25
- - rscadd: borers will now spawn eggs rather than complete borers
- - balance: some borer abilities have been locked behind stat evolution points
- - balance: borers can only have 10 chemical and 10 stat evolution points
- - balance: borers when checking health of host get a similar output as a health
- analyzer
- - balance: 'borers can now enter dead bodies qol: a distinction between link and
- hivemind for borers: hivemind is bold now'
- - imageadd: some borer abilities got new icons
-2022-01-20:
- MrMelbert:
- - balance: MODsuits now have their old armour values back.
- ShizCalev:
- - server: A couple mapping errors will now be more visible and actually logged in
- the mapping error log.
- SkyratBot:
- - rscadd: Lizardpeople now enjoy eating (these) nuts.
- - balance: Maintenance Drone health changed from 30 to 45
- - balance: 'Maintenance Drone stun times from getting EMP''d reduced from 10 seconds
- to 7 seconds qol: Maintenance Drones can now interact near dead bodies qol:
- Maintenance Drones don''t have to wait 5 minutes to open an airlock when someone
- recently did it. Now they have to wait 1 minute. qol: Changed distance Maintenance
- Drones aren''t allowed to interact with anything from a nearby mob from 4 tiles
- to 3 tiles'
- - imageadd: The "Interrogation Room" area now has a new sprite to define it on the
- mapping end.
- - bugfix: Pumping hot gas into cold gas using the regular pumps should no longer
- explode.
- - code_imp: Some math changes to how pressure based pumps calculate pressure (both
- portable and fixed). Report if problems are found.
- - code_imp: If you care, _globalvars/lists now has a lot of lists spanned out and
- alphabetized. If you don't care, that's fine too.
- kannthus:
- - rscadd: Ghost Cafe - Medical Department
-2022-01-21:
- AtoriBirb:
- - bugfix: hellfire not spawning on person because suit slot cannot fit it
- Ebin-Halcyon:
- - bugfix: Freighter crew now spawn with their clothing
- ErdinyoBarboza:
- - rscadd: 'added new variations of uplink and rag and more sas14 ammo expansion:
- Added a load of items to opfor list'
- - balance: rebalanced armory shotguns to be used in opfor
- Gandalf2k15:
- - rscadd: A new donator captains suit!
- - rscadd: The opposing force. https://hackmd.io/@Gandalf2k15/theopposingforce
- Goffy:
- - rscadd: Adds misc text for the growth effect of the succubus/incubus chemicals
- that will show up for other players/the player themselves, with different text
- shown publicly depending on if those genitals are clothed or not.
- - rscadd: Adds functionality for genderswapping via ODing on such chemicals.
- - rscadd: Adds OD to camphor which resets genital sizes based off of preferences.
- Higgin:
- - rscadd: Announcements now play for the romerol/battlecruiser summons at time of
- use.
- - balance: Final objectives to summon romerol/the battlecruiser now require significantly
- more actual objective completion. Additionally, calling the battlecruiser now
- waits on a 3-5 min. timer before actually starting the spawns.
- - bugfix: stasis tables no longer get rid of numbing if it was applied before surgery.
- RatFromTheJungle:
- - rscadd: 'Adds modsuit+ other-stuff to maint-loot remove: removes alot of shit
- that has no business being in maint loot, from maintloot'
SuperNovaa41:
- bugfix: Fixes AIs not being able to announce any custom laws.
- bugfix: Fixes floorbots dropping full toolboxes.
@@ -1324,91 +712,6 @@
stamina damage and drowsiness when it wears off.
- rscadd: Added admin-only racing shooting gloves that grant the doubled fire-rate
buff to the wearer with no downsides.
- SarmentiCampbell:
- - rscadd: Gave a RCD to the Syndicate Module
- - balance: The syndicate jack module had their tools replaced with power tools,
- along with receiving the traits they had from Oldbase
- - balance: The Syndicate Cyborg Board finally need the cyborg to be emagged, in
- return, they will be unable to be locked down or detonated
- SkyratBot:
- - bugfix: headset, spray can, card, crayon, seclite have correct suit slot sprite
- now.
- - rscadd: The Laundry Room on TramStation is now called a Laundry Room. Rejoice!
- - bugfix: The Kilo pharmacy's door onto the public med lobby no longer requires
- general medical access to open.
- - rscadd: Added thieves! Low level antagonists that want to steal, hoard, and escape
- with your goodies!
- - rscadd: They show up roundstart and midround, and do not have a license to kill.
- - bugfix: The CMO's office on Icebox can no longer be entered from maint by anyone
- with general medbay access.
- - bugfix: 'Tramstation''s Brig lockers can now be used more than once. qol: Security
- Officers can right click Tramstation''s permabrig lockers to open them early,
- unregistering their ID.'
- - bugfix: Eliminated a runtime error related to Modular Map Loading
- - bugfix: Nanotrasen updated their weather protocols, it should now snow around
- Moffuchi's Pizzeria whenever it shows up on the surface of Ice Box Station.
- - rscadd: Reworked the MOD Kinesis module and added it to techwebs.
- - bugfix: fixed modsuits not running out of charge
- - bugfix: fixed modsuits needing multiple cores and cell fitting being weird
- - code_imp: Space vine code is cleaned up slightly.
- - refactor: Space vines now use more flowery, easier to see colors.
- - refactor: Space vine examination text is now easier to read.
- - balance: The blastcannon's damage has become more spread out and it now may be
- somewhat diminished by walls depending on config.
- - balance: The base range of the blastcannon has been slightly buffed to compensate
- for the new diminishing effect of walls.
- - bugfix: Aiming at obscured turfs will no longer make you shoot somewhere up and
- right of where you clicked.
- SolGov Station Response Announcement:
- - balance: After several interviews with space-station investors, Firefighters have
- been deemed "unhelpful" and "redundant"; as such, SolGov is proud to introduce
- their new 811 hotline for Breach Control! Our teams have been outfitted with
- the gear needed to stabilize your station's atmospherics, both leaks and contamination;
- they are not to be treated as a repair crew, but rather a life-saving atmospherics
- service! *911 calls will also automatically route your request while you get
- used to the new phone number.* Thank you, - SolGov Frontier Admin Division
- SpookyTheFox:
- - rscadd: re-enabled some disabled implants
- The Syndicate:
- - imageadd: The Syndicate have sent in a new shipment of turtlenecks, gloves and
- boots to agents!
- - imageadd: Deep space 2 Brig officers have been given their own unique looking
- webbing and helmets!
- - imageadd: old bulletproof vest looks have been shipped back out to Deep space
- two.
- - bugfix: The Master at arm's beret finally has had it's armor padding restitched
- in, it now shows up for anthropomorphic officers.
- - bugfix: DS-2's atmospherics pipes are now correctly locked in with eachother
- jjpark-kb:
- - rscadd: added a "learn chem from blood" objective to borers
- - rscadd: added borers to midround antag (dynamic)
- - rscadd: added a cortical borer cage (2 complete forged plates and 4 rods; misc
- category)
- - rscadd: added a variable that allows borers to go into changelings/non-organics
- - rscadd: added cortical borer eggs to traitor uplink
- - balance: lowered willing host objective from 20 to 10
- - balance: borers cannot leave their host if there is sugar
- - bugfix: fixed the willing host objective
- - admin: borers are now a role that can be banned
- - rscadd: added the bluespace miner
- - rscadd: added the blindfold (REAL) to loadout
- - rscadd: venus can no longer drag living things
- nikothedude:
- - code_imp: copytexts changed to copytext_char in examine.dms
- - code_imp: Made flavor text previews work even if you're just smoking a cigarette.
- theOOZ:
- - bugfix: Better species taste-preference
-2022-01-22:
- ShizCalev:
- - bugfix: Camera assemblies are now upgradable again!
- SkyratBot:
- - bugfix: Fixes some weird behavior with items falling out of your hands when space
- moving. Life is pain
- - bugfix: Fixed cyborg light overlay not showing when the light is off.
- - bugfix: Fixed delivery tagger destinations.
- - bugfix: Soulful toolboxes, made by using a soulstone with a shade in it on a toolbox
- now display their icon properly.
- - admin: Adds logging to the tippable component, to catch all the new borg griefing.
ShizCalev:
- server: A couple mapping errors will now be more visible and actually logged in
the mapping error log.
@@ -1475,44 +778,6 @@
of vision cones.
- bugfix: Restored the LACK OF pepperspray protection the aforementioned costume
masks (not the antag ones) had before the transition from gas mask tint to FoV.
- - bugfix: Fixes plants not maintaining their healthy size when picked up and put
- back down
- - bugfix: Hitting cancel when renaming a paper now actually cancels the operation.
- - bugfix: Fixes things not properly flying out of ruptured disposal pipes
- - bugfix: Certain traitor objectives now fail when they are supposed to instead
- of unintentionally succeeding, most notably when objective-critical items are
- destroyed.
- - bugfix: Ready Meal Donkhiladas are now made with meat and vegetables that do not
- vaporize when microwaved.
- - refactor: Boomerang behavior has been moved to a component.
- - imageadd: Chefs got a whole lot better at making visually apealing pizzas! Their
- boxes got spiffied up to match, too.
- - bugfix: Fixed a dead bartender spawning in the beach biodome ruin.
- - bugfix: fixes modsuit devices fucking up if you couldnt equip them
- - bugfix: fixes modsuit pins fucking up if you remove the module
- - imageadd: modsuit jetpack now has unique assets
- coldud13:
- - imageadd: fixed modsuit cores needing CS:S
-2022-01-23:
- Melbert:
- - bugfix: Fixes some decals and piping in Delta's Ordnance Lab
- Orion_the_Fox, Pirill:
- - rscadd: Added several new Bamboo items, turfs, and more!
- - imageadd: Updated existing Bamboo items to a less repulsive green.
- PositiveEntropy:
- - imageadd: resprite the toolboxes
- - imagedel: removes the old Goon toolbox sprites
- Semoro:
- - bugfix: timers not removing from second queue on init
- - bugfix: Avoid timer scheduling too far events into short queue
- SkyratBot:
- - rscadd: new plasma cutter EMP effect, it sets you on fire
- - rscadd: Traitor Roboticists can now purchase the Springlock MODsuit Module from
- the uplink.
- - rscadd: This version of the Springlock MODsuit Module activates way, way faster.
- - bugfix: Portable Scrubbers and Large Scrubbers should no longer display as large,
- embittered ERROR icons for those who enjoy mapping.
- - refactor: Refactored AI law announcing.
JohnFulpWillard:
- bugfix: Tramstation's Brig lockers can now be used more than once.
- qol: Security Officers can right click Tramstation's permabrig lockers to open
@@ -1587,37 +852,6 @@
delivery destination tag.
- bugfix: Tramstation port-aft disposals loop containing part of service, and engineering
now work again.
- tf-4:
- - bugfix: fire alarms now ACTUALLY prepend their area name
-2022-01-24:
- Semoro:
- - bugfix: Avoid runechat scheduling too far events into short queue (port from SStimer)
- SkyratBot:
- - balance: hop can no longer get objectives to steal the hand tele.
- - spellcheck: removed a misplaced bracket in the modular computer printer display
- - rscadd: Adds supermatter spiders.
- - bugfix: Service Tech Storage now has proper kitchen appliance circuitboards
- - bugfix: Simplebots can now have tools used on them without injuring them in the
- process.
- - rscdel: Removed another source of long timer singlecaps
- - bugfix: Launchpads no longer disappear when screwed open.
- - spellcheck: Removed a duplicate exclamation mark from the dismemberment message.
- - bugfix: Using screwdrivers on bots will no longer attack them.
- - bugfix: Kudzu will spread properly now
- - bugfix: Restores the cardborg helmet icon.
- - bugfix: Fixed abductor consoles having infinite action buttons
- - balance: Heirlooms are now visible to everyone on examine.
- itseasytosee:
- - bugfix: skeleton wings had some missing sprites readded
-2022-01-25:
- Melbert:
- - bugfix: the powergame crowbar has been lifted out of icebox mining and replaced
- with a more sane crowbar
- SkyratBot:
- - rscadd: Nanotrasen has begun hiring gamers. These crew members have a need to
- game!
- - rscadd: Playing videogames will now give you a slight mood buff.
- - bugfix: Ablative trenchcoats will no longer delete sechuds given from other sources.
zxaber:
- bugfix: Fixed cyborg light overlay not showing when the light is off.
2022-01-23:
@@ -1872,60 +1106,6 @@
shelter", you can rest easy now that the blueprint has an actual name. It doesn't
matter on a day-to-day basis, but it looks a lot nicer for the people working
with the blueprints.
- - bugfix: Heads of Personnel can now be midround thieves, as intended.
- Snakebittenn:
- - rscadd: Nanite Slurry has been renovated to passively heal synths and the robolimbs
- of organics. Take caution to not have more than 20u in your body, though.
- Tastyfish:
- - bugfix: Fixes most (hopefully all) Tramstation disposal issues.
- coldud13:
- - spellcheck: opfor roundend report objectives are no longer bold
- jjpark-kb:
- - rscadd: added disease carrying and plasma generating kudzu mutations
- tastyfish:
- - bugfix: Central Command has finally informed the Plexagon vendor that service
- hallway access exists, allowing HoP's to grant it to ID cards.
- thestubborn:
- - rscadd: The Ghost Cafe's detainment room has shown up for some reason. For official
- use only! Too bad they have terrible locks.
-2022-01-28:
- CandleJaxx:
- - rscadd: new tail type unlocked!
- - rscadd: harpy plushie :o)
- Ebin-Halcyon:
- - imageadd: Teshari clothing pack. Color matrix auto generated clothing now look
- slightly nicer, heads of staff cloaks and more.
- ErdinyoBarboza:
- - balance: 'Security Lockers now spawn Vests once more. qol: Detectives now have
- shades, a camera, a recorder and a custom folder in their wardrobes. qol: Wardens
- Office''s now spawn with GRANTED and DENIED rubber stamps. Go make paperwork.'
- - bugfix: All armories now start with more or less the same equipment.
- - bugfix: All Warden Lockers spawn with the same loadout.
- - bugfix: Made the KiloStation Execution Chamber non-offensive to Asimov Lawsets
- and alike.
- - bugfix: Icebox HoS Office now spawns with rubber stamp.
- - bugfix: IceBox & KiloStation & TramStation Detective Office now has 2 Detective
- Lockers.
- - bugfix: Spare Vests & Helmets in armory now use proper security sprites.
- - bugfix: All maps now spawn with Detective & Warden Holobadges in their rooms.
- Maxymax13:
- - imageadd: resprites pills
- SkyratBot:
- - bugfix: Area definitions for the IceBox and Lavaland Labor Camps have been updated.
- That means that gulag point-prisoners no longer have a safe haven inside the
- security portion of IceBox's security wing.
- - code_imp: Move defines to their local .dm files
- - code_imp: Remove code/__DEFINES/misc.dm
- - refactor: Adds some documentation to defines
- - imageadd: Resprites the mega legion and all legion related mobs
- - bugfix: restructures some code to make airlocks hackable again
- - bugfix: Followers of Nar'Sie who hope to summon her can hopefully ascertain the
- correct area to summon her, as the gambling and gaming dens have now been seperated.
- - bugfix: You can now remove attachments from weapons without standing across the
- room
- - bugfix: DJ Space ruin no longer uses incorrect turfs.
- - bugfix: The camera in the Ice Box Station Locker Room is no longer inside of a
- door.
tastyfish:
- bugfix: Central Command has finally informed the Plexagon vendor that service
hallway access exists, allowing HoP's to grant it to ID cards.
@@ -1954,35 +1134,11 @@
skirt, and mime sexy outfit.
- imageadd: new sprites for lace-up shoes.
- code_imp: Mimes spawn with lace-ups instead of black shoes
- - balance: Fire Locks now check for atmos issues on their own, rather than leaving
- it to the Fire Alarm. This should cut down on a single breach turning the main
- halls into a navigational mess.
- - balance: Fire Locks will wait five seconds after a reset before triggering again.
- - tweak: Fire Alarms will still activate all Fire Locks in an area if manually pulled.
- - tweak: Fire Alarms are still used to reset Fire Locks, but now it's a right-click
- action.
- - tweak: Emagging a Fire Alarm will apply the effect to all Fire Locks in its area,
- behaving roughly the same as before.
- - tweak: Disabling Fire Detect is also still done at the Fire Alarm and should work
- closely as it used to.
- - balance: Right-clicking a closed Fire Lock with a crowbar will open it for exactly
- two seconds. Holding it open (left click) is unchanged.
- - balance: 'Firelock emag functions (ignoring atmos detect) is now done by a doorjack
- on the firelock itself. You can still emag a fire alarm to mute it, though.
- sprite: Fire Locks now have lights that display the reason they are active.
- Orange is Hot, Cyan means Cold, and White means a Fire Alarm was pulled.'
castawaynont:
- balance: CentComm's Mark One SWAT suit's design has been reworked; it now lacks
spaceproofing, but it has become significantly faster to move in and retains
temperature-proofing. These adjustments have allowed CC to sell them for a lower
cost of 1400.
- - bugfix: Tramstation brig's disposals now has a trunk under it
- - balance: lowers kilo's bombcap multiplier
- - bugfix: The warden can no longer consider half of security to be their office
- on KiloStation.
- - refactor: Honkbots have been made a subtype of Secbots, which means they trigger
- phobias of security, and their behavior has additionally been overhauled to
- work more like Beepsky.
jjpark-kb:
- qol: safes now use balloon alerts for the hint
san7890:
@@ -2003,60 +1159,6 @@
- config: since gasthelizards.dmm is removed, the config has been updated as well.
make sure it's up-to-date now that we've gotten rid of the dang ol' thing and
replaced it with new hotness.
- - bugfix: Nanotrasen decided to redirect some of the plasma rivers on IceBox station
- towards the labor camp, helping add another layer of security between the station
- and those awful, awful prisoners.
- Wallem:
- - imageadd: Mailbags have their own sprite instead of borrowing it from book bags.
- itseasytosee:
- - bugfix: Robot themed wings will now actually be visible
- - imageadd: If synths get wings, they will be robot themed.
- jjpark-kb:
- - rscadd: added the lobby camera
- linnpap:
- - rscadd: Added the ability for flypeople to have hair
- theOOZ:
- - code_imp: 'Cyborg skins can have a unique ''tipped'' icon_state remove: Removes
- the unique effect when Roombas are tipped, sorry- this just doesn''t work anymore'
-2022-01-29:
- GoldenAlpharex:
- - bugfix: Firelocks should no longer be spawned from reinforced window spawners
- if there was already a firelock mapped there.
- - bugfix: You can now use Skyrat emojis again.
- Improvedname:
- - bugfix: Ash drake shapeshift now converts your health like shapeshifting is supposed
- to
- RatFromTheJungle:
- - balance: made the bluespace miner worth 150 crates, or 30k, which is still alot.
- SkyratBot:
- - balance: Statues can now phase around when unseen.
- - bugfix: Fixes being able to load C-4/X-4 into the grenade launcher, and it duplicating
- when you try to load it
- - bugfix: APCs will no longer error and complain about something that doesn't actually
- matter
- - bugfix: 'Purified shades that get converted to shades now become regular cult
- shades. qol: Purified soulstones (and the shades inside) can now directly be
- converted into cult soulstones (and cult shades) with Twisted Construction.'
- - spellcheck: '"Shade of" does not get duplicated anymore for soulstones under certain
- conditions'
- - bugfix: I accidentally doubled the speed of all simple mobs. It's fixed now. I
- also know how byond's internal movement stuff works now. I hate this codebase
- - admin: Tool usage is now (config-locked) logged!
- tf-4:
- - bugfix: A few tools are no longer invisible.
- - bugfix: Microfusion cells are no longer immune to EMPs when not in a gun.
-2022-01-30:
- Melbert:
- - bugfix: Balloon alerts sourced on turfs work properly.
- RatFromTheJungle:
- - rscadd: Adds a crate for the new cargo loader modsuit, and armor to the suit itself.
- SkyratBot:
- - bugfix: Thermite will no longer leave an impassable fire tile if the turf beneath
- it is deleted/deconstructed.
- - imageadd: Abandoned Kitchens now have a special sprite indicating that they are
- now abandoned.
- - bugfix: Attempting to write to paper no longer comically bluescreens.
- - bugfix: Spiders will now have a randomized number next to their name.
- bugfix: The IceBox Station Telecommunications Room now has a fire alarm.
- bugfix: Atmossians, no longer fret. You now own all of the walls in TramStation's
Incinerator Room.
@@ -2116,50 +1218,6 @@
- bugfix: For those of you into code, some stuff with the icon pathing has been
shuffled around so it's no longer in the roots of the icon/ folder. If you aren't
into code, that's fine too.
- - bugfix: Cuffing people as a PAI/ghost controlled beepsky no longer glitches out
- - balance: Folded bluespace bodybag with dwarves fit into backpack
- - bugfix: Ice Box Public Mining downstairs now uses proper external airlocks
- - bugfix: The adjusted versions of the Head of Security's jumpsuit and skirt are
- now the same colour as the non-adjusted.
- Vire, san7890, mrmelbert, Sealed101:
- - bugfix: Autonamed cameras should no longer show static in camera consoles.
- Zenitheevee:
- - bugfix: changes a few floor types to their proper subtypes, Removing a fair amount
- of active turfs at roundstart caused by air-diffs
- - bugfix: anesthetic closet is now accessible by the Medic's access.
- theOOZ:
- - bugfix: Runechat reads the y offset value of the sayer instead of the hearer
-2022-01-31:
- Ebin-Halcyon:
- - imageadd: Loader MODsuit digitigrade sprites
- GuiltyNeko:
- - bugfix: Reconnected Meta station's armory to power, properly re-powering the grilles
- - bugfix: Delta Station's side teleporter shutters are now linked to the button
- next to them
- - bugfix: Tram Station's bridge has blast doors now, hurrah.
- Helios7-1:
- - rscadd: Adds Synthanol to service cyborgs shakers.
- SkyratBot:
- - bugfix: NT CIMS no longer detects Supermatter crystals and shards that are not
- owned by Nanotrasen
- - spellcheck: Fixes popup text resulting from someone batoning a cyborg
- - rscadd: Added blue shoes to the MediDrobe.
- - bugfix: Using an autosurgeon on someone else now properly gives them the implant.
- - bugfix: Fixed the Illegal tech node being unobtainable.
- - bugfix: Examining the pirate Dutchman's mast will no longer shatter your immersion.
- - admin: 'Bounty Hunters can now be called via admin ert expansion: Oh, and they
- have cool flame ids as well!'
- - balance: The sniper rifle can now shoot things from much further away.
- jjpark-kb:
- - spellcheck: stat -> chemical in borer's "Learn Chemical from Blood" ability
- - rscadd: curators can now use a magnifying glass on useless relics to increase
- their sale price
- - balance: useless relics price increased from 400 to 600
- - rscadd: added Lil' Zapp the plushie
- tf-4:
- - bugfix: The teleporter room shutters on Blueshift are now functional
- thestubborn:
- - bugfix: sheriff hat will now display ears
- imageadd: Abandoned Kitchens now have a special sprite indicating that they are
now abandoned.
theOOZ:
diff --git a/html/changelogs/archive/2022-02.yml b/html/changelogs/archive/2022-02.yml
index 46be8e5f440..32ae3896083 100644
--- a/html/changelogs/archive/2022-02.yml
+++ b/html/changelogs/archive/2022-02.yml
@@ -283,26 +283,6 @@
- balance: welding protection is now a part of the armor booster module, no longer
a separate module in syndie suits
- balance: adds a jetpack and holster to traitor modsuit
- Mothblocks:
- - bugfix: Fixed greyscale colors on female fitting versions of clothes.
- ORCACommander:
- - server: cleaned up merge conflict markers in config.txt
- Ryll/Shaps:
- - bugfix: Shooting living mobs with projectiles will no longer cause duplicated
- logs/messages
- SkyratBot:
- - balance: broken drinking/alcohol glass and broken plate shard now hurt you if
- you step on them barefoot.
- - balance: blast doors and shutters are now above windows and doors, and will hide
- them. Both layers have been increased to 3.3.
- - balance: shutters now cost 5 plasteel and 5 coil and 1 airlock electronic and
- take 10 seconds to build
- - refactor: Replaced the old surgery interface with one that is much better to use,
- and lets you choose the body zone within itself.
- - bugfix: Fixed how the diminishing returns of having too much progression scaled.
- It now properly scales exponentially.
- - rscdel: Removed the 'take' option for traitor uplinks in the traitor panel.
- - bugfix: It should no longer be possible to DC admins by spamming grenades.
Ghommie:
- bugfix: blob overminds can now move vertically through station z-levels while
its core hasn't been placed yet.
@@ -486,97 +466,6 @@
as Atmospherics. spriteadd: The Atmospheric Storage Area Turf now has a new
sprite. If you know what that means, I hope you enjoy it. If you don''t, that''s
also fine.'
- - refactor: The environmental atmos scanning ability of the gas analyzer is now
- a component.
- - bugfix: Restores the lost sprites for the Centcom gas mask.
- - code_imp: wrench->closet interactions migrated to wrench_act_secondary
- - bugfix: Ash mark now deals the correct amount of damage and no longer gets stuck
- bouncing between the same two targets.
- - balance: Ash mark is significantly stronger due to this fix.
- - bugfix: Fixes an exploit allowing players to bypass crafting times on spears and
- cattleprods.
- - balance: Wired Rods are now bulky.
- - rscadd: The area where you get to sit with your alcohol has been renamed to the
- Bar Lounge across all the stations.
- - rscadd: Instead of the area between the chapel/holodeck/library/laundry room on
- TramStation being referred to as the "lounge", it's now called "Crew Facilities".
- Because it's, y'know, facilities for the crew.
- - balance: Nanotrasen has updated how they name and define different parts of their
- loot-laden maintenance tunnels. Take a look around you!
- - rscdel: Hooch no longer heals assistants.
- - rscdel: Remove rotation from IV drips.
- - rscdel: 'Rotating objects will no longer leave fingerprints. qol: Add right-clicking
- and left-clicking to rotate objects in different directions for alt click. Left
- is counterclockwise and right is clockwise. qol: Replace to_chat rotation messages
- with balloon alerts to stop redundant chat spamming. qol: Hotkeys for some pipe
- interactions had to be changed. Right clicking on an unwrenched pipe now changes
- the pipe layer. Right clicking on a unwrenched trinary pipe device now flips
- it. Alt clicking handles rotation. qol: Computer frames now have rotation component'
- - bugfix: Fix rotation on wheelchairs to work properly.
- - refactor: Refactored the entire rotation component and all objects that use it. Remove
- a lot of deprecated code to make things cleaner.
- - bugfix: ACTUALLY fixes the Illegal Technology node being unobtainable.
- - bugfix: CTF Limbo's control point timer is now correctly set to 3 minutes rather
- than 6
- - imageadd: On the mapping end, there is now a new area turf sprite for the definition
- of the area where you store all of the parts for telecommunications, or "Telecommunications
- Storage". How gorgeous.
- - bugfix: Making medbots through the crafting menu will now account for using different
- types of medkit and health analyser.
- - bugfix: Reality has shifted around you, and now all parts of the outdoors of IceBox
- Station should now be blanketed in snow whenever one of those storms come around.
- Why was this broken in the first place? Nobody knows!
- - bugfix: Optimized automated movement. Should feel a mite smoother now
- - bugfix: Changed how the singulo eats turfs to hopefully be less of a load on the
- server. Behavior's changed a bit tho, lemme know if anything looks too off
- - bugfix: Bottlers no longer runtime if they run out of beakers/containers to fill
- - imageadd: 'The Suit Storage Units now have a Locked indicator on their lights!
- In exchange, decontamination above safe levels has a slightly different indicator
- (flashing red/yellow) qol: SSU gives chat warnings as to why it blocks decontamination
- (no items/safeties on)'
- - bugfix: SSU panel/super-decontamination icons work properly now
- - rscadd: The SSU super-decontamination also creates a plume of black smoke at the
- end, as the flavor description said it did.
- - balance: Syndieship turrets now target non emagged or non nukie cyborgs
- - bugfix: Removed a duped pipe from Icebox and a duped power cable from Tram.
- Stalkeros:
- - balance: HECU armor set de-spaceproofed.
- coldud13:
- - bugfix: fixes a doubled up scrubber pipe on icemoon
- itseasytosee:
- - bugfix: fixed some skateboard related bugs, including the action button for ollieing
- always being red, and being able to ollie while dead
- jjpark-kb:
- - rscadd: added a smithing skill
- - rscadd: added a smithing skill cloak
- - rscadd: added skill modifiers to forges and anvils for smithing
- - rscadd: added a katana, dagger, pavise shield, pickaxe, and shovel reagent "weapons"
- - rscadd: added the ability to make crank cells (coil on a cell)
- - rscadd: added a forge crafting station; use this to fully finish the items and
- craft reagent things (5 wood)
- - rscadd: added borer cages to the forge crafting station, removed their normal
- crafting recipe
- - rscadd: added a coil recipe to the forge crafting station
- - balance: weapons now inject 1u instead of 0.5u
- - balance: the staff will attack twice as fast (still no damage)
- - rscdel: removed all reagent weapons/armors from crafting menu, use the forge crafting
- station
- tastyfish:
- - bugfix: Teshari no longer have the underwear, undershirt, or socks buttons in
- the character editor.
- - server: Added some more CI linter checks for maps, that are otherwise caught at
- runtime. This will likely fail downstream maps if they're double stacking objects
- which aren't allowed to stack, or misplacing APC's.
- - bugfix: Removed some redundant APC's in the space hotel.
- tf-4:
- - code_imp: The kilt and cardigan are now GAGS instead of polychromic.
- thestubborn:
- - bugfix: Teshari not having pay-check mods.
-2022-02-10:
- SkyratBot:
- - spellcheck: the kiosk scanner wand's description is now better.
- - bugfix: Being in the bar lounge makes extroverts happy once again!
- - bugfix: Unused Rubbershots are no longer invisible
2022-02-10:
ArcaneMusic:
- bugfix: Some food can once again be exported through the cargo shuttle.
@@ -612,64 +501,6 @@
- bugfix: After a union dispute, shuttles can now leave the station in one piece.
Fixes an issue where shuttles would just leave sections and players on the way
out.
- - bugfix: Fix a freak occurrence where random job allocation would sometimes randomly
- assign players to roles that were full, fixing bugs like multiple QMs.
- - bugfix: Some food can once again be exported through the cargo shuttle.
- - spellcheck: The Starfury's spawners no longer reference the now deleted SM. Long
- live the syndicate sm crystal!
- - spellcheck: Gravitational anomaly crates are no longer mislabeled.
- - balance: Nanotrasen finally realized that installing a powerful explosive in their
- most popular cyborg model was stupid, so they replaced it with more robust locking
- system
- - bugfix: you can now set headset channels without them resetting themselves again
- bobbahbrown:
- - admin: Cult rune creation (inscribing?) is now logged on the player panel logs
- as well as the game log.
- jjpark-kb:
- - bugfix: hecu grunt will get their knife now (and ci wont fail)
-2022-02-11:
- SkyratBot:
- - bugfix: Midround antagonists cannot be rolled while the shuttle is docked at the
- station, or already gone to Central Command.
- - bugfix: Wardens have a SecHUD icon again
- - bugfix: Thermal holster now fits in armour suit storage.
- - bugfix: Fixed several common issues with planes and layers, most noticeably potted
- plants and plastic flaps being displayed under mobs and not over.
- - bugfix: You can no longer hear things in space (like flashbangs).
- - spellcheck: Fixes minor spelling error in the guide for synthesising omega soap
- - bugfix: Fire breath can be used even if you can't speak (you're welcome tongue
- tied mains).
-2022-02-12:
- Gandalf2k15:
- - rscadd: New AI vox, BMS standard.
- Lyroy:
- - bugfix: Miners can now add the Supply Utility Uniform, Supply Jacket and Supply
- Gorka Jacket to their loadout as dog intended.
- Melbert:
- - bugfix: Fixes hauntium from runtiming a lot and not haunting people
- - rscadd: 'Large scale heretic revamp! expansion: The Codex Cicatrix is no longer
- a roundstart heretic item. Research is handled through their antag info UI.
- Rune drawing is done by using a writing tool with Mansus Grasp active in your
- offhand. The actual Codex is an unlockable ritual item now. expansion: The Living
- Heart is no longer a roundstart heretic item - their actual heart now becomes
- their Living Heart, and it makes a sound when triggered. Losing your heart (being
- disemboweled) will require you to do a ritual to regain it. expansion: The Hereic
- Antag UI has been overhauled, and now hosts much of their mechanics as well
- as providing some helpful tips for newer players. expansion: Most heretic spells
- now require a focus to cast. All heretics can make a basic focus necklace, and
- some heretic equipment also functions as a focus. (Credit to Imaginos for the
- focus sprite!) expansion: Heretics now passively gain +1 influence every 20
- minutes. expansion: Heretic sacrificing has been reworked. You can now sacrifice
- people who are in soft crit or weaker. Sacrificing someone heals them, cuffs
- them, and teleports them to the SHADOW REALM, where they must dodge a barrage
- of hands to survive. Survive long enough and you return without memory - die,
- and your body will be thrown back. expansion: Heretics now have a few new rituals,
- including the Ritual of Knowledge, a randomly generated ritual that awards knowledge
- points. expansion: Heretic ascension now has a few requirements - you must complete
- your objectives assigned to you prior to learning the final ritual, and all
- the final rituals have been changed a bit! qol: Using the Heretic''s Mansus
- Grasp on surfaces (EX: Rust Grasp) now works on right-click, instead of combat
- mode. qol: Used heretic influences can now be removed with a Anomaly Neutralizers.'
timothymtorres:
- spellcheck: Add a message when infinite pizza is generated.
tralezab:
@@ -739,12 +570,6 @@
functioning without power
- imageadd: gives account registration device a unique sprite instead of weapon
recharger sprite
- - bugfix: Mime finger guns cannot be used while you have something in your hand.
- - bugfix: Dronespeak manuals now can actually only be used on silicons and drones.
- - bugfix: USB cables no longer allow you to bypass the gas pumps pressure limits
- of 0-4500 kPa.
- - bugfix: Hiding inside a container no longer allows you to bypass the tramstation
- perma gate.
RandomGamer123:
- spellcheck: Fixes minor spelling error in the guide for synthesising omega soap
bun235:
@@ -759,7 +584,6 @@
get their power, though.
- rscadd: On KiloStation, there is now a door between Fore and Fore/Starboard Maintenance.
I hope this helps you sleep better at night.
- - bugfix: Chameleon items now cover the correct slots of whatever they're mimicking
- bugfix: If you've been noticing some very-dark plating outside of Engineering,
it has now been fixed.
- rscadd: Engineering Unions are planning strikes after their break rooms have been
@@ -799,173 +623,6 @@
for a shell.
- bugfix: Fixed several things breaking with mobs whenever an integrated circuit
was spawned with a shell.
- - bugfix: Role-restricted and species restricted items can be purchased again.
- - bugfix: Species-restricted items no longer appear in surplus.
- - bugfix: Cargo Officers on Delta have been given a locker
- cacogen:
- - balance: 'Omega soap now has 800 uses instead of 301 expansion: Gave all soaps
- custom grind results, mainly for consistency'
- jupyterkat:
- - bugfix: fix users being able to remove suit restraints effects by struggling out
- of glove restraints
-2022-02-13:
- Melbert:
- - bugfix: Fixes uncommon runtimes that could occur when observers examine heirlooms
- - bugfix: Species without hearts can get Living Hearts now.
- SkyratBot:
- - balance: Polar bear transformation converts health percentage over when you transform.
- - spellcheck: The introduction to the Brig's genpop system has been fixed of a few
- spelling mistakes.
- - admin: Adds a new UI for the proccall circuit component to help with handling.
- Adds an 'resolve weakref' option to enable/disable automatically resolving weakrefs.
- - spellcheck: Fixed missing capitalization in Zealot's blindfold description
- - bugfix: Mice no longer create ants when they decompose. They still create moldy
- dead mice.
- Stalkeros:
- - bugfix: destroying Black Mesa's floors no longer results in space
- - soundadd: Black Mesa's Glock now has a unique sound
- Zenitheevee:
- - bugfix: Cryo Consoles can now use alternative accesses
- jjpark-kb:
- - rscadd: added a xenoarch base (which is public mining)
- - bugfix: you can no longer farm exp for free for imbueing reagent clothing
- - bugfix: you can no longer heat plates, chains, etc. whilst still hammering them
- - bugfix: changed desc of fully upgraded forge from "legendary smithy" to "master
- smithy"
- - bugfix: xenoarch atmos now has lights and cameras
- - bugfix: xenoarch burn chamber is now the appropriate area
- ma44:
- - code_imp: Simple animals can be told (in code) to stop moving around more easily
- - refactor: Simple animals can now be told to go to places more easily
- theOOZ:
- - bugfix: Fixes so the correct name gets returned for E-N's notify_ghost and fingerprint
- when emagged
- - imageadd: Oni and large oni horns added to the selection
- - bugfix: Fixes servelyn tails disappearing on *wag
- - bugfix: fixes the lizard gas posters
- - bugfix: Any emotes with vfx now display properly on tesharis
-2022-02-15:
- CandleJaxx:
- - rscadd: Crew is now allowed to purchase green-colored shirts for use with vests,
- specifically. Personnel found using these shirts for anything other than vest-accompaniment
- will be met with a hefty fine.
- Ebin-Halcyon:
- - imageadd: Mime, HOS, Warden, and HoP uniforms now use their improved upstream
- sprites for digi legs.
- ErdinyoBarboza:
- - bugfix: Fixes the Melee Armor X (100) Mining MODsuits. Now they have a base Armor
- of I (5). They also have lower innate Laser, Bullet, Energy and Bomb Armor since
- they gain it from the ash module
- GuiltyNeko:
- - bugfix: Icebox warden's office is the proper area now.
- Melbert:
- - refactor: Refactored slime link and mansus link to use a component to cut down
- on hard-dels and code duplication.
- OrionTheFox:
- - rscdel: Removed unused Security Sergeant and Civil Disputes Officer code; outfits
- have remained.
- - bugfix: Modular HuD icons have returned, rejoice!
- - imageadd: The NT Rep and Blueshield now have much more legible ID Trims, and Security's
- PDAs are now matching with their Armadyne Peacekeeper2 color scheme!
- - balance: The NRI no longer have Mindshields, so they can show off their fancy
- HuDs.
- - bugfix: Catwalks-over-tiles on Metaskyrat have been removed, and are now catwalk-plating.
- PositiveEntropy, SmArtKar, axietheaxolotl:
- - imageadd: Resprites Black Gloves and Jackboots!
- SkyratBot:
- - rscadd: Ice Box Station got a transplantation, and you should no longer see weird
- ugly pre-determined bald spots. How great!
- - bugfix: If you've been noticing some absurdly dark rocks on KiloStation, rest
- assured that we've fixed them.
- - bugfix: LogAhelp invalid integer - use ticket ID
- - bugfix: fixes modsuit charging
- - bugfix: fixes using the modsuit sphere transformation in zero gravity
- - bugfix: Mappers have removed the soul of fully variable-edited APCs across any
- map that still had them.
- - bugfix: Decaying lockers from the locker staff no longer delete their contents
- when vanishing.
- - bugfix: Janitor cyborg's soap running out of uses will no longer glitch out
- - refactor: make SSrunechat to be subsystem of SStimer
- - bugfix: Syndicate IDs now have a SecHUD icon state
- jjpark-kb:
- - rscadd: experi-scanners on all z-levels will connect to the station techweb
- - rscdel: removed bimbo and sexual obsession traits
- theOOZ:
- - imageadd: Adds two new bunny ears (they are large)
- - imageadd: Adds an alternative bunny tail
- - imageadd: Adds another bunny snout
-2022-02-16:
- GoldenAlpharex:
- - bugfix: Ghosts will now get back to bobbing up and down after they're done orbiting
- something, as intended.
- MMMiracles:
- - rscadd: Tramstation's medical wing has been revamped once again to maybe not be
- as bad as before.
- Melbert:
- - admin: Changeling powers are now logged in uplink log.
- SkyratBot:
- - bugfix: Fixed blacklight and red lights being brighter than intended
- - admin: Urgent ahelps will now send more information to admins to assist with handling
- your ahelp.
- - rscadd: Added the ability to equip the backpack firefighter tanks with atmospheric
- modsuits.
- - rscadd: Added waterbackpackatmos to belt_mirror.dmi
- YakumoChen:
- - balance: Forge weapons and shields have been heavily rebalanced, their descriptions
- now show what potential uses they have.
- - balance: Tribal weapons are now ashwalker-only
- - balance: 'Bone spear was nerfed. qol: adds a bone sword to the ash walker village.'
-2022-02-17:
- AshTheDerg:
- - rscadd: Added Cyborg Drink Shakers
- - rscadd: Added Cyborg Medical Hypo
- - rscadd: Added Cyborg Mop
- - rscadd: Added Cyborg Light Replacer, as well as recharge code
- Ebin-Halcyon:
- - imageadd: Upstream sprites for Jackboots that fit on digitigrade + Teshari security
- clothing that fit the upstream look
- GoldenAlpharex:
- - bugfix: Disabled tgchat's ping feature in an attempt to stop it from failing to
- display certain messages.
- Ironnhawk:
- - code_imp: Fixed the check to determine for players who SSD from Disconnection
- and still have a Mind loaded.
- Melbert:
- - admin: Force-completing heretic objectives in the traitor panel count for ascension,
- if you wanna skip the queue.
- Nari Harimoto:
- - bugfix: icebox now has one, and only one, APC per area
- Nerev4r:
- - balance: Synths now take less damage, though a bit more than humans do.
- - balance: Synths now take half the stun they previously did from EMPs, and half
- the brain damage. Slightly less physical damage.
- - bugfix: Tend wounds no longer applies to robutts.
- - rscadd: Adds slightly more (BBQ) flavor to synth EMP messages.
- - balance: Synths no longer revive from just healing them, try the new..
- - balance: Synthetic chassis restoration surgery has been reworked to just reviving
- them.
- - balance: Synthetic brain surgery is now repeatable.
- - balance: It now takes a little bit to apply welding/cables to someone else.
- OrionTheFox:
- - rscadd: Nanotrasen's Frontier Division, while still not able to intercept enemy
- communications, has decided to at the least supply their stations with a shift-start
- Divergency Report, listing all station Traits and Goals for that shift!
- SkyratBot:
- - bugfix: The Lizard's Gas will no longer start out with Active Turfs at the start
- of a round.
- - imageadd: resprites the mailman outfit
- - balance: Nanotrasen upgrades Anti-Tider back pack and find a way to make a compact
- version for security modsuit, researchers still high on caffeine creates module
- version of atmos resin backpack
- - bugfix: Syndicate quickly steals designs and applies them to their pyro backpack
- transforming it into module names:Fikou for almost entire code work, TGMC for
- sound and Cursed Birb
- - bugfix: Honkbots now no longer spam you and break the game
- - imageadd: RCDs' Radial Menu new uses the updated Chairs, ID Cards, Stools, and
- Walls. 2562.
- - rscadd: The Chaplain's office was split in two by maintenance on Kilostation,
- and Nanotrasen has finally bothered to install an APC in the part where all
- of the caskets were kept.
- expansion: Adds a trigger version of the current variable setter circuit component.
- bugfix: Fixed active objectives spontaneously failing over time.
cacogen:
@@ -1010,8 +667,6 @@
- bugfix: Venus human traps' vines now get deleted after they die.
- bugfix: Unsuitable cold and heat damage for simplemobs don't get overrided by
unsuitable atmos damage anymore.
- - bugfix: Staff at Centcom are busy people! They are no longer allowed to go on
- valentines dates.
RaveRadbury:
- qol: Added a day to the start of the Valentine's event.
Watermelon914:
@@ -1111,40 +766,6 @@
- rscadd: In order to give such an important area a much needed upgrade, Nanotrasen
added an whole extra three cubic meters to the medical area of the Security
division of the station. Feel free to kick out those legs.
- Zenitheevee:
- - balance: removes milk's healing and usage from breastmilk.
- jjpark-kb:
- - balance: ash tools/clothing costs less materials
- - code_imp: ashwalker-specific recipe code improved
- jupyterkat, weirdbutton, lamella, the_catfish:
- - rscadd: Shibari bondage ropes
- - rscadd: Shibari bondage stand
- theOOZ aka ghostsheep:
- - imageadd: 'Adds the MekaNIKA cyborg skinline to: peacekeeper, medical, janitor,
- service, cargo-technician, syndicate, and ninja modules'
-2022-02-18:
- SkyratBot:
- - spellcheck: Makes it so the loader modsuit says it is not airtight with examined.
- - bugfix: Gunpowder and teslium once again use their intended explosion scaling.
- Which is to say "more" and "not".
- jjpark-kb:
- - bugfix: vines are back in maint as they should
- - code_imp: update our vines to be more in line with /tg/ (besides the cold temp)
-2022-02-19:
- Ebin-Halcyon:
- - imageadd: Some jean types fit on digitigrade legs now
- - imageadd: Hawaiian shirts now look nicer
- OrionTheFox:
- - rscdel: Removed Loincloths; the Ashwalkers much preferred their own ashen garb
- anyways.
- SkyratBot:
- - balance: Gave the Saints Suit cold protection.
- - bugfix: Following numerous reports, CentCom has downloaded more RAM into the Orion
- Trail arcade machines, thus drastically reducing the occurrence of loading screens.
- - bugfix: Fix cigarettes icon to update properly when extinguished.
- - bugfix: Fixes an issue with the Ian respawning side of the "Ian Adventure" station
- trait.
- - soundadd: Brimdemons have a different laser firing sound.
- rscadd: The Chaplain's office was split in two by maintenance on Kilostation,
and Nanotrasen has finally bothered to install an APC in the part where all
of the caskets were kept.
@@ -1214,23 +835,6 @@
to work with being emissive.
- refactor: Internally refactored status display visual updating, so that it retains
state across power loss, etc.
-2022-02-20:
- SkyratBot:
- - admin: Facehuggers leaping onto people's faces is now logged in the facehugged's
- combat logs.
- - bugfix: Fixed progression traitor uplinks suddenly changing owners when implanted
- with an uplink implant.
-2022-02-21:
- Melbert:
- - bugfix: Void's ritual of knowledge is void path correctly
- - refactor: The Anomaly Neutralizer uses the effect remover component now
- - bugfix: Fixes heretic target assignment. They should actually be getting Heads
- of Staff and such as intended as sacrifice targets.
- Ryll/Shaps:
- - admin: asay pings now have their own unique sound instead of sharing the vote
- prompt sound
- SkyratBot:
- - bugfix: arm implants breaking the drop key
thestubborn:
- balance: Gave the Saints Suit cold protection.
timothymtorres:
@@ -1255,121 +859,6 @@
of requiring a progress bar, and ID card holders like PDAs and wallets can also
be directly used on it without having to remove IDs. It still blows up when
all ID cards with bank accounts have been swiped on it or after 8 minutes.
- - balance: every modsuit theme can hold more stuff in suit storage
- - bugfix: Snow will now behave properly inside ruins on IceBox Station.
- - balance: Paramedics no longer have access to Auxiliary base, the Supermatter engine
- room (including insuls), the Cargo shuttle, and EVA. Use a Medical MODsuit instead,
- you lazy bum!
- - balance: Paramedics now have access to Mining bay.
- - bugfix: Clown cyborg soaps will no longer bug out after running out of uses
- - bugfix: fixes smooth movement breaking sometimes
- - imageadd: For those on the mapping end, the Science Breakroom now has a new area
- turf sprite, bringing it in line with the likes of Medical and Engineering.
- Believe me, it helps.
- - bugfix: Nanotrasen has fixed up the space area surrounding the AI Upload on KiloStation.
- The cameras should work a bit better now, and the excess lights were removed.
- You probably won't notice the latter, though.
- - bugfix: 'TGUI static data loading screens no longer resize the window temporarily.
- Note: If you are using a UI that gets a lot of these, please make an issue report.'
- - balance: Malf AIs can detonate their borgs at the robotics console once again.
- - imageadd: Cytology Lab and two different variations of the Central Hall have had
- their sprites corrected into splendidly new ones.
- Stalkeros:
- - soundadd: Mesa's Glock-17's firing sound is back.
- Toastgoats:
- - imageadd: New space dragon sprite!
- ErdinyoBarboza, ToryJ for making me code dive:
- - balance: Nerfed Base Laser damage to 22 from 27
- - balance: Nerfed the MCR Laser damage to 20.
- - balance: Made the undercharger no longer give grip bonuses when activated.
- - balance: Repeater beams do 15 damage each for a total of 30 damage.
- - balance: Scatter beams do 10 damage each for a total of 30 damage.
- - balance: Moves the superheater upgrade to an illegal MCR attachments tree.
- - balance: 'Superheater lasers do 15 damage but still keep 2 firestacks. expansion:
- Adds Hellfire upgrade in place of superheater, deals 25 damage and has the wound
- bonuses of hellfire lasers. expansion: Adds a Lance upgrade that gives the MCR
- the firing delay of 2 seconds however it fires a Heavy Laser beam at twice the
- projectile speed. expansion: Adds an Illegal Repeater upgrade that does the
- same damage but has 50 armor penetration. expansion: Adds an Illegal Scatter
- upgrade that shoots 7 pellets for a total of 45 damage. expansion: Adds an Illegal
- suppressor upgrade. It suppresses the laser somehow. expansion: Adds two new
- cargo crates for MCR attachments. expansion: Adds a Clown Tech extension for
- MCR''s, a bikehorn upgrade that makes you shoot yellow beams of slipping and
- low stamina damage. expansion: Adds 3 new skins to the MCR.'
- - balance: Lowers the attachment slots of Advanced Cells to 2 and BS Cells to 3.
- - balance: Makes loading a new Cell into the MCR take 4 seconds while tactical reloading
- takes 6 seconds.
- - balance: Adds a reloading assister attachment that makes loading a cell take 2
- seconds.
- - balance: Adds a tac-reload helping attachment that makes tactical reloads 3 seconds.
- - bugfix: Makes the MCR ammo boxes use their actual sprite.
- - spellcheck: Fixes some of the comments in the MCR Module.
- - imageadd: Adds sprites to the afformentioned additions.
- Wallem:
- - imageadd: Departmental protolathes/techfabs have colored stripes to tell the departments
- apart.
- Zenitheevee:
- - rscadd: Puts in 5 new crates for Cargo, themed around near-impossible to obtain
- items for non-chef-accessible personel
- - code_imp: Removes the bloat cargo file and re-fits its contents into the packs
- file
- Zonespace27:
- - balance: Feather tickling is now a +0 mood bonus instead of a +4
- - spellcheck: Conflicting message about the HoP managing supply is now corrected.
- - refactor: Refactored some organic interface update items.
- - refactor: Refactored yet more organic interface items
- jjpark-kb:
- - rscadd: added back bimbo trait/trauma
- kannthus:
- - rscadd: Ghost Cafe - Beach Resort
- malleyeno:
- - bugfix: Fixed bug where pre-made Ashwalker names were overwritten by a random
- lizard name.
- softcerv:
- - bugfix: High-Heel Jackboots no longer bring up a reskin menu.
-2022-02-22:
- GoldenAlpharex:
- - bugfix: Fixed the weird description when you hit the *say hotkey.
- PositiveEntropy, Naevii:
- - imageadd: Resprites the Head of Security Greatcoat!
- - imageadd: Resprites the object icon of the Head of Security Trenchcoat
- Zonespace27:
- - rscdel: 'Progression traitors no longer have end-of-round objectives (notably
- the reputation-requirement objectives), your greentext is guaranteed, folks.
- qol: Antagonists get a reminder to follow RP rules at roundstart. qol: OPFOR
- has an action button now.'
- jjpark-kb:
- - balance: drones are no longer shy (they are not restricted)
- - rscadd: added fishing attachments (check misc crafting tab)
- - balance: doubles strange rock chance in fishing
- - bugfix: water basins can be upgraded now by journeyman smithies
- - balance: lowered reagent cap in reagent forging items from 500 to 250
- - balance: lowered required reagents in reagent forging from 200 to 100
- - balance: increased the amount of cores required to start reagent forging from
- 3 to 6
- - balance: reagent weapons will now directly inject the chemicals without snowflake
- code
- softcerv:
- - balance: The CMO Hypospray can now pierce thick clothing.
-2022-02-23:
- ErdinyoBarboza:
- - bugfix: Makes the Icebox Gulag in line with the TG map by adding the plasma moat.
- Now gulag is actually secure.
- - bugfix: Fixes the wrong turfs in Icebox Gulag.
- - bugfix: Fixes the wrong turfs in Metastation
- - bugfix: 'Fixes the empty ingredient boxes in Icebox Perma. qol: Gives Meta and
- Delta station genpop lockers instead of the basic variant. You can use the prisoner
- ID on them to link them. qol: Gives Meta and Delta Perma Ingredient boxes.'
- - bugfix: Gives Icebox the missing Blob Spawns on Security and Service 2nd Z Level
- - bugfix: Gives Icebox Locker Room actual personal lockers
- Gandalf2k15:
- - bugfix: The HEV suit now functions again.
- GoldenAlpharex:
- - bugfix: Ghosts are 100% less afraid of bobbing up and down, and will no longer
- keep their orbit when they shouldn't be keeping it.
- Melbert:
- - bugfix: Eldritch Amulet no longer gives thermal vision when it shouldn't
- SkyratBot:
Watermelon914:
- bugfix: Fixed progression traitor uplinks suddenly changing owners when implanted
with an uplink implant.
@@ -1454,112 +943,11 @@
nothing
- refactor: Mech punch code partly redone
- admin: mech punches will now ALWAYS be logged, even against objects
- - code_imp: adds p_theirs() proc
- - code_imp: reshuffled some mech bay code please report issues on the github
- - bugfix: An odysseus' sleeper will now realize when a previously contained patient
- has left the sleeper through unconventional means.
- - bugfix: 'Non-dense mobs will no longer knock monkeys over (Ex: Revenants, Bots,
- Lizards, Alien larvas).'
- - balance: 'Blobs can destroy mineral turfs like they can walls qol: Adds balloon
- alerts for blob overmind qol: Adds contextual screen tips for blob overmind
- qol: Off-station blobs are lighter than regular blobs'
- - bugfix: Fixes bug where on-station blobs were not counted towards victory when
- expanded from off-station blobs
- - bugfix: Fixes issue with cores and nodes having their color applied twice
- - rscadd: Ratfish can now be found in moisture traps.
- code_imp: reshuffled some mech bay code please report issues on the github
- bugfix: fixed distortion effects cutting each other
Wallem:
- rscadd: Some prisoners have been complaining about the cold weather in the permabrig,
so we've dug through disposals and found a couple hats for 'em.
- YakumoChen:
- - refactor: MCR lathe design stuff
- - bugfix: A bug in one of the material costs for one of the camos
- Zonespace27:
- - code_imp: Split OPFOR's equipment file into smaller, category-based ones
- - admin: Some of the more powerful OPFOR items have admin notes attached to them
- detailing why they're so good.
- - bugfix: OPFOR action button should now properly appear.
- jjpark-kb:
- - rscadd: 'meta station: added a drone dispenser'
- - rscadd: 'drones will now slip through doors if they are unable to bump open them
- qol: drone dispensers have materials roundstart qol: drones are now assigned
- a number 100-999 in their name qol: drones now have removable backpacks qol:
- drones now have AA'
- - admin: drones now have their machinery interactions logged
- tastyfish:
- - rscadd: Made air alarm and keycard authenticator emissive.
- - imageadd: Updated air alarm and keycard authenticator sprites to work with being
- emissive.
-2022-02-24:
- ErdinyoBarboza:
- - balance: Vintage Renaissance Crate's content has been rebalanced. The shoes are
- no longer noslip, gloves do not provide insulation and overall rebalances the
- armor values
- - refactor: Modularizes the Vintage Renaissance Crate
- Gandalf2k15:
- - rscadd: New sprites for the FG42, MG34, STG44 and PPS.
- - rscadd: MG-9V GPMG and P-09X.
- Melbert:
- - admin: Fixes some heretic logs. Final knowledge uplink log should be clearer,
- and ghoul admin message no longer has a typo.
- OrionTheFox:
- - imageadd: Added/Tweaked Skyrat-override icons for the Combat Wrench, Caravan Crowbar,
- Chem/Mining Plumber, ARCD, E-Welder, Powertools (Now yellow!), and Syndie Inducer
- - imagedel: Removed lots of unused or redundant icons from the tools.dmi override
- file
- SkyratBot:
- - bugfix: Fixes radio gloves being uncraftable
- - bugfix: Fixes a blue screen in the Pandemic from loading multiple viruses.
- - balance: On IceBoxStation, Nanotrasen has finally stopped clearing out excessively
- large swatches of land for the gulagged prisoners in order to help them work
- for their points.
- - rscadd: Nanotrasen has now made it so that the room that you launch your home-made
- bombs from is now known as the "Launch Site" across all five stations.
- - bugfix: 'Makes the IceBoxStation Underground (Level 2) wastes immune to radiation
- and also paints the maintenance as such to let people take shelter. qol: Makes
- the IceBoxStation Service Hall Exit into a properly cycled airlock system. qol:
- Icebox Locker Room now has real personal lockers once more. qol: Icebox Service
- Exit is not properly mapped with external airlocks and cycled doors.'
- - bugfix: Fixes beam rifle not causing an explosion on impact mode.
- - bugfix: Ratfish can now properly show up in moisture traps
- - code_imp: Moisture traps are coded a little better now
- - spellcheck: fixed some wording in the moisture trap bite feedback
- - bugfix: Players are no longer able to create walls using sheets that arent linked
- to a material
- - bugfix: Holy water's cult deconvertion timer now resets when transferred to a
- new mob
-2022-02-25:
- Ebin-Halcyon:
- - imageadd: Security medics have gotten a new shipment of clothing
- Gandalf2k15:
- - bugfix: OPFOR no longer bluescreens.
- OrionTheFox:
- - imageadd: added a new icon for the pet crate that matches the other crates
- - imagedel: deleted lots of redundant or unused icons, including some that were
- overriding TG's the-same-but-greyscale benches
- PositiveEntropy, Retlaw34:
- - imageadd: Resprites the Suit Storage Unit into a 3/4ths perspective!
- SkyratBot:
- - bugfix: disktoaster storages now have their proper lights. all hail the toaster
- - bugfix: Added the missing variable "plane" to floor lights.
- - spellcheck: Claustrophobics will now breathe instead of breath.
- - bugfix: fixes Metastation hydroponics shutter access
- - balance: Thieves can no longer scale, and can only run once.
- - balance: Increased the number of thieves by 2.
- - bugfix: Frostoil reagent will no longer achieve negative temperature when exposed
- to air. Changes behaviour to make air converge to 2.7 kelvin instead.
- - code_imp: Any object that inherits the simple_rotation component will always use
- AltClick.
- kannthus:
- - rscadd: Beckoning gesture in interactions (Ctrl+Click)
-2022-02-26:
- SkyratBot:
- - spellcheck: Space dragons are now "it" instead of "he".
- - imageadd: HONK Co. Pranks have released a new set of stencils for any cardboard
- cutouts you might find lying around, these ones EXTRA "RR-REAL HELP M-". Whatever
- that means.
-2022-02-27:
cacogen:
- qol: RPED now swaps in cell with greatest charge (of highest tier) first
- balance: Blobs can destroy mineral turfs like they can walls
@@ -1600,35 +988,6 @@
- bugfix: Liverless creatures can no longer retain the effects of gravitum indefinitely,
as it will now decay in their bodies (just as it does in the bodies of livered
creatures).
- Melbert:
- - bugfix: Fixes a few potential issues with heretic rituals.
- - code_imp: Adds proper stack support to heretic rituals. Also allows for more specific
- "ritual failure" feedback.
- OrionTheFox:
- - rscdel: Nanotrasen has tidied up the tram platform on the Interlink
- SkyratBot:
- - bugfix: The pAI candidate menu now properly switches between IC and OOC comments.
- - code_imp: Implements some missing SDQL 2 wrappers.
- - bugfix: wall decals on survival pod ruin should be on the pod walls now
- - bugfix: Bicycles can now be repaired with a welder and have actually sensible
- max_integrity and integrity_failure values.
- - rscadd: On Tramstation, Nanotrasen installed new APCs on the lower aspects of
- the Science Division.
- - rscadd: MetaStation's Maintenance Area Plans have been redrafted. Expect to see
- a few new APCs here and there.
- - bugfix: Took out an extra apc in deltastation transfer center which screwed with
- the power
- - bugfix: Adjusted cargo tech jumpsuits and jumpskirts now show your arms from all
- angles, and the adjusted cargo jumpsuit now uses the normal jumpsuit legs instead
- of the digitigrade ones.
- - bugfix: AI's "O" sound on vox now sounds like an O instead of an I.
- - bugfix: Monkeys can no longer bite people to give them heart attacks
- - spellcheck: Nanotrasen found out that the factory for glass floors were capitalizing
- their names, so they promptly shut down the factory to build a new one for the
- express purpose of not capitalizing their names.
- - bugfix: Examining cells won't say they have 0% charge when the overlay indicates
- they don't
- - code_imp: Fixes some code style issues for more free GBP
Christmas5:
- bugfix: Added the missing variable "plane" to floor lights.
JohnFulpWillard:
@@ -1700,11 +1059,6 @@
- balance: Splits biobags into virology & science bags. Virology bags can't hold
slime cores or cytology equipment, and science bags can't hold medipens & bloodbags.
- imageadd: Changes all storage bag sprites
- Zonespace27:
- - bugfix: There is no longer a "generic" item in the OPFOR services tab.
- tastyfish:
- - bugfix: Opening an air alarm panel now renders the overlays correctly.
- - rscadd: Most status displays now have USB support for circuits.
cacogen:
- bugfix: Examining cells won't say they have 0% charge when the overlay indicates
they don't
diff --git a/html/changelogs/archive/2022-03.yml b/html/changelogs/archive/2022-03.yml
index e9ee9eca778..446176adfc5 100644
--- a/html/changelogs/archive/2022-03.yml
+++ b/html/changelogs/archive/2022-03.yml
@@ -314,291 +314,6 @@
is now referred to as the "Pump Room". You can get some weights in there to
train your trapezoids and deltoids (and a bit of bicep/tricep action), but that's
up to you.
- SpaceVampire:
- - balance: Heretic sickle-sword now does 8 more damage, and has slight armor pen.
- - balance: Heretics are now able to have more of their weapons summoned at once.
- - balance: Heretics start with 1(one) extra free bonus point.
- - balance: The gift of Mansus becomes ever more temping, as those granted with the
- power of a Heretic now receive greater strength from sacrificing targets.
- Wallem:
- - bugfix: 'Cleanable decals will try to merge their reagents before they delete
- if they have mergeable_decal = TRUE, meaning ants will now properly stack their
- reagents when they spawn on the same tile. qol: Ants no longer spawn on lavaland''s
- basalt.'
- dekunutkid:
- - bugfix: Replaced starting Biobag in Interdyne Xenobio with a Xenobag
-2022-03-15:
- SkyratBot:
- - bugfix: Clown tears will no longer explode on creation.
- - bugfix: Centcom will no longer include empty "Identified Shift Divergences" sections
- in their reports (which would previously occur every time there were only hidden
- station traits present).
- - bugfix: On KiloStation, there is no longer a weird floor decal on a wall. Nanotrasen
- has commissioned an institution-wide inquiry to find out which joker put it
- there.
- - bugfix: fixed an outdated quip about purchasing an ordnance paper.
- - bugfix: 'added the ordnance circuitboards to the techweb, forgot about this in
- the original pr. qol: added a small tooltip to the compressor buffer port.'
- - bugfix: Cheese wheels and royal cheese no longer count as cheese wedges for recipes.
- - code_imp: Cheese wedges are no longer the superclass for all cheese.
- - code_imp: Updates `init_gaslist_cache` to match current code standards.
- - bugfix: Removed the extra keycard auth device hidden under the CE's extinguisher
- cabinet
- - spellcheck: fixes double the in motion cameras
- - bugfix: Fixes the syndie screwdriver using the wrong belt sprite.
- - imageadd: Added belt sprites for the syndie screwdriver and all alien tools.
- - bugfix: Fixed firelock screentips telling silicons they could knock or bash them
- - bugfix: 'Fixed firelock screentips saying bash with combat mode off and knock
- with it on (it''s the opposite) qol: Adds firelock screentips for silicons,
- monkeys and xenos'
- - code_imp: Removes a forgotten devil proc in photocopier code.
- - bugfix: Fixes airlock reinforcement not being removable.
- - refactor: Heavily refactors reinforcing and un-reinforcing airlocks.
- Zonespace27:
- - rscadd: Added a new wall-piercing LOOC verb.
- dekunutkid:
- - rscadd: Added an oven, LustWish and autolathe to the Space Hotel.
- - rscadd: The Space Hotel pool now uses Azarak's liquid system, and maintenance
- grilles in the Hotel no longer shock you.
- tastyfish:
- - bugfix: Geese now act like geese if provoked again.
-2022-03-16:
- Ryll/Shaps:
- - bugfix: Dog AI's should no longer lock up and become unresponsive after failed
- fetch attempts
- - soundadd: Dogs in harass mode that are guarding against someone will now make
- growling sounds
- SkyratBot:
- - bugfix: fixes the doppler array nullifying some of your bombs.
- - bugfix: Armsky and Pingsky aren't pAI controllable anymore.
- - rscdel: Lean has been removed entirely from the game
- - bugfix: Water vapor should wet and freeze floors once again.
- Wallem:
- - rscadd: Seeing how many miners we lose on a weekly basis, we've decided to dig
- through some of our prototypes to get something to help you all. Your venders
- have been supplied with Kheiral Cuffs, a wrist-worn suit sensor range booster.
- Note that any accelerated aging caused by the device will not be counted towards
- your retirement.
-2022-03-17:
- Fikou:
- - imageadd: new punching bag sprites!!!!!!!!!!!!!!!!
- LeonY24:
- - rscadd: P-90 submachinegun, chambered in .32 ACP.
- SkyratBot:
- - bugfix: Pride pins can be reskinned again, accessories whose location can be toggled
- now do so with right-click.
- - bugfix: The Syndicate realized that the indoor portion of their top-secret Nuclear
- Operative base actually partially owned some of the outside portion of the planetary
- body it rests on. It has been corrected.
- - imageadd: The police baton has been resprited into a handsome beatin' stick worthy
- for a lone-wolf detective who doesn't play by the rules to whack perps with.
- - bugfix: Fixed two firelocks being on the same tile in the Starfury.
- - bugfix: Podpeople now take self-respiration into account when taking damage from
- critical condition, like most other species.
- - admin: Silicon law logs are shorter and easier to read
- - bugfix: supply pods, crab-17s, explosions in general(?), and ash drakes(?????????)
- no longer make a shattering sound.
- - code_imp: turns some "if ("s into "if("s in sound.dm
- Zonespace27:
- - rscdel: Barnyard curse is no longer an OPFOR item
-2022-03-18:
- ErdinyoBarboza:
- - bugfix: Security Snowmobile storage no longer depressurizes entire security
- - bugfix: Fixes some minor turfs in MetaStation
- - bugfix: Adds the no ruin generation turfs to IceboxStation
- Melbert:
- - bugfix: Makes the wizard's Lich Phylactery mechanic actually work consistently.
- - bugfix: The description of the Bind Soul spell (and entry) should match its behavior
- a bit more accurately now. You will revive regardless if your body is destroyed
- or leaves the z-level. With each revival, the time it takes to respawn does
- not change, but the duration of the stun does.
- - refactor: 'Makes Phylacteries a component. qol: Gave Lich Phylacerties some QoL
- features and pizazz. Examining it''ll offer more information to wizards and
- ghosts.'
- OrionTheFox:
- - bugfix: fixed the skyrat boxes having a few borked icons
- - imageadd: shotgun shell boxes and plastic boxes have undergone some respriting
- SkyratBot:
- - bugfix: Using telekinesis will no longer break chameleon.
- - bugfix: Fixes being able to spam deny sounds on deliver first crates.
- - bugfix: Prevents invalid materials being used on airlock assemblies.
- - imageadd: On the mapping end, the Diner now has it's own area turf. If you don't
- know what that means, just know that it's a good thing.
- - bugfix: drones are no longer shy around maint rats and such
- - rscadd: Parts and Machine frame to build an ORM from the golem ship
- - rscdel: Removed Prebuilt ORM from the golem ship
- - bugfix: soulscythes are now immune to mining planet storms
- nikothedude:
- - rscadd: All job-default jumpsuits have been resprited to be taur-compatable, and
- a few more.
-2022-03-19:
- AtoriBirb:
- - bugfix: Missing 'suspected' icon set
- Ebin-Halcyon:
- - imageadd: Upstream medical and security clothing now fit on digi legs
- ErdinyoBarboza:
- - code_imp: Ceramics and Glassware use Cargo Crate Value Pricing. They will now
- follow the current economic pricing.
- - balance: 'Balances the pricing of Ceramics and Glassware by making them more in
- line with the rest of the economy expansion: Adds more exportables to opiates.'
- Gandalf2k15:
- - balance: You can now move while tactically reloading a weapon.
- - bugfix: Magazines will no longer drop onto the ground during tactical reloads.
- RatFromTheJungle:
- - rscadd: Added depart-mental armbands to the loadout.
- SkyratBot:
- - code_imp: tgui chat now supports embedding components into it via html attributes.
- Go make the game look better lads.
- - rscadd: 'On DeltaStation, IceBoxStation, and TramStation: Nanotrasen has now blocked
- off the area informally known as the "Cargo Lobby", and formally defined it.'
- - rscadd: Random Poster Spawners now have directional variants. You don't have to
- memorize the pixel offset for those anymore (it was 32).
- - rscadd: Rather then being tileable with just floor tiles, lavaland turfs, asteroid
- and snow (among other things) now support lattice -> floor tile construction
- - bugfix: Because of the above, you can now properly fix the icebox mining shuttle
- - refactor: Non floor turfs are no longer typed as floor. This may break things,
- please yell at me if it does
- - bugfix: Ants now don't appear on icemoon/space asteroids, rather than only lavaland.
- - imageadd: further medkit tweaks
- Tastyfish:
- - rscadd: The syndicate managed to stuff an entire flock of geese into a grenade.
- Be careful.
- Zenitheevee:
- - bugfix: previous black market chevvy driver fired for drunk parking, ship returned
- to the trader station.
- Zonespace27:
- - admin: Added a new subsystem that messages admins every 3 minutes if there are
- any open, unhandled OPFORs/Staff tickets
- - bugfix: Wiki page that the NTR is linked to is now correct.
- - bugfix: OPFOR services should no longer create gibs
- - bugfix: Exploitable Information verb now gets properly removed when your antagonist
- status is.
- - rscadd: Purchase fake announcements from a traitor uplink for 3 TC.
- - admin: New admin verb, View-OPFORs. Equivalent to the OPFOR section of check-antagonists
- without the bloat.
-2022-03-20:
- Dex:
- - bugfix: Fixed training toolbox sprite
- GoldenAlpharex:
- - bugfix: Fixed a merge conflict in our codeowners file. Sorry Cobby, no more pings
- for you!
- SkyratBot:
- - rscadd: resonators will now have their fields spread
- - bugfix: 'Fixed a potential BSOD in its TGUI if no painting was ever archived.
- qol: The AI Portrait Picker also got a similar treatment.'
- - bugfix: Fixes issue with low/no power screen alerts not clearing after leaving
- a mech
- jjpark-kb:
- - bugfix: bringing back the xenoarch base
-2022-03-21:
- SkyratBot:
- - balance: allows you to heal using plasma fixation in minor amounts of plasma such
- as in Icebox's atmosphere
- - bugfix: The reality-defying cheese wedge in the Entemology Outreach Center on
- Icemoon has been succesfully contained and replaced with a normal one.
- - rscadd: Adds the Format List and Format Associate List wiremod component, for
- ease of formatting lists of items.
- Zonespace27:
- - rscadd: Contract Kit now available via OPFOR menu.
- - code_imp: Refactored contractor kit code
-2022-03-22:
- SkyratBot:
- - bugfix: fixes medical scrub being named "under"
- - bugfix: Fixes a runtime in build mode's KABOOM.
- - bugfix: Prevents iron/adamantine/yellow slime cookies from being to able to stack
- their bonuses.
- Zonespace27:
- - bugfix: Contractor kit opfor item now spawns the correct item
- - bugfix: Contractor MODSuit now looks correct
-2022-03-23:
- Ghommie:
- - rscadd: 'Added a palette component for palettes and spraycans: Right click the
- item while it''s in your active hand to access a radial menu that allows you
- to store, select or edit up to 14 colors for palettes and 8 for spraycans. Right-Click
- one of the color to pick a new color value, Left-Click to select it. qol: Furthermore,
- a graphical palette containing the colors of the palette component will show
- up in the Canvas UI when painting with a tool that has said component, allowing
- you to select colors without unfocusing from the UI window.'
- - rscdel: Removed the ctrl-click (color picker) shortcut from spraycans, as I felt
- it to be too clunky and no longer necessary now (I'm the person that made it
- btw).
- Jolly:
- - rscadd: Charlie and Delta Storage rooms were added (as an area).
- - rscadd: Charlie Dorms were added (as an area).
- - imageadd: Fresh coat of paint for the Old Station (Charlie Station ruin) area
- sprites.
- - bugfix: The Beach Biodome had the water turf corrected, and as such, shouldn't
- have atmos issues.
- Melbert:
- - balance: Flesh Heretic's summon objective now counts all summons done, alive or
- dead, instead of all alive summons. Still does not include flesh ghouls or voiceless
- dead.
- SkyratBot:
- - bugfix: The Kilostation chapel has less stacked turf decals. They're still around,
- though.. Watching. Waiting... Additionally, magic power has been NUKED from
- the maintenance room back there. Pour one out.
- - bugfix: All lights (and cameras) in the Kilostation chapel have been PREPARED
- FOR THE FUTURE. And by the future, I mean the wallening.
- - bugfix: BCI overlays now actually work
- - imageadd: Changed BCI counter overlay numbers to make them more readable
- - bugfix: Blood-spread-only diseases will no longer always spread upon exposure
- to blood.
- - bugfix: Fixes two random lattices in the bottom corner of the Cent Com map
- - bugfix: Fixes the description for mice being incredibly rude, judgmental, and
- insulting towards mice, who are objectively adorable.
- - bugfix: Recyclers no longer eat their own parts when dismantled.
- - bugfix: Fixes tritium fires not releasing radiation when they should.
- - bugfix: Fixes water vapour condensation requiring a temperature 20K lower than
- usual.
- - code_imp: Adds defines for tritium fire radiation stuff.
- - bugfix: Fixed runtime on Give screen alert where a proximity check was happening
- twice
- - bugfix: Fixed being able to take things as a dead person
- - bugfix: Bluespace shelters now come with a ceiling.
- - code_imp: Added optional automatic ceiling generation for map templates.
- - bugfix: Makes shuttle engine crates actually purchasable if you bought the BYOS
- shuttle.
- - bugfix: Proximity sensors inside chemical grenades should work now.
- - bugfix: blob spores and game-controlled blobbernuts no longer get stuck thinking
- they can't walk thru blob tiles. This has been broken for over a year and so
- you should expect blob spores to be more of a threat then you are used to.
- - imageadd: adjusted black undershirt side sprites to be more in line with the front
- sprite
- - imageadd: adjusted white undershirt side sprites to be more in line with the front
- sprite
-2022-03-24:
- AtoriBirb:
- - imageadd: 4 new plush sprites to plushies.dmi
- OrionTheFox:
- - rscadd: Added a fakelattice you can walk through, and adds it to the Ghostship/Salvagepost
- ruins. Now you can explore them, whoops.
- RatFromTheJungle:
- - bugfix: you can now actually, research the advanced vision node, and all statements
- saying I forgot to add it are slanderous.
- Seris02:
- - bugfix: the HoP winter coat has been separated into two coats, and the old icons
- that were supposed to be put in in the last fix PR for it are actually now back
- in the files.
- SkyratBot:
- - bugfix: Fixes being able to use revival surgery on blacklisted defib victims
- - imageadd: On the mapping end, the Abductor Ship, the Wizard's Ship, and the Thunderdome
- Administration and Observation Areas now have new area turf sprites. Does this
- matter to your in-game experience? Probably not.
- - refactor: 'cryotubes can now work with any gases expansion: cryotubes patients
- will actually breathe the air inside the tube and will respond to the gas accordingly
- (they''ll suffer from breath loss if not in proper atmosphere inside the tube)
- expansion: cryoxadone heals only if the patient is alseep, making the use of
- the anesthetic no longer just fluff but also functional qol: replaced oxygen
- canisters with anesthetic ones (a mix of oxygen and n2o at 65-35 ratio) for
- allowing the patient to sleep'
- - bugfix: Nanotrasen realized that Kilo's Arrivals had a horrendous glitch... the
- lights and cameras weren't hooked up to anything. How saddening. It's been fixed
- now.
- - bugfix: Also, Nanotrasen realized they spilled some dark juice (trademark) on
- some other lattices in that area so they cleaned up after themselves as well.
- How responsible!
- - bugfix: Nanotrasen realized that they should stop installing grilles right on
- top of the Air Flow Meters on IceBoxStation.
tralezab:
- balance: Nations can't roll other antags when it runs.
2022-03-10:
@@ -655,121 +370,6 @@
- bugfix: You can now sponsor a painting that hasn't been archived yet. Just make
sure it's inserted in a frame with persistence on.
- bugfix: fixed some mismatches between sprites and sizes for a few canvases.
- - admin: When you send people to Admin Prison for any number of reasons, please
- take joy in knowing they can't explode out the floors any more.
- - refactor: 'refactored the electrolyzer to use datumized reactions instead of hardcode
- them in process expansion: added the hypernoblium to antinoblium conversion,
- when hypernoblium is exposed to the electrolyzer it will be converted to antinoblium'
- - bugfix: xray beams can now be resisted by laser-resistant armor
- - code_imp: /obj/projectile flag is renamed to armor_flag
- - bugfix: Fixed icebox plasma facility mood event color not working.
- - code_imp: Improved mood events descriptions to be simpler to write.
- - imageadd: On the mapping end, CentCom has now been covered in a fresh new paint...
- of area turfs! Who doesn't love those!
- ZephyrTFA:
- - rscadd: Upgraded Borg Snack Dispensor
- Zonespace27:
- - spellcheck: Fixed many spelling errors in organic interface messages
- - refactor: Refactored some organic interface clothing
- - rscadd: New module for contractor MODSuit, baton holster
- - rscadd: Two contractor baton upgrades
- - bugfix: Contractor MODSuit now protects you against pressure when you aren't using
- an armor booster
- - bugfix: Contractor MODSuit name and desc now get updated properly when a chameleon
- module wears off
- magatsuchi:
- - bugfix: allows changelings to re-enter their body despite DNR ban
- this awesome text:
- - balance: MODsuits have some armor.
-2022-03-25:
- 2cents:
- - imageadd: Updated security sprites.
- Gandalf2k15:
- - rscadd: Security medic sprites have been rearranged.
- Shiets, Dragomagol:
- - rscadd: Podpeople now have plant-like growths springing from their heads!
- - rscadd: Podpeople can style their "hair" with secateurs
- SkyratBot:
- - bugfix: Fixed Departmental Techfab machine board for service being named oddly
- compared to the other ones.
- - balance: xray lasers now have 100 armor penetration
- - imageadd: Nanotrasen has upgraded "that machine that prints all of those decals
- on our station tiles" to now print two corners that face opposite each other
- at the same time. Very cool!
- - bugfix: Fixed the size of plaques on the painting UI. They were awfully thin.
- - bugfix: Fixed 24x24 paintings not being centered inside their frames.
- - bugfix: Bot's modes have been fixed, Medibots will no longer be on 'arrest' mode.
-2022-03-26:
- AtoriBirb:
- - code_imp: swapped a plush sound file to one less red-code inducing
- ErdinyoBarboza:
- - bugfix: The construction interns finally installed access restrictions to Icebox
- Armory.
- SkyratBot:
- - bugfix: Fixed double firelocks in Deltastation's fore customs area.
- - bugfix: Kiosk wands can no longer be put into storage containers
- - bugfix: Nukies can no longer lock their own uplink.
- - bugfix: Clicking on airlock with ID Scan wire cut, should not open airlock.
- - bugfix: Fix an overlooked crystallizer issue where gases wouldn't get consumed
- because of a fixed rate of removal instead of an percentage based one.
- Wallem:
- - bugfix: GPSes don't start deactivated anymore, which also brings back most space
- ruin GPS signals. Sorry about that.
-2022-03-27:
- Jolly:
- - bugfix: SnowCabin.dmm had its active turfs rectified.
- SkyratBot:
- - balance: Sentient Diseases now require a minimum playercount of 25 to activate,
- up from 10.
- - rscadd: Added command encryption keys to the cargo order console
- - bugfix: TGUI and Tooltip windows now work with high-dpi web browsers
- - bugfix: The latejoin menu will now properly close when you join the game
- - bugfix: IceBox had two washing machines on the same tile, as well as a bit brighter
- than usual decals. That tile is back to normal.
- - bugfix: The engineering console on Icebox is once again connected to the station's
- grid and can see APC status and available power.
- - imageadd: For those who seek out rarer materials, Runite Bars have a nicer appearance.
- - bugfix: Fixed airlocks and windoors not being able to be attacked by melee weapons
- in combat mode.
- - bugfix: Fix tritium fire releasing more radiation than it should.
- - rscadd: Nanotrasen has refurbished the Recreation Deck on DeltaStation. Feel free
- to "ooh" and "aah" at all of the new features that have been added.
- - bugfix: The chairs on the casino shuttle are now facing the proper directions
- - bugfix: 'The Zeta shuttle brig now uses the brig shuttle area qol: Shuttle doors
- that previously had varedited accesses now use preset access helpers'
- - soundadd: Sound effects for attacking bushes, trees, mushrooms and rocks.
- - code_imp: Minor code improvements in flora.dm
- - balance: Airlocks will now autoclose in 8 seconds rather then 15
- - bugfix: If you were a prisoner on KiloStation and you noticed some abnormally
- dark rocks, I hope you are pleased to know that they have been brightened up.
- No compensation is offered.
- - bugfix: Fixes nonhuman head of departments showing up as their original species
- in security records.
- - balance: Destroy the Blackbox is now worth 6-9 TC instead of 4 TC
- - bugfix: Fixed stray syndicate supply pods not containing any items.
-2022-03-28:
- Gandalf2k15:
- - rscadd: Ports Yogstations central command jobs.
- Inari-Whitebear:
- - bugfix: Fix pathing issue with Skyrat emergency shuttle causing other emergency
- shuttles to not be found
- Orion_the_Fox, Halcyon(Sprites):
- - rscdel: Armadyne and Lopland have agreed to remove OldPeacekeeper reskins and
- some straggling Redsec clothes from Security, after several Uniformity complaints
- from CC.
- - imageadd: SPLIT THE MASTER UNIFORM FILE TO HAVE A SECURITY SUBTYPE. ONLY SECURITY
- UNIFORMS SHOULD BE IN HERE. EXPECT THIS TO EXPAND ONTO OTHER DEPARTMENTS AS
- WELL. (TG already does this, its much easier to maintain than one giant file.)
- - imagedel: Removed lots of unused Security icons. (Literally, these had no items.
- Ingame you'll see no change from this.)
- SkyratBot:
- - bugfix: Bartenders can throw drinks again, rejoice!
- - bugfix: Fixes an exploit that allowed players to send unsanitized text to admins.
-2022-03-29:
- ArcaneMusic ft. sprites by Kryson:
- - rscadd: 'Newscasters have been moved over to TGUI, and with them several new features.
- expansion: Newscaster channels can now be given channel descriptions! expansion:
- Messages can now be censored by crew with brig access from any console.'
GoldenAlpharex:
- refactor: A minor refactor was done to the persistent scars preference, allowing
it to finally be available in the preferences menu once again.
@@ -1473,45 +1073,6 @@
- balance: Fluorosurfactant no longer acts as an arbitrarily powerful accelerating
catalyst in an emulsified state. Research into foam based thermobaric weaponry
has begun.
- - bugfix: The Zeta emergency shuttle's brig now travels with the rest of the shuttle
- - bugfix: you can no longer push ash drake corpses into doors
-2022-03-31:
- AtoriBirb:
- - imageadd: 4 new plushies!
- Ebin-Halcyon:
- - imageadd: Teshari sprites for most Syndicate clothing.
- ErdinyoBarboza:
- - bugfix: Makes peacekeeper webbing use its actual price. Increases the amount of
- them available in the peacekeeper vendor.
- - bugfix: Re-adds the stormtrooper costumes back to hacked peacekeeper vendor.
- Gandalf2k15:
- - rscadd: You can now directly buy ammo from the armaments vendor if your gun has
- it.
- - rscdel: Redsec crate from cargo.
- GuiltyNeko:
- - bugfix: The shutters on the delta station NT consultant's office can now be opened
- and closed as normal.
- - bugfix: Toxins now has power on all three main maps, as well as correct area mapping.
- Jolly:
- - bugfix: Lavaland agents rejoice! Theres no longer a missing tile that leads to
- space! ..Wait, what?
- SkyratBot:
- - balance: scrubbers now remove small amounts of gas faster than they used to, without
- affecting how fast they scrub gases in high concentrations.
- - bugfix: Fix welders wasting fuel when clicking on tiles
- - bugfix: The 0.7% charge high capacity power cell (which actually also stored 50%
- more charge than a regular high capacity power cell, didn't notice that right?)
- in Metastation engineering has been replaced with a regular high capacity power
- cell.
- - bugfix: Reality has downloaded CS Source which fixed the missing texture of a
- poster in departures security checkpoint
- - bugfix: Fix plants to not hurt user while using telekinesis
- Zonespace27:
- - bugfix: Reputation granting OPFOR services now give correct amount
- softcerv:
- - rscadd: Adds in medical smardarts, non-harmful replacements for syringes in syringe
- guns that can only inject healing chemicals.
- - rscadd: Adds in Smartdart guns, syringe guns that can only use smartdarts.
san7890:
- bugfix: On IceBoxStation, hopefully all (if not a good chunk) of the cameras have
been moved to no longer be on windows, and on walls instead.
diff --git a/html/changelogs/archive/2022-04.yml b/html/changelogs/archive/2022-04.yml
index ed5ee6655d1..8a05eeeabf8 100644
--- a/html/changelogs/archive/2022-04.yml
+++ b/html/changelogs/archive/2022-04.yml
@@ -4,38 +4,6 @@
regarding their poison injection amount. Injection amount menu descriptions
will now automatically update whenever their value changes by future code tweaks.
Cenrus:
- - rscadd: Changed some armament vendor item costs
- - bugfix: Fixed assault op ship turrets not using ballistics
- Ebin-Halcyon:
- - bugfix: Soviet reenactment coats have been actually sent in now.
- ErdinyoBarboza:
- - bugfix: Makes cyborg lollipop dispenser use the cyborg (non-omnizine) variant
- for consistency.
- GoldenAlpharex:
- - bugfix: Nanotrasen reviewed their computer stocks and noticed how those stocked
- in libraries were mislabeled, swiftly correcting this error to ensure their
- Curators are able to work once again.
- GuiltyNeko:
- - bugfix: removed generic engineering access from delta station atmos doors
- - code_imp: Interdyne areas are now called "interdyne" instead of "syndicate lavaland"
- - bugfix: The QM's locker now has a spare headset, in case they lose their original.
- OrionTheFox:
- - imageadd: Cargo's uniform icons have all been moved into clothing/under/cargo.dmi
- files in a continued organization effort. Their Object icons have also been
- improved.
- - rscdel: Armadyne caught onto the fact that the command vendor still had the old
- corpsec red skirt. It is no longer available per their Peacekeeper contract.
- SkyratBot:
- - rscadd: Parts of MetaStation's Xenobiology Satellite have had some moderate re-arrangement,
- ultimately leading into an experience where you don't have to clamber over canisters
- to check the camera monitor.
- - bugfix: Some weird space turfs south of the Xenobiology Satellite have been banished.
- - imageadd: 'A new area turf for the Xenobiology Hallway has been added, and mapped
- into the one map that uses it: Meta.'
- - bugfix: fixed mmis seeing the wrong mech UI
- - code_imp: changed some mech FOV cone backend to work better
- - bugfix: Adds checks for packs on the departmental order console.
- - admin: revenants harvesting a mob now logs in the revenant's combat log.
- bugfix: removed stray pixel on the CQC manual
CocaColaTastesGood:
- bugfix: Adds checks for packs on the departmental order console.
@@ -89,26 +57,6 @@
- rscadd: When you start to drag an action button, docking ports will appear in
places that it can be inserted into. (Outside of just floating somewhere on
your screen of course)
- - rscdel: 'Removed action button locking, and the associated preference. I''m reasonably
- sure literally none uses this, but if you do hit me up qol: Dragging an action
- button will now give you an outline of its size around your cursor'
- - bugfix: You can no longer cause the screen to expand by putting an action button
- on the edge of widescreen, and then resizing to standard.
- - refactor: Refactors action and button code significantly. lots of little things.
- - bugfix: Fixed certain pens breaking painting on a canvas because of their peculiar
- colors.
- - bugfix: mechs will now show in their tabs equippable equipment as intended
- - imageadd: 'Nanotrasen has once more updated its legendary Central Command Wardrobe,
- improving upon its designs even further! Expansion: Nanotrasen has also added
- a new outfit for Special Ops Officers to enjoy, instead of a simple leather
- jacket: The CentCom Officer''s Coat!'
- - bugfix: When an airlock that is being hacked receives plasteel reinforcement,
- it will no longer keep the hacking UI open and useable.
- - bugfix: Assistant Traitors can now purchase the Ancient Toolbox again.
- - rscadd: 'Re-added the Hotkeys-Help verb, and linked the Hotkeys menu item to it.
- qol: Move Help menu to the end of the menu bar.'
- - bugfix: 'Humans no longer "enter" mechs twice qol: as a side effect mech entering
- will cancel immediately instead of failing at the end only'
- rscdel: Removed action button locking, and the associated preference. I'm reasonably
sure literally none uses this, but if you do hit me up
- qol: Dragging an action button will now give you an outline of its size around
@@ -162,202 +110,6 @@
buried under posters and the like, so the corporation decided to stock the crew
with juuuuust enough. They have saved a lot of money from this venture, and
the economy will promptly begin to skyrocket to new heights.
- - spellcheck: Voice and chemical analyzers now have more consistent names and spelling.
- - bugfix: Fixes an issue where reagent logging would incorrectly output "no reagents"
- when a reagent transfer had actually happened.
- - bugfix: Haloperidol has been properly labelled in medical cyborg hyposprays after
- several instances of mediborg induced brain damage were found in human patients.
- - bugfix: Machine frames and circuit boards no longer call manipulators micro-manipulators
- when examined
- - code_imp: Improves code in constructable_frame.dm and circuitboard.dm
- - rscadd: Added an ic atmos reaction guide. Available in your atmos control consoles/monitors,
- ntosatmos app, and analyzer.
- - code_imp: Some changes to how gas canister descriptions are generated.
- - bugfix: fixed mech air tanks being removable
- TheBonded, timothymtorres:
- - bugfix: Fixed mulebot movement animation to be smoother
- Wallem:
- - balance: Lowered the price of Kheiral Cuffs from 2750 to 2000 points.
- Zonespace27:
- - bugfix: Latejoining heretics now will generate influences.
- - bugfix: Blueshield bowman now gives ear protetion
- tf-4:
- - rscdel: Security no longer gets the stormtrooper outfit in their vendors.
- twilightwanderer:
- - bugfix: fixing a couple of things on Kilo, Delfa, Meta, and BlueShift.
-2022-04-03:
- Gandalf2k15:
- - rscadd: 'Black Mesa: Xen'
- SkyratBot:
- - bugfix: Stops find_safe_turf, used by salvation signposts in deep space and the
- super secret room, from teleporting people into the windows of the toxins test
- area and killing them if they didn't have spaceproof equipment.
- - bugfix: You know that shower room in the northeastern portion of IceBox Station?
- We fixed the, erm, posters, there.
- - spellcheck: There are no longer two ID Getter Components
- - bugfix: Standard HoS headset no longer protects against loud sounds.
- Zonespace27:
- - bugfix: Admin equipment notes in OPFOR menu now show up properly
- - bugfix: You can no longer expand your cyborg body then choose a larger cyborg
- model.
-2022-04-04:
- Ghommie:
- - bugfix: Fixed some of the funkiness of large painting frames looking off when
- a painting is placed inside.
- SkyratBot:
- - imageadd: New and updated maid costume sprites
- Zonespace27:
- - rscadd: Croon and sc-1 laser gun can now be purchased as goodies
- - refactor: Armaments vendor is now a component
- jjpark-kb:
- - rscadd: added the bokken, bow, and arrow crafting to forging
- - rscadd: reagent crafting bench and anvil now will have an overlay of the item
- on/inside it
- theselfish:
- - rscadd: Certain Loadout items are now in the Sec vendor.
- - rscadd: As well as the Missing Imperial hats.
- - bugfix: Hi Vis toggle works.
-2022-04-05:
- Gandalf2k15:
- - rscadd: T-90 Mounted Machine Gun
- IsaacTheSharkWolf:
- - rscadd: Added a few new rooms and sights to see in maints.
- - rscadd: 'New(ish) perma and labor shuttle dock, moved them up to layer 2 and directly
- connected them to security. expansion: EVA content on layer 1 massively expanded.'
- - rscdel: Most of layer 1's old maints, replaced with the EVA area and a few more
- streamlined corridors.
- - bugfix: Fixed a variety of bugs from the older version.
- Zonespace27:
- - rscadd: New midround event/antagonist, Drifting Contractor
- - rscadd: New contractor baton upgrade, the focus upgrade, making your baton more
- effective against your target
- - balance: Blackout and Telecomms outage now cost 2 rep instead of 3.
- - bugfix: Fixed some contractor item fontawesome icons
-2022-04-06:
- Zonespace27:
- - spellcheck: Croon single-pack description caliber corrected
- - bugfix: Armaments now work again
- jjpark-kb:
- - rscadd: adds gas miners to meta, icebox, and delta
- - bugfix: adds back lustwish vendor to meta, icebox, and delta
- - bugfix: adds back the special pets (E-N, Poppy, etc.) to meta, icebox, and delta
- - bugfix: adds back positronic alert consoles to meta, icebox, and delta
- - bugfix: adds back xenoarch base to lavaland
-2022-04-07:
- SkyratBot:
- - bugfix: paper logs once again include the paper's contents
- - admin: Individual material crafting is now logged in crafting.html
- - bugfix: Machine interaction works again, get trolled
- - imageadd: Added sprites for (rare) frogs placed on heads
- - spellcheck: Drop pod debris is no longer capitalised
- - bugfix: Fixed a bug with the RCD silo link upgrade when its connected and turned
- off.
- - code_imp: CI will now lint for commented-out lines of code in map files. This
- is very good.
- Zonespace27:
- - refactor: Refactored contractor modsuit.
- - bugfix: radded a bunch of stuff the github mirror bot missed
- tf-4:
- - bugfix: The mining boots object icon is no longer tiny.
- - bugfix: Huge air scrubbers are no longer invisible.
- - bugfix: Hermits can now use quirks and not loadouts, as was intended.
-2022-04-08:
- AtoriBirb:
- - imageadd: 5 new plushes!
- ErdinyoBarboza:
- - spellcheck: Sulphuric Acid is now properly named Sulfuric Acid.
- OrionTheFox:
- - imageadd: Medical's uniform/digi icons have all been moved into clothing/under/medical.dmi
- files in a continued organization effort. Their Object and Digitigrade icons
- have also been improved.
- SkyratBot:
- - bugfix: fixes rev runtime when a headrev body is destroyed
- - bugfix: Fix shutters contextual screentips to not display as open with LMB.
- - balance: On IceBoxStation, Nanotrasen finally decided to reinforce the western
- walls on the Captain's Room and the Teleporter Room.
- - bugfix: Food processors now give more processed food, depending on its matter
- bin.
- - bugfix: Robocontrol on computers now work again.
- - bugfix: The Ash Walker's Base on Lavaland decided to stop putting tiles under
- solid rock.
- - bugfix: TramStation's Medbay's White Medkits actually have stuff in them now.
- - bugfix: TramStation's Surgery Rooms are now actually named appropriately. The
- person who mixed up their starship directions is being executed at noon.
- - bugfix: The Syndicate Operatives positioned on Lavaland are no longer able to
- violate the ONE THING they were told to not perform (leave the base).
- - rscadd: A conformational change in reality has caused every single bed (when applicable)
- to be tastefully rotated in the opposite direction.
- - admin: Launchpad investigate logs have been moved to game log
- - bugfix: Engineers have reconnected the disposals loop on DeltaStation
- - refactor: Janitor's custodial PDA cartridge has been replaced with a Custodial
- locator tablet app.
- - spellcheck: Cargo crate naming has been made slightly more consistent. Rejoice.
-2022-04-09:
- Cursor:
- - rscadd: Some commonly typed emotes are now quick emoteable. These include; Blink2,
- RBlink, Squint, Eyeroll, Smirk, Huff, ETwitch and Clear.
- Ebin-Halcyon:
- - imageadd: Select few GAGSified Teshari items
- - bugfix: The Volaju hairstyle is now symmetrical on both facing sides
- ErdinyoBarboza:
- - bugfix: Special attack verbs are no longer overridden by "glanced" and "maimed"
- when not in combat mode.
- Gandalf2k15:
- - rscadd: You should no longer roll antagonist as a restricted role.
- - rscadd: Armadyne apologizes for the lack of consistency in the vendors across
- the station.
- GoldenAlpharex for the touch-ups, the QoL and the TGUI, JohnFulpWillard for the initial code:
- - balance: AIs controllers MODsuits cannot move an incapacitated or dead owner anymore.
- - refactor: 'Modsuits have been refactored to allow pAIs to enter them, replacing
- AIs. qol: Taking your pAI out of your MODsuit is now done via the MODsuit''s
- interface menu rather than with an empty hand. qol: pAIs will now get a bit
- more feedback on the state of the MODsuit when it gets activated or deactivated.'
- GuiltyNeko:
- - rscadd: Blueshield and Nanotrasen Consultant's offices have made their way to
- icebox
- Jolly:
- - bugfix: A floating poster in Ice Box's service hall was properly contained.
- - bugfix: Old Stations Charlie & Delta storage rooms APCs now start with 0 charge,
- your immersion has been restored.
- Melbert:
- - bugfix: Fixes a runtime with bounty cubes on Destroy
- Nerev4r:
- - rscadd: Oversized crewmembers now have a unique stomach, giving them a higher
- metabolic rate. Additionally, they are 50% hungrier now.
- - balance: Oversized crewmembers no longer hit their heads on firelocks.
- - rscdel: 'Oversized crewmembers can no longer hide themselves from FOV. qol: It
- looks much better when an Oversized crewmember carries you now.'
- OrionTheFox:
- - imageadd: Engineering's uniform/digi icons have all been moved into clothing/under/engineering.dmi
- files in a continued organization effort. Please report any Engineering Uniform
- icon issues to @Orion_The_Fox#1915 if they snuck in.
- Reco201:
- - rscadd: Cargo Borgs now come equip with a export scanner.
- Riggle:
- - bugfix: Revenant logs are no longer wrapped in a span
- SingingSpock:
- - config: changed alert upto and downto texts
- SkyratBot:
- - bugfix: Health sensors inside of chemical grenades will now work as intended and
- the process is almost impossible to screw up.
- - bugfix: 'On Meta, Delta, and Kilo: Nanotrasen has decided to shuffle around those
- brand-new newscasters to ensure the AIs could actually see the buttons they
- want to hit.'
- - bugfix: layering issue with venus fly trap and spacevine
- - bugfix: you can no longer create singularities by using soultap while in rod form
- - balance: wizards can no longer cast spells while in rod form
- - bugfix: A handful of issues on icebox, pertaining to /area/s, firelocks, airlocks,
- mapping helpers, mapping mistakes, a literal space tile, and more have been
- squashed!
- - bugfix: You can actually move the Syndicate Infiltrator's docking position on
- icebox again. Yeah. I know.
- - bugfix: Petri dish cultures no longer stay behind on the sprite like some sort
- of ghost after being washed out of it. Cells don't have souls.
- - bugfix: crystallizer max quality can now be reached regardless of recipe total
- moles amount
- - bugfix: finishing grenades no longer prints the error message when it shouldn't
- - bugfix: Fix an exploit where permanent invisibility can be gained from using shadowcloak
- stacked with other transparency effects.
- rscadd: Parts of MetaStation's Xenobiology Satellite have had some moderate re-arrangement,
ultimately leading into an experience where you don't have to clamber over canisters
to check the camera monitor.
@@ -614,84 +366,6 @@
- balance: The base level of stationary gas tank pressure limits has been brought
up to the base level of canisters. Higher quality materials still increase this
further as before.
- - bugfix: Spacemen no longer can sculpt light effects from stone
- - bugfix: You should no longer fall through a specific spot in space in Tramstation's
- upper level.
- SpookyTheFox:
- - rscadd: single replacement syringe gun crate
- YakumoChen:
- - balance: Department Guards need working ears, eyes, and Common literacy.
- - bugfix: Corporate Regulations can finally be read in-game again
- Zonespace27:
- - rscadd: Added a way to add your character's art to your close examine profile,
- called a "Headshot". Provided you have donator or veteran crew status, you can
- add a direct image link in your character preferences.
- - admin: Added an admin pref to mute the ping subsystem
- - admin: Ticket ping SS now only pings you about tickets that are older than 3 minutes
- axietheaxolotl:
- - rscadd: heterochromia options
- nikothedude:
- - rscadd: 'Added a new quirk: No Guns. Makes it so you can''t use guns.'
- softcerv:
- - code_imp: cleans up cellgun code
- - code_imp: cleans up medigun code
- softcerv, GuiltyNeko:
- - rscdel: removes stasis pods from techweb and maps
- tf-4:
- - bugfix: Delta rec area no longer gets trash strewn over it from poorly set up
- disposals
- theselfish:
- - rscadd: 'You can use a Chameleon ID in the Ghost Cafe for whatever reason you
- desire. qol: Ghost Cafe stools now properly face the correct direction.'
- - bugfix: There is now an Alien Retractor to match the rest of the kit.
-2022-04-10:
- Cursor:
- - bugfix: Ghost Cafe management have returned the red sec vendor.
- - bugfix: RedSec vendor is now red.
- Ebin-Halcyon:
- - imageadd: Teshari have gotten a shipment of clothing for the Service department,
- rejoice
- LeonY24:
- - bugfix: HECU equipment is now shown on anthros.
- - imageadd: HECU digitigrade uniform and HECU muzzled gasmasks.
- Melbert:
- - imageadd: Cigars have sprites when held in hand
- MidoriWroth:
- - rscadd: Gave the Self-actualization Device instructions on how to use it through
- examine
- SkyratBot:
- - bugfix: SSUs no longer use power when doing nothing
- - bugfix: 'TramStation atmos is more effectively separated into areas qol: It is
- easier to isolate and fix atmos issues in the Tramstation tunnel'
- - bugfix: The note in the Sloth ruin is fixed! Head on down to Lavaland and reap
- the rewards!
- - bugfix: mech armor modules give armor properly now
- - bugfix: Fix moonicorns not falling through openspace properly.
- - balance: Free golems can no longer use shuttle consoles, other than to go home.
- - bugfix: removes the crate in window in lavaland base
- - balance: Regular mansus grasp now inflicts cultslur on the target for 4 seconds.
- - balance: Increased void mark and void grasp silence duration from 8 seconds each
- to 10 seconds each.
- - bugfix: The screentip context no longer lies about what happens when you left
- click another carbon mob with combat mode on.
- - bugfix: You can no longer create infinite snow with a crowbar
- - bugfix: Fix being unable to reload nukie missiles
- - balance: SM consumes items and gain power based on their size
- - bugfix: Deltastation should once more have wrestling masks and athletic shorts.
- Zonespace27:
- - rscdel: Gunpointing someone no longer auto-shoots them on move/item use/radio
- use
-2022-04-11:
- Ebin-Halcyon:
- - imageadd: Central command uniforms have been refitted to fit with digitigrade
- legs
- Gandalf2k15:
- - balance: The T-90 no longer comes with a mag installed.
- - rscadd: You can now repair the T-90 MMG.
- - rscadd: You can now undeploy the T-90 using a wrench.
- - bugfix: HEV no longer allows any helmet type.
- - bugfix: HEV no longer secures anything but oxygen tanks to your suit storage.
- SkyratBot:
robbertapir:
- bugfix: Petri dish cultures no longer stay behind on the sprite like some sort
of ghost after being washed out of it. Cells don't have souls.
@@ -760,8 +434,6 @@
- bugfix: Remove bloodsplatter when fireball is blocked by antimagic
- bugfix: Remove lockers when staff of locker projectiles blocked by antimagic
- bugfix: Fire breath is no longer blocked by antimagic
- - bugfix: 'Spellcards are now blocked by antimagic qol: Add antimagic chat notification
- and animation effects. Mobs will now glow when they successfully block magic.'
- bugfix: Spellcards are now blocked by antimagic
- qol: Add antimagic chat notification and animation effects. Mobs will now glow
when they successfully block magic.
@@ -778,71 +450,6 @@
- balance: Voice of god is now blocked with `MAGIC_RESISTANCE_HOLY` and `MAGIC_RESISTANCE_MIND`
- rscdel: Cult blink and cult summon creature spells were never used in the code
and have been removed.
- - bugfix: relocates the SMES terminal to not be in a wall in the lizard gas space
- ruin
- - bugfix: Golems can now exist in the rooms they themselves create, sorry about
- that.
- - rscdel: The accounting machine has been retired from station use, as accounts
- come with a default bank account now.
- - bugfix: NT Risk Audits have replaced fraudulent posters calling the ice moon environment
- "space."
- - bugfix: Fire alarms no longer magically emit light when they lose power.
- - bugfix: On DeltaStation, Nanotrasen will no longer place a Gas Vendor and an Intercom
- in such a position on one of the walls on the Clown's bedroom where they overlap.
- - bugfix: Debug Glasses have SM protection
- - rscdel: The Detomatix cartridge's ability to open the nuclear operative pod doors
- has been removed.
- - bugfix: You can no longer fly by spamming ollie onto an empty space and not moving.
- - rscdel: 'Navigate verb uses landmarks now, which means that underfloor wayfinding
- beacons (which could be used to change the names of destinations) are gone qol:
- Adds Nearest Way Up and Nearest Way Down to the navigate list, which point to
- the nearest ladder or staircase up or down'
- - bugfix: Fixes runtime with navigation verb paths where deleted paths were still
- attempting to animate
- - balance: Monkeys can now wear glasses.
- - refactor: The Curators newscaster PDA app has been moved into a new Newscaster
- tablet app, with a full new UI.
- - refactor: Drone PDA apps have been refactored and is now part of Botkeeper, such
- as granting access to dangerous machinery and sending pings.
- - refactor: Zauker now uses reagent to perform its effects on breath
- Zonespace27:
- - balance: HECU can now buy bowman headsets
- - rscadd: Contractors can now get a faster deployment module for their MODsuit
- - balance: Drifting Contractors no longer have chameleon gear
- - balance: Drifting Contractors now start with a contractor pinpointer
- - bugfix: Cryo now rerolls contracts correctly
- - bugfix: Destroying a contractor pod no longer bricks the tablet
- - bugfix: Staff can now cancel denying an OPFOR.
-2022-04-12:
- AtoriBirb:
- - imageadd: added new bird borg shell options
- ErdinyoBarboza:
- - bugfix: 10mm Auto guns can no longer take 10mm Magnum bullets (Looking at you
- Makarov)
- - spellcheck: Normalizes the naming of 10mm Auto bullets
- - spellcheck: Renames the bluespace warning labels to be OOC info.
- Fikou, Azlan, PositiveEntropy, Capsaicin:
- - imageadd: new sprites for the syndicate modsuit (and honkerative)
- Gandalf2k15:
- - bugfix: Masks should now work on snouted people.
- LeonY24:
- - rscadd: Ability for Vanguards to resking their bag and belt.
- - imageadd: Brand new tacticool satchel and belt for the Vanguard.
- SkyratBot:
- - bugfix: fixes exploit where you could duplicate gases with valves
- - code_imp: Added a flag that allows mobs to be colored with the spraycan.
- - rscadd: reworked turbine to be a 3x1 machine, with flow and pressure based calculations.
- A paper explaining how to use will spawn when building it and on the roundstart
- one.
- - bugfix: fixes an issue with the old turbine where you could generate infinite
- power with cold gases
- - bugfix: Killing a legion with matrix trap resonators no longer creates body spawner
- hell.
- - bugfix: thermal conductivity can be properly set so the turbine turfs will not
- leak heat
- - spellcheck: fixed an error in the chilling black extract's description.
- - code_imp: the 'random' subtype of golems no longer exists, and is now effectively
- replaced by picking from all subtypes of the golem species.
- bugfix: Fix moonicorns not falling through openspace properly.
2022-04-11:
Ebb-Real:
@@ -907,169 +514,6 @@
to show their real status. No more false positives!
- code_imp: air alarms now have a variable referencing their area that is used
- code_imp: added a new signal for when atmos adjacent turfs are calculated
- - rscadd: Limbgrower limbs are now a sickly green
- - refactor: Digitigrade legs should now behave consistently.
- - refactor: Limbs will no longer update appearance as owner is transferred, allowing
- for multi-species frankensteins
- - bugfix: CHANGELING TRANSFORM FUNCTIONS PROPERLY
- - rscdel: Synths and synth-related mechanics (Synth fugative)
- - bugfix: Fixes brimdemon lasers never disappearing if the demon was deleted while
- firing.
- - bugfix: Fix girder construction runtimes
- - bugfix: Attempting to end maint procedures on a mech with parts replacement mode
- enabled will now throw an error at the user, rather than silently condemning
- the mech to lawn ordainment status.
- Wallem:
- - imageadd: Updates the PDA painter sprite
- Zonespace27:
- - bugfix: You can no longer insert an armament card into a vendor with one already
- inside.
- - bugfix: You can purchase ammo for out-of-stock armaments.
- linnpap:
- - rscadd: Added seven more syndie ghost role spawners into Icebox.
- nikothedude:
- - rscadd: Added an OPFOR service for exploitables access.
- - refactor: Refactored record code somewhat, should be less broken
- - admin: Adds a traitor panel button for toggling a exploitables override.
- softcerv:
- - rscadd: Adds in the Oppressive Force Relocation Medicell. It can be used to teleport
- non-medical staff out of sensitive areas.
-2022-04-13:
- AtoriBirb:
- - bugfix: points the cargo birdborg to the correct icon file
- ? Cursor (published the PR) Certain Unnamed TG Sprite Maintainer (done most of the
- sprite) Halcyon (done the folded back) and Plateau (Started the sprite recolour,
- done the coding.)
- : - bugfix: The Sec Ushanka doesn't revert to a Soviet one.
- - imageadd: Made the Sec Ushanka not ugly.
- Ebin-Halcyon:
- - imageadd: New Syndie modsuit sprites now fit on digitigrade characters
- ErdinyoBarboza:
- - bugfix: Fixes the flying camera problem once and for all. Report any cameras that
- are not against walls please.
- GoldenAlpharex:
- - bugfix: Nanotrasen's Furniture Department decided to decommission the faulty hologram
- projectors from their benches, as they were added by an intern thinking it would
- be funny to display big red letters above everyone sitting on them.
- Helios7-1:
- - rscadd: Engihound plush. Now available in loadout selection!
- SkyratBot:
- - bugfix: Plasmamen no longer have a stray white pixel.
- - rscadd: 'On MetaStation, IceBoxStation, and DeltaStation: Nanotrasen has formally
- defined the "holding cell" section of the brig.'
- - imageadd: There is now a new area icon for this new "holding cell" section.
-2022-04-14:
- Cursor:
- - bugfix: Fixed the Deadspace in the Rabbit (alt) Wag
- Gandalf2k15:
- - balance: Replaced the disabler instances in the armory with the CMG-1. An autorifle.
- - rscadd: CMG-1 cargo packs!
- - bugfix: More digitigrade clothing should function correctly again.
- - rscadd: The security medic once again gets their firefly.
- GoldenAlpharex:
- - bugfix: Fixed Hemophages being selectable by non-Veteran. If you were a non-Veteran
- and had a Hemophage, it'll convert them to a human when you spawn in, but I'd
- still recommend making the change to human yourself, just in case something
- funky happens. The alternative to that is to become a Veteran if you want to
- keep your Hemophage :)
- OrionTheFox:
- - imageadd: Science's uniform/digi icons have all been moved into clothing/under/rnd.dmi
- files in a continued organization effort. Please report any Science Uniform
- icon issues to @Orion_The_Fox#1915.
- Orion_the_Fox:
- - bugfix: Powercells will now slot into chargers properly again, as well as show
- their charge correctly.
- - imageadd: Single-cell chargers will now show you what kind of powercell is charging
- in it!
- RatFromTheJungle:
- - rscdel: Removes the MCR's undercharger attachment.
- SkyratBot:
- - bugfix: Monkeys now can interact with misc(environmental) turfs. Also removed
- two unused broken turf types.
- - bugfix: Fixed supply pods not being displayed below their contents when opened
- or the rubbles effect caused by the impact.
- - bugfix: You can no longer dupe ants(or any other chemicals) as a janiborg
- - bugfix: held mice are no longer edible by moths
- - bugfix: Ghosts can now correctly jump to C4's planted on walls/floors when they
- get the notification
- - server: Adds Ukraine's Independence Day as a holiday, since the child attacking
- our hosting requested goofball PRs.
- - bugfix: Cleaning strange objects no longer leave behind empty grenade casings.
- No littering!
- - bugfix: Fixes facial hair using main hair colour instead of facial hair colour
- - admin: added logging for supply orders' rare erroneous manifest mechanic
- - bugfix: After a few mishaps, Nanotrasen fixed a few small area definition errors
- on MetaStation.
- Tastyfish:
- - bugfix: Fixes teshari and vox clothing sprites.
- - refactor: Redoes how snowflake species do clothing. May cause unforseen edge case
- issues to look out for.
- YakumoChen:
- - bugfix: Fake Announcement now broadcasts to deadchat, just like the real thing.
- - balance: You can no longer stack some redundant trait combos.
- nevimer:
- - bugfix: Maintains the maps with TG's changes, specifically the turbine updates.
-2022-04-15:
- RealWinterFrost:
- - rscadd: Added donator Item
- SkyratBot:
- - bugfix: traitor logging has its own config flag
- Tastyfish:
- - bugfix: Fixed snouts again.
-2022-04-16:
- ATHATH:
- - bugfix: Washing someone else's mouth out with soap no longer washes YOUR mouth
- out with soap instead.
- GoldenAlpharex:
- - bugfix: Hemophages are back to the Frontier, for realsies this time.
- SkyratBot:
- - bugfix: Brains from HARS victims in a new HARS body will not be revivable anymore.
- - bugfix: Bluespace golems can no longer spam teleport
- nevimer:
- - bugfix: Moth eyes work again.
- - bugfix: Shadowpeople & nightmares on the preferences no longer cause the game
- to fail CI & Runtime.
- - bugfix: Lore and Descriptions no longer runtime from no content. There is still
- no real content.
- - bugfix: CI works again.
-2022-04-17:
- Deek-Za:
- - bugfix: Fixed security sorting pipe issues on Icebox Station.
- - bugfix: Put bluespace vendor in its proper place on Metastation
- - bugfix: fixed AI cryo job release
- Onule:
- - imageadd: Resprited all slimes and slime cores
- - imagedel: Removed unused slime and slime core icons
- PositiveEntropy:
- - imageadd: Resprites the soft caps!
- SkyratBot:
- - soundadd: A new round-end sound is in rotation.
- - bugfix: Water slime cookie no longer tastes like /datum/reagent/water
- - bugfix: Grilling food now makes said food, grilled.
- - bugfix: You can no longer turn yourself into Spriteless Face Man using the "mask"
- bandanas in the botany wardrobe on Deltastation. Those have been replaced with
- proper botany bandanas.
- - rscadd: You should now be able to rotate bedsheets on yourself as you take restful
- sleeps.
- - bugfix: Nanotrasen will no longer place bedsheets the wrong way on beds.
- - rscadd: Remapped the Pride's Mirror ruin
- - imageadd: Wrapped parcels now have an overlay when tagged with a destination.
- - refactor: Refactored wrapped parcels to have a common base type.
- - bugfix: metal foam now blocks you from falling down a z-level if it's below you
- - rscadd: Nanotrasen realized that their holodeck simulation of the photobooth was
- not properly configured, and was showing up with ugly, grouted tiles. This has
- been rectified to be a pure white backdrop for all your photograph desires.
- - bugfix: Uncle Pete remembered to order new rollerskates for his rollerdome. 30
- Skates will now be stocked for rent on his shuttle.
- - bugfix: Gives the pheromone receptor power an icon.
- - rscadd: Remaps the gluttony ruin!
- - rscdel: Remove the free antag syringe from the gluttony ruin.
- - bugfix: The debug industrial lift usable by admins for testing tram behavior has
- been fixed, and can now be moved again.
- - bugfix: turbines don't leak heat. Properly now
- - bugfix: Wizard immovable rod no longer deletes itself when travelling betwen z-levels
- - bugfix: Diggable turfs no longer get dug up by any item used on them
- - bugfix: easter baskets can now hold easter eggs
TheSmallBlue:
- expansion: The Hygienebot can now be colored with a spraycan.
- code_imp: Added a flag that allows mobs to be colored with the spraycan.
@@ -1150,44 +594,6 @@
- balance: the MODsuit holster has been replaced with a magnetic harness (like tgmc)
- balance: the MODsuit pepper mister has been replaced with pepper shoulders. They
react to attacks with pepper spray
- OrionTheFox:
- - imageadd: While sorting through their plasmamen envirosuits, NT shipped a template
- out to Armadyne for the manufacture of Peacekeeper-branded Envirosuits! They've
- been shipped effective-immediately to all stations using the Peacekeeper package.
- (Plasmaman icons were also sorted into their own .dmi's, report relevant issues
- to @Orion_The_Fox#1915.)
- SkyratBot:
- - balance: Brand partners have encouraged Nanotrasen to reduce the availability
- of syndicate-made donuts and donk pockets aboard all stations
- Stalkeros:
- - bugfix: M16's mag compatibility issue resolved.
- softcerv:
- - bugfix: beepsky now no longer goes after people wielding Mediguns and SmartDart
- guns.
- theselfish:
- - bugfix: Edited a tip to comply with policy.
-2022-04-26:
- GoldenAlpharex:
- - bugfix: Saying "No" when offered to handle a ticket instead of someone else, will
- finally stop you from continuing with the ahelp anyway.
- SkyratBot:
- - bugfix: fixed ethereal feeding breaking APC charging
- - balance: diminished the number of anomalies spawned after the SM delamination
- - bugfix: Fixed the kilostation whiteship so that it fully spawns
- - bugfix: Fixed spawn ruins admin debug verb's ruin ordering being not separated
- by type
- - rscdel: Removed the concept of ballast from thermomachines, you no longer need
- some gas to heat in order to cool things.
- - bugfix: fixed wonky safe placement on Kilostation bridge
- - bugfix: Adds an APC and area to the lowest level of the mining station on IceBoxstation
- - bugfix: Grinders no longer consume 10x more energy than they are supposed to
- - bugfix: Removes a way to easily detect the presence of PDA uplinks
- Zonespace27:
- - rscdel: Boarder and Ripper removed from guncargo
- - balance: removes armor pen and wound bonus from ppsh ammo, 22 -> 20 damage
- - balance: STG damage 40 -> 32
- - spellcheck: Suppressor no longer mentions the syndicate
-2022-04-27:
Ghilker:
- expansion: freon burn reaction now produces coldspots and cold cyan fires
GoblinBackwards:
@@ -1687,49 +1093,6 @@
BebeYoshi:
- rscadd: Adds more health HUDs, nitrile gloves and medical belts to locker in Tramstation
medbay
- Ducky-Momo:
- - rscadd: Freezer of racial and otherwise unobtainable ingredients to the back of
- the kitchen
- - rscadd: Chemistry bay above the surgical bay with indestructible wooden walls,
- proper turfs and appropriate chemistry tools.
- Fikou, sprite modified by Zhost:
- - qol: the sniper rifle has a new zoom system, activated by right-clicking
- Ghommie:
- - refactor: Genital prefs have been refactored. As a result, redundant toggle prefs
- of these organs have been removed.
- - qol: '"Uses Skin Tone" pref has been split: each visible genital now has its own
- "Skin Tone" and "Skin Color" pref. This means that human-er characters can now
- have their bits roughly of the same color of their skin without having to guess
- it through the color input.'
- GoldenAlpharex:
- - bugfix: Fixed Blueshift spawning space that couldn't be interacted with on its
- bottom-most level, when a plating turf is removed.
- - bugfix: The Black Mesa Smartgun now uses the new scope component, which also conveniently
- fixes our repo's CI.
- - bugfix: Ensured that the lower levels of Icebox would also get considered during
- the Map Compile option, so we don't get broken maps in production.
- SkyratBot:
- - bugfix: papers are now scannable again after an oversight, and techweb now appears
- on all head pdas
- - rscdel: removes round start tablets
- - rscadd: NT Investors have built a new perma brig on IceBoxStation for the purpose
- of press releases.
- - bugfix: Nanotrasen has declared a recall on all item stacks, due to the fact the
- fact they kept merging in hands and pockets. All stacks will now instead only
- merge in your storage containers, or on the floor.
- - bugfix: Removed a stray pixel in the energy shield module sprite
- - bugfix: The lit up rocks in the crashed ship space ruin are now dark like the
- others.
- - rscadd: The accounting console has been added to the HOP's office, allowing them
- to track purchases, and bank balances of the crew on station. It's not illegal,
- it's the competitive advantage!
- - bugfix: Stabilized extracts now work when placed inside modsuits
- - bugfix: Fixed a very rare chance for the pressure on lavaland and icebox to be
- just low enough for wings to not work. Ra'Sep rejoice!
- - bugfix: Obsesseds don't fail the hug objective if they headpat/tail pull instead,
- - bugfix: fixed a krokodil zombie transformation
- - bugfix: trying to store a plasma cutter while holding plasma should no longer
- blow you up.
EthanRockss:
- bugfix: Prop atmos mask now uses the correct worn sprite
- bugfix: Jumpsuit no longer able to burn while wearing nuke op mod suit
@@ -1745,50 +1108,6 @@
make you go fully deaf, until you find some earmuffs or get a transplant
- refactor: Cached some redundant operations in Life(), speeding it up by ~22%.
I know that doesn't mean much to you, but cpu time go brrr ok?
- - bugfix: Prop atmos mask now uses the correct worn sprite
- - rscadd: N-Spects to the Security techfab (with Basic Security Equipment)
- - bugfix: RnD servers will no longer permanently stop working when depowered.
- - bugfix: Jumpsuit no longer able to burn while wearing nuke op mod suit
- - bugfix: Prevent bullets (most notably those fired aimed at the mouth when intended
- for executions) from sometimes missing if you're firing at a target diagonally
- adjacent to you and there's an obstacle (eg. person) between you two.
- - bugfix: Turning glasses colors on/off with AltClick now properly tells you that
- you turned it on or off.
- - bugfix: The 3rd Level of IceBox is now counted as being a part of the station.
- Zonespace27:
- - config: Added a config option to enable or disable automatic permit pins
- - bugfix: Skyrat guns now use the scope component
- - bugfix: Guncargo crates should appear again.
- - bugfix: You can now unload the honeybee's underbarrel by right clicking on it
- with an empty hand
- larentoun:
- - code_imp: ERP items are now disabled with DISABLE_LEWD_ITEMS config entry instead
- of DISABLE_ERP_PREFERENCES
- - config: DISABLE_LEWD_ITEMS entry added
- softcerv:
- - qol: pillows are now craftable for 3 cloth.
- tf-4:
- - balance: the cash briefcase now costs 5 TC instead of 1
- theOOZ:
- - imageadd: Miner model for the MekaNIKA series
- - rscadd: Vfx for borgs resting, resting on tables launches items sat upon
- - bugfix: Hats work on resting borgs
- - bugfix: Meka Cargotech now actually has the UNIQUETIP flag
- - soundadd: Sfx for borg resting and smoking
- - code_imp: Finished a component which adds a particle effect
- timothymtorres, TheBonded:
- - bugfix: Fixes prescription glasses not clearing blurry vison
-2022-04-28:
- GoldenAlpharex:
- - bugfix: Fixed the title screen being off-centered.
- - bugfix: IPCs will now encounter a BSOD (blue-screen-of-death) when dying, before
- their display goes blank, and will get their screen temporarily set to the Console
- one upon revival, as previously intended.
- - refactor: Refactored how IPCs were setting up their chassis and their head, allowing
- them to be properly set for real this time. Let your imagination go wild!
- - bugfix: Augmented limbs can once again have more styles than just the default
- cyborg one.
- SkyratBot:
OperativeLyn:
- bugfix: The lit up rocks in the crashed ship space ruin are now dark like the
others.
@@ -1832,39 +1151,6 @@
item printed if it's from a lathe not under your department.
- qol: The payment component has received additional handling for physical credits,
as well as pulled credits/ID cards for those without hands.
- - bugfix: Cleaned up some pipes lying around in the Lavaland Syndicate base supermatter.
- - qol: On the mapping end, all of the Supply Departments (and Lavaland) have had
- their doors reprogrammed to use a mapping helper system, rather than manually
- editing the access variables on the door itself.
- - code_imp: adds docs for christmas tree spawner and christmas cracker
- - bugfix: notepad app no longer causes a barrage of action cooldown messages
- - balance: removed halon from normal gas reactions, added halon to the electrolyzer
- reactions by consuming co2 and n2o at low temperature and low pressure
- Zonespace27:
- - balance: Contractor Modsuit has lost a defense tier in MELEE, BULLET, ENERGY,
- and LASER
- - balance: Contractor Modsuit is now 0.5/0 slowdown instead of 1/0.5
- - balance: Assault Ops can now purchase PML-9 Ammo
- - balance: PML-9 armament now spawns with 3 rockets instead of 5
- - bugfix: Gun briefcases ordered through gun cargo on departmental budget can now
- be unlocked
- - bugfix: Items in guncargo briefcases shouldn't disappear on-order now.
- - imageadd: Digitigrade Contractor MODsuit
-2022-04-29:
- SkyratBot:
- - bugfix: Nullwave Vibrato now works as intended, stacking antimagic duration
- - balance: Nullwave Vibrato stacks 10 seconds of antimagic, every few moments you
- listen to it.
- - bugfix: Fixed lionhunter ammo sidepath
-2022-04-30:
- GoldenAlpharex:
- - bugfix: The mining augments are now visible once again.
- PositiveEntropy:
- - imageadd: Resprites most crates and the trash cart!
- SkyratBot:
- - bugfix: Fixed the moth costumers for the restaurant venue not showing up.
- - bugfix: Fixed bar venue customer bots.
- - qol: Location names in Crew Monitor console now stretch if too long again
Cenrus:
- bugfix: Fixed lionhunter ammo sidepath
Ghilker:
diff --git a/html/changelogs/archive/2022-05.yml b/html/changelogs/archive/2022-05.yml
index 4ef76c6c97d..c58bcf5f066 100644
--- a/html/changelogs/archive/2022-05.yml
+++ b/html/changelogs/archive/2022-05.yml
@@ -1,42 +1,4 @@
2022-05-01:
- Deek-Za:
- - bugfix: Meta Orderly's door control button is working once again.
- - bugfix: Repairs the photocopier. Copy away!
- - bugfix: Fixed a door bolt button not bolting the proper door in the Ghost Cafe.
- Dragonfruits, with some tweaks by PositiveEntropy:
- - imageadd: The cargonian wardrobe has now been updated into a tasteful brown!
- EthanRocks:
- - bugfix: rare case of being able to spawn off station when returning from shadow
- realm
- Fikou:
- - bugfix: fixes overslots being permanently lost if you switched modsuit skin
- - bugfix: fixes golems/monkeys keeping modsuits on if switched race from different
- species
- GoldenAlpharex:
- - bugfix: Fixed hair not blocking emissives, which ended up creating some rather
- silly visual glitches at times, in darker areas.
- OrionTheFox:
- - rscdel: Nanotrasen has had to cancel their hazard-tape purchasing deal with PlastiWrap
- LTD, as it's been driven out of business by Hardlight/Holosign technology. The
- R&D department is already hard at work on a holographic replacement for hazard
- tape.
- SkyratBot:
- - bugfix: Fixed plasma sheets and it's derivatives exploding you for being shot
- at.
- - rscadd: Breathing helium now makes your speech small
- - rscadd: Back by popular demand, the Syndicate has re-included their state-of-the-art
- Chameleon Gun into their chameleon kits, capable of disguising itself as any
- gun known to man-kind! Lethal rounds not included.
- - rscdel: Tramstation's Medbay has had some budget cuts on their fire alarms.
- - spellcheck: Fixed a few insignificant typos.
- - bugfix: Security hailers no longer inform you that you used a cryptographic sequencer
- to emag them when you did not
- - bugfix: corrects pathway in sausage and eggs. Now cooked with fried eggs as intended.
- - imageadd: Cannabis plants have recieved some new sprites.
- - code_imp: Segregate blindness code out of reading
- - bugfix: Jobs who spawn with tablets not on the belt, have their name and job properly
- displayed on the tablet, like everyone else.
- - bugfix: Fix ghosts not being able to read in the dark
Crushtoe:
- bugfix: Fixes Icebox Security's entrance airlock cyclers and the Interrogation
shutters.
@@ -71,56 +33,6 @@
- rscdel: Removed deconstructing the glass floors. No replacement for this one,
use a rcd.
- bugfix: Fixed metastation glassfloor spawning a weird turf when crowbarred.
- Spc-Dragonfruits:
- - imageadd: Resprited (almost) all of Skyrat's modular cargo clothes!
- - imageadd: Quartermaster and Cargo skirtlenecks!
- - qol: Added spriting resources to modular cargo file intended for those looking
- to add even more
- - spellcheck: Tidied up some cargo clothing descriptions
- - bugfix: Cargo clothes that previously showed up in loadout and don't anymore,
- DO again.
- Stalkeros:
- - bugfix: Mesa wall space issue fixed
- - bugfix: MP5 sprite fixed
- - balance: fixed HECU's point balance (50 to 35)
- Zergspower:
- - balance: Makes synthetic species have a pay modifier that matches other mutant
- non-human races.
- Zonespace27:
- - balance: Reduced cost of uplink firearms
- - rscadd: Energy shield MODsuit module for 12 TC to uplinks
- - balance: Cargo gets 5% of the money from all guncargo orders
- - qol: Supply consoles now announce when a company is bought.
- larentoun:
- - rscadd: Emote panel added
-2022-05-02:
- RatFromTheJungle:
- - rscadd: Adds the Dualtube Shotgun, Double barrel, detectives revolver, and the
- better mos-- brand new mosin to the guncargo companies.
- Spc-Dragonfruits:
- - bugfix: Fixed the pathing for cargo casualwear (it now works)
- softcerv:
- - rscadd: adds in blindfold HUDs, functioning as reskins of the eyepatch HUDs
- - imageadd: added in icons for blindfold HUDs
- - code_imp: changes reskinning code to allow for glasses with swapable icons to
- be reskinned.
-2022-05-03:
- Arkatos and wiki contributors:
- - qol: Mining voucher redeem selection now uses a radial menu and provides additional
- information about the voucher sets. Literally years in the making, enjoy!
- Gandalf2k15:
- - rscadd: Mutants have been overhauled!
- GoldenAlpharex:
- - bugfix: Lizard limbs are now back to their uniformized color, from the pre-Kapulimbs
- era.
- - bugfix: Lizard digitigrade legs now use the proper sprite.
- - bugfix: Humanoids can now have digitigrade legs again.
- - bugfix: Xenomorph Hybrids can now have digitigrade legs again.
- LeonY24:
- - rscadd: SCAR-L assault rifle.
- Nerev4r:
- - rscdel: Removes snail speech modifier. Try using a lot of ellipses instead!
- - rscdel: Lowers the amount of water that snails leave behind.
- bugfix: Fixed plasma sheets and it's derivatives exploding you for being shot
at.
2022-05-02:
@@ -200,22 +112,6 @@
- imageadd: Add some new blank/scribble card icons.
- imageadd: Add new clown and mime joker cards to standard decks curtesy of axietheaxolotl
(Viro on discord)
-2022-05-10:
- Cenrus:
- - bugfix: Syndicate command would like to apologize for the hole in the floor in
- their latest GoldenEye shuttle model.
- Melbert:
- - refactor: Refactored the voting subsystem. Votes are now each their own datums.
- - refactor: The voting UI now uses Typescript.
- RatFromTheJungle:
- - bugfix: Expert gunsmiths have removed the forced 'strobe' setting from the PDH-Ospreys
- rear-sight.
- Ryll/Shaps:
- - bugfix: Directional windows, firelocks, and other border objects will now properly
- block incoming ballistic fire
- SkyratBot:
- - rscadd: Adds Dungeon Master, The Painter and Their Canvas, and Nutimov lawsets.
- They aren't obtainable at the moment.
2022-05-04:
ArcaneDefence:
- rscadd: Hey did you know you can charge your tablet by microwaving it?
@@ -577,30 +473,6 @@
(Shotgun), "Lament" (Alternating cardinal and diagonal shots) and "Perish" (Final
attack)
- code_imp: Improved colossus' variable names and added spaces where required
- WatlerJe, PositiveEntropy:
- - imageadd: Resprites the Polaroid Camera and the Film Cartridge!
- YakumoChen:
- - bugfix: Black Tar doesn't multiply itself while on fire.
- - server: Stops heroin from crashing the server
- Zergspower:
- - rscadd: Re-Added robot Icons
- - rscadd: Service colors! No more hiding HOP!
- - rscdel: removed datalink code that SR doesnt use again
- - bugfix: fixed column alignment finally
- tf-4:
- - rscadd: Armourless versions of the sinew skirt, bone talisman, and skull codpiece
- are in the loadout.
- - rscadd: Armourless versions of the witch and wizard robes and hats are in the
- loadout.
- - spellcheck: (Hopefully all) the loadout options are now properly capitalised.
- - code_imp: You can now restrict loadout items to specific holidays (such as Christmas).
-2022-05-11:
- Melbert:
- - refactor: Refactored the Durathread golem's strangle status effect
- Paxilmaniac:
- - bugfix: piles of stone bricks can now actually be used to make stone walls
- SkyratBot:
- - bugfix: Fixed misplaced sofa parts in the Icemoon abandoned village.
Son-of-Space:
- bugfix: Fixed several inconsistent or niche access requirements on IceBoxStation
- qol: Replaced all access requirement vars on doors with mapping helpers on IceBoxStation
@@ -629,23 +501,6 @@
to the SM will instantly cause it to start delaminating and sets the SM for
a cascade. Once it delaminates it ensures the start of the cascade. NOTE that
if the SM recovers you won''t be able to do it again.'
- - spellcheck: Recent re-evaluations of the underlying math have concluded that a
- supermatter cascade will not, in fact, destroy the entire universe - only an
- area several hundred kilometers in radius.
- - bugfix: After a mixup in the Marker Beacon Factory with the "Default Glowing Texture"
- Factory, Marker Beacons should now have any actual sprite.
- - bugfix: fixed overlapping objecs on the AI minisat on IceBoxStation
- - qol: The supermatter cascade now takes one minute to end the round instead of
- 5 minutes to end the round, to put it on par with Blob and such.
- - code_imp: cleaned and brought up to date the powerfist code
- - qol: added some more examine text on the powerfist
- - bugfix: The Hair Stylist Association has noticed the sudden changes to the Mohawk,
- Short Hair 5, Short Hair 6 and Pig Tails 2 hairstyle and brought them back to
- their previous glory.
- - bugfix: thermomachine no longer is under every pipe but is now above them
- - qol: pipes and atmos components have better visual clarity and consistency between
- them
- - bugfix: You can no longer farm orbiting blades by using your mark on corpses
- bugfix: Fix being unable to refine the delimber anomaly raw core in the refinery
- code_imp: cleaned and brought up to date the powerfist code
- qol: added some more examine text on the powerfist
@@ -711,114 +566,6 @@
- refactor: Refactored how legs are rendered, using dynamically-generated masks
to avoid left legs always displaying over right ones, or right legs above left
ones.
- Melbert:
- - bugfix: The first stage of addiction now actually occurs.
- - code_imp: 'The confusion status effect is now based on duration (seconds) instead
- of magic numbers. Fun fact: When confusion was refactored 2 years ago, literally
- all confusion effects had their durations halved. Pretty neat!'
- - code_imp: Confusion also applies its effects via signal. Moved it out of move
- code.
- - code_imp: Flashing code is now slightly better.
- - refactor: Jitterriness is now a status effect
- Paxilmaniac:
- - qol: stone walls can be made directly from stone without a girder, y'know, since
- stone walls usually don't have metal in them
- - bugfix: tiles made from stone will no longer just be metal tiles with no differences
- SkyratBot:
- - balance: Fireball no longer has a 3 tile wide hitbox.
- - bugfix: fixes door access.
- - bugfix: maintenance access returned to the library door on IceBox station
- - qol: department signs have directional variants
- - code_imp: sign paths are now in snake_case
- - bugfix: varedited access reqs were removed from the service hallway on IceBox
- so mapping helpers can function correctly
- - spellcheck: Removes some erroneous "the" in some clown car messages
- YakumoChen:
- - rscdel: MODsuits with magnetic harnesses pre-installed no longer can carry guns
- on them if the harness is removed.
- Zonespace27:
- - balance: Osprey is now harder to obtain via guncargo
- - rscdel: Ruby removed from guncargo
- mazzinsanity:
- - rscadd: Adds a new audible *gnash emote which sounds like space carp bites.
-2022-05-13:
- SkyratBot:
- - bugfix: fixed dizziness causing hard crashes
- - bugfix: Constable helmets no longer cause your hair to mysteriously disappear
- when wearing one.
-2022-05-14:
- Crumpaloo - Main Sprites, ErdinyoBarboza - Minor Sprite Fixes:
- - rscadd: LubriCola, Welding Fizz are now available in Cola Vendors for synthetic
- crew.
- - rscadd: Synthanol Cans are available in BoozeOMat
- - rscadd: Snailpeople take Mush Crush as their racial drink
- - rscadd: Xeno Hybrids finally take abduction fruit as their racial drink
- - rscadd: Anthros, Tajarans and Felinids now take Frisky Kitty as their racial
- - code_imp: Only Tajarans and Felinids meow and nya when drinking catnip
- - rscdel: Deleted unused skyrat milkshake code
- - balance: Racial Drinks no longer make you puke your guts if you are not its preferred
- race out. They instead taste good.
- - imageadd: All Skyrat Drinks have been repsrited
- - imageadd: Added sprites for Welding Fizz and LubriCola and Synthanol Soda Cans
- - imagedel: Deleted skyrat milkshake sprites
- - code_imp: Laid out groundwork for Skyrat Modular Soda Cans, New sodacans can be
- added by using soda_cans/skyrat subtype.
- Crumpaloo - Main Sprites, PestoVerde322 - Soda Cans, Vending Machines and Posters, ErdinyoBarboza - PR and Small Fixes:
- - imageadd: All drinks and bottles have been resprited
- ErdinyoBarboza:
- - bugfix: MCR has finally updated their cell designs, allowing them to be loaded
- while moving and overall load a lot faster
- Guillaume Prata:
- - bugfix: Surgery tools will now give silver back when recycled.
- - balance: Tier 2 tools (Jaws of life/Laser scalpel/Experimental welder) are changed
- from Small to Medium sized so now you can't carry 49 Jaws of life in your backpack.
- - bugfix: Whistles are small now. Rejoice not having to carry a whistle that was
- the size of a bucket while trying to be the referee for a match.
- - qol: Removed Sutures/Ointment from the list of items you can hold in the exoslot
- of your medical wintercoat as there is basically no reason for someone to carry
- them on that slot and they kept getting placed there by the inventory shortcuts.
- Jolly:
- - rscadd: Added new areas to BlueShift (a lot, too many to count).
- - rscadd: 'The following maintenance areas were added: Atmospherics maints, Departures
- maints (near the escape PODS), salon and nightclub maints and many more.'
- - rscadd: 'The following command areas were added: Captains kitchen and Dining rooms.'
- - rscadd: The Asylum specific area and Tele Sci specific area were added.
- - rscadd: BlueShifts maintenance has been made a lot dirtier. The bottom most layer
- was also rusted more.
- - rscdel: Removed the scrubber pipes for BlueShifts freezers (this functionality
- was removed in a previous mirror).
- - bugfix: 'Numerous wall-specific things on BlueShift to have been edited to fit
- a more /TG/ standard (mapper lingo for: they''ve been var-edited where needed
- OR directional variants have been used).'
- - bugfix: Removed the random bit of open space at precisely 48, 181 on BlueShifts
- upper most layer.
- - bugfix: Some chairs on BlueShift have been properly rotated.
- - bugfix: In BlueShifts diner, the corner booth has been replaced with an end booth.
- - bugfix: Scrubber pipes and distro pipes randomly ending somewhere in BlueShifts
- engines maints are now properly connected to the main network.
- - bugfix: Blue Shifts atmospherics turbine interior airlock vent is now connected
- to the main pipe network. The room can now be supplied with air.
- - bugfix: Near station turf was applied to BlueShifts lowest grills and lattices.
- - bugfix: Some of BlueShifts active turfs have been rectified. However, the Ordnance
- Testing Area had their floor changed from indestructible to regular flooring.
- - imageadd: Added icon turf icons for BlueShield and NT rep offices.
- - imageadd: Added icon turf icons for the salon, pool, and cryopod areas.
- - imageadd: Added icon turf icons for a slew of new areas.
- Melbert:
- - bugfix: Fixes some wonky vote formatting
- - balance: Central Command's agency of supernatural structures have made it much
- less likely for you to come across ancient altars
- Paxilmaniac:
- - rscadd: Sauna ovens now emit steam particles while they are on and emitting water
- vapor
- RatFromTheJungle:
- - rscadd: NT Armories now carries suppressors, for all your indoor shooting needs.
- SkyratBot:
- - bugfix: Fixed several inconsistent or niche access requirements on TramStation
- - qol: Replaced all access requirement vars on doors with mapping helpers on TramStation
- - bugfix: Realigns the DeltaStation holodeck to fit universal templates
- - bugfix: It is no longer possible to access cargo through maintenance without appropriate
- access on MetaStation
JohnFulpWillard:
- rscdel: 'The following job cartridges have been deleted: Detective, Lawyer, Janitor,
Curator, Roboticist and Scientist (without sensor pack).'
@@ -1016,10 +763,6 @@
- code_imp: Adds radial support to stack crafting.
- qol: Cult buildings are now made via radial, instead of stack window.
- qol: Stack craftingnow uses balloon alerts.
- - bugfix: Fixes mind restoration causing dizziness instead of healing it
- SkyratBot:
- - balance: Sending PDA's to all is now configured by the WireCarp app, rather than
- being tied to Law office access.
RandomGamer123:
- bugfix: Tank compressors' icons now visibly update when being rotated
- bugfix: Tank compressors' rotation after reconstruction actually work properly
@@ -1031,72 +774,6 @@
to fit the job function
- bugfix: Detectives now have general access to all general areas of security consistently
across all stations
- - code_imp: pod cloning logging is now in investigate botany
- - imageadd: Turned vapes into GAGS making them recolorable from vendors.
- - imagedel: Removed the massive ammount of old icons for vapes.
- - balance: Snowdin.dmm is now in line with the design doc
- - bugfix: Tank compressors' icons now visibly update when being rotated
- - bugfix: Tank compressors' rotation after reconstruction actually work properly
- - code_imp: '`/obj/machinery/atmospherics/components/proc/connect_nodes()` actually
- gets called on every node of the atmospheric component'
- - qol: Change drunk blur effect to scale based on intoxication
- - bugfix: Jobs that are in several departments (like HoP, who is charged for Supply
- but not Service) won't get charged lathe tax for any departments they are in.
- - bugfix: non-cultists can now enter the pride ruin
- - config: In case you were really keen on using Virtual Reality Hub stuff in your
- code, do keep in mind that we've removed references to it in config.
- - qol: ethereals can now press the ghost button to cancel crystallization and permanently
- vacate their body
- - refactor: Turned the forensics component into a datum.
- - code_imp: If you're looking into patching out Active Turfs, the logging message
- that alerts you to said Active Turfs is now a bit more verbose to getting you
- put on the right track.
- - bugfix: Experiments now work on non-station z-levels
- oranges:
- - bugfix: Slimes will once again feed on monkeys
-2022-05-19:
- ErdinyoBarboza:
- - bugfix: Fixes Multi Sprite Mags using non existing sprites.
- Guillaume Prata:
- - balance: RCDs can't deconstruct reinforced tiles directly anymore.
- Melbert:
- - bugfix: Restart Votes work once more
- SkyratBot:
- - balance: Buffed PACMAN generators to make the map-spawned gens more usable as
- backup sources of power.
- - qol: PACMAN now tells you if it will use uranium or plasma when you screwdriver
- the board
- - bugfix: The bluespace pen slot has been removed from tablets. Now only tiny items
- can fit, spray cans and smoking pipes are now small items meaning they will
- no longer fit into pen slots.
- - bugfix: fixed cryoxadone not working in crit, it now checks for general unconsciousness.
- So things like oxyloss knock out is included.
- - qol: If the state or temperature of your cryo ui is red that means cryoxadone
- wont be able to work.
- - bugfix: The bounty console should no longer lock up for certain jobs after making
- a new bounty.
- - config: Changes the policy.json index for polymorphed mobs from "polymorph" to
- "Polymorph".
- - config: Changes the policy.json index for the policy verb header from "policy_verb_header"
- to "Policy Verb Header".
- - bugfix: Due to the config changes, Polymorph policy text will now be shown to
- players when it previously wasn't.
- - bugfix: Attacking people, atmos omni tanks, supplypods and paintings with deep-fried
- items no longer shows an error sprite.
- - bugfix: Animations for attacking people, atmos omni tanks, supplypods and paintings
- with items are no longer black.
- - bugfix: Artificers can see their action buttons again
- - bugfix: Admins can no longer unprotect globals.
- Tastyfish:
- - bugfix: Fixed the secret padded firesuit on Deltastation.
- Zonespace27:
- - bugfix: More guns should have companies now
- - qol: Gun company labels are visible on regular examine, not double examine
- softcerv:
- - bugfix: Fixes Sabre Belt Sprite not being assigned a name.
- tf-4:
- - bugfix: Tram and Icebox once again have gas miners.
-2022-05-20:
SuperNovaa41:
- refactor: Turned the forensics component into a datum.
Tastyfish:
@@ -1142,21 +819,6 @@
size to normal while making it uncompatible with storage modules.
- rscadd: Adds the chameleon MOD module from the uplink. It lets you disguise the
suit as any back item while it's off.
- Nerev4r:
- - imageadd: Adds more horns. Upward, curly, lifted, horns from Sojourn, and a Dragon
- option from Virgo.
- - rscadd: Adds about five new tails. Seven-tailed sprite for kitsune, a segmented
- tail (with wag animation,) and three Shadekin tails.
- - imageadd: Adds some more ears, five of them.
- - imageadd: More wings, about eight of them. Miniature (and tinier) bat and feathery
- wings, as well as beetle and generic insectoid wings.
- Paxilmaniac:
- - qol: Food can now be baked and 'microwaved' at lit forges, removing the need for
- an oven and microwave at the ashwalker camp completely
- Ryll/Shaps:
- - admin: Admins using the dsay verb will now have their rank(s) shown in a hoverable
- tooltip
- SkyratBot:
Guillaume Prata:
- balance: RCDs can't deconstruct reinforced tiles directly anymore.
Ivniinvi:
@@ -1216,98 +878,6 @@
made similar (15 anti, -13 hyper), transmit modifier added (-5 anti, 3 hyper)'
- rscadd: lights now break or set to emergency when the cascade starts, maintenance
is set to emergency access
- - admin: AI malf/combat purchases are now logged in uplink.log
- - bugfix: Fixes solid plasma breaking into plasmaglass shards
- - bugfix: Radstorms now yield to the almighty GODMODE flag. Rejoice.
- - qol: Department heads are now able to check their department budgets when examining
- their ID. NT IRN has also been updated for clarity.
- Tokkihopp:
- - bugfix: Forging tongs now display as being empty when their final rod is forged
- into an item.
- Tokkihopp and Crumpaloo:
- - bugfix: Updated all three forged boots and the chain chest piece to work with
- digitigrade sprites
- - bugfix: Fixes the chain helmet sprite for snouted faces
- - bugfix: Fixes the plate boots sprite for plantigrade legs
- Zonespace27:
- - bugfix: Contractor tablet works again and no longer is nameless.
- tf-4:
- - qol: The arrivals shuttle got new thrusters, cutting its travel time in half and
- its recharge time down by a quarter.
-2022-05-21:
- Deek-Za:
- - bugfix: Fixed Sec Off / Warden vests for digi.
- - bugfix: Removed fire doors causing perpetual fire alarms on Meta/Delta station
- server rooms.
- GoldenAlpharex:
- - bugfix: Fixed everyone being able to start transfer votes. Now, only admins will
- be able to, if autotransfer is enabled.
- - config: Added ALLOW_VOTE_TRANSFER config flag, defaults to false.
- Jolly:
- - bugfix: The APC in BlueShifts power bank room is connected to the right wire layer.
- - bugfix: Replaced the areas of some of BlueShifts engines with nearstation.
- - bugfix: Service area of Blueshift now has redundant wiring to prevent power issues.
- - rscadd: Replaced the current arcade machines in the ghost cafe with random spawners.
- - bugfix: Stools in the Interlink have been edited to not be var-edited anymore.
- - bugfix: Stools in the Ghost Cafe have been edited to not be var-edited anymore.
- MidoriWroth:
- - code_imp: Changed the tree ferret plush sound to something even less threatening
- OrionTheFox:
- - bugfix: Lopland and Armadyne have snagged a few more straggling redsec items,
- ensuring uniform standards are met.
- Paxilmaniac:
- - bugfix: you can no longer make stone walls out of uranium
- - bugfix: you can now actually make stone walls with stone
- - bugfix: moving away from a forge when making a selection to cook food will no
- longer permanently lock everyone out of using the forge
- PositiveEntropy, Retlaw34, PacifistDalek:
- - imageadd: Resprites the fire extinguishers once more!
- RatFromTheJungle:
- - qol: Made the Makarov (traitor) magazine actually say the actual ammo, and clarified
- the desc on a few previously 14 gauge shotguns, as well as clarifying auto and
- peacekeeper ammo types on the R-C makarov.
- - bugfix: Added a few bullets that were just whole-ass unobtainable for the guns
- that used them.
- - qol: All guns in the armadyne tab now clarify which ammotype they use,
- - balance: Disablers have been dropped in stamina damage from 41>30.
- SkyratBot:
- - rscadd: Appraiser Skillchip is now available.
- - rscadd: You can now emag tram crossing signals to disable their motion sensors
- - config: adds config to allow for name links in adminwho
- - refactor: Flora code is much more organized :)
- - rscadd: Flora (trees, plants, etc) can be uprooted with a shovel, which can then
- be dragged around.
- - code_imp: Moved "kirbyplants" into their own .dm file, instead of just finding
- a comfortable spot in flora code
- - bugfix: Cook's CQC now properly works in the assigned areas outside the kitchen.
- - bugfix: Cooks now properly get their Cook mail instead of just money.
- - bugfix: Mapping configs can now once again set job position slots (and fully remove
- jobs from maps that don't support them).
- - rscadd: Added Spinward Smoothies Space Ruin
- - rscadd: Added six types of smoothies
- - rscdel: Removed some redundant cables in Kilo maints
- - bugfix: Removes some stray wires in Tram med maintenance
- - bugfix: Fixes missing eye icon
- - rscadd: Tramstation now has crossing signals to help you not get hit by the tram
- (or jump in front of it at the last minute for comedy value).
- - refactor: Refactored how the analyzer's last gasmix ui thing works. No gameplay
- changes expected.
- - code_imp: Reorganized tool usage code a bit. Also no gameplay changes expected.
- - bugfix: Jetpacking in space without stabalizers feels good now
- - bugfix: If you're pulling something in space, and release the pull, it'll follow
- behind you properly
- - bugfix: circuit speech is now logged properly
- - bugfix: Removes a duplicate table in the Laundry Room of IceboxStation
- - bugfix: Fixed vendors qdeling brains of GODMODEd admemes upon rolling a crit squash
- - rscadd: Charliestation now has a Supermatter and Gravity generator chamber.
- - balance: Charliestation now requires the gravity generator to have functional
- gravity. Its botany also has a biogenerator and nutriment vendor.
- SmArtKar, SpadesSlick:
- - imageadd: New sprites for xenobio shield wall generators
- Tastyfish:
- - bugfix: Fixes some airlock cycle links in Blueshift.
- - bugfix: Fixed Tramstation's Supermatter Engine APC.
- - rscdel: Took NSS Journey out of its misery.
Mothblocks:
- balance: Midround rolls will now happen more frequently, with their power scaling
up over time.
@@ -1355,37 +925,6 @@
- bugfix: Ceramic shards are no longer comically large, and can be fit inside trash
bags for cleanup.
YakumoChen:
- - bugfix: Microfusions can be stored on MODsuits with a magnetic harness again
- - qol: interdyne spawns with right id
- Zenitheevee:
- - bugfix: Fixes Tarkon's Access problem with the turbines being set to station accesses
- that tarkonites don't have.
- - bugfix: Fixes Tarkon's issue with the turbine not giving power
- Zonespace27:
- - qol: It is more apparent when OPFOR applications have denied objectives.
- - bugfix: Synths no longer get inherent armor.
- - bugfix: Armament Dynamics 10mm auto ammo boxes are not invisible anymore.
- softcerv:
- - code_imp: removes single letter variables from Skyrat modular wound code.
- - bugfix: BlueShift medbay now has anesthetic canisters
- tf-4:
- - qol: An array of chat messages have been converted to balloon alerts.
-2022-05-22:
- Melbert:
- - bugfix: Rust and Blade ascension make you stun immune again
- SkyratBot:
- - bugfix: 'Snowy floors should be snowy instead of being... Counter-Strike: Source
- Missing Textures.'
- - bugfix: Fixed ethereal revive crystal bugging out when buckled
- - bugfix: Restores Captains pen and QM survial pen in respective Pdas
- - bugfix: proximity monitors now work on stuff that was created inside it
- - refactor: Converted the airlock controller to TypeScript, added some visual effects
- - bugfix: There are no longer two turfs on one tile in Hilbert's Research Facility.
- In case you've stopped by and some portion of it has been oddly depressurized
- (maybe? i dunno), you should be fine now.
- - spellcheck: There is now a space between the Staff's name and the thing that declares
- them to be Staff in deadsay.
- - admin: Added a new Puzzgrid smite
- bugfix: 'Tram: Engine room external airlock access corrected.'
jlsnow301:
- refactor: Converted the airlock controller to TypeScript, added some visual effects
@@ -1432,26 +971,6 @@
obscured the location of where any potential blood cultists may be summoning
their eldritch deity, this should no longer happen whenever they tack this intern
on.
- - bugfix: fix sm shards dusting when wrenching
- - balance: Hitting someone in melee with the explosive lance now moves you to the
- same tile as them before it sets off the grenade.
- - bugfix: Electrolyzers that are anchored no longer consume 5kW even when turned
- off
- - bugfix: Cyborgs once again can't PDA people anymore.
- - bugfix: Fixed 217-D Plasma Cutter and Exosuit PKA being uninstallable on ripley/clarke
- tf-4:
- - bugfix: The status tab works again
-2022-05-23:
- Cenrus:
- - bugfix: Fixed DMR box magazine and bullets not sharing the same caliber
- Danger Kitten:
- - balance: NanoTrasen has tinted the permabrig windows for the "safety" of their
- prisoners.
- Deek-Za:
- - bugfix: Public airlock assembly has the proper icon again
- Ghommie:
- - bugfix: Replaces the space turfs under the resin walls at the ghost cafe with
- dirt.
- spellcheck: There is now a space between the Staff's name and the thing that declares
them to be Staff in deadsay.
- bugfix: There are no longer two turfs on one tile in Hilbert's Research Facility.
@@ -1477,21 +996,6 @@
- bugfix: Malfunctioning AI's Doomsday cinematic also shows again.
- code_imp: Sorted, doc'd, and minorly improved the code of nuclear bombs.
- refactor: Refactored cinematics a teeny bit.
- PK_Sonikal:
- - rscadd: The Survivalist Bunker, occasionally found by space explorers, now has
- a pharmacy for chemistry.
- SkyratBot:
- - bugfix: Nanotrasen's Reality Corrections Office has stumbled across an older station
- with a bunch of abandoned spacemen abroad. Rather than rescue them, they elected
- to fix the weird lighting issues their external portions had, and then flew
- off. Those spaceman are still out there.
- - rscadd: Cascade rift is now a portal that teleports you to centcom evac instead
- of dusting you.
- - balance: There are more crystal walls spawned around the station and the timing
- of the cascade has been changed to start the one minute countdown after the
- portal has been eaten.
- - refactor: 'Improved UI for personal crafting: has category groups, better full-sized
- UI, more space-efficient and readable compact mode.'
MidoriWroth:
- bugfix: Removes the unnecessary light switch in Meta Station medbay central.
PK_Sonikal:
@@ -1504,79 +1008,6 @@
welding the scrubber shut and leaving it for a while.
- rscadd: The plunger has been integrated into the janitor's arsenal. You may now
purchase them from the Janidrobe and equip them into janibelts.
- - rscadd: Smoke expands through newly opened airlocks if it hasn't finished spreading.
- - bugfix: Petting 10 animals no longer counts as individual mood bonuses, and will
- instead replace eachother.
- - bugfix: fixes goliath not chasing people
- Zonespace27:
- - rscdel: Removed His Grace from Chaplain uplinks
- - balance: Non-ashwalkers only obtain half the ore from forging
- tf-4:
- - bugfix: Cyborgs once again have access to the crew manifest.
- - bugfix: Noses may once more be booped.
-2022-05-24:
- Christmas5:
- - bugfix: Changeling transformations should finish after using the ability once
- instead of twice.
- - bugfix: Changeling transformations now update mutant parts, body markings, eye
- colours, eye emissives, underwear/undershirt/socks colours, gradient styles,
- gradient colours, physique, neck items.
- Fikou, unit0016:
- - rscadd: Chrono Legionnaire and Admin MODsuits now have the ability to hold mobs
- with kinesis.
- NotRanged, SuperNovaa41:
- - qol: There is a new verb in the Admin tab that lets you view your open Admin Help
- ticket.
- RatFromTheJungle:
- - rscadd: Cargo now has access to a Sol-Fed classic fighting knife, the bowie-knife.
- SkyratBot:
- - refactor: Compartmentalized defines for access IDs and converts them from integers
- to strings
- - bugfix: Standardizes some access reqs on varedited objects like windoors and shutter
- buttons
- - bugfix: Some missed doors with access reqs instead of mapping helpers were fixed
- - bugfix: Fixes the price on SOUTH. BRONX. PARADIIIISE! Again.
- - bugfix: Cell chargers no longer show up twice in Industrial Engineering's research
- node, and APC modules don't look like a Golem shell.
- - bugfix: Fixed incorrect departmental signs on Delta and Meta, as well as the Caves
- Gateway mission.
- - qol: the prototype modsuit is now shockproof
- - balance: Silver slime food is now toxic, as it's not real food.
- - balance: Halves the damage of EMPs to MODsuit users to 5 from 10
- - balance: Puts EMP shields on the syndicate modsuit
- - rscadd: Adds advanced EMP shield modules, they shield your whole body from EMPs.
- Available in the nukie uplink
- - balance: Emagged chem dispenser in the deepstorage ruin is replaced with a regular
- one.
- - balance: Midround rolls will now happen more frequently, with their power scaling
- up over time.
- - bugfix: Fixed midrounds not logging properly.
- - bugfix: The holodeck on DeltaStation will no longer vent all of its atmospherics
- into space when a program is switched. Whoops.
- - bugfix: herald projectiles no longer have weird healing mechanics
- - bugfix: Removes a few redundant Icebox botany cables
- Tastyfish:
- - bugfix: You can now reattach teshari limbs to teshari.
- - bugfix: Fixed possible edge case issues with multiple uses of turf emote at the
- same time.
- - bugfix: Teshari fallback clothing rendering in some edge cases is improved.
- Zonespace27:
- - bugfix: Springlock module now reacts with water
- - refactor: Contractor baton holster code has been refactored
- - bugfix: DS-2 and Interdyne base modsuits no longer need to be hacked to be used
- by syndicate personnel
- nevimer:
- - qol: tweaks medhud to not show dc'd but still linked ghosts as DNR.
- - qol: changes the dead example blurb
- tf-4:
- - qol: The distro and waste lines in and around atmospherics on Blueshift are now
- more out of the way while preserving functionality.
- - spellcheck: Wings are now better organised.
- - bugfix: Burned moth wings now work.
- - qol: Tails can now protrude from beneath a wider variety of clothing if you so
- choose.
- - spellcheck: Fixed a few incorrect capitalisations
-2022-05-25:
Son-of-Space:
- qol: Moved around some overlapping wall objects in engineering on IceBox
- qol: Removed a 2x2 wall in engineering on IceBox
@@ -1611,30 +1042,6 @@
also no longer takes space on the hardware, something something bluespace cloud
storage. As a result, everyone should once again be spawning with the programs
they were meant to spawn with in the first place.
- Melbert:
- - bugfix: Wags-His-Tail and Eats-The-Roaches have wiggled their way back from a
- deep space expedition to the janitorial closet of Deltastation.
- SkyratBot:
- - bugfix: Fixes stopping, dropping and rolling not extinguishing your clothing
- - imageadd: Beef stroganoff and berry tarts have new sprites
- - rscadd: There's a new shuttle! You can now purchase "Basketballer's Stadium" from
- your station's communications console in order to get some good time in bouncing
- around a ball and making those sneakers squeak against the well-polished floors.
- Enjoy!
- - bugfix: If you've been paying to the Continuous Integration logs since... the
- dawn of the creation of the "Create And Destroy" Unit Test, you may be pleased
- to know that we should now no longer have mapping errors logged as a result
- of that test running.
- - bugfix: Removes an extra table in Meta atmos
- Tastyfish:
- - bugfix: The torso part of modsuits now appear on teshari correctly.
- Zonespace27:
- - bugfix: Fixed end-of-round OPFOR report runtime
- - rscadd: New module for Contractors added, the SCORPION hook module, costs 3 Rep.
- tf-4:
- - bugfix: A few tails which were meant to be able to use the fluffy turf emote and
- couldn't, now can.
- - bugfix: ashwalkers can use quirks and not loadouts, as was intended
Iamgoofball:
- bugfix: Fixes the price on SOUTH. BRONX. PARADIIIISE! Again.
Maurukas:
@@ -1653,66 +1060,6 @@
will still be able to bash the keyboard to send the ship.
- rscadd: New severe brain trauma - Dyslexia. It just makes you illiterate until
it's fixed.
-2022-05-26:
- Cursor:
- - rscadd: The Ghost Cafe now has a skillsoft machine. Go on then. Learn about...Wine?
- - bugfix: Ghost Cafe's chem lab now has it's missing wall. Bobert the Constructor
- has been fired.
- - bugfix: The Ghost Cafe management also hired an interior decorator. His name is
- Jim, be nice.
- Jolly:
- - bugfix: Fixed some of BlueShifts active turfs.
- - bugfix: The turret controller in BlueShifts AI Antechamber should now be functional.
- - bugfix: One of Trams modular maintenance doors had its access removed, in favor
- of the already existing mapping helper.
- - bugfix: Access Mapping Helpers is now ticked and usable for mapping.
- Paxilmaniac:
- - rscadd: Ashwalkers that find themselves on the icemoon now have a unique den suited
- for the area
- SkyratBot:
- - rscadd: You can now open taps on fuel and water tanks, making them leak fuel/water
- - bugfix: You can no longer forge hrefs to message everyone from any PDA.
- - rscadd: Added a disposal bin to the medbay treatment center on Delta.
- - imageadd: adds the podpeople photocopy ass
- - bugfix: SMES on the Zoo ruin no longer feeds into itself
- - bugfix: The DB query retrieving the feedback thread link for adminwho properly
- deletes the DB query across all code paths, stopping error spam in admin chat.
- - bugfix: The showers in the MetaStation Medbay are properly plumbed again
- - bugfix: On DeltaStation, Nanotrasen has made access from Medbay Maintenance to
- the Recreation Area unrestricted.
- Son-of-Space, MrDoomBringer:
- - bugfix: All airlocks across all maps have been properly titled in upper case
- - code_imp: A check has been added to look for incorrectly titled airlocks
- Zonespace27:
- - bugfix: Headshot links should now work again.
-2022-05-27:
- Gandalf2k15:
- - rscadd: Adds a new HTML lobbyscreen!
- Jolly:
- - bugfix: Scientists should now be able to access the mass driver on Kilo once more.
- - bugfix: Kilo had some of its areas fixed.
- Melbert:
- - bugfix: Adds some minor sanity to the Lionhunter Rifle.
- RatFromTheJungle:
- - balance: Smartdarts can no longer load super-melatonin, or morphine, relegating
- them back to the actual combat-oriented syringe guns.
- SkyratBot:
- - qol: The genetics console is a bit easier to use with scrolling mutations and
- tabs.
- - admin: Added an debug data disk to test mutations.
- - code_imp: added access helpers for various off-station content
- - bugfix: Fix transparent floors ignoring blur effects
- - refactor: sm cascade walls are no longer turfs, but are object, no player facing
- changes
- - bugfix: fixed announcement text and removed '
- - bugfix: Anomalies shouldn't spawn with frequencies that can't be selected on signalers
- anymore
- - bugfix: Hardcore random pays your score again as non-antag
- - bugfix: fixed TTS volume changes not working
- - bugfix: basic mobs & co no longer indiscriminately perform close-range actions
- in the presence of obstacles such as directional windows between them and their
- target.
- - bugfix: Doggos should look at you with longing eyes once again if you dare pick
- up an edible they are trying to eat.
- - balance: Syndicate corpses dropped from killing a Legion no longer come with a
- MODSuit.
- - balance: Engineering, janitor and medical holosign projector projection time reduced
- to 1 second.
- - balance: Engineering, janitor, and medical holosign integrity reduced to 1.
- - balance: Engineering holosign projector max capacity increased to 12.
- - balance: Medical holosign projector max capacity increased to 6.
- - bugfix: You can no longer attach humanoid heads/arms to monkeys
- - bugfix: You can once again attach monkey limbs to monkeys
- - bugfix: Mobs will fly around space... less
- - qol: Admins can make a portal not spark when teleporting
- - qol: The Canvas UI now shows a grid while the user is painting.
- - bugfix: You can no longer pulse the wire on an unpowered shield generator to activate
- shields
- - bugfix: External only setting on modular shield generators now properly uses terrestrial
- turfs such as lavawastes.
- - server: del logging is now done by outputting to a json file again, but this time
- we're using ACTUAL json and not just a big text string with newlines and shit
- - balance: The mothership which abductors came from has worked very hard to train
- their field agents how to use batons from their specimen's habitat
- - admin: new log viewer, try it out. (View Round Logs)
- - bugfix: fix "none" gas names in gas filter
- Stalkeros:
- - bugfix: Adds or possibly re-adds firearm magazine ejection sounds.
- Treach:
- - bugfix: Turbine parts can now be printed at ancient protolathes.
- larentoun:
- - bugfix: Fixes an issue, when shooting with non-MCR didn't update ammo counter
- - bugfix: Fixes an issue, when injecting a magazine didn't update ammo counter
- - code_imp: Fixes a stacktrace, when equipping an equipped gun caused a signal overrides
- - refactor: Ammo HUD is more modularized
- vinylspiders:
- - bugfix: '''Stop All Animations'' from the VV menu will no longer cause the mob''s
- size to get permanently reset to the default'
-2023-06-02:
- Charley:
- - bugfix: fixes birdshot access in various spots.
- Jolly:
- - bugfix: '[MetaStation] - Secured some walls in science that weren''t secured properly
- (reinforced).'
- MTandi, Krysonism:
- - rscadd: Added Spess Knife with many tool behaviours
- ShizCalev:
- - code_imp: Made a new unit test to find turfs with broken/missing icons! Rejoice!
- - bugfix: Fixed a bunch of incorrect and missing turf icons.
- SkyratBot:
- - bugfix: Added a name and description for the basic version of the bow.
- - balance: Golems' 55% species innate armor has been lowered to 10%
- - bugfix: Nanotrasen engineers has installed delamination counters for all Northstar
- class expeditionary vessels to increase the pressure for engineers not to fuck
- up
- - bugfix: Syndicate Holster now works as intended (You can finally put both revolver
- and speedloaders in it at the same time).
- - balance: You can now sweep garbage into open trash bins (the crate subtype).
- - bugfix: Syndicate mod-suit in Tactical NukeOps Metagame Syndi-kit (the one with
- bulldog shotgun) now doesn't require any access, so you don't need to buy agent
- card to simply use it.
- - spellcheck: Plate Gauntlets and Plate Boots now have proper looking names.
- - bugfix: Disposals pipes for the Detective's office & Mining cafeteria now work
- on tram.
- - bugfix: Replaced an open space with a floor at the courtroom holding area.
- - bugfix: precise insertion of sheets into material container (e.g. drone dispenser)
- works again
- - bugfix: recycler properly recycles all contents inside a storage medium like a
- backpack & even inert bag of holding
- - bugfix: gaining extra metal after recycling ammo boxes
- - qol: recycler consumes only half the power when recycling item's that has no material
- - qol: you can fill up your bag with iron, glass, whatever material and attack the
- autolathe/ore silo with it to transfer all it's contents into it
- - refactor: '`/datum/component/material_container/insert_item()` now splits stack,
- deletes the inserted item & calls the
-
- `after_insert` callback'
- - refactor: '`/datum/component/material_container/user_insert()` now extracts material
- from all the contents of an atom reccursively'
- - image: Resprited many condiment containers
- - image: Added a sprite for cooking oil / corn oil container
- - image: Replaced old condiment bottles with the newer bottles in Condi Master
- axietheaxolotl / viro:
- - image: 'brand new pride pin sprites! Also adds a couple more options: mlm/gay,
- genderqueer, genderfluid, and aromatic'
- softcerv:
- - rscadd: Adds soulcatchers to the game, see (https://github.com/Skyrat-SS13/Skyrat-tg/pull/20576)
-2023-06-03:
- Paxilmaniac:
- - bugfix: As I thought I did already but apparently didn't, the wooden walls in
- the ashwalker camp create wooden barricades you can turn back into wooden walls,
- rather than iron wall girders.
-2023-06-04:
- LT3:
- - image: 'Donator reward plush: sexy snoodle'
- SkyratBot:
- - bugfix: Spatial instability now gets properly energized by energetic chromosomes
- - bugfix: Stops shields getting broken by pillows and disablers.
- - image: Made the oxygen medkits different coloured from the general medkit colours,
- and tweaked the burn medkits to look a bit less orange
- axietheaxolotl / viro:
- - image: brand new crate sprites, wowie zowie!!
- larentoun:
- - bugfix: Engineering departmental order consoles can now once again order gas canisters.
-2023-06-05:
- Rhials:
- - rscadd: The scrubber clog event is now the ventilation clog event. It uses vents
- instead of scrubbers now. It is now the ventilation clog event.
- - rscadd: Ventilation clogs now produce a lot of filth in addition to produced mobs,
- and make the surrounding area dirty.
- - balance: Ventilation clogs may produce more mobs at once, and have a higher limit
- on how many can occur per round.
- - code_imp: The ventilation clog event is now self-contained, and handles all logic/behavior
- in the event itself (rather than on the targeted vent).
- SkyratBot:
- - image: Added a cross to the top of the new medical crate for readability's sake.
- - qol: Fugitive hunters now get a deadchat poll and notify deadchat properly.
- - bugfix: Gun overlays (energy ammo counter, flashlights, bayonette, etc) are now
- one with gun's icon, which makes said overlays to transform correctly with gun's
- transform (ie, throwing)
- - balance: 'The source of the demonic portals that endlessly deposits snow legions
- onto the Icemoon no longer preserves the bodies nor gear of the damned (read:
- demon portal snow legions now only drop skeletons).'
- - bugfix: fixed dead plant having wrong icon roundstart
- - spellcheck: Fixes grammar error on syndie sm shard desc
- - bugfix: Radios tuned to things other than common respond properly to turning on
- the speaker
- SomeRandomOwl:
- - sound: reduced the size and length of a few large audio files
- - sound: Gamma Alert level now indefinitely loops until alert level is changed,
- so you really know that the universe is ending
- - sound: NRI HEV Suit no longer has Unique sounds
- - sound: All HEV suits no longer have intro songs
- zeroisthebiggay:
- - bugfix: mantis blade is sharp
-2023-06-06:
- JohnFulpWillard, tatax:
- - qol: '[Mafia] Players are now sent back to their in-game character''s bodies when
- they finish a game.'
- - image: '[Mafia] Mafia now has a new sprite for the main action button in-game.'
- - bugfix: '[Mafia] Chaplains can now use their ability.'
- - bugfix: '[Mafia] The game no longer ends in a Draw if Town or Changelings win.'
- - bugfix: '[Mafia] The role list now properly shows roles once.'
- Jolly, vinylspiders:
- - bugfix: '[DS-2] - Fixed the locker door fuckiness.'
- LT3:
- - bugfix: IVs again work with non-living containers
- Paxilmaniac:
- - code_imp: The code for advanced shrapnel mines now sits in the mapping folder,
- not its own folder named "planet" for whatever reason
- RatFromTheJungle:
- - bugfix: the detective's holster holds ammo again
- SkyratBot:
- - bugfix: bluespace poly crystals can be used to complete machine frames either
- by hand or by RPED
- - bugfix: Abstract items can no longer be placed in others' hands.
- - bugfix: The reviver implant will no longer leave its user looping between soft
- and hard critical states.
- - balance: the cake hat wounds more
- - bugfix: the cake hat no longer balds you
- - rscadd: Changes syndicate surgery duffelbags to contain advanced tools, sterilizine,
- surgical tape, and a roller bed.
- - rscadd: Changed the Syndicate Infiltrators' surgery areas to contain a full syndicate
- surgery duffelbag.
- - rscadd: The normal infiltrator now has a operating computer and a closet of misc.
- surgical clothing and anesthesic tank.
- Zonespace27:
- - admin: Added a lorecaster story manager panel
- - sound: Shortened assault ops intro theme
- softcerv:
- - bugfix: NIFs shouldn't hard delete as much now.
-2023-06-07:
FlufflesTheDog:
- bugfix: Radios tuned to things other than common respond properly to turning on
the speaker
@@ -247,31 +31,6 @@
- qol: The roundend report for space dragons now collates all players who played
a carp into one entry, rather than one per carp spawned.
- qol: Space Dragon sounds are much less ear piercingly loud.
- NotDhu:
- - bugfix: Void Raptor's CMO office is now properly wired to the station's power
- grid.
-2023-06-08:
- Chadley:
- - rscadd: Adds some new quirks!!
- - rscadd: Adds the bilingual quirk, which gives a new random language.
- - rscadd: Adds the big hand quirk which stops the usage of most guns.
- - rscadd: Adds the soft spoken quirk which forces you to whisper.
- - rscadd: Adds the clumsy quirk enabling the clumsy trait.
- Crushtoe:
- - bugfix: Fixed tram morgue mapping issues and underpass shutter buttons.
- Ebin-Halcyon:
- - rscdel: Our goon folder, good riddance.
- - image: explosions are now back to the original look, did you ever know they were
- changed?
- Guillaume Prata:
- - bugfix: Fixes an edge case of an air alarm warning not reseting properly and being
- repeated when another atmos issue without a warning message, like Plasma in
- the air, triggered the alarm.
- Hatterhat:
- - bugfix: Xenoarch tools, machines, and equipment now have their own categories
- in the techfab/protolathe menus.
- - code_imp: Xenoarch tools/machines/equipment designs now use base types for inheritance
- purposes, and have less copy-paste involved.
LemonInTheDark:
- rscadd: You can now filter by book id in library consoles
- bugfix: The visitor console now actually has categories to select. Shows how many
@@ -318,41 +77,6 @@
weird, please report it.
- bugfix: Fixed the single tank poster using the wrong typepath for its mapping
dir.
- - config: Flavor text requirements to join the round are now config based. Contributors
- rejoice.
- Kepteyn:
- - bugfix: re-edited the spear.dm file to once again give bone spears two tile reach.
- LT3:
- - bugfix: Tram platform tiles now have proper stack types
- - refactor: Pride week tile coloring refactored into a generic holiday decal system
- - spellcheck: Tile decals are no longer all named 'corner'
- Melbert:
- - bugfix: Admin forced latejoins reset correctly after next latejoin
- OrionTheFox:
- - rscdel: Removed SecMed
- Seven:
- - bugfix: Crafting recipes will not eat your implanted toolset if the recipe calls
- for a tool
- SkyratBot:
- - rscadd: Igniter's can be crafted
- - rscadd: Spraker's can be printed in the autolathe
- - rscadd: ignition controller can be printed in the autolathe
- - rscadd: Crafting recipe for atmospherics gas mask.
- - bugfix: Fixes thrown things being unblockable by shields or something.
- - qol: Fulton extraction packs (when used on yourself) now automatically shove themselves
- into any back-mounted storage, like MODsuit storage modules.
- - refactor: Headslugs (the really small slug-like changeling form) are now basic
- mobs. They only wander around aimlessly now instead of attacking corpses all
- the time, and examining will let you know what type. Should probably still smash
- them before they suddenly gain sapience...
- - admin: Player Ticket History - view a player's ticket history without the need
- to use external tooling.
- - admin: allow admins to allow non-clowns to drive clown cars
- - qol: Add more glasses to the nearsighted pref menu with icons
- - bugfix: external shields no longer generate over walls
- - bugfix: The peanut butter banana sandwich is no longer presented as grilled when
- it doesn't require a griddle to make.
- - refactor: Giant ants are now more capable of distinguishing friend and foe.
- bugfix: '[MetaStation] - Secured some walls in science that weren''t secured properly
(reinforced).'
MTandi:
@@ -422,31 +146,6 @@
variants of the explorer.
- rscadd: Added a Syndicate variant of the explorer suit. The armor is identical
to the Goliath cloak with slightly more bomb and ballistic resistance.
- - qol: Nanotrasen has issued a new wallet model, which lets you put biscuit papers
- in them!
- - bugfix: fixed cult veil shifter not teleporting the thing/the loser you're pulling
- with you
- - bugfix: Being moved around by conveyor belt or tram no longer play footsteps and
- wheelchair sounds.
- - qol: Icebox Perma's fridges are no longer locked to access they'll never have
- - bugfix: Chickens should now, once again, peck you in case you hit them.
- - rscadd: Added 3 new spider types
- - rscadd: Added more spider abilities
- - balance: Rebalanced spiders
- - bugfix: Fixes spiderlings having density
- - image: new trash bin sprite
- - bugfix: trash bin shows correct indicator when spawns non-empty
- - rscadd: The Hawaiian Overshirt is now GAGS, and available to crew in the ClothesMate.
- Mahalo a aloha!
- - refactor: Chicks are now a bit smarter, be careful not to squish them!
- - code_imp: Modularized plasmamen plasma breathing species trait code to automatically
- apply to all species
- - code_imp: Liver shrugging differences/Alcohol tolerance differences now displayed
- in the species trait panel
- - code_imp: Nobreath and Nogenes now accounted for in species trait code
- - rscadd: Podpeople now have species traits
- - rscadd: Plasmamen genelessness is now displayed in their species panel
- - image: modified crate sprites
YehnBeep:
- bugfix: After a thorough dressing down and threats of fines from the Fire Marshal,
Nanotrasen has reluctantly installed several missing fire alarms and other safety
@@ -532,91 +231,6 @@
at once
- refactor: '`/obj/item/lightreplacer/attackby()` returns TRUE to prevent calling
it''s `after_attack()` code and calls it''s parent proc'
- - bugfix: '[Metastation] [Birdshot] Test Site Materials Crates now contain targets
- instead of existing near them purposelessly and empty.'
- - bugfix: gibbing colossus possessor crystal possessed animals will no longer stick
- the user's body and their stuff into the shadow realm. the animals will properly
- drop your corpse when killed or gibbed
- - bugfix: Removes the misplaced extra chem dispenser from NorthStar pharmacy.
- - bugfix: NorthStar medbay now has lightswitches in some rooms as opposed to none.
- - bugfix: Fix movable explosive blockers leaving remnants of explosive protection
- on turfs after they get destroyed.
- - image: modified gift and package crate sprites to match the resprited crate
- - bugfix: fixes moffic grilled hard cheese burning on the grill instantly
- Tattle:
- - admin: mob tags are now part of the mob tag log again
- Wallem:
- - qol: Adds a button that lets you recolor air canisters to enable easier organization.
- larentoun:
- - bugfix: Fixes pepperball box icon, now it's visible!
- out-of-phaze:
- - bugfix: The IPC screen change ability works again.
- - bugfix: IPCs once more get a BSOD screen on death/bootup screen on revive.
- - bugfix: fixed IPC emissive toggle not showing up without mismatched parts
- - bugfix: fixed IPC antenna color/emissive showing up with no (literally 'None')
- antenna selected
-2023-06-09:
- SkyratBot:
- - image: Resprites the mulebot
- - rscadd: Added new EMT belt (really just renamed the Paramedic belt path)
- - image: Added new EMT belt sprite
- - image: Added shiny new belts and detective/syndicate holsters (`onmob` sprites
- included)
- - image: Removed old, unused red military belt sprite
- - image: energy katana on belt
- Vlada Frolova:
- - image: added icons for stamp andicon for stamp sign
-2023-06-10:
- Zonespace27:
- - bugfix: Clockwork research no longer spams everyone with messages
- out-of-phaze:
- - bugfix: G11 full auto works again.
-2023-06-11:
- Guillaume Prata:
- - bugfix: Laptops now give a slowdown when dragged, patching the easy trick of dragging
- a laptop to bypass the slowdown for carrying it on hand.
- Licks-The-Crystal:
- - qol: Makes transparent kudzu transparent (and won't block sight)
- Licks-the-Crystal:
- - bugfix: Removes the infinite hypernoblium from the holodeck's Winter Wonderland
- setting.
- Rhials:
- - qol: Ventcrawling mobs have a 1 second delay/warning before exiting the ventilation.
- SkyratBot:
- - spellcheck: the H.E.C.K helmet is now typo-free
- - server: fix logging infoleak from the lack of continuation markets on new lines.
- - bugfix: Lavaland's cafeteria fridge is no longer access-locked.
- - bugfix: The mining vendor's bar pod's machinery no longer has access restrictions
- miners can't use.
- - bugfix: The bar pod's vending machines no longer believe they are on station.
- - qol: The bar pod's bathroom also has less unused space.
- - code_imp: Spaceman simple mobs have been converted to basic mobs.
- - bugfix: Taking items from your inventory while flying over lava or a chasm will
- NOT set them on fire or drop them into chasms ANYMORE
- - qol: Basketball (the mini-game) player mobs have a chance to be taller than the
- usual spaceman.
- theOOZ:
- - image: Resets the all-in-one grinder icon
-2023-06-12:
- Kepteyn:
- - bugfix: Restores the SR-side modified damage of bone spears.
- LT3:
- - code_imp: 'Minor lighting adjustments: more neutral, less blue and pink hues'
- - code_imp: Lights turn on faster
- SkyratBot:
- - bugfix: O2 crates have blue stripes when opened
- - spellcheck: The Medical vending refill crate's description now properly displays
- the Coroner's vendor as being part of its contents.
- - bugfix: fixed admin custom job slot cancel button
- - spellcheck: fixed a typo that spelled "jobs" as "jebs"
- - balance: Field generators can parry explosions.
- - qol: Fugitives, Bounty Hunters, and Paradox Clones will now appear in the orbit
- menu.
- - bugfix: Alexander now properly purges itself when you drop your shield.
- - rscadd: Added optional respawn delay (disabled by default), which prevents returning
- to lobby while dead.
- - bugfix: Fixes AIize not working
- - bugfix: xeno resin floor layer
ZephyrTFA:
- admin: Player Ticket History - view a player's ticket history without the need
to use external tooling.
@@ -717,15 +331,6 @@
accurately post to list_bombers with the name of the person who shot the projectile
from the gun. If you don't know how to list-bombers, it will also be present
in game.log for your viewing pleasure.
- - rscadd: Assistants get a new liver trait, maintenance metabolism. This trait only
- lets them process maintenance drugs, grey bull, and pump-up for 20% more time
- and gives them a probably-positive 2 minute moodlet when ingesting these.
- - rscadd: The officer's sabre has gained a small amount of bloodthrist for assistants!
- - bugfix: Fixed liver masters being unable to inspect the liver of scientists.
- - qol: 'RPD UI: Devices split in two categories, options are aligned to the left'
- - bugfix: Nanotrasen Cookery Command has ended the plague of staff complaining that
- their tomato dishes are just complicated forms of soup by redefining "tomato
- soup" to include a dash of cream.
2023-06-11:
Ghommie:
- qol: Basketball (the mini-game) player mobs have a chance to be taller than the
@@ -747,36 +352,6 @@
in effect
- bugfix: fixed tedious TTS "ess-ess-speech" for lizards and other species with
repeated consonants
- larentoun:
- - bugfix: Remove Lewd Items verb is config dependant
-2023-06-13:
- GoldenAlpharex:
- - rscdel: Disabled the earthquakes, so your scenes don't get randomly broken up
- because RNGesus felt like screwing your whole round over in an unpreventable
- and unpredictable manner.
- Gyran:
- - balance: reintroduce orderable dragnet crates for security
- Hatterhat:
- - balance: The ammo workbench can now be hacked to unlock basic lethals.
- - balance: The ammo workbench now requires an advanced disk (replaces the old lethal
- disk) for advanced ammotypes, e.g. incendiary/armor-piercing/hollow-point.
- - balance: Armor-piercing rounds from the ammobench now require titanium. Incendiary
- rounds from the ammobench require plasma. Hollow-point rounds still only require
- iron.
- - balance: In return for all this, upgraded stock parts now actually matter much
- more in regards to material consumption efficiency and time efficiency, and
- the base performance of ammo benches have been mildly improved.
- - rscadd: There's now 7.62 (.244 Acia) armor-piercing and .45 (.460 Ceres) hollow-point
- rounds from advanced ammo benches.
- - bugfix: .244 Acia surplus stripper clips can now be used to hold any .244 Acia
- from an ammo bench.
- - qol: Ammo benches now show you what materials are consumed per cartridge as a
- tooltip.
- Skyrat:
- - rscdel: Cursed trait no longer available
- - rscdel: Vending machines no longer flatten your sprite
- - rscdel: Vending machines won't RR you via gibbing/destroying your head
- SkyratBot:
ShizCalev:
- bugfix: The RD's plant will no longer say that it's not very healthy after being
restored with seeds.
@@ -997,83 +572,6 @@
- balance: Every fugitive hunter shuttle now has a shuttle pinpointer present.
- code_imp: Fixes the spawner menu text for psyker hunter spawners.
- image: Blue and Orange mapping helper for Hunter Access.
- SkyratBot:
- - qol: The CC pod bay now has proper morgue facilities that don't clip through a
- glass window
- - rscadd: Nuclear Detonation now drops security level if it missed the station.
- - rscadd: Nuclear Detonation now nukes the syndie base if its on the syndie base.
- - bugfix: Nuclear Detonation now handles not playing a cinematic correctly.
- - refactor: Changed z level iteration for Nuclear Detonation
- - bugfix: you need to be in proximity of the airlock painter to eject its cartridge.
- - rscadd: Adds shuttle events! If shuttle escapes weren't exciting before (doubtful),
- they definitely are now! I'm joking it's mostly an atmosphere thing.
- - admin: 'Adds an admin panel to interact with shuttle events, under the Events
- tab: Change Shuttle Events'
- - bugfix: Objects spawned in hyperspace will properly catch hyperspace drift
- - bugfix: Bows properly update their ammo when stored, dropped and stowed. You cannot
- load a bow without holding it in your inactive hand. You have to hold it to
- keep the bow loaded.
- - qol: You can remove an arrow from the bow with alt+click, much like other ballistic
- weapons.
- - bugfix: The divine bow can be properly stored in the chaplain armor's suit storage,
- much like all other bulky null rods.
- - sound: Bows have sounds for drawing, firing and loading.
- - bugfix: Exotic blood types no longer persist through species change if the new
- species does not have an exotic blood type
- - rscdel: Positronic brains no longer check for suicide verb use.
- - bugfix: fixes meatballs not having inhand sprites
- - bugfix: Fix space dragon fire breath hitting the same target multiple times in
- a single stream.
- - rscadd: You can now filter by book id in library consoles
- - bugfix: The visitor console now actually has categories to select. Shows how many
- people actually use it
- - admin: Added a library moderation tool, so you guys can do that again now that
- statbus has passed into the byond
- - server: Bumped DB version, the library_action table has a few columns that were
- improperly typed, this fixes that
- - bugfix: Beach Bum Basketball Team has water again.
- - bugfix: Birdshot's gulag now has an item reclaimer, no more will your items fall
- on the ground!
- - bugfix: Deconstructing a papercutter will now spit out its internals if present.
- - qol: Papercutters now have contextual tips
- - balance: Armour penetration calculation is now the inverse function of armour
- stacking.
- - spellcheck: makes language more appropiate
- - bugfix: After destroying unfathomable quantities of excess coins, their value
- is back to what it's supposed to be!
- - bugfix: Maintenance doors/delivery chutes leading into Tramstation's brig have
- had their access requirements fixed and now actually require security access
- to open.
- - image: Someone broke their ankle using the jumpboots in the vendor so we had to
- buy new ones
- - spellcheck: changed gas to correct type in description
- - bugfix: AIs can no longer enter a limbo state without a core but not dead.
- - refactor: Pulled apart the last vestiges of names/docs directly linking signals
- to components
- - bugfix: pixel offsets from grabbing other mobs now respect the body offset variables.
- - refactor: Changed some code so that resized mobs no longer look like they're poking
- over the below tile with their legs or not even reaching the bottom edge of
- the tile they're on.
- - image: Added a new Land Mine sprite
- - qol: Tubes and Bottles have the main reagent name prefix in Chem/CondiMaster
- - bugfix: Fixed a small issue with mob resizing not promptly updating a body offset
- variable.
- - bugfix: microwave's(after it has finished cooking) & other machine's that spit
- out contents don't spit out assemblies/signallers attached to it's wires.
- - bugfix: signallers can be picked up if you attached them to a machine's wire &
- later deconstructed that machine without detaching it first.
- - admin: VV for global vars will now load MUCH faster, in exchange lists are now
- perma contracted in that particular pane
- - qol: Chemmaster UI tweaked
- - bugfix: Fixed chem master showing wrong data during reagent analysis
- - bugfix: Fixed chem master not working with fermented drinks
- - image: Chemmaster resprited, now has an indicator for buffer reagents
- - refactor: Refactored chemmaster code, it now uses reagent containers instead of
- styles
- - balance: Chemmaster now uses servos and has printing animation of 0.75 second
- duration. Outputs 1 container or up to 2 pills/patches per cycle by default.
- Can be upgraded to output up to 4 and 8 with t4 servos.
- - bugfix: copying nodes from a techweb to another no longer reveals hidden nodes
SethLafuente:
- bugfix: fixes meatballs not having inhand sprites
SuperDrish:
@@ -1179,37 +677,6 @@
form.
- qol: Nanotrasen's bureaucracy division has ""improved"" the quality of their printer
toner after many complaints from furious customers.
- softcerv:
- - qol: Evokers can now be renamed with a pen.
- - qol: Evokers now come with randomized names
- - qol: Evokers can now be orbited by ghosts under the misc tab of the orbit menu.
-2023-06-21:
- LT3:
- - spellcheck: Fixed a few typos
- LovliestPlant:
- - qol: Upgrades ovens on all syndicate outposts to ranges.
- - qol: Adds some vinegar and welding fizz to the ghost cafe's kitchen.
- Paxilmaniac:
- - qol: The excess of lights in many areas of void raptor has been trimmed down,
- leading to reduced power consumption and less wrath of the sun.
- - qol: Void raptor has finally cleared the mexico sector, meaning that the entire
- station won't be warm lit and instead will have lighting colors appropriate
- to the various areas of the station.
- Rhials:
- - bugfix: The walls adjacent to the Infiltrator docking port will no longer bend
- diagonally into walls.
- SkyratBot:
- - qol: Welders now have a more consistent fuel usage
- - bugfix: Maintenance data disks now properly transfer from PC to disk
- - bugfix: Disks can no longer be flooded with the same app repeatedly.
- - bugfix: Lava will no longer burn 6 of the mirrors in pride ruin
- - bugfix: Lava will no longer burn plants that spawn in them.
- - bugfix: Trees and Coconuts are no longer immune to singularities.
- - bugfix: Fixes a stuck lightbulb in medbay treatment center. Also fixes an accidental
- placement of vents/scrubbers which lead to escaping xenos.
- - bugfix: Fixes a few Interdyne Pirates map flaws
- - bugfix: somehow, somewhere, a ship's engine has been changed.
-2023-06-22:
2023-06-21:
Addust:
- bugfix: somehow, somewhere, a ship's engine has been changed.
@@ -1249,19 +716,6 @@
- qol: The potted plants have been changed slightly behind the scenes. Mappers may
enjoy being able to pick a wider selection of plants to put in maps now, because
they've all been made into their own items.
- KathrinBailey:
- - rscdel: Removes force-borging nanite pizza from shuttle loan (host request).
- SkyratBot:
- - bugfix: Modular machinery computer UI opens again
- - qol: You can make hairless hide from the entire stack of hides at once
- - bugfix: fixes holymelons not having inhand sprites
- softcerv:
- - bugfix: NIFs are no longer parented to their owners
-2023-06-23:
- SkyratBot:
- - rscadd: Adds a shark plush, obtainable from Cargo for a nominal fee.
- - rscdel: Removed plush cucumber by popular request. Cucumber has been replaced
- by the shark plushie in arcade machines.
LemonInTheDark:
- bugfix: Maps loaded post init will no longer randomly enter a failed state. Hopefully.
Melbert:
@@ -1329,23 +783,6 @@
- rscadd: '...unless you get to do it while screaming ''IT LIVES!'' via Revival
surgery. Screw conventional medicine and science, you know the true way to bring
back the dead!'
- - image: 'Updated several Null Rod Graphics. Also updated: the supermatter sword.'
- - bugfix: Virology disposals now route directly to space, rather than sending their
- nasty tubes to cargo.
- - bugfix: A single maintenance spawner was removed from a wall by plumbing.
- - image: added lizard inhand- and onhead sprites
- - image: added space lizard inhand- and onhead sprites
- - bugfix: changed held weight class of lizards from normal to tiny
- Zonespace27:
- - rscadd: Added Solfed stamp, recolored NRI stamp to a more green color
- softcerv:
- - bugfix: soulcatcher join actions no longer duplicate themselves when a ghost logs
- in and out.
-2023-06-24:
- GoldenAlpharex:
- - bugfix: Inflatable barrier box can now only contain inflatables, and should be
- able to hold as many as they spawn with. They also hold a nicer amount of items
- (7 doors and 14 walls, instead of 8 doors and 16 walls, which looked stupid).
2023-06-23:
Cheshify:
- bugfix: Virology disposals now route directly to space, rather than sending their
@@ -1374,10 +811,6 @@
your Vending Scepter, force push them on your enemies to squish them or blow
them up while they are busy buying from the machines.'
Hatterhat:
- - rscadd: The Free Trade Union has reported losing small stocks of their "Archangel"
- rifle furniture sets. Coincidentally, in-sector black markets (accessible, as
- always, via appropriate black market uplinks) now report an uptick in availability
- of the very same parts. Prospective crazed gunmen are advised to bring a screwdriver.
- rscadd: Baseballs can now be crafted with 3 leather.
Helg2:
- qol: pill press' max volume for bottles are 50, as the volume of bottles itself.
@@ -1388,151 +821,6 @@
- bugfix: Tram hit count is centrally managed instead of independently on each sign,
so they won't get out of sync
Melbert:
- - qol: Categorizes chef vendor
- - bugfix: The colossus's finale attack is now 100x more lethal, because it was firing
- 100x fewer projectiles than intended
- - bugfix: Fixed EMP'd / signaled microwaves not running as they should
- - bugfix: Fix runtimes from Bileworms targeting mechas (or other objects people
- are hiding in)
- - bugfix: The Syndicate Assault Cyborg can autofire their LMG
- OrionTheFox:
- - qol: made Balaclavas layer below glasses and radios
- Paxilmaniac:
- - qol: If you are either flying or floating, you can now traverse differently heighted
- tiles (for example, pool tiles onto a normal floor) without having to climb.
- - bugfix: Pool tiles are no longer forever jail if the gravity system shuts off.
- Skyrat:
- - balance: Nanotrasen's accounting department flipped out when they noticed how
- much money the station was spending on confetti. Employees are now advised to
- have birthdays less often and/or with less celebration.
- SkyratBot:
- - bugfix: Fixed being unable to reimburse syndicate spawners via uplinks. This includes
- nukie reinforcements, cyborgs, and holoparasite injectors.
- - refactor: Turned TC reimbursement into a bespoke element.
- - spellcheck: Tuned demon's blood message when there's no ghosts to pick to be a
- little more understandable and sensible.
- - qol: pill press' max volume for bottles are 50, as the volume of bottles itself.
- - bugfix: changed station floor tiles to be worth 25 instead of 50, one quarter
- of an iron sheet.
- - rscadd: air sensor's are craftable
- - refactor: air sensor's can now be turned off by hand and can only be deconstructed
- by a welding tool
- - refactor: removed `Params()` proc
- - qol: unwrenched air sensors can be picked up & recycled like regular item's
- - rscdel: air sensor are removed from the RPD UI
- - qol: air sensor's are no longer restricted by their unique ID's which mean you
- can craft as many air sensors as you want.
- - qol: Instrument delivery beacons now fit in pockets.
- - bugfix: ' material container[and hence autolathe] now won''t touch the content''s
- of abstract/hologram item''s like the tentacle gun'
- - bugfix: material container[and hence autolathe] consuming indestructible items
- - bugfix: material container[and hence autolathe] cosuming half the content's of
- an object and leaving out the rest if there isn't space producing broken behaviour
- in those item's
- - qol: material container[and hence autolathe] display's the item name consumed
- and it's material worth to let player's fully know the content's of the item
- being recycled
- - bugfix: Rockets can no longer embed in people and cause blunt wounds instead of
- piercing
- - bugfix: Dehardcodes some stuff with tram windows, they'll be easier to map with
- now
- - refactor: Border objects can now smooth with each other. I'm sure something cool
- will come of this
- - sound: explosive implant's beeps get louder as it gets closer to exploding
- - bugfix: fixed Godwoken Syndrome VoG commands triggering the spam filter
- - qol: Embedding an object inside a cake or loaf of bread now requires a right-click
- instead of a left-click. No more accidentally putting your knife inside it!
- - qol: Added context tips for slicing, embedding, and removing embedded items from
- cake, bread, and cheese wheels.
- - bugfix: Fixed the honourbound trauma not reacting to attacks from basic mobs
- - bugfix: Fixed the "Declare Evil" spell not working against the medical department.
- - rscadd: Baseballs can now be crafted with 3 leather.
- - bugfix: fixed mecha generators using way too much fuel due to using the old values
- of material units per sheet
- - bugfix: Maps loaded post init will no longer randomly enter a failed state. Hopefully.
- - bugfix: attacking non-carbon mobs with a cuffsnapping object will no longer runtime.
- - code_imp: makes sure cargo computer doesn't use `usr` var inside `ui_act()` which
- could cause undefined behaviour
- - qol: Add UI preference menus for AI hologram and status displays
- - bugfix: autolathe, protolathe, mech fabricator and component printers material
- capacity are now in 20 times less, as intended.
- - bugfix: protolathe material menu now should display material ejecting correctly.
- Wallem:
- - image: Tweaks cardboard sheet sprite
- vinylspiders:
- - bugfix: the mothic mantella and mothic flightsuit will now always hide moth wings
- again
-2023-06-25:
- LT3:
- - bugfix: Nanotrasen sent a crew in the night to fix the poorly installed clocks
- and incident displays on Void Raptor
- SkyratBot:
- - bugfix: bubble gum crate actually looks correct
- - image: Added new Space Beer sprite
- - image: Added new Carp Lite sprite
- - image: Added new Ale Bottle sprite
- - image: Added new Two-Time Root Beer sprite
- - rscadd: Adds digital clocks, can be found in all the stations' hallways! Most
- noticeably in bars or the bridge. They can also be lathed.
- - admin: The Debug and Admin MODsuits now take a lot less time to (de)activate.
- 2 and 0.5 seconds respectively, compared to the default of 10s.
- - image: Resprited the Limb Grower
- Wallem:
- - image: Resprites plumbing machines
- softcerv:
- - rscadd: soulcatcher souls can now be renamed by themselves or the owner of the
- soulcatcher
- - qol: soulcatcher souls now have their own dedicated UI
- tf-4:
- - bugfix: Multi-tile airlocks will no longer close on you if you stand on the "wrong"
- tile.
- - bugfix: Multi-tile airlock assemblies are no longer only half dense.
-2023-06-27:
- LT3:
- - qol: Crew have learned how to properly hold their alcohol
- - qol: Crew can smoke a cigarette without falling into an instant coughing fit
- - bugfix: Fixed nicotine addiction side effects being applied twice each time
- OrionTheFox:
- - image: Stock Parts, Bluespace Crystals, and Telecrystals are now using TG's sprites
- zydras:
- - qol: Improved a donator gas mask's sprite, function and gave it general donator
- access
-2023-06-28:
- Hatterhat:
- - rscadd: Breaching hammers (like the ones found in the armory) are now usable to
- break kneecaps on immobilized, buckled, or floored targets.
- SkyratBot:
- - bugfix: Added the missing medical laptop to the morgue on Northstar.
- - qol: '[Birdshot] Adds layer adapters to gas tank output hookups in atmospherics'
- - qol: '[Birdshot] Adds additional navigation verb landmarks'
- - bugfix: '[Birdshot] Fixes entrances to some departments from maints not requiring
- department access'
- - bugfix: '[Birdshot] Converts the guard locker in perma to a normal security officer''s
- locker'
- - bugfix: '[Birdshot] Adds an exterior outlet vent for the incinerator'
- - bugfix: Science department hallways now have unrestricted one-way exits on Delta,
- Birdshot, and Icebox, to make these maps consistent with the others.
- YakumoChen:
- - balance: Deforest Medical imports now have a selection of Medical-themed MODsuit
- modules for sale, as well as some cyber augments.
- dolphinemote:
- - bugfix: replaces sofas in VR medbay break room with correctly turned versions
- - bugfix: replaces the bench in the VR medbay lobby with a correctly edged version
- - bugfix: replaces the reinforced table in the VR maint that was adjacent to the
- basic iron tables with an iron version
- - bugfix: changes decals in the VR evidence room
- - bugfix: removes one air alarm from the VR evidence room (it had two)
- zydras:
- - rscadd: Added 2 new donator items for someone
- - bugfix: fixed incorrect/missing ckeys on donator items
- - bugfix: fixed all-donator item not being selectable due to lacking a duplicate
- path
-2023-06-29:
- LT3:
- - refactor: Refactored maptext (those floating words)
- - bugfix: Fixed special chat bubbles for yelling, clown, redtext, greentext
- - bugfix: Fixed alignment of status display text
- - code_imp: Status displays now synchronize their message lines when scrolling
- bugfix: The Syndicate Assault Cyborg can autofire their LMG
SyncIt21:
- code_imp: makes sure cargo computer doesn't use `usr` var inside `ui_act()` which
diff --git a/html/changelogs/archive/2023-07.yml b/html/changelogs/archive/2023-07.yml
index 615cd75b1ef..a1847b8c608 100644
--- a/html/changelogs/archive/2023-07.yml
+++ b/html/changelogs/archive/2023-07.yml
@@ -1,67 +1,4 @@
2023-07-01:
- LT3:
- - qol: Context tooltip size increased
- - bugfix: Fixed remnants of old maptext code on various things
-2023-07-02:
- ATHATH:
- - rscadd: Adds a variant of the external organ manipulation surgery for robotic
- body parts, similar to the robotic version of the internal organ manipulation
- surgery. It uses the same procedure as non-head/torso prosthetic organ manipulation.
- - rscadd: In layman's terms, augged people can get frills, antennae, wings, tails,
- etc. attached to them now.
- - qol: The suitability of crowbars in the "manipulate organs" and "manipulate features"
- steps has been boosted from 55% to 100%, but only for the robotic versions of
- those steps. Their suitability remains 55% for organic organ manipulation.
- Chadley:
- - bugfix: fixes the EHMS injector's do_after()
- - code_imp: Improves the code for the disease scan proc (thank you fikou)
- Guillaume Prata:
- - balance: The Atmospheric MODsuit now comes pre equipped with the quick carry module.
- Go save some lives!
- Improvedname:
- - balance: Weakens summoned stickmen to be 1 or 2 hit
- Jolly:
- - spellcheck: Changeling hallucination sting will now tell you it costs 10 chemicals.
- It always did, but now its there. Cheers?
- Melbert:
- - bugfix: Fix shooting guns without a magazine loaded making no fire sound effect
- - qol: Sivlerscale Tongue action is now a cooldown action, making it significantly
- easier to use
- - balance: Buffed the silverscale statue every so slightly, it now has innate armor
- and can reflect lasers shot at it. But it also requires you not by lying down
- to activate.
- - bugfix: Fix a runtime involving Bilingual Curators
- - qol: Bilinguals get a message on spawn reporting which language they've learned,
- or a message reporting they have learned no language if they're already fluent
- in all possible ones.
- Nerev4r:
- - image: Adds a cyclops head marking, located right between the eyes.
- Seven:
- - bugfix: Cult communion and assert leadership can be used while your hands are
- blocked or you are immobile
- SkyratBot:
- - bugfix: fixed basalt turfs remaining visually dug up when refilled by an ash storm
- - bugfix: fixed ash storm ending sounds looping after the storm is over
- - bugfix: mechs are now snow storm immune
- - bugfix: jaunt spells protect from weather when jaunting
- - bugfix: Cat Butcherer can no longer remove a tail you don't have.
- - bugfix: You can no longer manipulate "None" organs
- - bugfix: fixed sechailers/SWAT masks not using the installed air filter
- - bugfix: Adds wound armor to ALL jumpsuits that were missing it
- - rscadd: Stethoscopes may be used on the chest, groin, or extremities to assess
- organ damage, blood level, and/or suffocation damage depending on the targeted
- area.
- - rscadd: Shining flashlights into the mouth or eyes of other players will additionally
- assess brain health, suffocation damage, and/or blood level depending on the
- targeted area.
- - balance: Halves the duration of the flash effect from shining lights into players'
- eyes (2s -> 1s). Use combat mode to get the full duration.
- - rscadd: Christmas now has special station prefixes.
- - balance: We are now using space Monsanto brand rice/wheat seeds. Nutriment of
- both grains has been changed to 12% from 4%
- - qol: people now lie down when buckled to surgery tables, and you no longer need
- cuffs to buckle someone to a surgery table
- - bugfix: Names for Interdyne pirates are now less bizzare
Cheshify, Kinnebian, and RedSentry27:
- rscadd: Maintenance engineers have sent out blueprints across the sector for a
new laser musket.
@@ -85,38 +22,6 @@
rule too.
- qol: Crafted food items spawns on nearby tables (except the one behind you) instead
of dropping on floor when hands are full.
- - rscadd: You can now revive dead fishes, bees and (mindless) mice with a lazarus
- injector.
- - balance: Tom, the mouse, no longer counts toward the mice population cap.
- - refactor: Species brute and burn damage modifiers are now handled by bodyparts,
- instead of being universal. Go ham at the surgical bay.
- - bugfix: Fixed the office chair being silent. My bad.
- - balance: Silicon now only know Common, Uncommon and Robotic languages.
- - bugfix: Arm implants properly handle EMPs depending on whether it is robotic or
- organic. No longer can you EMP an organic organ!
- - bugfix: fixed RPD switching layers on mousescroll when not in active hand
- - qol: installing an RPD wrench upgrade & reprogramming a pipe via RMB produces
- a balloon alert
- - rscadd: 'Expanded the Experimental MODsuit Bepis node with three new modules:
- Magneto Charger, Recycler and Shooting Assistant.'
- - rscadd: Added a Riot Foam Recycler module to the black market, as well a more
- innocuous version as maint loot.
- - bugfix: Plasmamen can now get HMS
- - bugfix: Fixed snatcherprods potentially giving held objects a one-way ticket to
- nullspace if thrown at someone by something that's not a mob.
- - rscadd: Added butter slices, which you can make by cutting butter into 3.
- - qol: Recipes that once required butter now only require a slice of it. With the
- exception of the butter on a stick, of course.
- - balance: Butter now requires 25 milk to mix and has 3 times as much nutriment.
- - image: Resprited butter and butter on a stick using bluespace technology, managing
- to compress more butter into a smaller space
- - qol: Add hotkeys to APCs for AIs and borgs. Toggle environmental (ctrl + shift),
- toggle lighting (shift), toggle equipment (alt), and toggle breaker (ctrl).
- - qol: Remove APC UI popup when using RMB to toggle the lock.
- - bugfix: fixes balloon alert runtime when spider webs are destroyed.
- Tattle:
- - admin: build mode help text is in an examine block
- - admin: adv build mode and fill now have item previews
SyncIt21:
- bugfix: jetpack modules work on mod suits again
- bugfix: jetpack cyber implants also work
@@ -143,15 +48,6 @@
The rewards from the graveyard are now also slightly more lucrative...if you
don't care about being cursed, that is.
- balance: Roboticists get secure morgue access during skeleton shifts
- - bugfix: arrows can now be actually coated with reagents.
- - bugfix: jetpack modules work on mod suits again
- - bugfix: jetpack cyber implants also work
- - refactor: removed `get_mover` callback, user is retrieved during activation
- - refactor: timestop module on `on_module_triggered()` accepts user as 2nd param
- - spellcheck: Improves gas monitor reaction information RP.
- - bugfix: You can once again directly place patients on operating tables
- - bugfix: Creampies no longer float above the heads of monkeys
- - rscadd: You can now put sandstone bricks in pillows to... make them deadlier?
timothymtorres:
- qol: Add hotkeys to APCs for AIs and borgs. Toggle environmental (ctrl + shift),
toggle lighting (shift), toggle equipment (alt), and toggle breaker (ctrl).
@@ -407,61 +303,6 @@
- rscadd: Also, the status readout module now plays a sound on death.
- qol: The MODsuit health analyzer's info tab health readout can now be disabled
in its settings.
- LT3:
- - bugfix: Security records no longer accept negative values for citation payment
- - image: Roller bed now has an inhand sprite
- - bugfix: Crew's poor livers should no longer be destroyed by your increased alcohol
- tolerance
- - image: Realigned status display panel to match the scrolling text
- Melbert:
- - refactor: Refactor of connections.js. Yeah that's it.
- - bugfix: You can once again "too slow" someone with a high five
- - qol: Scanning apps (Lifeline app) start with a scan
- - bugfix: Fixes a potential exploit in radar apps
- - bugfix: Fix Debug verb "Spawn full crew"
- - qol: You no longer fall over when you get dusted, making the animation line up
- with your body
- - bugfix: Fix hard deletes that brick all of a wizards spell when their body is
- delted
- Motho & TheDragMeme:
- - image: MekaNIKA Heavy Industries has unveiled it's new commercial line-up of cyborg
- chassis, the NiKA and the NiKO.
- Paxilmaniac:
- - code_imp: There was some unused code related to companies and their defines lying
- around that I removed.
- - refactor: The manufacturer examine component is now an element that achieves the
- same thing in a much nicer looking way.
- Rhials:
- - bugfix: The organ manipulator menu will now delete implants or organs that fail
- to properly insert.
- - code_imp: The organ manipulator menu code now looks nicer :)
- Riggle:
- - spellcheck: fix suspicious_logins
- Seven:
- - balance: Only 2 smugglers satchels will spawn on the station at roundstart, down
- from 10
- SkyratBot:
- - rscdel: Removed excess ID boxes on HoP's office
- - qol: Produce consoles now have tables near them.
- - bugfix: ' Infinite spider eggs are no more.'
- - rscadd: Added Interdyne ModSuits for Interdyne pirates.
- - balance: Metalgen cannot spawn as a random chem anymore (strange seeds, maintpills
- etc)
- - rscadd: The abductor equipment vendor now offers a hacking/medical hypertool,
- at a price of 2 research points.
- - rscadd: The abductor equipment vendor now sells decorative abductor posters, at
- a price of 1 research point.
- - rscadd: The abductor equipment vendor now sells a cow, at the price of 1 research
- point.
- - bugfix: Fixes a runtime when trying to probe non-human mobs.
- - image: Some abductorized versions of existing wall posters and an alien hypertool.
- - code_imp: The abductor shop listings now use lists of items, rather than single
- build paths.
- - code_imp: The abductor_gear.dm file has been split up into a few different files.
- - code_imp: Posters can now be hung on indestructible walls.
- - bugfix: Quantum relays now process, meaning DOS attacks actually function
- - bugfix: Music Request Credit shows CKEY instead of character name
- - bugfix: androids now have proper robotic organs and no appendix.
Jacquerel:
- balance: Guard spider web statues despawn as the ability comes back off cooldown.
- balance: Spiderlings now only move at light speed if they're on webs, stay safe
@@ -577,249 +418,6 @@
- bugfix: Fixed a dummy parent feature of the health analyzer (Verbose mode) showing
up, uselessly, on the disease and first aid subtypes.
- image: Surgical processors and slime scanners have recieved a similar resprite.
- - server: job_config.toml should now comply with reload-configuration verb, meaning
- you can hot-reload the configuration from disk and have it apply ingame automatically.
- - config: The documentation for setting Minimum Character Age on a per-Job basis
- has been altered to be more explicit.
- - bugfix: The Minimum Character Age configuration entry is now sanitized to ensure
- that it's within the codebase-defined ages, since there's no (legitimate) way
- to get a character outside of those ages anyways. Invalid values will log to
- the config log.
- - bugfix: Hereditary Manifold Sickness, and other uncurable diseases, have been
- found to no longer disappear upon miraculous acts of divine restoration. In
- addition, viral bonding no longer makes you into a carrier for those aswell.
- - sound: Walking on conveyors, catwalks and tables no longer plays the footstep
- sound of the turf. They have theirs.
- - image: New directional sprites for spiderlings, with movement animations.
- - bugfix: Dead spiderlings will be the same colour as they were when they were alive.
- - bugfix: Tarantula spiderlings are no longer invisible,
- - qol: Clear PDAs now has all themes in their themify app by default.
- - bugfix: Guard spiders can now only make one scary duplicate of themselves at a
- time, rather than as many as they can click on the button.
- - bugfix: eating mime's and rainbow crayons now properly transfers reagents.
- - bugfix: I somehow fixed the amount of reagents in crayons to what it was before.
- - bugfix: cable layers 1 & 3 can now be used by machine's like emitters, smes, tesla
- coil & turbine.
- - bugfix: terminals(smes & apc) can operate on different cable layers by installing
- them with right click
- - bugfix: Fully charged APCs will now actually be fully charged, instead of nearly
- empty.
- - refactor: Foxes are more crafty now. They will run from danger, and hunt small
- prey when no one is keeping an eye on them. Don't leave Renault alone with Ian!
- - rscadd: Nightmare vision goggles now give you mare vision
- - qol: AI VOX messages are sent over announcement instead of radio
- - bugfix: AI VOX messages work properly on multi-Z stations
- - bugfix: abductors can get points again
- - bugfix: morgue units can no longer hold ghosts
- - rscadd: A bible or lighter in your suit slot, or cowboy hat on your head will
- occasionally intercept a bullet.
- - qol: Crates that come in the cargo shuttle now have the order ID in their name
- - qol: Requisition forms are now blue, and named with the timestamp they were created
- on
- - qol: It has been issued brand new mini-fridges for our active stations, Featuring
- more booze and less moldy pizza!
- - bugfix: The cursed katana shard you can get from tendril loot no longer falsely
- tells you you're not supposed to have it
- - qol: When a MOD fails to store something in itself when retracting, you're now
- notified in both the chat and by a balloon alert.
- - rscadd: AI-controlled spiders will make more web-shaped webs.
- - qol: The Warden's locker now has a garment bag
- - bugfix: warden has his garment bag in locker as should
- - bugfix: snakes, security, spiders and skeletons phobias now properly react on
- mobs
- StaringGasMask:
- - qol: Now plasmamen can use the infiltrator MODsuit without having their species
- revealed. The helmet's still not sealed, so remember your mask.
- Vekter:
- - balance: Adds a build time to window types which didn't have ones before.
- Zergspower:
- - bugfix: Serrated bone shovels can be created with any kind of shovel now, not
- just a spade (???)
- - rscadd: Serrated bone shovels can be used in place of circular saw in most surgeries.
- - rscadd: Added a duller (still deadly) variant of the serrated bone shovel as coroner
- mail.
- - rscadd: Autopsy scanners now act as advanced health analyzers on dead and seemingly-dead
- people.
- - rscadd: Increased the force, throwforce, and wound bonus of inert ritual knives
- and scythes.
- - rscadd: Coroner gloves can quickly apply medicine like nitrile gloves.
- - code_imp: mat per unit values of materials now scale with material defines
- Zydras & Juniper:
- - image: Kugelblitz 4utomation Technologies has unveiled its competing lineup of
- cyborg chassis, the K4Ts.
- distributivgesetz:
- - spellcheck: Fixed some underscores in spiderling names.
- vinylspiders:
- - qol: reverts the reduction in mining satchel spawns, now 10 will spawn once again
- instead of just 2.
- - balance: Guard spider web statues despawn as the ability comes back off cooldown.
- - balance: Spiderlings now only move at light speed if they're on webs, stay safe
- little guys.
- - bugfix: Spiders once again have random numbers after their names.
-2023-07-14:
- LT3:
- - bugfix: Maptext should now properly show superscript characters when performing
- actions
- Melbert:
- - bugfix: Fixes some species / mobs keeping an understanding of galcom despite not
- being intended to.
- SkyratBot:
- - bugfix: Deployable turrets no longer runtime when firing
- - balance: Bilingual quirk now lets you choose your language between ones given
- to roundstart species.
- - balance: Foreigner and Bilingual are now mutually exclusive languages.
- - rscadd: Adds latex gloves and medical headsets to the MediDrobe.
- - rscadd: Adds pyjamas, nightcaps and white shoes to the ClothesMate.
- - rscadd: Adds science backpack, duffel bag and satchel to the RoboDrobe.
- - bugfix: Morbid (coroner's) tools now properly receive their speed boost in appropriate
- conditions
- - bugfix: Cultists promoted to Leader no longer lose their spells (rip whoever tried
- saving up blood rites)
- - admin: Admins can now force promote/demote people from Cult Leader if necessary.
- - bugfix: Bile/Vileworms now have the same projectile and thrown weapon resistances
- of other mining mobs.
- - balance: nightmare vision goggles give you night vision
- - bugfix: Removed initial 500 point balance on mining point transfer cards. Load
- them up with points instead.
- - rscadd: Added mining point transfer cards to mining lockers.
- - rscdel: Removed mining point transfer cards from mining equipment vendor.
- - balance: Rocket launcher's backblast doesnt ignore armor now.
- - refactor: Mutant livers can now handle chemicals in special ways. Currently, only
- plasmaman, skeleton and golem livers do it. Every other species is the same.
- - image: Added new Security Cap sprite
- - qol: APCs, fire alarms, and holopads now communicate some more of their silicon
- interactions via screentips.
- - qol: APCs, fire alarms, holopads and turret control panels now use balloon alerts
- for more of their notifications.
- - image: added sprites for different variants of scrolls.
- - image: modified couple posters with ghost pixels.
- - rscadd: Golems can scoop sand (or snow) off the floor by clicking on it.
- - rscdel: Revolution has been reverted back to old behaviour. The round once again
- ends when the revolution is successful. The round continues as normal if the
- revolution fails.
- - rscadd: When the station is rolled in a state of Post-Revolutionary Fervor, the
- Captain will find their bedsheets replaced with an anti-Nanotrasen variant.
- - rscadd: You can now swab plasmaman clown clothes to get clown microbes.
- - rscadd: Clown phobia makes you fear plasmaman clown's gloves and helmet.
- SomeRandomOwl:
- - sound: re-connected sound files for rampant brand intelligence announcements,
- as well as bluespace anomaly's arrival and detonation.
- Zergspower:
- - bugfix: fixes Unit Tests for armor_type for clothing_under
- vinylspiders:
- - bugfix: Cultist robes, Goliath armor, and Ash drake armor will no longer show
- up as broken checkerboard sprites on characters with digitigrade legs.
-2023-07-15:
- ATHATH:
- - bugfix: Simplemobs that can't take stamina damage, including mulebots, will no
- longer be reset to their default speed whenever they take damage or are healed.
- Cheshify, Kinnebian, and RedSentry27:
- - rscadd: Maintenance engineers have sent out blueprints across the sector for a
- new laser musket.
- - admin: A new energy-gun toting ERT is available to send to the crew.
- Draganfrukts:
- - spellcheck: Reflavored and/or expanded most custom languages. Hearthkin now use
- Siik'Tajr over Uncommon.
- - image: Improved the quality of several language icons. Changed the icon of Pan-Slavic
- to the Pan-Slavic colors instead of the NRI flag, as it represents various cultures
- and not a State.
- Iajret:
- - bugfix: fixed combat wrench having instant toolspeed and being unable to build
- toolbox turrets
- Jolly:
- - bugfix: '[TramStation] - Removed a (possibly) unused var on the barber shop doors.
- Hopefully those taking refuge in the commissary wasn''t causing too many issues.'
- Melbert:
- - qol: Changeling Emporium is now sorted alphabetically.
- - qol: Changeling Emporium now has a search bar!
- - bugfix: Fix Tinea Luxor exposing not increasing light duration
- - refactor: Refactored language holders, making species changes not delete all of
- your known languages
- - bugfix: Fixed an exploit involving observers
- - bugfix: Fixed EMPing a cybernetic heart not implanted in a body not applying effects
- (stopping the heartbeat temporarily)
- - bugfix: Fix certain emote interactions happening twice at the same time
- - bugfix: Ling Augmented Eyesight now no longer causes you to lose the effects of
- your Meson glasses
- - bugfix: Ling Augmented Eyesight now more consistently tracks the flash protection
- / vulnerability it confers.
- - rscadd: Added a new 0 cost passive changeling ability, the Defibrillator Grasp.
- - rscadd: DNA sing is now no longer innate, but 0 cost, allowing changelings to
- not take it if they don't plan on using it.
- Rhials:
- - qol: The Xenomorph Infestation orbit menu tab is now violet instead of red!
- SkyratBot:
- - image: Engineering scanner goggles are now yellow and not green when in meson
- mode
- - image: Atmospheric thermal imaging goggles are now green
- - balance: Lionhunter on charge now has a damage modifier of 2 instead of 1.33
- - balance: Increased max range of charged shot from 16 to 30
- - balance: Increased scope modifier so you can use the new max range
- - balance: Xenos have been rebalanced, removing their hardstuns on their disarm
- and neurotoxin, along with a slew of other changes. Xenos have received buffs
- to their more unique abilities in return.
- - bugfix: Fixed simplemobs ignoring xenomorph's melee damage values when being attacked
- by them.
- - refactor: Goliaths now use the Basic Mob framework, please report any unusual
- behaviour.
- - rscadd: Goliaths learned a couple of new attacks which they will use in self-defence.
- - balance: Help-clicking a miner grabbed by Goliath tentacles will immediately free
- them, as will the effect of several items you can scavenge from around Lavaland.
- - image: New sprites for the Goliath saddle.
- - refactor: Liking/disliking food is now handled by the tongue organ, not the species.
- Also, having a failing tongue means you can't taste food properly!
- - rscadd: You can read peoples' tongues now, if you have the entrail reading skillchip.
- - bugfix: fixed food preferences displaying incorrectly when examining tongues
- - qol: You can now rename the coroner's skeleton model with a pen!
- - bugfix: Autopsy reports will now correctly report blood type and level for corpses
- who happen to have blood for blood.
- - code_imp: Admins can now choose the reward cursed slot machine gives when hitting
- jackpot.
- - refactor: paper wizard have been refactored, please report any bugs/unintended
- behavior
- - refactor: refacted the datum/elememt/trial to an bespoken element
- - rscadd: paper wizard now have effects when he walking and he will now go and look
- for paperes and write stuff in them
- - bugfix: Plasma will now heal plasmamen properly
- - qol: Lobby Menu buttons can now be collapsed. Rejoice!
- - qol: Lobby Menu buttons have names, which can be seen in the prompt on the bottom
- left of the viewport.
- - qol: you may see your readiness status during pre-game in the Status Bar.
- - qol: Reset Lobby Menu HUD verb added in case you manage to break the damn thing.
- - bugfix: Added missing telecomms monitoring consoles to Birdshot.
- softcerv:
- - bugfix: fixes the warden's garment bag not showing up in their locker.
- vinylspiders:
- - bugfix: 'Mobs can once again emote (with sound) when they die. fix: Basic mobs
- will tell you whether they are alive if you examine them.'
- - bugfix: Engineers can now print the non-eyewear T-Ray scanner from their department
- lathe.
- - qol: Scientists can also print this scanner.
- - sound: A new ambient track will now play in space
- - bugfix: silicons can depower airlocks via their UI again
-2023-07-16:
- ChungusGamer666, GoldenAlpharex for all of the Skyrat-side fixes:
- - refactor: A significant species refactor happened, report any issues on the github.
- GoldenAlpharex:
- - bugfix: Suicide should once again be impossible to do if suiciding is disabled
- via config.
- Melbert:
- - bugfix: 'Fixed some hard deletes involving constructed cyborgs fix: Cyborgs with
- nodrop hats no longer lose them on tip'
- - bugfix: Anti-magic visual effects will no longer trigger overtop one another
- - rscadd: Adds the Roach infusion to the DNA infuser. Do you want to survive a nuclear
- apocalypse? Visit genetics today.
- - rscadd: Adds a way to kill Roaches without splatting them. Visit botany for a
- spray bottle of pestkiller.
- - qol: Infuser book is more book-like
- - bugfix: DNA infuser correctly gives on-success feedback messages
- - bugfix: Fix ling revival for full-dead lings
- - bugfix: Fixes a runtime from clientless mobs listening to Jukeboxes
- - bugfix: Fixes some potential hard-dels from Jukeboxes
- - qol: Jukeboxes now start with "title3.ogg" loaded for servers which do not have
- jukebox songs included in their config.
- SkyratBot:
- - bugfix: roundstart exodrone consoles are now unscrewable.
2023-07-09:
DATA-xPUNGED:
- qol: It has been issued brand new mini-fridges for our active stations, Featuring
@@ -878,13 +476,6 @@
sheet and wirecutters and modified with a writing tool. While worn, these will
modify the visible name of the wearer just like actual IDs, though they aren't
real IDs and won't work as such.
- - bugfix: Frontier Militia only have one general now, and have headsets.
- - balance: Frontier Militia no longer have energy pistols.
- - qol: CTF has more reminders of how to capture flags.
- - bugfix: Chaplain armor no longer blocks being shoved down.
- - bugfix: Ventilation clog no longer spawns mobs in inappropriate places
- - bugfix: Fixes holy arrows being invisible.
- - rscdel: The Head of Personnel no longer spawns with an ID box.
Helg2:
- bugfix: androids now have proper robotic organs and no appendix.
- bugfix: snakes, security, spiders and skeletons phobias now properly react on
@@ -939,7 +530,6 @@
- qol: Bots, Regal Rats, and Cargorilla now appear in the Spawners menu if you are
dead
- qol: Bots can be renamed from their maintenance panel
- - bugfix: Intern returns misplaced droppers back to deltastation's xenobiology lab.
- bugfix: Bile/Vileworms now have the same projectile and thrown weapon resistances
of other mining mobs.
Melbert:
@@ -952,65 +542,6 @@
- rscadd: Space IRS has been added into the heavy weight pirates spawn pool
- code_imp: Mosin nagant ammo boxes is now a subtype of regular ammo boxes (the
toolbox subtype)
- - bugfix: Metalgen recipe generation works again
- - rscadd: 'New malf ability: Remote safety overrides. Allows the AI to remotely
- emag things it has access to.'
- - code_imp: emag_act() now returns a boolean designating it's success in emagging
- - code_imp: All instances of emag_act() now have the proper arguments
- - qol: Most usecases of emagging now have some kind of feedback, and existing feedback
- has been sanity checked and converted to balloon alerts.
- Vekter:
- - rscadd: Adds support for it/its pronouns. You can select these in character preferences.
- Zergspower:
- - refactor: replaces the status flag with organs_flag
- vinylspiders:
- - qol: drains can now be deconstructed using the plumbing rcd
- - bugfix: you can no longer construct multiple drains on the same tile
- - image: Siding now uses the correct sprite on corners and endpieces.
- - bugfix: revolvers will now display an accurate count of live (not empty) rounds
- in the ammo counter HUD
- - rscadd: Added Hemiplegic quirk.
- - bugfix: changes to thrown liquid behavior--now they will ricochet off of walls
- and other dense objects and spill where the beaker lands instead of inside of
- the wall.
- - bugfix: Gas, like plasma, will now properly display on multiz stations
- - rscadd: rcd can make girders now
- - qol: Leather satchels and wallets have been issued to the offices of Head of Personnel
- all across the sector. Studies suggest a fashion increase of 34%
- - bugfix: the Bolt Responder and Mk II Phalanx energy guns now have inhand sprites
- - image: some new inhand sprites for the Phalanx II - HoS laser, yellow version
- - image: new inhand sprites for the Bolt Responder
- - qol: 'put instructions on toggling bandanas into their examines. If you didn''t
- already know, it can be worn as more than a mask: use in-hand to wear as a hat,
- and alt-click to wear it on your neck!'
- - rscadd: Added Alcoholic as a negative quirk.
-2023-07-17:
- ChungusGamer666:
- - refactor: Species speed is now stored in bodyparts. Leg transplants from slower
- species will make you slower.
- - bugfix: Bodyparts that should slow you down, will slow you down.
- - bugfix: Hair and facial hair gradients work again now
- - bugfix: Facial hair colors apply properly again
- - bugfix: Admin spawned characters will get hair color preferences applied properly
- - refactor: Head rendering code has been updated significantly... Again. Please
- report any issues with hair, facial hair, lipstick and such.
- Iamgoofball:
- - rscdel: Resets Human, Lizard, and Moth screams to /tg/ stock.
- - bugfix: Fixes screaming easter eggs.
- Jolly:
- - qol: '[DS-2] - The code for some of the lockers internally has been altered. Please
- report any missing content from said lockers on Github.'
- Jolly, timothymtorres:
- - code_imp: 'Jolly: Armories across all maps have been tweaked slightly. Report
- to a Nanotrasen security advisor for any missing guns, armor, helmets or anything
- else that was there previously (that means, post an issue on Github if theres
- an issue!!)'
- - code_imp: 'timothymtorres: Random item spawners now support better control of
- their X/Y pixel offset.'
- Melbert:
- - bugfix: Punpun has gotten properly fitting clothes for his little chimp body
- - code_imp: AI cards should react more snap-ily to having their occupant perish
- SkyratBot:
StaringGasMask:
- qol: Now plasmamen can use the infiltrator MODsuit without having their species
revealed. The helmet's still not sealed, so remember your mask.
@@ -1133,32 +664,6 @@
The size of this are can be configured via the PAI card.
- rscadd: pAI cards can now be placed inside bots in order to grant them control
of the bot.
- - qol: in the event the Gravity Generator becomes damaged, examining the main part
- will now give repair hints!
- - balance: Pyre Sect can now heal with their bible as normal.
- - qol: Some of Pyre Sect's rituals have been shortened slightly
- - bugfix: fixed energy cost on floor tiles for engi borgs.
- - bugfix: engi borgs can now properly merge base floor tiles with other base floor
- tiles.
- - bugfix: transformed jellypeople with the blood deficiency quirk will now receive
- the right bloodpacks as mail goodies
- - refactor: Arcane Barrage and Blood Barrage are magic gun subtypes and not rifle
- subtypes. Also they have sprites again.
- - qol: The barrage spells now use the automatic component to do its thing.
- - bugfix: Blood Barrage once again heals cultists and constructs without hurting
- them.
- - code_imp: Cleans up how Blood Rites finds blood to draw in. You can now just click
- turfs as well as blood, and it should now be much more accurate about it.
- - qol: Blood trails contribute to charges gained using Blood Rites. You can also
- activate Blood Rite's blood draw using blood trails.
- - rscadd: The 'Sent from my PDA' message is different for Clear PDAs now (specifying
- they are crystal).
- - bugfix: replaces icebox genetics' regular science headset with a medisci headset,
- making it more in line with other genetics offices
- - balance: Changed damage reduction for robotic limbs to be multiplicative instead
- of additive
- - qol: laser muskets' inhand sprites will show now whether or not they are charged
- - image: new inhand sprites for the laser muskets
JohnFulpWillard:
- rscadd: The 'Sent from my PDA' message is different for Clear PDAs now (specifying
they are crystal).
@@ -1193,145 +698,6 @@
- balance: Buffed both the shocktrooper and special op crate. Shocktrooper now has
an armored helmet and vest, and special op now has 5 mirage grenades and a chameleon
belt. The survival knife in the special op crate is now a switchblade.
- - bugfix: The AI can no longer untip vendors remotely/spam sparks from shocked vendors
- - bugfix: Emotes now respect word filters.
- - bugfix: Fixed the AI vox announcement interrupting every other sound being played.
- - bugfix: The preference menu has had its weird index lowered (Assets are no longer
- semi garbled)
- - bugfix: The malf AI emag ability now works
- - bugfix: Carp, Trees, and Festivus Poles will once more sometimes emote at you
- if they think you are looking at them the wrong way, before they come over to
- beat you up.
- - qol: People with deviant tastes now don't care about dirt on the food.
- - bugfix: Station traits can once again allow vending machines and bots to speak
- a random language
- - bugfix: EMPed bots and vending machines once again speak a random language
- - bugfix: Onehuman and Freeform ai modules now have proper material prices.
- Zonespace27:
- - balance: Traitors, changelings, and heretics have been removed from rotation,
- with their powers moved to the OPFOR menu.
- itseasytosee:
- - rscadd: A new traitor item has been added, Polarized Contacts!
-2023-07-18:
- SkyratBot:
- - rscadd: Adds the Lustrous, ethereal pirates in a big bluespace geode!
- - sound: Unique scream sound for the Lustrous species.
- - image: Unique head icon for the Lustrous species.
- - code_imp: Adds an opt out for the rest of the round for the various heretic summons.
- vinylspiders:
- - bugfix: fixed a bug with the liquid output pump's height regulator that was causing
- it to never output anything so long as a height was set
-2023-07-19:
- Melbert:
- - bugfix: Fix organ damage being uncapped
- - qol: Wizard Spellbook is now alphabetized
- - qol: Wizard Spellbook now has a search bar!
- - bugfix: Cyborgs no longer drop their radio key when deleted, only when deconstructed
- first
- - bugfix: Cyborgs no longer drop their MMI on deletion, only prior to deletion.
- This may result in bad code rearing its ugly head, open an issue report on the
- github if you're a cyborg and get ghosted when you feel like you shouldn't
- - bugfix: Runtime from syndie cyborgs spawning
- - bugfix: AI deaths are reported to black box
- - refactor: Refactored display-ing of antag objectives in their UIs
- Rhials:
- - spellcheck: removes an errant period from the flux anomaly announcement.
- SkyratBot:
- - bugfix: Triple carp player controlled shuttle event works again
- - bugfix: Sniper rifles have a range that allows them to aim more smoothly (and
- still decently long ranged)
- - rscdel: There is no longer a 50% chance of catching a heretic out when examining
- them drawing influences.
- - spellcheck: Maints fridge doesn't have _ in its name anymore
- - bugfix: Multi-z maps should now work again.
- - rscadd: Ambient tracks for icebox.
- - rscadd: Independent global_list for icebox.
- - qol: techfabs now use sheets(TM) as the default unit of measurement
- - bugfix: mechfab icons aren't perpetually gray
- - bugfix: Replaces direct calls of try_infect() with appropriate procs so that CRISPR
- and Miasma aren't forcing diseases on the disease immune.
- - rscadd: Add healing boost to organs while mob is sleeping (does not apply to robotic
- or dying organs)
- - rscadd: You can now toggle the visibility for hair on your noggin when wearing
- surgery caps.
- - bugfix: replaces the unspawnable cannonballs in birdshot maintenance with a stack
- so that the 4 cannonballs properly spawn, make sure to point them away from
- medical!
- - spellcheck: More elaborate explanation for what exactly the sinister shard does
- when you look at the explanation in the null rod selection UI.
- - bugfix: Creampies will no longer irreparably stain your face
- - bugfix: anti-breach shields wont be dragged away during shuttle flight anymore
- - refactor: Huds now have their hud owner set in Initialize
- - image: updated most tank sprites.
- - bugfix: Fixes a runtime on inserting the vorpal scythe into your arm. You should
- now gain the Morbid trait, as expected.
- - code_imp: apc's update_icon_state proc will no longer set the icon file path
- - refactor: the penguin is a basic animal
- - rscadd: the penguin now layed eggs
- - rscadd: the penguin and the chicken babys will go look for adult penguin or chicken
- and be happy when he is near the adult
- - spellcheck: A spelling error in the name of the Tiziran fish case has been corrected.
- - bugfix: ethereal hair will now go out when they die again
- - bugfix: adds a BCI implanter to northstar circuit lab as it didn't come with one
- before
- - bugfix: Abductor posters can no longer randomly spawn
- - spellcheck: Fix duplicate sentence in space comms agent flavor text
- - bugfix: Cleans up the lavaland exports to the modern loot table lists.
- - bugfix: Megafauna can be consumed by the singularity.
- Vekter:
- - rscadd: Added 2 new brain damage lines. Beat your skull in with a wrench and discover
- them today!
- itseasytosee:
- - balance: the Syndicate Tome traitor item now grants anti-magic while held and
- can be used to clear cult runes.
- vinylspiders:
- - refactor: Replaced hardcoded "safeties" for lava, chasms and ignoring turf slowdowns
- on catwalks with traits.
- - balance: much like catwalks, tables and conveyors also disable turf slowdowns.
- - balance: 'slippery turfs won''t slip you when walking on a table. fix: Fixed an
- edge case in which a mob standing on a lava turf would be left visually but
- permanently on fire if the lava is changed to another kind of turf.'
- - bugfix: fixes hairstyles and hair colors not being applied properly outside of
- character creation
- - bugfix: fixes hairstyles and hair colors not changing when using alter form (jellyfolk)
- - code_imp: 'replaced hardcoded values in volume_pump.dm with __DEFINES vars doc:
- Volume Pump''s basic introduction was copied and pasted from the Pressure Pump
- documentation, and made mention of trying to ''perfect the pressure''. Volume
- pump doesn''t care about pressure until it exceeds it, so there is no ''perfecting''
- going on.'
-2023-07-20:
- GoldenAlpharex:
- - qol: Skyrat's voices for humans and moths are back, and the different versions
- were added back as alternatives.
- - bugfix: Xenobiological Slime Hybrids will now get translucent mutant bodyparts
- once more.
- - bugfix: Slime people will now get translucent facial hair too.
- - bugfix: Xenobiological Slime Hybrids also can taste things like any slime should,
- again.
- - bugfix: Fixed skintones not applying properly to preferences they should affect.
- SkyratBot:
- - bugfix: Fixed the alien limbgrower UI
- - bugfix: Fixed being able to order negative or more than 20 items in mining order
- console
- - bugfix: turbine does not runtime when its input or output turf is destroyed while
- its running
- - qol: add warning examine for rotor when its parts are not connected
- - bugfix: fixes gravity generators causing CI failures from overriding a signal
- - rscadd: Bank machine now has a circuit for it. Spawns in secure tech storage and
- researchable in the same nod as comms console.
- - balance: Due to possibility of creating area and making there bank machines that
- aren't roundstart will have gps signals.
- - bugfix: Bank machine now doesn't yell about unauthorized credit withdrawal when
- its authorized.
- - qol: terminals built by left-clicking on SMES and APC units will now be on the
- same layer as the machine.
- - bugfix: constructing a terminal on a specific layer with right-click now works
- for APCs, not just SMES units
- - bugfix: Cult spells, bloodsense, and pylon healing now follow cultists through
- mind transfer (such as body swapping)
- - rscadd: 'New air alarm mode: Vent siphon, which disables scrubbers and forces
- vents to siphon air with no pressure regulation'
- - bugfix: Cryo cells no longer appear on when off.
- bugfix: Fixes holy arrows being invisible.
nikothedude:
- bugfix: Ventilation clog no longer spawns mobs in inappropriate places
@@ -1393,35 +759,6 @@
a disabler with only one shot and terrible accuracy.
- code_imp: Gun cranking has been made a component and could theoretically be used
on more than guns.
- - image: .50 incendiary magazine now has sprite.
- Tattle:
- - spellcheck: Fixed the grammar on a few revenant messages
- larentoun:
- - bugfix: Adds some decals to exceptions, allowing them to spawn and removing runtimes
-2023-07-21:
- Melbert:
- - rscadd: You can now wear multiple accessories on your uniform at once (up to five
- by default)
- - balance: Removed armor from accessories, and nerfs the effects of some accessories.
- Seven:
- - bugfix: Xeno's corrosion ability no longer breaks reinforced walls and floors
- SkyratBot:
- - refactor: refactored some code relating to greyscale clothing - please report
- relevant issues on github!
- - rscadd: Added two new quirks, prosthetic organ and tin man. Essentially, they
- replace organs with bad bad not good cybernetic counterparts.
- - bugfix: Tin man no longer causes you to drop all of your organs.
-2023-07-22:
- CoiledLamb, RyeRice:
- - image: cleans up shading on plasmatank sprite, gives it a cool new symbol.
- GoldenAlpharex:
- - bugfix: Hemophages no longer spawn with useless lungs. That also means they shouldn't
- be affected by Miasma anymore.
- - bugfix: Fixes a runtime with CRISPR and the disabled mutation variable.
- - bugfix: Cryptococcal meningitis now properly respects disease immunity.
- Improvedname:
- - bugfix: Brings security berets down to softcap armor values also softcaps get
- wound armor
Jacquerel:
- bugfix: Megafauna can be consumed by the singularity.
JohnFulpWillard:
@@ -1433,33 +770,6 @@
is quite a chore, especially if you're assigned to work there.
- rscadd: 'Adds a chemical: Ondansetron, created by Oil + Nitrogen + Oxygen + Ethanol
catalyst. A powerful Antiemetic (lowers disgust).'
- - bugfix: Once again you can award people medals.
- Sapphoqueer:
- - bugfix: fixes a bug where borgs and TK users could effectively break ID's by removing
- them from modular computers.
- Senefi:
- - rscadd: MetaStation Chemical Storage now has its own APC
- - rscadd: MetaStation Chemical Storage is slightly larger than before
- - rscadd: Ice Box Station Chemical Storage now has its own APC
- Seven:
- - qol: Added some balloon alerts for failing to place items in storage containers
- SkyratBot:
- - spellcheck: Silicons using weight machines are now told how pointless the task
- was.
- - spellcheck: Weight machine tooltips no longer lie about using LMB to use the machine.
- - qol: The word "chemical" has been removed from "chemical patch" when printing
- patches
- - bugfix: removed a false silly tip about blob taking damage from flashbangs
- - qol: You can now use any hat with the hat stabilizer MOD
- - bugfix: The MOD eating apparatus module now properly disables pepper spray protection
- - bugfix: '[Birdshot] Xenos can no longer immediately destroy the shield wall generator
- to break out.'
- - rscadd: Due to increased exposure to low-gravity due to constant generator failures,
- Spacer-Born have been showing up with increasingly tall statures.
- - rscadd: ponies
- - rscadd: Added angle lighting, applies it to most wall lights!
- - rscadd: Adds a lighting prototyping tool, mappers go try it out (it's locked behind
- the mapping verb)
- refactor: Refactored display-ing of antag objectives in their UIs
Rhials:
- spellcheck: removes an errant period from the flux anomaly announcement.
@@ -1557,42 +867,6 @@
- bugfix: Bots can put numbers in their names, what with being robots.
- admin: 'Adds attack logging when certain wires are cut (for instance: MULEbot
safeties)'
- softcerv:
- - balance: Duffelbags will now only make you slow while they are unzipped. As a
- tradeoff, you now need to stand still and zip/unzip them to access their contents/not
- move real slow.
- - bugfix: Fixes some fuck with duffelbags, them not holding enough + issues with
- spawning gear in them (job shit and all)
- vinylspiders:
- - bugfix: fixed an issue with the smoothbore disabler that would cause it to be
- able to fire 20 times while still only being able to reload a single shot
-2023-07-23:
- AffectedArc07:
- - bugfix: Fixes TTS making the rsc go to like 500 megabytes
- LT3:
- - qol: Wall fungi event now announces the location, with less of a delay
- SpaceVampire:
- - config: Kudzu returns, get your scythes ready!
- vinylspiders:
- - qol: made whether or not to leash your PAI a toggle in the PAI card menu, off
- by default. the leash can be toggled on or off at will, giving an option to
- allow PAIs to roam freely or stick within a specified range.
- - qol: also bumps the max range for the leash up to 25 (from 9 previously)
-2023-07-24:
- Melbert:
- - rscadd: 'Wizards have a new Right and Wrong: Mass Teaching, allowing them to grant
- everyone on the station one spell or relic of their choice!'
- SkyratBot:
- - bugfix: fixed third person throw verbs displaying as just an s
- - rscadd: You can now use the genetic sequencer secondary click (RMB) to scan someone
- - bugfix: Cable connections on various structures including electrified grilles,
- APC terminals, and SMES terminals have been rectified and will shock as expected
- again.
- - bugfix: Gas miners draw power properly again.
- - bugfix: fixed a bug that would cause you to be unable to lean again if you tried
- leaning while facing the wrong direction
- Thebleh:
- - bugfix: Fixed several APC related issues.
JohnFulpWillard:
- bugfix: Cult spells, bloodsense, and pylon healing now follow cultists through
mind transfer (such as body swapping)
@@ -1662,36 +936,6 @@
straight through eachother as if they weren't even there.
- spellcheck: Added more variance to item throwing text.
- refactor: Mob density has been refactored
-2023-07-25:
- Hatterhat:
- - balance: Base material costs for ammunition have been sharply reduced across the
- board, because a single 9mm casing or equivalent costing half a sheet was egregious.
- This mainly only applies to the ammo bench; lathe recipes are their own system
- and remain untouched.
- LT3:
- - bugfix: Autotransfer calls votes based on actual round time, not server initialization
- time
- SkyratBot:
- - bugfix: Dish drive no longer spams the bar/kitchen/etc when its idle with empty
- messages.
- - qol: Ice cream vats now count as elevated surfaces for preventing germs from getting
- onto germ-sensitive items (food).
- - qol: Ice cream vats now dispense cones into your hands first, if possible.
- - bugfix: Germ-sensitive items that fail to be placed in-hand now check for all
- elevated surfaces, not just tables.
- - image: Railing ends now exist.
- - rscdel: removed floating light fixture from the Deltastation security hallway
- - qol: ID cards tooltips now show how to assign a new account.
- - image: walking on water will now immerse you in it... visually, at least.
- - bugfix: fixed possessed sword spirits summoned during destruction of the sword
- spawning in the error room. those fellas are in godmode, and y'all don't need
- an immortal spirit haunting your station, m'kay?
- - qol: The TTS and TTS Blips option is now one choiced preference.
- - bugfix: Removed duplicate and incorrect Yaki Imo recipe
- - qol: "Swapped out the flour in \xC6losterrm\xE6sch with two dough slices, to avoid\
- \ competing reactions while preparing or cooking"
- - spellcheck: Chicken nugget will have a description in the craft menu, and fiesta
- skewers will have a description in general
jughu:
- bugfix: removed a false silly tip about blob taking damage from flashbangs
scriptis:
@@ -1738,45 +982,6 @@
- bugfix: now when a player interacted with the bee hive the bees will now leave
the hive to defend the hive (it was glitched)
- refactor: the bees now are a basic insect.
- Thebleh:
- - bugfix: South Bronx Paradise Bars are once again the best weight loss aid on station
- vinylspiders:
- - bugfix: the IRS have found their missing shuttle and will now be able to spawn
- properly. the station will have to find a new way to commit tax evasion from
- here on out
- - bugfix: the pda item name will now match alt job titles
- - bugfix: fixes a bug that was causing some types of ammo boxes to spawn empty
-2023-07-26:
- Cyprex:
- - balance: Electric shocks from cables deal less damage.
- GoldenAlpharex:
- - qol: The mix of sugar and Bloody Mary used to make Bloodshot is now its own reagent,
- called "Bloodshot Base", just to make it easier to ask for from Bartenders.
- Hemophages beware, however, it doesn't contain enough blood-regenerating reagents
- to appeal to the tumor on its own, so it won't be going through smoothly if
- you try to drink it.
- Hatterhat:
- - bugfix: The security uniform no longer exposes your chest when all you did was
- roll the sleeves up.
- - bugfix: The security formal uniform no longer inherits altsprites from the base
- uniform, since it didn't have any.
- - spellcheck: The security uniform's description now mentions a Lopland belt buckle,
- and not a Nanotrasen belt buckle.
- LT3:
- - bugfix: Random events and autotransfer subsystems should play nice with each other
- again
- Melbert:
- - bugfix: Prisoner slots can no longer be controlled by Plexagon HR Core. (special
- things to distributivgesetz)
- - bugfix: HoPs can open more assistant job slots if a non-assistant job is the overflow
- role
- - code_imp: Dehardcode the HR core blacklist for jobs which cannot have more slots
- opened by the HoP
- Rhials:
- - qol: Modifies the contents of some Mafia lockers. Go check 'em out!
- Senefi:
- - rscadd: Some Metastation Medbay lights have been moved and adjusted.
- SkyratBot:
Cheshify:
- image: Railing ends now exist.
Comxy:
@@ -1846,8 +1051,6 @@
- bugfix: Several weapons that spawned with special magazines, the riot dart pre-loaded
donk pistol for example, will now be able to accept normal donksoft magazines
that don't spawn loaded with riot darts.
- - bugfix: some fixes to spess IRS pirates.
- - balance: IRS armor is now bulky
Rhials:
- qol: Modifies the contents of some Mafia lockers. Go check 'em out!
Singul0:
@@ -1892,30 +1095,6 @@
Licks-The-Crystal:
- qol: The "Kidnap" progression traitor objective now displays the number of telecrystals
awarded for a successful live kidnapping.
- Lunar248:
- - rscadd: Completely revamps Freighter ghostrole, adding a new map, while trying
- to keep the spirit of the original.
- - rscdel: Removes the old Freighter map.
- - bugfix: Fixed the old area subtypes for the Freighter, and added new ones where
- they were missing before.
- Senefi:
- - bugfix: Wired MetaStation APCs that were not attached to the station's power grid
- at round start.
- SkyratBot:
- - bugfix: Mafia chaplains can now only use their seances on dead people now.
- - admin: Changing shuttle events now alerts admins
- - bugfix: Fixed active conveyor belts not moving movables spawned on top of them.
- - bugfix: Fixed a rare bug that let you spam bluespace bodybags everywhere.
- - bugfix: Hulks cannot be aggressive grabbed by strong grabbers anymore
- - bugfix: Traitors can once again affix tiny bombs to lathes rather than trying
- to feed them to the lathe
- - balance: Huzzah! Interdyne Associates have finally upgraded their medborgs' firmware.
- They'll now have bonesetters and bonegel available!
- - bugfix: fixes mobs missing most of their emissive blockers
- - qol: Tactical medkits now can hold stuff it spawns with.
- - bugfix: Nukie Medical Bundle now spawns with premium tactical medkit as it should.
- - bugfix: the height of runechat messages should now scale correctly with the current
- size variable of living mob.
Melbert:
- bugfix: Fixes some occasions which result in TTS messages not playing
Rhials:
@@ -2003,21 +1182,6 @@
- image: turf_analysis.dmi's red_arrow now has orthogonal directions
- balance: Vendors now are far less likely to gib your head or make you parapalegic
- balance: Vendors now respect armor when they crush you
- - bugfix: New lights have been issued to the Head of Personnel's office.
- - bugfix: We've instructed our intern to no longer place the HoP's stamps UNDER
- the carbon paper bin, making many think there was no stamp at all.
- - rscadd: Photophobia as a negative quirk.
- - qol: The virologist is warned when radioactive resonance cannot be obtained
- - qol: heretic sac targets now appear on the end of round report
- - bugfix: fixes a type mismatch error with some of the phobia chat messages
- - bugfix: Reduced the maximum allowed length for ID assignments and paintings' titles
- from 1024 to 42.
- vinylspiders:
- - bugfix: fixes eye emissives not scaling properly with the rest of your sprite
-2023-07-29:
- Motho:
- - bugfix: Nanotrasen-Brand System Cleaner has had its formula improved! Now with
- 100% less disgust!
san7890:
- code_imp: The currently operating rust-g version on a live server is posted to
places like the runtime.log, in the same place where the revision information
@@ -2084,35 +1248,6 @@
that bot.
- rscadd: Placing a pAI into a bot temporarily teaches that bot all the langauges
the pAI could speak.
- - bugfix: Dismounting from a piggyback no longer allows you to phase through other
- players.
- SpaceVampire:
- - qol: Detectives now spawn with their gun, instead of having to get it from the
- locker. Central command supply pod workers all take a sigh of relief. Emergency
- pocket snack relocated to the locker in question.
- YakumoChen:
- - bugfix: Ghost Cafe cyborgs no longer can PDA message the crew or show up on PDA
- lists.
- softcerv:
- - code_imp: adds in a proc on mobs to check if they are on or off-duty
- vinylspiders:
- - refactor: 'Mushrooms have been refactors, please report any bugs/unintended behavior.
- the mushroom basic mob can eat the mushroom plant to heal itself /:cl:
-
- ---------
-
- Somehow we missed this one'
- - bugfix: fixes food preferences not applying correctly to augmented and quirk-granted
- tongues.
-2023-07-31:
- GoldenAlpharex:
- - bugfix: Chat highlights now escape special RegEx characters from non-RegEx highlights.
- - bugfix: Broken RegEx expressions no longer cause the chat to bluescreen, allowing
- you to properly fix them.
- - bugfix: Clothes equipped in the jumpsuit slot that happen to cover your feet will
- no longer get bloody when you walk over blood if you are also wearing shoes.
- Your kilt won't be getting bloody instantly anymore, it only will if you take
- your shoes off!
Melbert:
- refactor: Refactored chameleon actions a fair bit
- rscadd: Adds outfit saving to chameleon clothes. RMB the "chameleon outfit" action
@@ -2123,28 +1258,6 @@
to stealthily save their current outfit as a custom outfit to use later. And
of course, it's chameleon too.
- bugfix: Ethereals, the DNA lock mod, GPSs, and storage items now respect EMP protection
- SkyratBot:
- - bugfix: Using the timeline jumper MOD module updates stamina after resetting it,
- no more infinite stamcrits
- - bugfix: fixed a bug that would cause pAIs to be able to break their leash
- - qol: pAIs now try to stay within range of their owner, and teleport back only
- when necessary
- - qol: Default max pAI range has been changed to the maximum range you can choose
- (9 tiles)
- - rscadd: RPED can carry & install computer boards and complete computer frames
- - qol: Improvements to the accounting console in the HOP office.
- - balance: Non-human species now receive a 90% racial paycut, up from 75%.
- - balance: The inflation mechanic affecting vending machines has been removed, except
- during the market crash event.
- - balance: The market crash event now stands as it's own separate event, and ramps
- up the cost of vendor items until finally popping and returning to normal. Market
- crash now lasts longer to have more impact while it scales with time.
- - balance: The bluespace MOD storage can now hold bulky storage items (backpacks,
- toolbelts) just like the bag of holding.
- - image: New cargo exo-drone scanner sprites!
- - bugfix: Module duplicator has cheaper costs for circuit duplication
- vinylspiders:
- - bugfix: Wings for fly persons from flight potion
- balance: The "Long Shift" achievement is now feasibly obtainable, and admins can
no longer trigger it unknowingly
- bugfix: Fixes runtime from trying to put two pots on one stove.
diff --git a/html/changelogs/archive/2023-08.yml b/html/changelogs/archive/2023-08.yml
index e8e5890ccc8..7aee835af2f 100644
--- a/html/changelogs/archive/2023-08.yml
+++ b/html/changelogs/archive/2023-08.yml
@@ -57,14 +57,6 @@
has had it added.
- bugfix: The Syndicate medibot on the battlecruiser can now be unlocked by its
crew.
- - rscadd: Added couple new signs to the game (med, medbay, morgue, chapel, viro,
- gene, botany)
- - rscadd: Way-signs now have additional states, showing vertical directions.
- - image: Made the font on the signs consistant.
- - bugfix: fixed bluespace bodybags consuming xenomorphs when folded
- - bugfix: coroner has an implant during cybernetic revolution
- - bugfix: Several places on Birdshot which were missing an APC now aren't.
- - bugfix: Several places on Birdshot which were missing an air alarm now aren't.
Jacquerel:
- bugfix: Several places on Birdshot which were missing an APC now aren't.
- bugfix: Several places on Birdshot which were missing an air alarm now aren't.
@@ -80,64 +72,6 @@
- rscadd: Added a pre-colored type of buttondown slacks for some service roles,
to replace the "black suit" and "amish suit"
- rscdel: Removed the "amish suit", "black suit", and one of the two "white suit"s
- - bugfix: Birdshot's morgue has surgical tools and a laptop for the coroner to use
- - bugfix: The blood-drunk miner has remembered how to swing their cleaving saw quickly
- without having to flick it out first.
- TheSS13Melon:
- - rscdel: Removes borers from the traitor uplink and OPFOR equipment menus.
- honkpocket:
- - rscadd: Adds an emote to push up glasses with *glasses
- - rscadd: Adds a visual effect to *sigh
- softcerv:
- - admin: dorms items now have logging for when an item is attempted to be used on
- someone with the corresponding preferences disabled.
- - rscadd: Adds in HUD NIFSofts, allowing for use of HUDs when wearing specific eyewear.
- - rscadd: Adds in the NIF HUD retrofitter, an item that can be used to make specific
- pieces of eyewear compatible with HUD NIFSofts
- vinylspiders:
- - bugfix: fixed flashlights having an invalid overlay
-2023-08-03:
- GoldenAlpharex:
- - rscadd: A Hemophage's pulsating tumor will now corrupt nearby internal organs,
- hijacking them for its own purposes... Meaning that a Hemophage's organs (outside
- of the tumor itself) can be replaced by any other organs of the same kind, and
- after a minute, get corrupted and become functional Hemophage organs again.
- - qol: Corrupted organs now decay 10 times slower when no tumor is present in their
- body, taking around 100 seconds instead of 10 to fully decay. That means you
- finally have time to deal with it before the organs are fully dead, but still
- not that much.
- - qol: A Hemophage's pulsating tumor can now be coronary-bypassed more than once,
- granted that it spent at least some time in an alive person's body between the
- two bypasses! Yay for regeneration!
- - bugfix: Hemophage's corrupted organs no longer start rapidly decaying after going
- through the SAD, getting your preferences re-applied or otherwise even getting
- ahealed.
- - refactor: Hemophage code has been severely refactored, moving all of the organ-specific
- behavior to the actual organs, meaning that the species itself doesn't handle
- Hemophage-specific bodily functions anymore. Yay for customizability!
- - code_imp: Hemophage code has been better spread out across multiple files, to
- be easier to sift through and find exactly what you want.
- Melbert:
- - bugfix: Traitors using the sneak suit and heretics under the effects of cloak
- no longer leak their identity via Text to Speech
- SkyratBot:
- - bugfix: Fix ethereal crystal destruction not removing light
- - rscadd: Fugitive shuttles now have a "Fugitive Tracker" machine, which gives a
- readout on the location of a random fugitive on a 40 second cooldown.
- - spellcheck: Renames the fugitive pinpointer to the bounty shuttle pinpointer.
- - bugfix: bluespace RPED can be put in bags again without dragging them into their
- storage slots
- - bugfix: normal RPED exchanges parts & displays part info again
- - bugfix: BoH bombing now correctly requires two bags to be done.
- - balance: The strong-arm implant's punches now respect armor.
- - spellcheck: While using an arm with the strong-arm implant to punch people, you
- no longer kick them; your implant's in your arm, after all!
- - qol: The random parallax layer moves more slowly, giving a more deep feel
- - bugfix: Your pAI card won't pop out of your PDA onto the floor alongside its hologram
- if it enters hologram form while inside a PDA.
- - balance: Xenomorph neurotoxin has been buffed (50 -> 65 stamina damage)
- - rscadd: Adds boss music functionality.
- - sound: Adds hierophants boss track, tweaks hierophant boss noises.
Senefi:
- bugfix: NorthStar's Supermatter Waste Chamber guide no longer contains inaccurate
information
@@ -150,40 +84,6 @@
Room
- bugfix: The Administrative Storage and ERT Armoury blast doors can no longer be
opened by building a door button.
- SpaceVampire:
- - bugfix: 'VoidRaptor security made more accessible to the inquisitively inclined
- on their staff.
-
-
-
- '
- Useroth:
- - rscadd: Added two variants of impala style horns, a smaller and bigger version
- YakumoChen:
- - bugfix: Once more, ghosts in the cafe cannot use vendor radios to communicate
- with the living.
- dawsonkeyes:
- - balance: the Marked One has reduced attack cooldowns and rebalanced attack strategies
- in his final phase
- - balance: dragonslayer does slightly less fauna damage and the roll does slightly
- more stamina damage
- - bugfix: charge attacks no longer grant John Marked One infinite superspeed
- distributivgesetz:
- - bugfix: Fixes holoparasites not dusting their owners on death sometimes.
-2023-08-04:
- SkyratBot:
- - bugfix: radio should no longer be broken for everyone
- - bugfix: removed fire alarm that was inside a window on oldstation
- - bugfix: Fixes an extremely rare bug where a /mob/living/brain with a client would
- not be moved out of nullspace correctly, causing admin log spam.
- - image: resprited the entirety of RnD! Genetics, Robotics, the RD, and the Science
- Team themselves will enjoy the fresh new looks but same great taste! No, wait,
- great STYLE! Don't eat these, they're covered in chemicals.
carlarctg:
- qol: When Space Dragons devour people they get extinguished, removing flames.
honkpocket:
@@ -239,23 +139,6 @@
the other basic/normal cybernetics
- balance: The welding shield and luminiscent cybernetic eyes are now unlocked with
the other upgraded cybernetics
- - bugfix: deleted trash in the walls from whiteship ruin box.
- - bugfix: Guard Spiders are no longer unable to attack after using Web Effigy
- - balance: hat stabilizer module can now hold what plasmaman helmets can hold
- - qol: kinesis module can be stopped without launching an object with right click
- - balance: kinesis module stuns last until the kinesis stops
- - rscadd: admin suit has a version of kinesis that can pick up anything at any range
- and can be configured to make grabbed mobs phase through walls :)
- - qol: TTS volume preference is now actually a volume slider, instead of a volume
- number input.
- - bugfix: Spell burger now has only one recipe
- Vekter:
- - bugfix: Fixes formatting for derelict and syndicate drone job names. They should
- no longer tell you they're "the Ghost Role" when spawning as them.
- - spellcheck: Fixed a typo in progressbar.dm and the file name for the progress
- bar sprites.
- - rscadd: Remapped the Metastation kitchen for about the tenth time.
- distributivgesetz:
- bugfix: radio should no longer be broken for everyone
Helg2:
- bugfix: deleted trash in the walls from whiteship ruin box.
@@ -284,20 +167,6 @@
- rscadd: Added a "Reset Imprint" option to the PDA painter.
- refactor: Refactored PDA imprinting code just a bit.
- bugfix: PDAs should now properly respond to rigged messages.
- - qol: Made reading text with the PDA retro theme a bit more accessible.
- vinylspiders:
- - bugfix: fixes .38 revolvers losing ammo capacity with each reload (for real this
- time)
-2023-08-05:
- CliffracerX:
- - bugfix: Teshari Mane (Top) now changes the layer like other (Top) variants
- - image: updated Teshari Feathers Mane, Tree, and Thin mane & readded them
- - image: fluffless variants of Harpy Alt Wings for reduced sprite clippage & jank
- GoldenAlpharex:
- - bugfix: Strange rocks no longer cause the surrounding rock to become consumed
- by the void.
- Hatterhat:
- - bugfix: MCRs can now fit camo again.
- bugfix: Fixes an extremely rare bug where a /mob/living/brain with a client would
not be moved out of nullspace correctly, causing admin log spam.
peptron1:
@@ -324,62 +193,6 @@
- admin: Added more admin features to create/manange disease outbreaks
- admin: Pressing 'cancel' on disease outbreak setup dialogs will actually cancel
the event instead of running it with default settings
- RatFromTheJungle:
- - bugfix: Makes the m45a5 come from one of the actually-legal companies.
- SkyratBot:
- - rscadd: Lightgeists under AI control will selflessly heal any wounded creature
- that they see.
- - balance: Lightgeists can no longer repair non-organic tissue.
- - bugfix: golems that ate plasma are properly immune to ash storms
- - admin: The imaginary friend smite now allows selecting "offer to ghosts" instead
- of having to perform that poll yourself manually. When offering to ghosts you
- can also offer for several ghosts to volunteer at the same time.
- - qol: You can fill microwave with stuff by hitting it with a box full of stuff.
- - rscdel: removed new player status tab Readiness Status
- - rscadd: added a Ready Status Blip on the Collapse Menu button
- Zergspower:
- - bugfix: Fix robotic organs to not gain health passively, from revival, smart organ
- fridge, pluxium, occuline, and earmuffs.
- - rscadd: Some diseases now require the appropriate internal organ to work. A robotic
- organ will give immunity to the disease symptom unless the disease has "Inorganic
- Biology".
- - rscadd: Disease transmission methods now require an internal organ to be successful.
- Robotic organs give immunity. (except inorganic biology) Airborne disease transmission
- require lungs. Ingested (drunk or eaten) disease transmission requires a stomach.
- Blood (inject or patch) disease transmission requires a heart.
- - rscadd: Organs removed from a mob that is afflicted with a disease will be infectious
- while handling or transplanting it. (again, robotic organs are immune unless
- inorganic biology is present) Certain admin spawned or special diseases are
- exempt from this transmission method.
- - rscadd: A stomach is required for nebula nausea, gastritium, carpellosis, metabolic
- boost, vomit, weight loss, death sandwich poisoning
- - rscadd: Lungs are required for choking, asphyxiation, cough, cold9, oxygen restoration,
- sneezing, flu, cold, spanish flu, tuberculosis
- - rscadd: A liver is required for tissue hydration, plasma fixation, parasitic infection
- - rscadd: 'Ears are required for deafness, sensory restoration add: A heart is required
- for toxolysis, heart failure add: Eyes are required for sensory restoration,
- hyphema'
- - rscadd: 'A tongue is required for voice change, pierrot throat bal: Remove head
- requirement for wizarditis disease /'
- - code_imp: Synth organs take EMP damage
- - rscadd: Synth organs can be printed and replaced
- - bugfix: 'Synth EMP damage is normalized again
-
- :cl:'
-2023-08-06:
- Kryson, MTandi, Zeckle (Mike):
- - image: New bottles and holy grenade sprites
- LovliestPlant:
- - rscadd: Adds our 10mm makarov for purchase from Izlishek.
- - rscadd: Adds the P-92 Firefly for purchase from DeForest medical on emagged cargo
- consoles.
- - balance: Reduces the price of the .38 detective revolver from 1000-1400cr down
- to 500-700cr in Nanotasen-Bolt's imports.
- - balance: Reduces the company interest gained from the .38 detective revolver from
- BIG to AVERAGE (10->5)
- Nerev4r:
- - balance: The armor of contractors has been lowered, and their baton holster costs
- another point to get.
MTandi:
- qol: You can fill microwave with stuff by hitting it with a box full of stuff.
Sealed101:
@@ -402,17 +215,6 @@
Senefi:
- code_imp: Autowiki module for stock parts
- bugfix: Emergency lights no longer runtime when created in nullspace
- SkyratBot:
- - bugfix: Areas created with the "land claim" blueprints are no longer hazardous
- to free golems.
- - bugfix: Goliaths no longer intermittently reset their target and retarget something
- else.
- - bugfix: Goliaths can once again step diagonally.
- - bugfix: Restores a lost feature, Clarkes and Odysseus mechs once again can pivot
- on a dime and step in the same button press.
- - qol: Mechs universally have diagonal movement as to avoid unresponsive movement,
- as block diagonal movement was having unintended side effects and was actually
- intended for pivot step mechs.
Vekter:
- bugfix: Fixed the DNA Infuser's circuit board missing from the techfab and tech
storage.
@@ -426,19 +228,6 @@
- rscadd: Cursed crewmembers can freak out when passing by mirrors.
- rscadd: To make up for these, triggering a cursed effect is slightly less than
half as likely now when walking around now.
- - bugfix: sniper scope and kinesis should work without widescreen
- Vekter:
- - bugfix: Fixed the DNA Infuser's circuit board missing from the techfab and tech
- storage.
- larentoun:
- - refactor: Moves Pixel Shift logic to Component
- sqnztb:
- - bugfix: fixed hospital gowns cost to print
-2023-08-07:
- Senefi:
- - qol: Bluespace Artillery Cargo Crate includes a guide paper for how to assemble
- it.
- SkyratBot:
necromanceranne:
- bugfix: Restores a lost feature, Clarkes and Odysseus mechs once again can pivot
on a dime and step in the same button press.
@@ -462,18 +251,6 @@
/ RMB text.
- qol: There are accessibility preferences to disable this! Look for "Screentip
context with images" beside the other screentip preferences.
- - bugfix: Fixed a logic mistake for chasm fishing that resulted in only generic
- items being spawned.
- - bugfix: Fixed particles sometimes being left behind when an object drops all of
- its contents whilst having a particle active.
- - bugfix: Fixed being unable to purchase regular-priced uplink items if you bought
- the discounted variant of it.
- - bugfix: Fix mulebots receiving the wrong message when thier cell is added/removed.
- - bugfix: Boss music cuts out when you die.
- - image: bubblegum's blood smack and blood grab use new bubblegum sprites
- - bugfix: fixed missing froth sprites
- - image: Re-sprites some of the oldest hairstyles
-2023-08-08:
Sealed101:
- bugfix: fixed missing froth sprites
- image: bubblegum's blood smack and blood grab use new bubblegum sprites
@@ -520,17 +297,6 @@
- bugfix: Advanced viruses that are supposed to be stealth will again actually be
stealth to analyzers
- code_imp: Virus visibility flags can now be toggled in view variables
- SkyratBot:
- - bugfix: Exorcised uneeded variables from windoors in Meta's Xenobio
- - image: Mirrors now display a reflection of the mobs next to them... except for
- vampires.
- - rscadd: Emagged player-controlled bots now get different flavor text (depends
- on policy)
- - rscadd: Bots are now notified when a silicon toggles them malfunctioning
- - bugfix: the bee will now care more about polinating
- - qol: in case u miscliked the bee queen with a seringe 2 times, the raegent will
- not be transfered to the quen if he alredy have this raegent
- - rscadd: 4 New skin tones, hooray!
Melbert:
- code_imp: Updated some status effect tick code to be more clear of how long is
elapsing between ticks. Some effects that were inadvertently weakened are now
@@ -545,17 +311,6 @@
but stayed in their targeting range. this applies for most basic mobs, really,
so if any basic mob was targeting you despite you hauling ass behind cover,
they shouldn't anymore
- - image: fixes weird inconsistency on the neck and butt of the female base sprite
- - qol: Add sounds and flashing effects to slot machines
- - sound: Add new ding sound to slot machines from https://freesound.org/people/Natty23/sounds/411747/
- - bugfix: Removed a doubled filing cabnet in Northstar's Library Book Return room
- - bugfix: Damage on limbs get transferred on species change.
- - bugfix: former blobs are no longer able to respawn after having their mind transferred
- to a new body.
- - code_imp: Optimized z-level transition mirages, saving ~0.32s init.
- - bugfix: Creatures with nobreath trait will now regenerate oxyloss. Androids, skeletons
- and such will no longer be stuck with un-healable damage after being revived.
- - bugfix: Fix parasitic infection to cure upon liver removal
Sheits:
- image: fixes weird inconsistency on the neck and butt of the female base sprite
Watermelon914:
@@ -566,12 +321,6 @@
- rscadd: Chen And Garry's Ice Cream revolutionary Korta Cones allow our ice cream
vendors to profit off the lizard demographic like never before!
- code_imp: Ice cream flavours now are all greyscaled similarly to GAGs
- softcerv:
- - qol: Organic Interface sounds now have prefs associated with them.
- vinylspiders:
- - bugfix: greyscale color selection menu is now working again in the loadout prefs
- menu
-2023-08-09:
goobliner:
- rscadd: 4 New skin tones, hooray!
itsmeow:
@@ -606,15 +355,6 @@
moved bookcase there
Makes a wire no longer go through a wall to reach the library APC'
- GoldenAlpharex:
- - config: Space vines are now going to be a bit more common, since they now require
- less living players in order to be eligible to roll.
- LT3:
- - rscadd: 'SM emergency stop button: for when roundstart engineers Make A Mistake'
- Melbert:
- - code_imp: Updated some status effect tick code to be more clear of how long is
- elapsing between ticks. Some effects that were inadvertently weakened are now
- stronger as a result (fire and some heretic effects).
Ghommie:
- bugfix: Fixed certain aquarium fish eating other fish when not hungry.
- rscadd: Added a score award that counts how many achievements you've unlocked
@@ -634,8 +374,6 @@
Mechas or Clown Cars. To varying degrees of success.
- rscadd: Knock will now unlock and open closets you are hiding within.
- rscadd: Repulse will now throw open closets you are hiding within.
- SkyratBot:
- - refactor: the hivebot is now a basic please report any bugs
- qol: Abductor Baton Recall now starts linked to their baton, and you can no longer
unlink your baton
- qol: Instant Summons now shows what item is marked over the icon
@@ -673,93 +411,6 @@
- rscadd: Added 40 new cosmetic items to the Syndicate Store. Buy them now from
the Hat Crate, only 5 TC!
- code_imp: Updated the nuclear operative uplink files.
- - bugfix: fixed basic mobs freezing up when in melee range of a target
- - rscadd: Adds the Coroner surgery duffelbag; This replaces Coroner's surgery tools
- in their medkit and current duffel, and has the cruel surgery tools instead
- of regular ones.
- - balance: Cruel surgery tools are no longer premium.
- - balance: Coroner's medkit is now premium in the vendor.
- - balance: All Coroner medkits are the same, there is no 'large' variant.
- - balance: Coroners no longer get a folder.
- - rscadd: Added a score award that counts how many achievements you've unlocked
- so far.
- - qol: Examining a fishing rod will now provide information on equipped hook, line,
- bait, and right click functionality.
- - balance: Fishing without a bait will only lower the odds (a smidge less, too)
- of catching fish, not other things.
- - balance: Catching something that isn't a fish or a living mob won't consume the
- bait anymore.
- - balance: The Bepis fishing rod will now ignore fish's bait preferences.
- - bugfix: removes a stray obj/item from random metastation wall
- - rscadd: The Syndicate has begun rolling out new Tactical Deniability Implants
- for their Nuclear Operative teams. It seems these implants are designed to make
- teams "fight harder" by "giving incentives for fighting to the bitter end",
- whatever they're talking about.
- - bugfix: Fixed a hard delete that would occur with lua-created atoms.
- - bugfix: Fixed certain aquarium fish eating other fish when not hungry.
- - bugfix: You can do autopsies on people who were revived and died again after they
- had already been dissected.
- - qol: Autopsies have become the surgery needed to complete the dissection experiments.
- As a result, the dissection surgery has been removed as it is now redundant.
- - qol: A coroner knows whether someone has been autopsied and recently dissected
- (and thus hasn't been revived) by examining them.
- - rscadd: Added an Indebted negative quirk to the game, which gives the holder's
- bank account a debt averaging at 15000 credits (with a variation of 1250 cr)
- and forces 75% of all earnings towards solving it. A little prize awaits those
- who actually extinguish it.
- - image: resprited all duffelbags, including worn and inhand variants to match modern
- storage.
- - rscadd: pAIs can be inserted into MODsuits and can control suit modules (but are
- not capable of moving the suit).
- - bugfix: AIs/pAIs in MODsuits can properly pin actions
- Tattle:
- - admin: Pings an admin role on discord when a new player joins (when enabled by
- config)
- TheSS13Melon:
- - rscadd: Glock 17, MK58, and Model 23 shotgun to NT Bolt.
- Vekter:
- - sound: Law changes will now play a sound to silicons impacted by those changes.
- softcerv:
- - code_imp: the damage tracking code used by the SAD, to prevent unintended healing,
- has been moved to it's own separate component.
- - code_imp: There is now a way to check for preferences of those looking at a mob.
-2023-08-10:
- Melbert:
- - qol: Abductor Baton Recall now starts linked to their baton, and you can no longer
- unlink your baton
- - qol: Instant Summons now shows what item is marked over the icon
- - bugfix: Fixes Instant Summon's name not updating when marking an item
- SkyratBot:
- - qol: Biogenerators can be unwrenched
- - bugfix: The service cyborg's beverage apparatus is now capable of grabbing coffee
- pots and syrup bottles.
- - spellcheck: fixes one of the virus thresholds saying "scrathing" instead of scratching
- - bugfix: Metastation Kitchen APC is wired to the grid again.
- - image: added a wagging tail for cake cats to match other cats
- - rscadd: Added wellcheers, a contraband soda with various side effects.
- - image: resprites all cans in the drinks icon file
- - image: resprites the canholder sprite in storage.dmi
- - rscadd: Cigarettes can now be placed in and smoked through gas masks, so long
- as the mask has no filters installed and is not covering the mouth.
- - balance: Geode Pirates have upgraded their launchpad room to be more usable
- - bugfix: Fixes a bug in the navigational computer of the Geode pirates causing
- their shuttle to move sideways.
- - rscadd: Young Spiders that appear between spiderlings and adult spiders.
- - balance: Wizard Spider version has better immunity against temp damage and can
- lay webs faster.
- - balance: Tangle Spider sucks more with self-healing but has more health.
- - balance: Scout spiderling gets thermal vision.
- - balance: Viper deals bonus damage when an enemy is below 20% health.
- - bugfix: Fixed the tramstation kitchen not having any lights
- - bugfix: fixed a Camera in atmos
- - rscadd: missing Camera in chem storage
- - balance: added the storage implanter to the syndie-kit tactical 'spy' kit to make
- it decent.
- - rscadd: Adds a new technology which utilises Bioscrambler anomaly cores to allow
- you to transform into animals.
- - balance: Removes standard vest from all security lockers and adds 3 of them to
- the security wardrobe.
- - bugfix: fixed gibtonite explosions having flames and flash ranges
siliconOpossum:
- rscadd: Added greyscale suitskirt, available in clothesmates
- rscadd: You can now roll up the sleeves of greyscale buttondown shirts
@@ -767,67 +418,6 @@
pre-colored variants of the above
- bugfix: Fixed only one buttondown with slacks being available in clothesmates
- image: Slightly adjusted greyscale buttondown sprite, you look less fat now!
- vinylspiders:
- - bugfix: quirks list will now be displayed normally in examine text again instead
- of duplicating itself
-2023-08-11:
- Melbert:
- - bugfix: Fix some missing wizard spellbook flavor
- - bugfix: Fixed latejoiners being affected by certain things twice, such as Summon
- Guns and Summon Magic
- SkyratBot:
- - bugfix: The bulbs of lights will now have an emissive glow when on, making it
- so they appear active no matter how dark the area surrounding them happens to
- be.
- - bugfix: crafting recipes without a name, such as the mothic pizzas, will inherit
- the name of the item they make
- - balance: Space Ninja's energy net uses a projectile to catch people now.
- - bugfix: Fixed an oddity with morgue corpses being shakeable like they're just
- unconscious.
- - admin: 'Added new lua functions: SS13.is_valid, SS13.stop_tracking, SS13.new_untracked,
- SS13.type and SS13.qdel'
- - bugfix: Mirror reflections no longer display progress bars or runechat.
- - qol: Drill module automatically disables if it's about to drill into gibtonite
- - bugfix: Fixed an oversight with processable items that lead to the same chat message
- being sent multiple times.
- - rscadd: Add admin blackhole shuttle event with a normal version and suicidal version.
- - bugfix: Fix several shuttle event runtimes
- Vekter:
- - bugfix: FRAG-12 shells no longer require sulfuric acid, instead needing 10 fluorosulfuric
- acid. This should prevent them from leaving byproducts if crafted in a specific
- way.
- softcerv:
- - bugfix: fixes soulcatchers not properly returning minds back to bodies.
-2023-08-12:
- CliffracerX:
- - image: redid skyrat's bespoke duffelbags to match the rework upstream
- - image: made robotics backpacks look more ruggedized
- - image: minor polish to HOP storage palette, added white sec satchels as an option
- - refactor: interlink isn't INCLUDED anymore! rejoice in quicker builds and dead
- bugs!
- - bugfix: elevators show the correct labels now!
- EOBGames, MrMelbert:
- - rscadd: Mars celebrates the 250th anniversary of the Martian Concession this year,
- and this has brought Martian cuisine to new heights of popularity. Find a new
- selection of Martian foods and drinks available in your crafting menu today!
- GoldenAlpharex:
- - bugfix: Certain organs that should have been unremovable for a long time, are
- now properly unremovable. You know exactly why.
- LT3:
- - bugfix: Airlock lighting works again
- - bugfix: Large airlocks are now a subtype and function on both tiles
- Melbert:
- - bugfix: Fix antimagic effect not expiring
- SkyratBot:
- - balance: Lepton Violet (wabbajack) shuttle must be unlocked by having some form
- of polymorph happen in-game first (Pride Mirror or the cursed springs are the
- most accessible sources)
- - balance: Scrapheap shuttle can only be bought if the Cargo budget is below 600
- credits, and the shuttle has just less than half of its usual refueling time
- left. However, it gives the cargo budget an influx of 3000 credits!
- - qol: Uncle Pete's Rollerdome has had its price increased, and the disco machine
- is no longer unbreakable.
- - bugfix: fixes kinesis not actually immobilizing or blocking hands of grabbed mobs
2023-08-10:
Boopideedoo:
- bugfix: fixed a Camera in atmos
@@ -880,9 +470,6 @@
drones can all now cast robed spells as long as they''re wearing a wizardly
hat as well.'
- balance: Made monkeys able to wield two-handed things again.
- - spellcheck: improvised fire extinguishers aren't full of typoes now
- Wallem:
- - rscadd: T
improvedname:
- balance: Removes standard vest from all security lockers and adds 3 of them to
the security wardrobe.
@@ -942,23 +529,6 @@
- bugfix: A small clerical error fixed which will cause the Ukrainian station naming
prefix to be properly applied to the Independence Day of Ukraine holiday on
24th August, rather than overwriting the Indigenous People's Day station prefixes.
- vinylspiders:
- - bugfix: Fixed fired foam darts, gumballs and (harmless) lollipops being embeddable.
- - bugfix: 'Projectiles that should embed while being reusable will now do so correctly,
- actually embedding the reusable casing instead of a shrapnel. balance: Arrows
- are generally more likely to embed now, except for blazing ones, that kind of
- just blaze.'
- - qol: the quiver storage now uses numerical stacking (like botany and ore bags,
- or the RPED, for example).
-2023-08-13:
- Melbert:
- - bugfix: Fixes Shadow Walk
- MortoSasye (Mystral Mom):
- - rscadd: 'Two new sets of cosmetic sprites are now available: Arfel Harpy Wings
- and Australian Shepherd tail. Enjoy, new harpies and canids players.'
- SkyratBot:
- - balance: Change mousetraps to kill mice instead of damaging them (except regal
- rats)
timothymtorres:
- rscadd: Add admin blackhole shuttle event with a normal version and suicidal version.
- bugfix: Fix several shuttle event runtimes
@@ -968,19 +538,6 @@
- rscadd: North Star's Genetics has been tweaked.
- bugfix: The North Star's AI SAT has a working vent and it's service hall has a
working lightswitch
- - rscadd: you can upgrade laser pointers with a bluespace crystal to let them shine
- through walls at double the power cost, if the laser in the pointer is of tier
- 3 or higher.
- - qol: laser pointer charge can be seen by examining it
- - bugfix: fixed laser pointers luring dead cats when shone upon
- - code_imp: laser pointer code cleaned up a tad
- - bugfix: Giant Spiders only have an antag datum if created by the round event.
- - balance: Flesh spider eggs hatch into adult spiders instead of baby spiders.
- - balance: The eggs spawned by the start of the spider infestation event hatch into
- adult Midwife spiders instead of baby ones.
- - rscadd: Lets you grind things into a hauntium reagent which works similarly to
- the solid form but is versatile and has some unique effects.
- - bugfix: X'ing out of the podpeople no soul prompt will no longer harvest the seeds.
Derpguy3:
- bugfix: The metastation law office's shutters now function again.
EuSouAFazer:
@@ -999,11 +556,6 @@
found a nav beacon!
- code_imp: The deployable component now gives you an option to disable the examine
blurb it adds to its parent
- - bugfix: rabbits are now small-sized rather than human-sized, as well as capable
- of being picked up
- - bugfix: baseballs are now small sized rather than large
- - bugfix: fixed missing departments and names in request consoles
- - qol: Gateway access no longer requires a Silver ID.
Wallem:
- rscadd: T
carlarctg:
@@ -1062,21 +614,6 @@
in a 4 tiles radius round the rune. Useful for establishing bases and fighting
area.
- bugfix: fixed detect_room not running correctly when break_if_found is not passed
- - bugfix: Growing spiders will now retaliate against you like they were always meant
- to.
- - bugfix: After a collective brain fart lasting for 6 months, monkeys and xenomorphs
- now know how to remove embedded objects from their own bodies.
- - qol: The mining order console is now a bit more compact, and the search bar works
- regardless of which tab you are currently on.
- - qol: The flowers in Meta's chapel are no longer stacked atop eachother
- - bugfix: Plumbing Constructors can now deconstruct every machine they can make,
- including the plumbing IV.
- - bugfix: Plumbing IV drips no longer drop metal when deconstructed
- - bugfix: The Nuke Op/Lone Op sniper briefcase now properly contains a sniper rifle.
- - bugfix: Mime spell books don't eat itself when used in the dark or cancelled out
- of.
- - qol: Emergency shuttle now gracefully display occupancy limits and prerequisites
- in the communication console.
dieamond13:
- rscadd: Lets you grind things into a hauntium reagent which works similarly to
the solid form but is versatile and has some unique effects.
@@ -1088,26 +625,6 @@
- admin: With the morph rework comes a new ability you can add to mobs, "Assume
Form". Feel free to add that to any simple or basic mob for le funnies as Runtime
turns into a pen or something.
- - bugfix: The metastation law office's shutters now function again.
- - bugfix: Fixed wheelchairs being silent.
- - bugfix: Labor Camp Sustenance vendor is no longer free; instead, it takes your
- labor points that you'd otherwise use for paying off your point goal.
- vinylspiders:
- - bugfix: fixes Common being always granted regardless of language prefs deliberately
- excluding it
-2023-08-14:
- CoiledLamb, Jacquerel:
- - rscadd: Adds mining weather radio
- Nerev4r:
- - rscadd: NanoTrasen grooming regulations no longer specify maximum fingernail length,
- leading to more clawed employees appearing on nearby facilities.
- Senefi:
- - bugfix: NorthStar's Supermatter Waste Chamber guide no longer contains inaccurate
- information
- - qol: 'NorthStar''s Supermatter Waste Chamber air alarm no longer shows the hallway
- vent and scrubber on the configuration panel. /:cl:'
- SkyratBot:
- - bugfix: You can no longer stand up without legs.
- bugfix: Growing spiders will now retaliate against you like they were always meant
to.
2023-08-14:
@@ -1127,20 +644,6 @@
- admin: Admins can now make a gun's fired projectiles better or worse at wounding
by changing the gun's projectile_wound_bonus. Surely this will not have any
repercussions.
- - qol: xenos rest verb now is a hud button instead
- - qol: The icebox bridge had its items moved to better positions. No items were
- added or removed, and none left their original room (except the captain's electric
- razor, which went to the bathroom).
- - bugfix: Inquisitor Commander now has just 1 box.
- - bugfix: If you shapeshift into a mob which can eat things such as player corpses,
- those things will fall out when you stop shapeshifting
- - bugfix: Doctors no longer spawn in the bedroom in the northstar
- - bugfix: a few issues with Martian food
- - bugfix: Player-controlled basic mobs with ranged attacks can now only fire about
- as fast as AI-controlled ones.
- - bugfix: The modular receiver is now only printable from a hacked autolathe.
- - bugfix: The chef can no longer close the shutters in Meta's HoP office.
-2023-08-15:
Helg2:
- bugfix: Inquisitor Commander now has just 1 box.
Jacquerel:
@@ -1169,7 +672,6 @@
it used to be, rather than being all bold.
- bugfix: PDA messages are now displayed to observers from dead players, and not
just dedicated observers.
- - admin: The banning panel is now set to have all bans be global by default.
Kapu1178:
- rscadd: Lockers, crates, and machines no longer block click attempts in adjacency
checks. Basically, you can reach tables cornered between lockers/machines.
@@ -1177,10 +679,6 @@
- qol: Minor mapping work to Metastation. Wallmounts, decal changes, etc - especially
around Medbay.
- qol: Remapped Meta's Morgue slightly.
- ShizCalev:
- - bugfix: Medbots made with tactical medical kits now have the correct skin
- SkyratBot:
- - bugfix: fixed the Tram Pod Bay having no lights
OrionTheFox:
- bugfix: fixed the Tram Pod Bay having no lights
ShizCalev:
@@ -1203,21 +701,6 @@
created or deleted
- bugfix: fixes immerse overlays not being added the first time a mob enters a water
turf
- - rscadd: Added big slappy
- - image: Added big slappy parts and big slappy sprites
- - rscadd: Lockers, crates, and machines no longer block click attempts in adjacency
- checks. Basically, you can reach tables cornered between lockers/machines.
- - refactor: ice whelps have been refactored to basic mobs
- - rscadd: ice whelps have a new dangerous ability which theyll use once their enraged
- meter is full
- - image: modified glass pane wall mount icon
- vinylspiders:
- - bugfix: characters with digi legs will no longer have a broken icon when wearing
- a coroner's labcoat
-2023-08-16:
- Onule:
- - image: modified light fixtures' sprites and overlays to be more pronounced
- SkyratBot:
2023-08-16:
DeerJesus:
- bugfix: removes bodybag welding tooltip
@@ -1261,34 +744,6 @@
- balance: Made mech RCS pack consume reasonable amount of gas
- code_imp: Fixed some other minor bugs and made some minor changes in the mech
code
- - bugfix: items no longer stay in your hands after their respective arm is dismembered
- - bugfix: mob holders no longer bug out and harddel when put into evidence bags.
- - bugfix: removes bodybag welding tooltip
- - bugfix: you can no longer tactially stealth-hide donuts in your right hand
- - image: The Mosin-Nagant has been given new sprites and a reflavor, looking for
- the old rifle? Look for the Sakhno Precision Rifle.
- - balance: The tiniest balance thing, but since Silverscales use the Sakhno-Zhihao
- rifle, which has a scope on it, their main weapon now has a scope.
- - sound: The cargo rifle now has a new, considerably more rifle sized firing sound.
- Gotten from tgmc from https://github.com/tgstation/TerraGov-Marine-Corps/pull/12280.
- - rscadd: Adds a unique medibot to the Syndicate Infiltrator. It doesn't like nukes
- - when one is armed, disarmed, or detonating, it says an unique line. Players
- can optionally enable personalities on it if they want to. Probably best to
- just let it stay on the shuttle though. (It's also in the Interdyne Pharmaceuticals
- ship, renamed)
- - bugfix: Fixed an issue that made mapload medibots unable to load custom skins.
- - bugfix: fixed missing seating at the All American Diner
-2023-08-17:
- Erol509:
- - bugfix: Fixes .416 stabilis tranquilizer bullets, they no longer kill you, but
- put you into sleep like they suposed to work.
- LT3:
- - admin: New config flag to split threat budget
- SkyratBot:
- - balance: Hunter and viper spider toxins no longer deal liver damage.
- - balance: Tangle spider's acid injection per bite reduced from 5 to 2.5.
- - bugfix: Colored ammo bands, such as those on .357 and .38 speedloaders, no longer
- permanently disappear upon icon update.
Onule:
- image: modified light fixtures' sprites and overlays to be more pronounced
OrionTheFox:
@@ -1302,10 +757,6 @@
- image: updated the majority of Lawyer suit sprites, along with the Cook's Apron-Jacket
and Hat, and updated/greyscaled Botany's Overalls! Also the Overalls are available
in the clothesmate, and the Cook Jorts' shirt is less crusty.
- - balance: Ascending as an Ash Heretic now reduces the cooldown of Nightwatchers
- Rebirth to ten seconds, additionally Ash ascension has Bomb immunity added to
- the resistances it offers (no stun immunity though)
- - qol: the chemistry heater can now be unwrenched.
Paxilmaniac:
- image: The Mosin-Nagant has been given new sprites and a reflavor, looking for
the old rifle? Look for the Sakhno Precision Rifle.
@@ -1328,33 +779,6 @@
get enslaved to whoever revived them.'
- bugfix: Servant golems get their master's real name (Won't be serving "Unknown"
if their master is wearing a mask)
- - bugfix: Skeletons now heal burn damage with milk once again.
- - balance: metal bat damage changed from 12 -> 20
- - bugfix: Gravitational Anomalies will now correctly clean up after themselves,
- instead of leaving an area of the station permanently heavy or with no gravity
- at all.
- - bugfix: items implanted on arms no longer become permanently stuck in-hand when
- their limb is dismembered
- - bugfix: quickly sheathing and unsheathing the vorpal scythe can no longer bug
- out and prevent its effects from being applied
- - bugfix: Head Revolutionaries no longer count towards a revolution's defeat if
- they have become simplemobs, basic mobs, or xenomorphs.
- - bugfix: fixed a disconnected APC in Delta's tech storage.
- - bugfix: Beam rifles will no longer inappropriately retain any bonuses they may
- gain from wizardry.
- - bugfix: Inappropriate stack traces over bonuses being applied to components that
- gain bonuses innately (like Mythril stacks) should cease.
- - bugfix: Makes the ectoplasm anomaly not randomly move so deadchat can actually
- control it
- - bugfix: fixed border-only firedoors being able to be walked through while closed
- - rscadd: You can now set your voice to just blips.
- - bugfix: multiple balloon alerts when the plumbing RCD is low on ammo
- - code_imp: organized all plumbing designs into static lists for memory savings
- - refactor: removed unused vars for further memory savings
- - bugfix: fixes a harddel in particle holders
- - rscadd: Added 28 new food recipes!
- - bugfix: Goliaths will try to attack mechs with their tentacles.
- - spellcheck: fixed the rat king text saying that they're summoning rats
DaydreamIQ:
- balance: Ascending as an Ash Heretic now reduces the cooldown of Nightwatchers
Rebirth to ten seconds, additionally Ash ascension has Bomb immunity added to
@@ -1368,17 +792,6 @@
the limb in question.
- balance: dismemberment moodlets can now stack for each limb you lose, and are
cleared separately. Their descriptions have been updated to reflect this.
- - bugfix: Spaceacillin will once again provide antiviral effects for the deceased
-2023-08-18:
- AnywayFarus:
- - bugfix: Player Loadout in Select Equipment(or Ctrl+Click on ghost mob) option
- has been fixed.
- Hatterhat:
- - bugfix: For consistency's sake, piru dough is now a chemical reaction and not
- a crafting recipe.
- Iajret:
- - bugfix: Mapped or spawned in rusted walls (such as on Birdstation or on charlie
- ghost role) can now be fully cleaned without needing to deconstruct them.
- bugfix: items implanted on arms no longer become permanently stuck in-hand when
their limb is dismembered
- bugfix: quickly sheathing and unsheathing the vorpal scythe can no longer bug
@@ -1402,33 +815,6 @@
- bugfix: Base large airlock subtype no longer spawns a normal sized airlock
- image: Added mapping icons for large airlocks
- code_imp: Repathed all public airlocks to consistent naming
- Melbert:
- - balance: Red toolboxes go faster
- Paxilmaniac:
- - balance: The CIN military surplus crate's item table and corresponding weights
- have been changed, the RC Makarov, pp-95, associated ammo for both of those,
- and the crucifix can no longer spawn. Bolt action rifles mimic what they do
- on tg, where they come in a case with a 20/80 percent chance to spawn either
- a good, normal rifle/a rifle that can jam on occasion. All items in the crate
- now have an equal chance of spawning when picked from, aside from the gun cases
- which spawn at a slightly higher rate than everything else does.
- - image: The Quartermaster's Archangel rifle has been given a new sprite and identity
- to match the other boltactions that its based on
- - image: AP and rubber .310 bullet casings now have a small colored bit at the bottom
- to show that they are different from the normal all red bullets
- - spellcheck: .310 ammo in the autolathe now has its (Lethality Warning) attached
- to the end of the name like it should
- SkyratBot:
- - rscadd: Settler quirk! Conqueror the great outdoors....in space. Just make sure
- nobody asks you to get anything from the top shelf.
- - balance: Changeling arm blade has an armour penetration of 35%.
- - balance: Changeling arm blade has a wound bonus of 10, from -20.
- - balance: Changeling has a bare wound bonus of 10, from 20.
- - bugfix: Moved the RD's plant to its proper place in Northstar
- - admin: The Add Mob Ability menu now prefixes the typepath of the ability with
- the ability's name, so you can much more quickly see what the ability is.
- - bugfix: formal closet will no longer spawn with two 'error' icon suits inside
- of it
LemonInTheDark:
- balance: De-escalates terry powergaming by reducing the strength of sec
Melbert:
@@ -1476,8 +862,6 @@
to a lower alpha as opposed to being immediate.
- qol: The sneak ability now uses balloon alerts as opposed to chat alerts.
- bugfix: Fixed the Xenomorph Sentinel's Sneak ability icon being an error.
- - spellcheck: Fixed a lack of plurality when ejecting multiple casings from a revolver.
- - bugfix: fixes all the martian drinks having 20 boozepower
Jacquerel:
- admin: Adds Spider, Goliath, and Meteor Heart actions to the "Grant Mob Action"
menu.
@@ -1496,45 +880,6 @@
effect up. This does not effect reconstruction.
- balance: Both of the above effects do not effect the CE's roundstart RCD, nor
any other RCDs such as combat RCDs.
- - image: bowtie sprite has been tweaked slightly to look a little bit more bowtie-ish
- - bugfix: Turning into a space dragon with the polymorphic inverter will no longer
- leave you existing in two places
- - balance: You can no longer use the belt to transform into monkeys or xenomorphs,
- for technical reasons.
- - balance: you cant speed up the big slappy with slime potion
- - bugfix: Fixed some jank with the dynamic threat curve.
- - bugfix: replaced injector with working passive vent in birdshot incinerator
- - bugfix: conveyor lever in birdshot incinerator
- - rscadd: cybernetic moth eyes and their variants
- - bugfix: luminescent eyes no longer make you look like a cyclops in the dark
- - admin: Adds Spider, Goliath, and Meteor Heart actions to the "Grant Mob Action"
- menu.
- - rscdel: Removed tiny mob sprite abilities for large mobs
- - rscadd: Add a Self Seethrough ability, given to most large mobs and all mobs affected
- by a fugu gland
- - bugfix: Space Dragon's overlay will no longer vanish at times
- - spellcheck: fixes the name of the incline bench press
- timothymtorres:
- - qol: Add pickaxe to basic tools techweb
- vinylspiders:
- - bugfix: the new recolorable bowties are no longer missing from loadouts
- - bugfix: fixes generic tanks not being printable
-2023-08-19:
- GoldenAlpharex:
- - bugfix: Fixed the duplicated animation when you sigh.
- Hatterhat:
- - rscdel: Splints are gone. This does mean that medkits now start properly full
- and not overstuffed by one item, at least.
- - qol: Gauze is now, once again, usable as a splint. If you're gauzing a limb with
- both a bleed and a fracture, you prioritize the bleed first.
- - spellcheck: Gauze that reaches a negative absorption value (making them useless/infective)
- now tells you that it's ruined.
- Paxilmaniac:
- - bugfix: CIN military surplus crates now come with more than just rifle cases,
- as they should be
- SkyratBot:
- - bugfix: No more stacked items in Meta's custodial closet
- - bugfix: you can actually tell what hand a reagent dartgun is in now
mc-oofert:
- rscadd: cybernetic moth eyes and their variants
- bugfix: luminescent eyes no longer make you look like a cyclops in the dark
@@ -1588,18 +933,6 @@
of just sit there as you beat them to death. The framework for them interacting
with stuff (i.e. opening doors while slobbering on food) is a bit more unified
too, now. They also have cooler names too!
- - bugfix: the goliath and watcher mating season has ended and population has returned
- to normal levels
- - admin: Four players can ride the speedwagon
- - bugfix: Fixed dynamic.
- - bugfix: Base iron floor tiles now will be able to stack with other base iron floor
- tiles after being reskined to the base subtype.
- - qol: Delta's Detective Office looks better now.
- - bugfix: '[Waystation] Windoor for secret documents now can be accessed with away
- station secoff''s id.'
- - bugfix: '[Waystation] Deleted a window on the same place as windoor so it won''t
- block your path to secret documents.'
-2023-08-20:
2023-08-20:
EuSouAFazer:
- qol: Made the cytology lab in many maps much more convenient.
@@ -1622,37 +955,6 @@
box next to itself
Melbert:
- bugfix: Reactive stealth armor decoys are half as healthy, as originally intended
- SkyratBot:
- - bugfix: Incompatible quirks in existing savefiles shouldn't be possible anymore.
- - bugfix: ripley MK2 upgrade now properly transfers servos
- - spellcheck: inserting parts into mechas now properly says "installed" instead
- of "intalled"
- - qol: CTF assault class' (with shotgun and rocket gloves) description now mentions
- that it has low armor and increased moving speed.
- - balance: Decreased CTF recharge start delay for shields from 20 seconds to 12
- seconds.
- - balance: Marksmans rifle now has 1.7 scope.
- - bugfix: When toggling instagib mode for CTF and pressing a cross now will just
- cancel instead of proceeding.
- - bugfix: When clicking on other CTF teams spawners and after you already chose
- your team no more will ask you to join some other team to make them even.
- - bugfix: fixed lavaland beach bartender closets looking off.
- - bugfix: Makes sure settlers are SHORTEST.
- - bugfix: Some RCD constructs took more material than manual construction. The RCD
- cost should be consistent in comparison to manual construction now.
- - bugfix: healing holoparas will no longer kill slime people
- - qol: Martian fried noodles now requires 2 grown peanuts instead of salted peanut
- packet.
- - qol: Added some textual feedback to new watcher abilities
- - balance: Watchers will not attack for a short period following their gaze attack
- - bugfix: Watchers won't interrupt one ability to use the other one
- - bugfix: you can no longer destroy syndicate modsuits by just being on fire
- - bugfix: you can now toggle repair droids and plasma engines on mechas again
- - admin: admins can now upload files to the server up to 5mb (used to be 2.5mb)
- - config: file upload restriction is now config
- - qol: Made the cytology lab in many maps much more convenient.
-2023-08-21:
- SkyratBot:
Striders13:
- admin: admins can now upload files to the server up to 5mb (used to be 2.5mb)
- config: file upload restriction is now config
@@ -1677,13 +979,6 @@
sure the tree is kept happy, the rust path and blade path can access rust charge
- rscadd: rust charge
- balance: the lion hunter ammo knowledge is free
- tf-4:
- - bugfix: Ass slapping now puts an overlay on the right person
-2023-08-22:
- Hatterhat:
- - code_imp: HUMAN_MAXHEALTH was made into a more formal define.
- - bugfix: Combat info readouts (the ones you get from examining ammo/melee weapons/etc)
- should now be more accurate to the increased health people have.
2023-08-22:
CoiledLamb:
- bugfix: wellcheers is now based on sanity rather than mood
@@ -1754,16 +1049,6 @@
- rscadd: Ninjas can now hack open firelocks (temporarily) with right-click.
- balance: Hacking open doors with the Ninja Hacking MODule will subtract a paltry
amount of energy from your suit.
- SkyratBot:
- - bugfix: '[Birdshot] Morgue now has coroner''s surgery duffel bag instead of regular
- surgery duffel.'
- - rscadd: You can now feed fish with the can of fish feed without having to put
- the fish in a aquarium first.
- - balance: Some fish may survive in different, harsher atmospheres if given the
- amphibious trait, like chasm chrabs on lavaland.
- - qol: aquarium now uses balloon alerts when feeding fish.
- - bugfix: The wary and shiny lover no longer incorrectly remove difficulty from
- the minigame if conditions aren't met.
SyncIt21:
- code_imp: removed unused procs in ore silo
- code_imp: merged repeated code segments when using materials from the ore silo
@@ -1790,35 +1075,6 @@
engineering to grab some insulated gloves or the psych office to kidnap their
moth plush.
- bugfix: Fixes an issue where the steal clown shoes objective would never be valid.
- - qol: Satchels can now be crafted using the same recipe (4 cloth) as backpacks.
- - bugfix: Fixed a light inside a wall on Delta Station.
- - refactor: AI's player-tracking eyes received an unwanted obligatory update, and
- should now not tell you that a player is untrackable when they clearly obviously
- can be.
- - qol: Added two magboots to engine SMES room on icebox station
- - balance: Watchers have less health
- - balance: You can't be overwatched by several watchers at a time
- - balance: Watchers won't overwatch you instantly upon seeing you
- - balance: Goliaths won't launch tentacles at you instantly upon seeing you
- - bugfix: The "Unlocked Achievements" score will now be properly saved at the end
- of the round the first time it's loaded.
- - bugfix: plumbing ducts connects to other plumbing machinery again
- - bugfix: fixed beakers disappearing when swapped in a chem heater
- - bugfix: you can detach signaller from wires without the machine deconstructing
- itself
- - rscadd: Sacrificed heretic targets will now receive a phobia of heresy instead
- of a phobia of the supernatural. Sacrificed heretics will not get this phobia,
- but will lose knowledge points instead.
- - rscadd: Adds green jester shoes that jingle to the autodrobe!
- - image: adds new sprites for opened fireaxe/mech crowbar cabinets.
- - bugfix: Bots that can't be controlled (like beepsky) no longer has a stray 0 at
- the very right side of its UI.
- - bugfix: Fixed embedding for projectiles.
- - bugfix: wellcheers is now based on sanity rather than mood
- - image: resprites martian cans
- - image: adds inhands for martian cans and wellcheers
- - image: minor tweaks to other cans
- - spellcheck: updates wellcheers mood text
YehnBeep:
- qol: Satchels can now be crafted using the same recipe (4 cloth) as backpacks.
- bugfix: Fixed a light inside a wall on Delta Station.
@@ -1831,95 +1087,6 @@
- code_imp: Replaced the magic strings in slime code with macros. Also included
some warnings to anyone daring to touch the macros.
2023-08-23:
- Melbert:
- - bugfix: Fixed some tooltips in the sec records UI showing "false"s where they
- shouldn't.
- OrionTheFox:
- - image: 'removed some obsolete Skyrat icon overrides, moving these items to TG
- standard: Eguns, Laz/Borg hypos, Lights, and Surgery Tables.'
- - bugfix: PKAs now have no safeties, as intended
- SkyratBot:
- - bugfix: pda messages are no longer hidden from dead players who are not observers
- - refactor: the goldgrub has been refactored please report any bugs
- - rscadd: the goldgrub can now be tamed and he can have babys
- - code_imp: removed unused procs in ore silo
- - code_imp: merged repeated code segments when using materials from the ore silo
- into a single proc
- - code_imp: added auto docs & cleaned up some procs
- - refactor: logging when an item is inserted or sheets are ejected from the silo
- is now handled directly by the silo itself
- - bugfix: Mobs whose human appearance is set dynamically will once again have their
- bespoke names and descriptions, instead of Unknown, with a blank description.
- - bugfix: Metastation's arrivals area no longer has an intercom overlapping with
- the request console.
- - balance: Lasers now have increased energy cost, reverting the cost back to the
- initial value before the laser buff.
- - bugfix: Taking a nap can once again heal minor wounds
- - bugfix: A breath of healium will no longer knock you out for eternity
- - bugfix: Healium sleep now respects sleep immunity
- vinylspiders:
- - bugfix: interdyne siphon vents will siphon properly again
- - refactor: moves ALL of the skyrat edits out of modules/research/techweb/all_nodes.dm
- and into modular overrides
- xXPawnStarrXx:
- - rscadd: Added new crafting options to throwing wheels
- - rscadd: Added clay bricks as a material type. (Incase anyone wants to add onto
- it)
-2023-08-24:
- Hatterhat:
- - code_imp: Removed some redundant Syndicate underclothes' armor values.
- - bugfix: All Syndicate undersuit items now have wound armor matching their base
- tg variants.
- - bugfix: Cut down on some of the copy-pasted code regarding the Enclave uniforms,
- which are apparently in the donator tab.
- - spellcheck: Cleaned up some typos in Syndicate uniforms' descriptions.
- Melbert:
- - code_imp: Cleans up limb wound examine text code a tad.
- Rhials:
- - rscadd: The roundend report will now read out any achievements ("cheevos" as you
- may know them) earned by players over the course of the round.
- SkyratBot:
- - rscadd: Added compact shotgun to the hos locker
- - rscadd: Added compact shotgun as a traitor objective
- - balance: gives the compact shotgun 1 extra shot
- - bugfix: Birdshot pharmacy airlock now requires pharmacy access
- - rscadd: wizards are now introverts
- - balance: The Traitor's Camera bug is now a tablet app that works like a silent
- camera console with an extra ability to track people through their nearby cameras.
- - rscadd: You can now fully color your hair with a hair spray!
- - qol: splits hair sprays are now smoother on the transition, similar to the short
- fades.
- - qol: Icebox perma now has holopads.
- - bugfix: Moussaka now only uses eggplants instead of eggplants and potatoes
- - bugfix: Pita bread no longer burns on the griddle/oven
- Vekter:
- - balance: Grilles will now take 0-1 damage every time they shock something.
- - balance: Powersinks are now available earlier in traitor progression.
-2023-08-25:
- Guillaume Prata:
- - qol: QM jumpsuit/skirt expose the torso when adjusted.
- Hatterhat:
- - rscadd: Cargo now stocks pocket-clip-equipped personal first-aid pouches in their
- goodies tab for the low, low price of 6 crew paychecks (300 cr at the time of
- writing).
- - code_imp: The pouch path now exists in the code, for pocket-fitting storage items
- that don't require the item-scooping that proper bags have.
- - bugfix: The ammo workbench no longer runtime errors when inserting material.
- - bugfix: The ammo workbench storage capacity now scales like the autolathe does.
- - bugfix: .277 Aestus (renamed a223, formerly a556), uh, works properly in guns,
- again, or something.
- - bugfix: .310 Strilka no longer has duplicate nor brass ammunition because they're
- magic and also better rubbers. Go... be a heretic or clockwork cultist or something
- if you want magic bullets.
- - qol: Right-clicking on an ammo workbench that has a magazine loaded now ejects
- it. Into your hand, presumably.
- LT3:
- - rscadd: Immovable rod will now battle the unstoppable tram should they cross paths
- - bugfix: Birdshot's maint tram doors now work properly
- - bugfix: Tramstation's exterior light fixtures no longer get destroyed as soon
- as the tram moves
- - code_imp: Tram landmarks are now all subtyped instead of map varedits
- SkyratBot:
Ben10Omintrix:
- refactor: the goldgrub has been refactored please report any bugs
- rscadd: the goldgrub can now be tamed and he can have babys
@@ -1994,54 +1161,6 @@
sprite is now an underlay, so you can click the person inside the net pretty
easily and if you wanna hit the net you click the green part or the darker sides
that the human sprite doesnt cover
- - bugfix: Rotated a water tank in icebox's lower service hall, connecting the plumbing
- to the water source.
- - qol: Adds air supply for cycling airlocks in ordnance and atmos incinerator on
- all stations
- - qol: Makes internal incinerator chamber a vacuum
- - bugfix: Adds missing incinerator airlock control console to Tram station
- - bugfix: fixes multitools possibly randomly losing their buffer
- - bugfix: fixes modlinks checking battery charge without a battery and working without
- charge
- - qol: modlink stuff is a bit more explained
- - bugfix: modlinks printed from rnd no longer start with a frequency (remember to
- copy it from another one with a multitool buffer, robotics starts with 2 NT
- frequency linked ones)
- - rscadd: becoming a felinid makes your brain smaller (visually)
- - bugfix: Some incident display adverts on Northstar and Birdshot have been unobstructed.
- vinylspiders:
- - bugfix: fixes ashen arrows not doing the bonus damage to goliaths, basilisks,
- watchers, ice whelps, wumborian fugus, and goldgrubs
- - bugfix: microfusion suppressors will now spawn correctly in MCR attachment kits
- and they actually work now
- - qol: Janitors and Shaft Miners start with the ExperTrak Skill Tracker preinstalled
- on their PDAs.
-2023-08-26:
- Guillaume Prata:
- - qol: Medical Kiosk now have their wand removed with a right click, got new screentips
- and have a few of its chat messages turned into balloon alerts.
- Nerev4r & Zydras:
- - image: Adds messenger bags to character setup and drobes/lockers!
- Skyrat:
- - rscdel: Removed the meteors and space dust emergency shuttle events
- SkyratBot:
- - admin: The "HREF Dock Exploit" message should now contain a bit more usable information
- (such as a jump link) so you can investigate if something is really going wacky
- with shuttles.
- - bugfix: You should be able to click on lattices on icebox with the RCD and construct
- a floor now
- - refactor: fixed a bunch of instances of callbacks being qdeleted and cleaned up
- related code
- - bugfix: regal rats now run away from whoever attacked them
- - rscadd: new pet behavior which makes pets defend their owners if they got attacked
- - bugfix: You should no longer attack RCD effects when they're done constructing.
- - qol: Messenger bags can be crafted with 4 cloth.
- - bugfix: fixed apocalypse rune applying invisibility to mobs.
- - bugfix: Unholy water preview icon is now similar with the icon it has.
- - rscdel: Removes miscellaneous sources of clone damage from the game.
- - balance: removes the access restrictions from all animals found under the livestocks
- tab of the cargo order console, now assistants can private order animals for
- their farms without access hunting
Guillaume Prata:
- qol: QM jumpsuit/skirt expose the torso when adjusted.
Helg2:
@@ -2073,19 +1192,6 @@
- rscadd: Replaces decloning clone damage with a strike system that you can replenish
with Mutadone.
- bugfix: The decloning virus is curable with rezadone again.
- tf-4:
- - spellcheck: Fixed examine text for gemital.
-2023-08-27:
- GoldenAlpharex:
- - bugfix: Fixes the recycler being able to grind the server to a halt by trying
- to recycle the same sheet worth of material over and over and over again.
- SkyratBot:
- - bugfix: Watchers won't retain an ethereal outline of their wings hovering over
- their dead body.
- - balance: Railings now only cost 2 rods and are much easier to construct. But they
- can now be destroyed much easier and cut with wirecutters without unwrenching.
- - bugfix: Borgs no longer get permastunned by emotes
- - bugfix: Borg hud should not fuck up in few situations
iwishforducks:
- bugfix: You should no longer attack RCD effects when they're done constructing.
san7890:
@@ -2137,33 +1243,6 @@
and can be applied onto a syndicate AI (inside any container) to increase its
interaction range by two per. (Three purchases are recommended for seven tiles
of range!)
- - bugfix: greyscale colors will now update on the mob when modifying them via the
- VV menu
- - bugfix: the coroner medkit can now hold every item it spawns with
- - bugfix: multitool can be used on APC/Teslacoil/SMES/emitter if it has exposed
- wires.
- - bugfix: Light eaters can no longer be eaten by their higher-grade brothers, the
- trash eaters. (recyclers)
- - spellcheck: Fixed a spelling error with the daps emote.
- - bugfix: Ops wanting to get the CQC kit will actually get given the kit, and not
- just the CQC book.
- - bugfix: Fixed the double-barreled shotgun not working properly
- - qol: Icebox monsters no longer spawn close enough to aggro Lia at round start
- - rscadd: 'Gave snow legions a separate corpse-drop pool: ash walkers excluded,
- but eskimos included.'
- - qol: inserting new high luminosity eyes will now properly remember the previous
- eyes' color and default to that initially
- - bugfix: quartermasters get their voice of god power boost correctly
- - qol: The Achievements UI now shows how many people have unlocked a given achievement.
- - bugfix: The "Skills" Category for achievements should no longer be hidden.
- - bugfix: zipping a duffle bag closes the UI of all storage items opened inside
- it
- TheSS13Melon:
- - qol: Adds the Emergency Tether to Engineering Modsuits
- vinylspiders:
- - bugfix: fixed a bug that could cause the altar's religion selection ui to bug
- out if a previous chaplain left via cryo without selecting a religion themselves.
-2023-08-28:
iwishforducks:
- balance: Railings now only cost 2 rods and are much easier to construct. But they
can now be destroyed much easier and cut with wirecutters without unwrenching.
@@ -2193,42 +1272,6 @@
- bugfix: Unary vents have a pressure cap on both their pressuring and siphoning
mode now, preventing the bypass trick of putting "infinite" pressure on tiles/pipelines.
- balance: Overclocked Volume Pumps do not have a pressure cap anymore.
- LT3:
- - bugfix: Using an airlock painter on a GAGS airlock works properly
- - bugfix: Tram will no longer fly off into space when admins try to reset the contents
- Paxilmaniac:
- - balance: heads of security are no longer given a gk-18 in their backpack on spawn,
- instead being given a hybrid energy gun to hold them over until they reach the
- already quite strong weapons in their locker.
- SkyratBot:
- - rscadd: New rotator disposal pipe.
- - bugfix: Flipped transit tube stations are now accessible in the RPD again.
- - image: New rotator disposal pipe sprite.
- - bugfix: Fixed an issue with the "recolor from string" option in the greyscale
- modify menu that resulted in invisible icons.
- - qol: Stabilized yellow slime extracts no longer spam a message every charge pulse
- (but examining characters will still show that it's active).
- - bugfix: Fixed Phazon construction message typo
- - qol: Crafting menu "Can Make" category shows complex recipes first.
- - bugfix: Woundscans no longer runtime
- - bugfix: Normal health analyzers can no longer give the first aid bonus when woundscanning
- - bugfix: after a long 6 years, alien alloy once again unlocks the Alien Technology
- node (the one that lets you print alien alloy)
- - qol: rats no longer spawn on multiz cable hubs
- - bugfix: fixes a runtime with arrow projectiles
- - bugfix: You can't use the bioscrambler belt to turn yourself into a changeling.
- - qol: Display case chassis now uses balloon alerts, screentips, examine hints,
- etc. Basically, the construction steps are more visible to players.
- - rscadd: Added associative list variables and associative list variable manipulation
- for finer data manipulation and storage.
- - rscadd: List Find components will now return the index of the element it has found.
- - code_imp: fixed some typos
- - bugfix: fixed corn cobs not making seeds and lying to you in the text box.
- - bugfix: Big fuel tanks' capacity is back to 5000.
- Stalkeros for code, nzzy and Zydras for the sprites, Juniper for descriptions:
- - rscadd: Proto-NRI/CIN food (and not only food) replicator
- - rscdel: Green IRP-B (or whatever it was idk idc) NRI MRE, replaced with a new
- unique one.
Jacquerel:
- bugfix: You can't use the bioscrambler belt to turn yourself into a changeling.
JohnFulpWillard:
@@ -2250,17 +1293,6 @@
- rscadd: Add an achievement for saving a cascading engine from the final countdown.
- balance: Damaging synchronous mesh blobs now incorporates damage resistance of
other blob structures when dealing shared damage to those nearby.
-2023-08-29:
- Iajret:
- - bugfix: changed contractor's modlink frequency to syndicate
- LT3:
- - balance: Pre-equipped engineering modsuit now includes emergency tether
- - balance: Pre-equipped atmospherics modsuit now includes magboots
- SkyratBot:
- - bugfix: mobs do not get stuck when running away from danger
- - bugfix: Quartermaster's Overcoat and Cargo's gorka can now hold stamps in their
- suit slots, just like their winter coat counterpart
- - bugfix: Made it easier to place tiles on multi z level holes
mc-oofert:
- rscadd: clickdragging an autolathe changes its output direction
nikothedude:
@@ -2316,43 +1348,6 @@
get a status effect with a number of curses associated with it. There's some
interesting florid language associated with the status effect as a nicety until
your eventual gibbing from chasing that prize.
- - bugfix: Non-surgically debraining someone no longer makes their brain unusuable
- - bugfix: Items worn on a void cloak's suit storage are no longer visible on the
- stripping menu.
- - qol: Misclicking the turf below a heretic influence no longer leaves a fingerprint.
- - bugfix: Railings no longer give more metal than they take
- - bugfix: roundstart modlink scryers now come with the nt frequency
- softcerv:
- - bugfix: Skyrat species now use the new TG non-human pay modifier
-2023-08-30:
- GoldenAlpharex:
- - refactor: Refactored the player ranks system to separate the legacy file-based
- system from a new SQL-based system, allowing the various systems to be interacted
- with far easier outside of the game.
- - refactor: Player ranks are now working off of a subsystem, rather than being completely
- disjointed, making it easier to interface with. If you're having issues with
- your Donator status, simply reconnect and that should fix it!
- - config: Added three separate configs for forcing the usage of the legacy Donator,
- Mentor and Veteran systems, defaulting to on (so this should hopefully not change
- anything on servers that have not done any migration yet).
- Seven:
- - bugfix: Syndicate ranged mobs (and probably other basic mobs) properly update
- their shell's description to show they are spent.
- SkyratBot:
- - qol: The coroner can now store scythes in their labcoat and winter coat suit storage.
- Ask not for whom the bell tolls...
- - image: progress bars and cleaning particles are now centered on the tile occupied
- by the target, if it is a big sprite
- - qol: Various jobs have gotten additional programs uploaded at roundstart, engineers
- now have the canary and atmospheric scanner programs, atmospheric technicians
- now have the supermatter monitor, and Robotisists/RDs now have the silliconnect
- program.
- - bugfix: Ash drakes, colossi, and Bubblegum spawn on Lavaland more often; a sharp
- increase from the previous bugged amount of "basically never".
- zydras:
- - rscadd: Added a set of new donator items
- - rscdel: Removed older, unused (and broken) donator items
-2023-08-31:
2023-08-30:
Ghommie:
- sound: Unlocking an achievement now plays a sound by default. You can change it
@@ -2394,33 +1389,6 @@
- qol: The "You can't move while buckled to X" is now a balloon alert instead of
a to_chat message. Hopefully we all get buckle stuck processing why our inputs
are not working less often for now on.
- Ldip999:
- - qol: Space hotel and Tarkon now comes with range ovens
- Motho:
- - rscadd: MODLink Scryer necklaces are now available in the loadout.
- Paxilmaniac:
- - qol: When ordering multiple items with a personal account or with a department
- budget, all of those items will arrive in the same container, case or crate
- depending on the number of items.
- - balance: Company imports companies no longer need to be purchased
- - balance: Company interest no longer exists at all
- - balance: Company import items cannot run out of stock anymore
- - balance: Company import items are overall significantly cheaper than they used
- to be
- - balance: Some items in company imports have either been added, removed, or tweaked
- in nearly all companies due to not quite fitting anymore, or missing where I
- felt they should have been. Most of the removed items are comically easy to
- attain or otherwise useless and were only there to raise interest before, but
- now that interest is gone they are not necessary.
- - bugfix: Cyborgs can use company imports to order things off of the cargo budget
- now
- - image: Added a new wooden box sprite for import items that come from the cargo
- budget, to prevent infinite money generation at the same time
- ReezeBL:
- - image: added 2 ear's sprites and 1 snout's sprite
- Shadow-Quill:
- - spellcheck: Fixed the ] appearing in cryopod action text.
- SkyratBot:
LukasBeedellCodestuff:
- bugfix: Changed icebox permabrig door type to be correct
Momo8289:
@@ -2434,8 +1402,6 @@
- bugfix: autolathe takes constant time when printing stacks
- code_imp: autolathe will attempt to award you the "getting an upgrade" award only
once when printing multiple items & updates UI immediately
- - sound: Unlocking an achievement now plays a sound by default. You can change it
- in the Sound category of the game preferences.
iwishforducks:
- bugfix: Space heaters no longer give extra cells when deconstructed
necromanceranne:
@@ -2443,35 +1409,6 @@
normal-sized object. Instead, they only break space and time to contain fishing
rods. Settlers migrating to Nanotrasen space have no reasonable explanation
for this phenomenon.
- - refactor: sheets are merged in a better way when ejected from machines & material
- related stuff
- - bugfix: Probital overdose no longer causes plasmamen and other inorganics to receive
- the longest nap in their lives.
- - bugfix: Changed icebox permabrig door type to be correct
- - bugfix: Fixes Star Gazer getting buckled
- - image: Removes Star Gazer alpha pixels
- - bugfix: fixed skeleton wings not being visible from behind while closed
- - bugfix: Space heaters no longer give extra cells when deconstructed
- - bugfix: rcd can build wallmounts on reinforced walls
- - qol: rcd can build directional windows without requiring/building a grill
- Stalkeros:
- - rscadd: NRI cops antag datum.
- - rscdel: Removes green NRI armor vest and helmet, heavy variants included.
- Stalkeros, Motho for the sound:
- - sound: New unique sound for the operational status readout module.
- SyncIt21:
- - bugfix: autolathe prints the correct amount of stacks and merges it with existing
- stacks on the turf
- - bugfix: 'autolathe takes constant time when printing stacks code: autolathe will
- attempt to award you the "getting an upgrade" award only once when printing
- multiple items & updates UI immediately'
- YakumoChen:
- - bugfix: Made it less trivial for snailpeople to crawl around at meth speeds.
- larentoun:
- - refactor: Moves cargo supply edits to master_files, company imports ui_act to
- master_files
- olirant:
- - rscadd: 1 donator plush
nikothedude:
- balance: Prosthetics and slimepeople can now have limbs dismembered
- balance: Slimepeople can now receive slash wounds, but cannot bleed
diff --git a/html/changelogs/archive/2023-09.yml b/html/changelogs/archive/2023-09.yml
index 8d6eeefdd2f..27590829840 100644
--- a/html/changelogs/archive/2023-09.yml
+++ b/html/changelogs/archive/2023-09.yml
@@ -1,41 +1,4 @@
2023-09-01:
- GoldenAlpharex:
- - bugfix: Fixes a rare issue that could lead to players entering an infinite disconnection
- loop from having a null view.
- Guillaume Prata:
- - balance: Fanny packs are now silent, no one will get a chat message about what
- you put in or take out.
- Melbert:
- - balance: If your server has non-human morgue cadavers enabled, you will be guaranteed
- one human cadaver no matter what.
- - balance: All maps (with the exception of Birdboat) now have an additional morgue
- cadaver roundstart.
- Rhials:
- - rscadd: Nuclear operatives have expanded the scope of their hiring practices.
- Members of all species can now roll nukie!
- - qol: The preferences menu now has an option to always be human when being selected
- for a nuclear operative role. Check it out!
- - image: Plasmaman operative envirosuits.
- Seven:
- - bugfix: Fixes not being able to break out of graves
- - qol: Graves are no longer dense (you can walk over them now)
- SkyratBot:
- - bugfix: The Cursed Slot Machine should now actually give you more than one pull.
- - balance: megafauna will now gut instead of dusting or gibbing
- - qol: Cryotubes will now notify medbay if the patient within is dead, and will
- eject them if auto is on.
- - qol: Cryotubes will now automatically turn on when a patient enters it if auto
- is on, but you can no longer close the cryotube on yourself.
- - bugfix: Fixes an issue where role banned players would be able to accept certain
- ghost roles they're meant to be banned from.
- - bugfix: Meth will no longer explode when reacting in a body
- - qol: removes the nukie tool parcel and places the tools directly in their box
- - rscdel: Deleted a unused file
- - qol: The organ harvester's output is more predictable, and the direction can be
- changed by alt-clicking with the panel screwed open.
- - qol: Metastation has had more navigate landmarks added, namely for areas like
- Medbay, Cargo, Engineering, department heads offices and a few more.
- - qol: Adds accessibility to breasts for service members
1393F:
- balance: megafauna will now gut instead of dusting or gibbing
FernandoJ8:
@@ -43,154 +6,10 @@
actually contain.
- bugfix: watering a hydroponic tray with amounts of water lesser than 1 will no
longer be added to nutrients rather than water
- - rscadd: Cargo now once again has access to a "Cargo Shortskirt", a skirt variant
- of their shorts!
- - image: tweaks and adjustments to the Cargo resprite have been made, as well as
- respriting some missed icons such as the Winter Coats and QM Cloak
- vinylspiders:
- - bugfix: sickle null rods now have sharpness and can cut stuff
- - bugfix: the suffocation moodlet will now be cleared when you stop drowning in
- liquid
- xPokee, Pirill:
- - rscadd: Added flower crowns, craftable via the clothing menu.
- - image: Resprited geraniums, poppies, and lilys, along with changing their worn
- icon.
-2023-09-02:
GoldenAlpharex:
- bugfix: Fixed the crafting menu being able to get stuck if your crafting recipe
somehow goes missing.
- code_imp: Improves the quality of the item crafting code slightly.
- Sealed101, EBAT_BASUHA for spritework:
- - rscadd: Wizard's Den now has a book of Summon Cheese in the Studies Room
- SkyratBot:
- - bugfix: Hilbert's Hotel Research ruin now has a functioning tram. As a side effect,
- the malfunctioning tram event should now only fire on maps with a tram!
- - bugfix: Traitors should generate with "free objective" less often, and will once
- more be assigned to steal things.
- - bugfix: Ex-Interdyne pirates can now successfully spawn on case sensitive host
- systems, such as Linux
- - bugfix: Prevents admins from accidentally gibbing people by closing a confirmation
- window.
- Thebleh:
- - bugfix: fixed access on a couple of Engineering and Atmos airlocks on DeltaStation
- softcerv:
- - qol: the NIFSoft Hud Adapter now works with more cosmetic eyewear.
- vinylspiders:
- - bugfix: anti-fauna arrows now do their bonus damage against mining mobs
- - bugfix: bows will now display their ammo count correctly (1 when loaded instead
- of 2)
-2023-09-03:
- Guillaume Prata:
- - rscadd: 'New funny internals for the clowns to spawn with. They come with O2 and
- a secondary gas between 3 options: BZ, Helium and N2O. Talk with a "different
- tone" with Helium, giggle and laugh "uncontrollably" while under the minor effects
- of N2O or have "fun" hallucinations while under the minor effects of BZ.'
- - balance: To not cut on how long the clown's O2 internals last due to the mixed
- gases, the funny internals have 50% more gas volume, same as engineers' internals.
- Iajret:
- - rscadd: Added arrivals shuttle autoreturn.
- - config: waiting time before returning to interlink can be changed in config file,
- by default - it's 15 seconds
- Melbert:
- - balance: Ascended Blade Heretics no longer have blanket stun immunity, they now
- have 45 seconds of stun absorption that recharges after 2 minutes - think His
- Grace. This doesn't affect stamcrit (still immune to that) (assuming you haven't
- consumed all of your immunity charge) but does affect hard CC such as slips,
- flashbangs, or beepsky.
- - balance: Ascended Blade Heretics now have a 0.75 modifier to incoming knockdowns.
- - bugfix: Fix bastard sword granting infinite stun immunity
- Nerev4r:
- - rscadd: Razor claw augment for the loadout! Spend those quirk points!
- RatFromTheJungle:
- - rscdel: Removed Surplus bundles from opfor.
- - rscdel: Remove microbomb implants from Contractors and Ninjas.
- SkyratBot:
- - bugfix: You can now actually fish soggy wallets from toilets, rare ores on ice
- moon, some boney stuff in oil puddles (good luck finding them) and lube-fishes
- by the seawater.
- - sound: 2 new ambient tracks for maintenance tunnels
- - bugfix: fixed implanted legion cores being available for use when unconscious/dead.
- - bugfix: Soups are accepted by Kitchen Smartfridges
- - bugfix: Soups are not accepted by drink showcases
- - bugfix: You can no longer create non-synthesizable chemicals with bees.
- - bugfix: basic ranged mobs will now chase victims
- - qol: The pirate candidate gathering poll will now mention which pirate gang it
- is gathering candidates for.
- - bugfix: The HUDs of mobs with dynamic human appearance will appear properly.
- - bugfix: Fixed the air inside of a penguin pen being way too cold
- - bugfix: you can now examine screen objects properly
-2023-09-04:
- CliffracerX:
- - bugfix: mutantcolors are being pulled from your features dna again, no more pink
- feathers!
- DrDiasyl, LT3:
- - sound: 'Adds/modifies next sound files: airraid.ogg, bloblarm.ogg, alert.ogg,
- notice3.ogg, announce_syndi.ogg'
- - sound: Code Red, Delta, and other extreme emergencies now possess more unique
- alarm sound effect
- - sound: Captain's arrival now is announced by Captain's announcement sound, but
- not for Acting Captain's
- - sound: Making Captain announcement through emagged console; hijacking or fully
- corrupting evacuation shuttle now plays more ominous sound
- - sound: Making announcements through Requests Console now plays a more noticeable
- sound
- - image: Status Displays sprites have been fully changed. Now they include displays
- for every Security Level
- - qol: The "Red Alert" button in the Communications console status display menu
- has been replaced with a "Current Alert" button showing the current station
- Security Level display on Status Displays
- - qol: Communications console status display menu got a new "Radiation" button which
- shows radiation symbol on Status Displays
- Guillaume Prata:
- - rscadd: Atmos Tech now have new drip and will spawn with Atmos Overalls to protect
- their clothing from gas leaks! (It will actually not protect you against fire
- or leaks, but hey! It's the thought that counts!!)
- Iamgoofball:
- - bugfix: You cannot put enterprise resource planning drugs in the Odysseus syringe
- gun, and they will no longer be used in the random reagent recipes.
- SkyratBot:
- - rscdel: Removed the threshold for confusion symptom that adds illiteracy to the
- disease.
- - balance: Clamps confusion symptom's confusion to a maximum of 30 seconds.
- - qol: Confusion as a debuff no longer guarantees random movement if you're resting.
- - image: resprites the genesploicer.
- - sound: Adds a sound effect for hypospray/medipen injections. Doesn't affect sleepy
- pens or HMS injectors
- - bugfix: fixed basic mobs not dropping their butcher results when gibbed
- - bugfix: Multi-z Icebox ruins including the Demonic Frost Miner can now be placed
- again
- - rscdel: Removes the swarmer beacon achievements from the game (no one ever got
- them, and they haven't been obtainable for years)
- distributivgesetz:
- - code_imp: Moved some job-related achievements from the misc category to the jobs
- category.
- softcerv:
- - image: adds the hairfre hairstyle from hyperstation
- - bugfix: fixes the organic interface gas mask not allowing for the wearer to inhale
- or exhale.
- - balance: the evoker soulcatcher is now available through the R&D protolathe.
-2023-09-05:
- Azlier:
- - qol: added dumping bags into large wooden mortars and millstones
- LT3:
- - image: New medical bed and emergency roller bed
- - code_imp: Added context hints for beds
- SkyratBot:
- - balance: The fishing minigame should be easier now.
- - bugfix: fixed fishing skeleton mob spawners that immediately crumble back into
- the void of whatever chasm you fished them from.
- - bugfix: boiled rice doesn't burn instantly after being baked
- - code_imp: simplifies the way burning food is handled, grilled/baked food now turns
- to a burnt mess rather than being set on fire, unless they have a baking/grilling
- recipe
- - bugfix: PDAs being on silent no longer prevents PDAs from being sent to your chat,
- again.
- - rscadd: pAIs inserted into a PDA can now control the PDA, and will receive PDA
- messages sent to it (and can respond under the PDA's name).
- - bugfix: '''meat product'' and imitation carp meat are now considered synthetic
- meats for the purposes of reagent purity'
- - bugfix: It's now humanly possible to reach the legendary fisherman rank, get the
- achievement and the hat.
Guillaume Prata:
- balance: Fanny packs are now silent, no one will get a chat message about what
you put in or take out.
@@ -219,58 +38,6 @@
- qol: 'Seed Extractor now shows additional seed data: possible mutations, juicing
result, grinding result, fermentation result'
- bugfix: Reverts the unintended change of monkey cube biomass cost back to 50
- - bugfix: kinesis plus properly lets you move again when grabbed once
- - rscadd: Adds the medbeam module for nukies, don't cross the damn beams. (Also
- removes the handheld one from the uplink)
- - bugfix: Updates the changelog link for the pre-4407 changelog as it was moved
- - rscadd: adds medical carts and surgery trays
- - image: gives the surgery razor a unique sprite
- - qol: pollinating bees will now only attack players that are standing near the
- beehive
- Thlumyn:
- - bugfix: mold no longer appears under catwalk floor tiles
- softcerv:
- - rscadd: Adds in meson NIFSoft HUDs
-2023-09-06:
- Krysonism:
- - image: resprites the noticeboard
- SkyratBot:
- - spellcheck: Improved phrasing and syntax on dismemberment mood messages.
- - bugfix: Fixed walking into grilles to destroy them
- - bugfix: You can no longer walk into Birdshot's secure tech storage like you own
- the place - unless you do own the place.
- - spellcheck: re-writes cosmic heretic lore
- - refactor: the minebots have been refactored please report any bugs
- - rscadd: minebots can now mine walls and collect ores automatically and they will
- alert everyone if they find u dead
- - bugfix: fixed bileworm evolution deleting anything they devoured; they will now
- eject their contents upon evolution to vileworms
- - bugfix: Fixed all-in-one grinders not giving all the correct reagents when grinding.
- - balance: Prosthetics and slimepeople can now have limbs dismembered
- - balance: Slimepeople can now receive slash wounds, but cannot bleed
- - balance: Most limbs can now be dislocated
- - refactor: Scar backend reworked, scars will be wiped as they update to the new
- format
- - bugfix: Slash wounds are now compatable with pierce wounds
- - image: cleans up the engineering emergency internals sprite slightly
- - bugfix: emissive appearances on glowy eyes and such now properly rotate
-2023-09-07:
- LovliestPlant:
- - qol: '[DS-2] Replaces the pair of plastitatinum sheets with small stacks of plasteel
- and titanium in the engine room.'
- - qol: '[DS-2] Adds a korta seed packet to the botany box in the permabrig.'
- - bugfix: '[Interdyne] Fixes the floating tube light above the kitchen counter in
- the cafeteria.'
- SkyratBot:
- - bugfix: Snow legions now drop only one corpse, and no longer drop Lavaland corpses.
- - bugfix: The Birdshot Gaming Den now has arcade circuit boards and computer frames
- that actually work.
- - bugfix: fixed mirrors not breaking when a curse effect is triggered
- - bugfix: Public mining storage's camera is now on the mining network instead of
- the gulag.
- - qol: Adds cables under birdshot xeno containment shielding.
- - bugfix: Machine frames in NorthStar Cyto are now functional.
- - qol: Minor cable/pipe changes to NorthStar the xeno containment.
Momo8289:
- bugfix: Meth will no longer explode when reacting in a body
Rhials:
@@ -483,27 +250,6 @@
imprinters added!
- qol: The NorthStar Head of Security office has gotten a small expansion.
vinylspiders:
- - bugfix: mold on multi-z maps will no longer spawn in or spread resin to openspace
- turfs
-2023-09-08:
- LT3:
- - bugfix: Meteors no longer take damage from crossing certain unoccupied turfs
- SkyratBot:
- - bugfix: fixes creamatorium not producing any suspicious ice cream, and fixes a
- dead mouse related harrdel
- - refactor: If you transform into another mob and notice bugs with interacting with
- the game world, please create a bug report as this framework was recently refactored.
- - image: The glow shoes from the ClothesMate now actually glow and can be recolored,
- even with a spraycan.
- - bugfix: Megafauna now correctly prints the victim's name after a kill
- - bugfix: leash unit test will time out less often and increases the timer until
- it is considered 'timed out', to reduce false CI failures
- - spellcheck: Corrected the name of the telescopic fishing rod to "telescopic fishing
- rod" from the more generic "fishing rod"
- - balance: colossus' near-death attack now starts after a 0.5 seconds delay
- - image: adds special sprites for lungs when you use the smoker quirk
- - bugfix: basic mobs can now use ranged burst attacks
- - balance: gas mixer output now accurate to set ratio regardless of input temperatures
- bugfix: leash unit test will time out less often and increases the timer until
it is considered 'timed out', to reduce false CI failures
2023-09-08:
@@ -522,20 +268,6 @@
report success or failure upon round end.'
- qol: Space Ninja spider charges will now display where they can be detonated when
examined, if you are a ninja.
-2023-09-09:
- LT3:
- - qol: Supermatter common channel alerts are less frequent if the crystal's integrity
- is rising rapidly
- Melbert:
- - rscadd: '[Icebox] Remaps arrivals and the maintenance around it. Aux base out,
- mass driver into a plasma lake in.'
- SkyratBot:
- - rscadd: Added the Numb quirk, that makes you (almost) unable to perceive how much
- your injuries hurt.
- - rscadd: Ever see a robot yawn? Don't worry, it makes sense now.
- - bugfix: The messenger app can now be used when laying down.
- - bugfix: Cauteries now have 'heat', like lighters, welders, etc.
- - qol: You can smoke with a space helmet as long as you have internals on.
JohnFulpWillard:
- bugfix: Getting a node researched now properly makes it no longer hidden.
- bugfix: Ninjas draining RD servers now drains it from the connected techweb, rather
@@ -544,20 +276,6 @@
z-level, with the Science techweb remaining as fallback.
- rscadd: Oldstation RND, comes with their own Techweb and special surgery to gain
research points through dissecting Xenomorphs.
- - balance: Traitors who are activated as sleeper agents or arrive late on the arrivals
- shuttle will begin with more reputation and likely be able to immediately access
- most of the uplink catalogue.
- - image: updates medigel sprites
-2023-09-10:
- A.C.M.O.:
- - bugfix: Fixed Poly's voice commands. Poly will now perch on the Chief Engineer's
- shoulder when expected.
- LT3:
- - image: Delam emergency procedure wall biscuit replaced with SAFETY MOTH
- - code_imp: Delam panic button works when APC is dead
- - code_imp: Removed extra calls to nightshift subsystem during delam
- - bugfix: Votes play an alert sound again
- SkyratBot:
LT3:
- bugfix: Meteors no longer take damage from crossing certain unoccupied turfs
Sealed101:
@@ -595,27 +313,6 @@
- bugfix: Cooked and crafted food should be edible
- bugfix: Medborgs can now spawn vanilla ice cream instead of nothing ice cream
- bugfix: Ghosts can examine food
- - bugfix: Exploration drones can't be used to reach Centcom anymore.
- - admin: Admins can add/remove the spawner component from arbitrary items again.
- - qol: adds some more traitor objective brainwashing default objectives.
- - spellcheck: fixes the double-punctuation on traitor objective brainwashing broadcasts.
- - spellcheck: brainwashing deadchat broadcasts will now auto-punctuate.
- - admin: The "Create Command Report" verb now has the option to not print report
- papers at communications consoles.
- - bugfix: It is now possible to smoke cigarettes even if you aren't wearing a safety
- helmet
- StrangeWeirdKitten:
- - bugfix: Fixes Interdyne mining reward boards making golem reward vendors
- vinylspiders:
- - bugfix: fixed a bug that was preventing large mortar from getting any of the extra
- reagents from grinding/juicing certain items
-2023-09-11:
- Hatterhat:
- - rscdel: Thanks to lobbying from other factions within the Syndicate, the black
- markets accessible by telecrystal-based uplinks are no longer stocking modified
- hand teleporters, citing a new "stand and deliver" doctrine established by more
- violent, militant arms of the organization.
- Melbert:
- admin: Admins can add/remove the spawner component from arbitrary items again.
Rhials:
- qol: adds some more traitor objective brainwashing default objectives.
@@ -697,307 +394,6 @@
rate independent of subsystem lag.
- qol: Xenomorph plasma generation and resin healing scales with the world's delta
time, making their rates independent of subsystem lag.
- - balance: polymorph belt now blacklists mobs that are undead, humanoid, robotic
- or spiritual (in nature, not religiously), as well as megafauna
- - balance: however, this means that it works with more mobs that it should logically
- work with, like slimes/bugs/lightgeists etc
- - bugfix: fixed headslug shenanigans with the polymorph belt hopefully for good
- this time
- - bugfix: fixed headslug description mentioning its movement despite the slug being
- dead
- sergeirocks100:
- - bugfix: Briefs now make use of their digitigrade sprite.
-2023-09-13:
- CoiledLamb, Time-Green:
- - image: resprites the radioactive nebula shielding
- Ghommie (Based on an old PR by Trilbyspaceclone from Citadel):
- - qol: The notepad app now includes basic nautical directions in its default message.
- - qol: A tip about nautical directions, too.
- LT3:
- - bugfix: All missing surgery trays have been found. Don't ask where.
- Literallynotpickles:
- - qol: Adjusted medical tongue bounties to mention that cybernetic ones _do_ work
- for them.
- Melbert:
- - bugfix: Birdboat's Augment Theater is named less odd now
- Rhials:
- - bugfix: The psyker headset is no longer a syndicate headset subtype, and no longer
- has syndie comms.
- SkyratBot:
- - rscadd: The SC/FISHER disruptor pistol, a very compact, permanently silenced energy
- gun, is now stocked in Nanotrasen-accessible black markets with a price generally
- somewhere between 400 and 800 credits. Aspiring users are warned that it's really
- bad for trying to actually kill people. Caveat emptor.
- - rscadd: Guns now have a dry_fire_sound_volume variable, allowing for guns to be
- less loud when trying to fire while empty.
- - bugfix: Closets and crates now properly count as structures for pass flags again.
- - balance: Add hypnosis vulnerability for drugged victims
- - rscadd: Operative MODsuits now have an attached "jump jet" which sends you upwards
- and allows you to use your jetpack under gravity for a few seconds, perfect
- for navigating the pits and valleys of Icebox Station.
- - qol: Shuttle engines now tell you how to install them in their screentips and
- their examine text.
- - image: resprites pestkiller, weedkiller, and nolabel sprays
- - image: updates shading on medigels
- - image: resprites all spray bottles
- - bugfix: Medicine allergy can no longer roll quantum medicine
- - bugfix: fixed grown food items not getting the right seed type passed to them
- upon creation
- - bugfix: The holographic pufferfish from the holographic beach from the holodeck
- no longer looks like a goldfish.
- - bugfix: the ablative coat's hood now hides the wearer's hair and ear
- - bugfix: Soup recipes, that make items, spawn the correct number of items per reaction
- instead of just one item
- - bugfix: Soup recipes, that make items, consumes the correct number of reagents
- instead of the largest multiple of the reagents
- - balance: removed anti-drop implants from the nuclear operative uplink
- - balance: removed anti-drop implant from the nukie implants bundle and changed
- its cost to 20 TC
- SuicidalPickles:
- - qol: Cargo Coats/Jackets can now equip universal scanners on their suit-slots.
- burgerenergy:
- - balance: Buffed MCR damage in line with an upstream generic laser buff
- vinylspiders:
- - bugfix: Headsets now have their old worn sprites back, did you ever notice it?
-2023-09-14:
- LT3:
- - bugfix: Emergency shuttle should correctly scale timer up/down when changing security
- levels
- OrionTheFox:
- - rscdel: Removed the now-obsolete Skyrat Cargo Gorka-Jacket; TG now has one!
- - image: updated all of the cargo sprites to match TG's, including digitigrade sprites!
- - bugfix: the QM's Formal Skirt now actually uses the Skirt icon rather than the
- Suit
- Rhials:
- - rscadd: Shuttle Firesale positive station trait. Some emergency shuttle options
- have been put on sale!
- - rscadd: Misplaced Wallet positive station trait. You wouldn't steal from a missing
- wallet, would you??
- - rscadd: Wisdom Cow Invasion positive station trait.
- - rscadd: Advanced Medbots positive station trait. Better roundstart medbots!
- - rscadd: Loaner Shuttle positive station trait. More shuttle loan offers and more
- payout!
- - qol: Station Trait titles are now italicized for easier reading.
- - spellcheck: Fixes a "prerequisites" typo in the shuttle purchase menu.
- Seven:
- - balance: The supermatter delamination countdown has been lowered from 30 to 13
- seconds
- - balance: Removing a sliver from the supermatter further lowers that down to 3
- seconds
- - balance: Supermatter panic button warning reduced from 5 to 3 seconds
- - balance: Supermatter suppression system healing runtime reduced from 9 to 7 seconds
- - balance: The supermatter crystal uses bigger text on its final countdown
- - spellcheck: Some supermatter delamination related mood descriptions have been
- edited to explain the mood effect better
- SkyratBot:
- - bugfix: You can no longer teleport to disabled beacon if the teleporter was previously
- locked-on to it.
- - bugfix: Dynamic now biases less heavily towards the exact average.
- - bugfix: Nightmares can no longer receive wounds
- - bugfix: Nightmares can no longer have limbs dismembered
- - qol: Conveyor belts now have screentips and a better examine tip to teach you
- how to set one up properly.
- - qol: Using a conveyor belt stack on a placed conveyor belt will extend the conveyor
- belt to the output of that conveyor belt.. You can use this to place fully integrated
- conveyor belts much easier now.
- - image: When you throw up nanites, your vomit should now be appropriately nanite-colored.
- - bugfix: Fix poor dynamic threat distribution at lower population levels, causing
- dynamic to generate better threat curves at lower population levels than it
- did before.
- - bugfix: Roundstart medbots and cleanbots are now more likely to be able to be
- possessed by observers.
- - admin: It's easier to modify the properties of bots to stop them from being possessed
- or depossessed.
- Wallem:
- - qol: Examine a Dish Drive to see all the items inside of it, as well as the item
- you'll pull out when you interact with it.
- - qol: Dish Drive servo tier increases suction range
- honkpocket:
- - bugfix: Players who run the DNR quirk no longer appear as revivable when examined
- nikothedude:
- - qol: 'Temporary flavor text preview character limit: From 37 to 110'
- tf-4:
- - rscadd: You can now craft ammo pouches from four leather.
- - spellcheck: Fixed typo in cocaine snorting message.
-2023-09-15:
- LovliestPlant:
- - rscadd: '[Void Raptor] Adds an exam room and charting office to medbay, just opposite
- of the escape pod.'
- - rscadd: '[Void Raptor] Adds a refrigeration system to medbay''s cold storage room.'
- - qol: '[Void Raptor] Removes some clutter from medbay (storage plants, extra anesthetic
- closets), adds blankets to TC beds.'
- - qol: '[Void Raptor] Access to the Southern entrance to the Security office now
- matches that of the North entrance.'
- - qol: '[Void Raptor] Overhauls medbay''s cold storage room. Adds a coldroom freezer
- system; adds a handful of emergency oxygen tanks, emergency nitrogen tanks,
- and masks to the internals crate; replaces the empty medical crate with a spare
- robotics limbs crate; and replaces the Oxygen canisters with anesthetic mix
- canisters.'
- - qol: '[Void Raptor] Adds towel bin to perma, replaces the linen bin in the public
- pool with a towel bin.'
- - bugfix: '[Void Raptor] Replaces flooring with bare plating in sections of maints,
- should fix mouse spawning.'
- - bugfix: '[Void Raptor] Fixes the back entrance to the medbay''s treatment center
- requiring morgue access.'
- - bugfix: '[Void Raptor] CO''s can now open the brig officer locker in their office.'
- - bugfix: '[Void Raptor] Fixes a minor clipping issue with the records console in
- the CO office.'
- Lunar248:
- - qol: Gave Freighter a few things to reduce some tediousness, such as a welding
- tank in engineering, water tank in botany, and a proper sink in the kitchen.
- - bugfix: Added missing lights, and light switches to Freighter.
- SkyratBot:
- - bugfix: you can no longer bypass html sanitization using the table element. >:(
-2023-09-16:
- LT3:
- - code_imp: Engaging in Role Play on the Interlink should no longer lead to heart
- attack and death
- LT3, unit0016:
- - qol: You can now choose between limb, prosthetic, or no limb at all
- Literallynotpickles:
- - balance: Changeling Horror-Form no longer has reduced click-delay.
- RatFromTheJungle:
- - balance: The captains sabre now does five more damage totaling to 20 (while losing
- a bit of wound chance!), while the shamshir does the same with equally less
- wound chance, less armor pen, and worse block.
- SkyratBot:
- - bugfix: fixes a bug that would cause grown inedible plant seeds (like tower cap)
- to vanish from existence upon being added to the seed extractor
- - bugfix: fixes a issue that would cause fruit wine to bug out when trying to blend
- its reagent color
- - bugfix: The nuclear operative MODsuit intellicard now actually downloads an AI
- rather than simply kicking candidates from the game.
- - bugfix: Fixed a race condition that made fishing yield no reward way too often.
- - bugfix: The legendary fisher achievement is awarded even if you don't win the
- minigame.
- - bugfix: Fixed a fish hook exploit.
- - bugfix: Baits are now properly consumed by caught fish and (alive) mobs.
- - bugfix: Fixes tesla coils duplicating the power of >7GeV supermatter zaps.
- - bugfix: Space ruin Anomaly Research - Fixes stacked windows and underplating
- - rscadd: There's a new space ruin in town, be on the lookout for a hidden supply
- cache.
- - rscadd: Added a new type of wall which can only be destroyed by blowing it up.
- - balance: Pulling embedded items e.g. shrapnel with hemostats is now a lot faster,
- and scales appropriately with toolspeed.
- - balance: You can now pull embedded items with wirecutters, at a speed penalty.
- - bugfix: Unary vents & Injectors now link properly with air sensors via multitool
- both ways
- - balance: Watchers will no longer put you at gunpoint.
- - balance: The spontaneous brain trauma event will no longer occur if there are
- fewer than 13 players.
- - bugfix: Flares and candles no longer sound like flashlights when being turned
- on.
- - bugfix: Getting shot by an SC/FISHER now disables PDA lights for consistency's
- sake.
- - spellcheck: Replaced an irrelevant tip of the round about scars with a better
- one
- - balance: You will be knocked down again on certain vomits. Don't worry, you'll
- deserve it when it happens.
- - qol: The supply beacon will no longer delete itself due to explosions, and you
- can now anchor it with a wrench.
- - spellcheck: Express console now correctly states that it needs cargo access instead
- of QM access.
- - bugfix: returning items to vendors works correctly
- - bugfix: you can't return items that has stuff in it for e.g. a serving tray with
- food in it
- - bugfix: fixed fishing.
- - bugfix: the bank machine cannot print holochips worth 0 credits now
- - bugfix: adds the bolted and welded helper to the bar backroom/kitchen coldroom
- airlock on birdshot, as to prevent chefs from being able to access armor and
- sunglasses roundstart with barely any work involved
- nikothedude:
- - rscadd: 2 Bonesetters, 4 stacks of gauze, 2 health analyzers that cant be used
- for medibots, all in the robodrobe
-2023-09-17:
- SkyratBot:
- - refactor: Refactored wounds yet again
- - bugfix: Wounds are now picked from the most severe down again, meaning eswords
- can jump to avulsions
- - bugfix: Scar descs are now properly applied
- honkpocket:
- - rscadd: The bullet-drive machine can once again be bought from the cargo-imports
- menu
- nikothedude:
- - bugfix: Msucle scars no longer cause general disfigurement
-2023-09-18:
- Majkl-J:
- - bugfix: laser magazines can now be reloaded correctly
- SkyratBot:
- - bugfix: Monkeys have their tails back.
- - bugfix: Fixed a resource dupe in the ORM.
- - rscadd: added the inspectors hat to the detectives cabinet, a special hat that
- allows the wearer to say a phrase to dispense a stored item
- - rscadd: climbing hooks that allow you to go up holes for multiz, found in internals
- boxes (on planetary maps), the uplink, cargo and nukie personal lockers
- - rscadd: A new ruin has appeared on lavaland, featuring the site of an ancient
- battle.
- - qol: '[Deltastation, Icebox, Metastation, Tramstation] Adds cell timers to isolation
- cells. (they do not auto-open the doors)'
- - qol: '[Birdshot, Deltastation, Icebox, Metastation, Northstar, Tramstation] Adds
- translator glove modules to the stacks of "accessibility" (e.g. plasma fixation
- / thermal regulator) modules found in security, medical, and engineering storage
- rooms.'
- - qol: '[Birdshot] Adds a roll of packaging paper to the cargo office.'
- - qol: '[Icebox] Adds a hand labeler to security''s gear room.'
- - qol: '[Northstar] Nudges the set of binoculars covering the mass driver controls
- in ordnance over a few inches.'
- - bugfix: '[Birdshot] Remaps the janitor''s closet such that the recycling machine
- will now work.'
- - bugfix: '[Icebox] Removes a duplicated hand labeler from the rack near security''s
- brig cells.'
- - bugfix: '[Metastation] Patches a broken corpse disposal pipe running from aux
- surgery to the morgue.'
- - bugfix: '[Northstar] Fixes the SM being hotwired at round-start (partially rewires
- the SM room, moves the APC to the North wall).'
- - code_imp: added some null checks for general juicing & grinding items
- - bugfix: grinding stacks now grinds as many pieces/sheets from the stack as possible
- that can fit in a beaker/container without wasting the whole stack
- - bugfix: plumbing chemical grinder now actually works again
- - bugfix: the plumbing chemical grinder allows stuff to enter from any direction
- but not mobs and also accepts items put inside it via hand including bags
- - bugfix: You can remove the beaker from the all in 1 grinder when power is off
- via right click
- - bugfix: All in 1 grinder now mixes faster with upgraded parts
- - refactor: you can no longer walk into a plumbing chemical grinder
- - bugfix: adds a few firelocks and alarms around IceBox
- - bugfix: the nukie medibot (oppenheimer) has access to the doors of the infiltrator
- and is not shot at by the turrets
- - refactor: heretic sacrifice room is now lazyloaded
- - bugfix: Lipolicide and other chems now puts you in crit, even if it is the only
- source of damage
- - bugfix: made the radiation protection crate's contents match it's description
- - rscadd: Ghosts (observers) can eat ghost burgers and booberry muffins.
- - balance: Ghost burgers will not decay or pick up germs due to the fact that they
- moved themselves off a table.
- - rscadd: NanoTrasen improved the quality of the local durathread strain; resulting
- in it now being twice as filling!
- - image: Hercuri spray now uses the same sprite as the yellow medical spray
- - spellcheck: Added a missing space to hercuri spray's description
- - bugfix: Manually constructed windoors have correct unrestricted accesses applied
- to them
- - bugfix: Windoors created via RCD now actually have electronics inside them
- - bugfix: Airlocks constructed via RCD have the shell component correctly installed
- inside them and have no other missing variables
- - rscadd: Wall mounted objects (Things like APCs, Air Alarms, Light switches, Signs,
- Posters, Newscasters, you name it) will now fall to the ground and break or
- deconstruct when their attaching wall is changed or broken.
- - spellcheck: Fixed some typos on QM's Overcoat
- - bugfix: Forgetting to take dough out of the oven no longer progresses the server
- to a crash-worthy state with infinite bread and ash and burned food products
- for all.
- - bugfix: Recipe paper in the ruins now shows a normal recipe for Metalgen and Secret
- sauce.
- - code_imp: Cleans up some unnecessary code left over from caseless ammo.
- - qol: the recycler can now be rotated
- - qol: Machines now transfer their local materials to silo during linking with multitool
- SpaceLove:
- - balance: Bluespace Miners have been made cheaper by Nanotrasen as they have found
- a huge mine of materials recently!
- TheOneAndOnlyCreeperJoe:
- - bugfix: Hydra quirk now properly works instead of making you British.
- Thebleh:
- - bugfix: Bluespace RPEDs can now be rigged again
- nikothedude:
carlarctg:
- rscadd: Several common 'household' reagents can be used as improvised medicine
treatment.
@@ -1020,23 +416,6 @@
the specific recommended treatments bolded in the analysis text. They also have
a 'unique' extra bit of info, telling you about improvised ways to remedy your
wound.
- tf-4:
- - bugfix: fixes being able to eat, use pills etc through gas masks and such
-2023-09-19:
- Ghommie (Thanks Sealed101):
- - refactor: Reworked the fishing minigame into a game screen object from a TGUI
- interface
- Melbert:
- - balance: Humanoids without tongues cannot cast spells with vocal components
- - balance: Humanoids without arms cannot cast spells with emotive components
- SkyratBot:
- - bugfix: Makes sure pump-up properly grants the baton resistance trait.
- - bugfix: The Nightmare's Light Eater can no longer suck the light out of space
- tiles.
- - bugfix: Fix wooden barricade description "This looks like it can be barricaded
- with planks of wood" being spammed on objects.
- - bugfix: basic mobs retaliate targetting now selects targets they can attack
- - bugfix: Makes ethanol and sugar pure by default.
necromanceranne:
- bugfix: The vorpal scythe is no longer as greedy about you murdering people, and
will once again accept striking any living creature to be sated.
@@ -1317,28 +696,6 @@
- balance: Player-controlled Star Gazers (if an admin felt like making one) apply
the star mark on attack and deal damage to everything around them, like the
AI does
- - rscadd: Many kinds of mobs can now be brought back to life through revival surgery.
- - rscadd: Dogs can wear eyepatches.
- - code_imp: Scars now stack trace if they fail to get a valid description
- - rscdel: Removes the computer vendor.
- - bugfix: pancake stack layering
- - bugfix: pizzabox stack layering
- - bugfix: pizzabox bombs that spawn unarmed now label their pizza correctly and
- cannot spawn a spriteless pizza
- - bugfix: Fixes a misplaced status display in Meta's medical storage.
- - rscadd: mass drivers are now buildable, you activate them by attaching a signaler
- to their launch wire, and can increase their power by pulsing the safeties wire,
- and reset it back to normal by cutting the safeties wire.
- - server: Default-configuration MINUTE_TOPIC_LIMIT has been increased
- - bugfix: Fix a runtime when trying to cycle move intents with a hotkey as a dead
- mob.
- - bugfix: Nanotrasen has finally recalled their faulty multitools and replaced them
- with working ones! The multitool's buffer now properly clears itself.
- - qol: Moved multitool link messages to balloon alerts
- - bugfix: added some missing firealarms on icebox in the hall towards departures
- and the upper section of chapel
- - bugfix: normal ethereal blood now works for electrolysis, the hydrogen and oxygen
- output of the electrolysis recipe has been increased.
Momo8289:
- bugfix: The Nightmare's Light Eater can no longer suck the light out of space
tiles.
@@ -1359,32 +716,6 @@
instead of none (normal survival rules)
- bugfix: End report screen will properly report hardcore random survival in case
of station destruction
-2023-09-20:
- LT3:
- - rscadd: 'New random event: Supermatter Surge'
- - refactor: It's different than the Supermatter Surge you're used to
- - refactor: 'The scale is now 1: low severity to 4: most severe. Keep that in mind!'
- - rscdel: Removed Skyrat version of Supermatter Surge
- - code_imp: Individual supermatter crystals can have custom gas properties
- SkyratBot:
- - image: resprites t-ray scanner, gas analyzer, geiger counter and hand drill.
- - qol: Surgery trays can now be crafted via the crafting menu (two rods, one silver),
- and deconstructed via secondary click with a screwdriver!
- - spellcheck: Unreverted and improved resonance cascade message.
- - qol: Crafting R&D guns from gun kits no longer requires tools or cable coil. The
- decloner and energy crossbow still need reagents.
- - qol: Halved R&D gun crafting time. 20->10 seconds.
- - bugfix: Fixed Mafia achievements
- - balance: Unholy and Eldritch water are self-consuming like holy water! They don't
- need a liver to be processed.
- - bugfix: Fixes a selection window in the game rock-paper-scissors with death.
- - bugfix: fixes inedible grown items (such as tower caps) becoming unclickable when
- harvested, fixes their seeds disappearing when inserted into the seed machine
- - refactor: Refactors the camera console UI.
- - rscadd: heretic knock path and its respective items and award
- - bugfix: Lava can no longer occasionally generate inside of previously loaded templates
- and breach and/or destroy shit
- - qol: mice and rats now are visually spaced out from eachother for visual clarity
Vincent983:
- rscadd: mass drivers are now buildable, you activate them by attaching a signaler
to their launch wire, and can increase their power by pulsing the safeties wire,
@@ -1427,30 +758,6 @@
- bugfix: Supermatter now accurately reports it's detonation time.
- spellcheck: Supermatter mood descriptions have been reverted back to their old,
more flavorful selves.
- Zergspower:
- - qol: reworks the verb panel to be less of a CVS receipt
- vinylspiders:
- - bugfix: removed a deprecated loadout item 'Black Two-Piece Suit' which had an
- invalid item path. The old item has been replaced with 'Black Suit'.
-2023-09-21:
- LT3:
- - bugfix: Interdyne scientists get their Interdyne labcoat
- Rhials:
- - qol: Restores holiday hats for drones.
- - qol: Extends holiday hat behavior to assistants. Get festive!
- SkyratBot:
- - bugfix: RCD Construction effects will no longer fall into chasms.
- - bugfix: Gauze no longer falls off if a wound is demoted or promoted
- - bugfix: The caller in a holopad call should now be able to hear people on the
- other end.
- - bugfix: wall mounted objects air alarms, fire alarms etc now actually falls off/gets
- destroyed when their attached wall is deconstructed
- - bugfix: wall mounts crafted in game also properly falls off/gets destroyed when
- their attached wall is deconstructed
- - bugfix: Fixes a bug allowing holopara injectors to be refundable when used.
- - balance: Improvised shotgun shells now deal half as much damage to humans and
- cause less wounds, but do 50% more damage to structures and machines. They also
- require a glass shard for crafting.
Thunder12345:
- balance: Improvised shotgun shells now deal half as much damage to humans and
cause less wounds, but do 50% more damage to structures and machines. They also
@@ -1477,66 +784,6 @@
below 70% HP,
- balance: Aug EMP knockdown reduced to 3 seconds
- balance: Synthetic ears now take far less EMP damage
- - bugfix: rescue hooks will once again drop the mob next to the fisherman instead
- of just displaying a balloon alert and doing nothing
- - bugfix: Recipe that converts Vegetable Oil into Olive Oil works properly
- - rscadd: Splashing antihol on a patient before surgery will make it to go slower.
- honkpocket:
- - rscadd: Adds garment bags to the blueshield and NTC lockers
- - rscadd: Adds turtlenecks and the intern outfit to the NTC garment bag
- vinylspiders:
- - bugfix: spiritual quirk is no longer missing from the game
- zydras:
- - bugfix: properly paths NT Consultant and Blueshield areas
-2023-09-22:
- A.C.M.O.:
- - bugfix: Fixed dildos, allowing them to be used orally only when the target mouth
- is uncovered.
- - bugfix: Fixed custom dildos, allowing their size and color to be customized with
- Alt-Click.
- GoldenAlpharex:
- - code_imp: Removed some old fire overlay code, which might or might not fix some
- fire overlay issues. We'll have to see.
- - bugfix: The green pin is no longer unremovable for those that had it on before
- they hit the 100 hours threshold. It will now be automatically disabled for
- them.
- LT3:
- - image: Added donator items for grasshand
- Literallynotpickles:
- - rscadd: Added SHORTER Shorts to the Loadout Menu. (Misc Under)
- SkyratBot:
- - balance: Peacekeeper cyborg's emagged hug is no longer a hardstun.
- - image: resprites t-ray scanner.
- - admin: Admins can transform misbehaving players into arbitrary objects at will.
- - bugfix: Projectiles no longer cause a blood graphic or blood splatters if they
- hit a limb that cant bleed
- - rscadd: Prosthetics/Augments now spark when shot
- - bugfix: fixed moonicorns making space/chasm/lava/water bridges with their fairy
- grass
- jjpark-kb:
- - qol: you can now construct, deconstruct, and anchor/unanchor the millstone
- - rscadd: rough stones will now occasionally drop from mineral walls (the mining
- kind)
- - bugfix: you can now cut/process rough stones
- vinylspiders:
- - image: added digi resprite for shorter shorts
-2023-09-23:
- LT3:
- - bugfix: Ghosts and godmode mobs will no longer create resonance when touching
- the supermatter crystal
- - rscadd: Poly now causes a power surge when dusted by the supermatter crystal
- - balance: Delam panic button run time increased by 2 seconds to match the new 15
- second delam timer
- - balance: Delam suppression freon changed to be less instantly lethal to organics,
- less of a plasma fire waiting to happen
- Lunar248:
- - bugfix: Replaces the incorrect MOD cores with working ones.
- Paxilmaniac:
- - rscdel: The ability to change a flashlight's intensity has been removed due to
- the fact they no longer have cells to draw more or less power from in those
- modes.
- - qol: Flashlights no longer pointlessly require power cells to function
- SkyratBot:
vinylspiders:
- bugfix: fixes inedible grown items (such as tower caps) becoming unclickable when
harvested, fixes their seeds disappearing when inserted into the seed machine
@@ -1607,25 +854,6 @@
- bugfix: Characters with ageusia properly ignore non-toxic food types that they
eat.
- bugfix: If you examine toxic food, it can no longer appear to you as edible.
- - admin: Boneless smite should work properly again.
- distributivgesetz, CoiledLamb:
- - rscadd: 'Added two new awards specifically for engineering and medical: The "Emergency
- Services Award" and the "Atmospheric Mastery Award". CEs get 3 Emergency Services
- Awards and 1 Atmospheric Mastery Award and CMOs get 3 Emergency Services Awards.'
- softcerv:
- - rscdel: The electric welding tool has been removed from the techweb and the experimental
- welding tool has been reinstated in it's place.
- vinylspiders:
- - bugfix: using sand or volcanic ash on a seed mesh will no longer have the possibility
- to spawn a generic buggy 'lavaland seed' item
-2023-09-24:
- LT3:
- - bugfix: Fixed supermatter surges always being the lowest severity
- Melbert:
- - bugfix: Maybe fixes some weird occurrences where you lose the ability to pass
- over tables when you shouldn't, and visa versa
- SkyratBot:
- - bugfix: Epinephrine will now update health properly.
mc-oofert:
- bugfix: clown bomb payload is no longer named badmin payload and no longer disperses
clowns in cardinal directions only
@@ -1738,105 +966,6 @@
- rscadd: You can obtain the disk containing the afromentioned surgery. as a role-restricted
item to doctors and roboticists for 1TC, as a rare maint loot and BEPIS technode
reward
- - bugfix: Centcom now rejects contraband that somehow makes it way onto the cargo
- shuttle mid-transit and returns it.
- - bugfix: you can no longer push watchers (and any other lavaland basic mob) around
- by running into them
- - bugfix: posibrains can be inserted again
- - bugfix: Metalgen can no longer be used to transmute indestructible turfs.
- - image: adds a frog holoform for pAIs
- - bugfix: The custom error message for when there is only one map to vote for should
- pop up in all cases rather than just a select few.
- - bugfix: Stun immune people should no longer have issues with gripper gloves and
- other tackle gloves.
- sqnztb:
- - rscadd: New medicine to clear up scars, made from synthflesh, ethanol, and miner's
- salve. Be sure to apply it via patches!
-2023-09-27:
- SkyratBot:
- - rscadd: added ranged attack friendly fire checks for basic mobs. minebots and
- hivebots will now try to avoid shooting their friends
- - bugfix: fixed Strong Stone ruin generation
- - rscadd: Added a candle box crate for all your candle needs!
- - bugfix: '[Tramstation] Mass Driver in chapel now has tiny fan so you don''t space
- yourself.'
- jjpark-kb:
- - bugfix: actually fixed the ash revival ritual for basic mobs
- - bugfix: basic animals now will have their health affected positively and negatively
- by medicine and toxins respectively.
-2023-09-28:
- Melbert:
- - rscadd: Doctors can now get head mirrors from their clothes vendor, to complete
- the doctor outfit
- SkyratBot:
- - bugfix: Fixed job configs not being loaded properly.
- - bugfix: You can no longer break the game by AI rolling in a card or APC
- - qol: AI Roll now doesnt require you to click the exact turf to move you
- - qol: AI roll cooldown and roll time is now a variable, making it possible for
- AIs to become terrifying catamari damacy balls
- - bugfix: Fixes full advanced surgery trays spawning with 'nothing'
- - spellcheck: Tweaks the message that players get when not being able to qualify
- for roundstart antag to be more accurate as to what's happening.
- - qol: you can undeploy fulton beacons by clicking them with an empty hand
- - qol: you can rename fulton beacons with a pen
- - bugfix: Fix altars not allowing items to be sacrificed
- - bugfix: Seeds will no longer be removed from existence after receiving the "You
- can't seem to add [seed type] to the seed extractor" message
- - bugfix: Some seeds that were previously not able to be added to the seed extractor
- may now be added (starthistle for example)
- - bugfix: fixes replica pod seeds spawning humans in nullspace
- - qol: right clicking the seed extractor with a plant/food stores the extracted
- seeds in the machine.
- - bugfix: Valentines and ERTs will no longer get mood boosts from traitor moodener
- items
- - bugfix: Fixed zombies being able to infect headless corpses (Including former
- zombies)
- - bugfix: 'Fixed bio armor being totally useless against zombies. Now it checks
- how hurt your limb is: If it''s more than the bio armor value, you get infected.
- THICKMATERIAL clothing guarantees at least 25 damage required to infect you,
- non-thick clothing reduces effective defence by 25. In practice this means people
- with MODsuits, biosuits will resist infection unless they''re pummeled into
- crit, and wearing a firesuit will save you from the first few slashes.'
- - bugfix: Fixed the bomb hood armor not having the same bio armor value as bomb
- armor.
- - qol: Added a message to the zed when they succesfully infect someone.
- - code_imp: Turned some proc names into snake_case rather than, uh, nospacecase.
- - rscdel: removes surgical duffelbags
- - bugfix: the surgery supply order now comes with a surgery tray
- - bugfix: (skyrat) Hospital gowns will now spawn in surgery trays like they used
- to in the surgery duffelbags
- - bugfix: Left-clicking an empty surgery tray will now tell you exactly why it does
- nothing.
- - refactor: Turned slapcrafting into a component! You can examine compatible items
- to see what recipes they can be used in, and what the ingredients for them are.
- For example, spears and the head-on-spear crafting recipe.
- - bugfix: The flight potion wings will no longer fail to work on lavaland/icemoon
- on rare occasions.
- - bugfix: Throwing things at cyborgs will now slow them down, as intended
- - balance: Adjusted the calculation of throwforce -> slowdown for cyborgs such that
- it is simply a flat duration for anything above a certain damage threshold (the
- value of throwing iron rods)
- - bugfix: Selecting "Monkey" on a magic mirror will now once again turn you into
- a Monkey rather than a disgusting freak of nature.
- - bugfix: Tall Boys have once again been barred from joining the Wizard Federation.
- - rscadd: Contractor baton in traitor uplink for 12 TC
- - balance: Ebow no longer has a reputation requirement.
- - bugfix: Added complexity factors to foods that were missing them.
- - balance: Gave the bluespace geode pirates 4 more teleporter bolt turrets.
- - bugfix: The bluespace geode pirates no longer have a bluespace portal to the bottomless
- pit dimension.
- - rscadd: Station-safe dirt tiles for all your mapping needs, but surely no station
- maps use the chasm baseturf ones, right? Right?
- - bugfix: you can now deconstruct exodrone scanner arrays
- - bugfix: the tree in space exodrone adventure no longer softlocks you
- - qol: the exodrone launchers now tell you on examine how to remove their fuel canister
- if you somehow needed to do that
- - balance: exodrone wide scans are now capped at 10 minutes
- - balance: exodrone travel times are 18% faster
- - balance: you can now upgrade scanner arrays for faster wide scan
- - balance: exodrone point scan and deep scan are faster
- - spellcheck: fixes several typos related to exodrones and gives scanner control
- console a description
Thunder12345:
- bugfix: Metalgen can no longer be used to transmute indestructible turfs.
Timberpoes:
@@ -1901,42 +1030,6 @@
greytiders.
- qol: Lizards, Ethereals, and Xenomorphs now have a vocal effect.
- qol: Security Records now show someone's voice name.
- - bugfix: fixed geysers spawning on turfs with plants
- Tattle:
- - qol: drones now have individual names, instead of just "drone"
- Vekter:
- - rscadd: Added a holodeck to Birdshot Station. It can be reached via the Crew Facilities
- hallway.
- softcerv:
- - rscadd: Adds in a wiki-book NIFSoft, allowing the user to access various wiki
- books.
- - qol: the speech impairment on the adult gas mask can now be toggled
- tattle:
- - qol: Basic animals now make sounds for audible emotes
- - sound: Added new sound effects for chicks, chickens, crabs, and insects
-2023-09-29:
- A.C.M.O.:
- - bugfix: Fixes the death sandwich, making it safe to examine.
- BurgerBB:
- - bugfix: Scrubbers and Vents will no longer reset their settings on map load.
- GoldenAlpharex:
- - server: Added a way for calls to be made to interfere with player ranks on live
- servers (updating the players if they're connected) from outside of the game.
- Rhials:
- - qol: The freedom implant has received minor feedback and other minor usage improvements.
- - bugfix: The Polymorph Belt should now update its sprite when active.
- SkyratBot:
- - qol: allowed names to start with a number if AI/Borg
- - rscadd: Add drinking water causes drunk mobs to become sober
- - balance: Diabetics rejoice! Nerfed sugar OD/hyperglycaemic shock to be an immediate
- KO followed by drowsiness afterwards until the OD is gone.
- - code_imp: Robot Customers have recently been touched codewise, please report any
- bugs or unexpected behavior as there really should not be any.
- - admin: There is now a tool to apply a DNA Infuser entry to any human.
- - bugfix: The Nuke Op MODsuit AI downloader only works once per purchase, as intended.
- - code_imp: adds a gas connector component that allows connection to the atmos piping
- system without the need of repathing
- - refactor: changes the cryo machine to use this new system
Jacquerel:
- bugfix: Throwing things at cyborgs will now slow them down, as intended
- balance: Adjusted the calculation of throwforce -> slowdown for cyborgs such that
@@ -2105,25 +1198,6 @@
that.
- sound: If you listen closely to snakes, you might be able to hear a small hissing
sound...
- - bugfix: fixed lobstrosities becoming unmovable when killed during their charge
- windup
- - bugfix: Splattercasting resets your blood to normal values when you transsform
- into a vampire.
- - bugfix: Gaining a new species will set your blood volume down to the normal volume
- levels if higher than normal.
- - bugfix: Fix water puddle runtime when washing items
- - bugfix: the parole status and discharged status are now green and blue respectively
- in the security record interface
- - bugfix: Dimensional Anomalies no longer destroy wall-mounted equipment.
- - code_imp: Your bodytype now decides what gendered sounds you make.
- - bugfix: Fixed crabs not correctly (kinda) walking sideway.
- - bugfix: dead bodies now cool down to room temperature over time
- - rscadd: Add candle design to biogenerator
- sergeirocks100:
- - bugfix: Undershirts will now look as they should if you have a body type that
- differs from the gender default.
- softcerv:
- - rscadd: Adds in the ability for certain NIFSofts to be kept between rounds.
timothymtorres:
- bugfix: Fix water puddle runtime when washing items
- rscadd: Add drinking water causes drunk mobs to become sober
@@ -2135,18 +1209,6 @@
DrDiasyl aka DrTuxedo:
- balance: Holsters can now be clipped to any suit, and house Captain antique gun
and HoS gun. You now can buy holsters from the SecTech premium section.
- Paxilmaniac:
- - qol: The half mask respirator can have its TTS voice muffling properties toggled
- with control click
- - qol: Icecats are now listed in the round end report, so you can see who was up
- icing they cat
- - bugfix: Icecats should hopefully spawn with their special language correctly now
- SkyratBot:
- - code_imp: removed some redundant code for airlocks
- - admin: Mob abilities can be granted to arbitrary mobs via the VV menu in a similar
- way to spells.
- - bugfix: Lavaland syndicate operatives can no longer trivially use the jetpack
- on their modsuit to fly over the lava.
Helg2:
- rscadd: SM crystal can now dust someone or something if it falls on it.
Jacquerel:
@@ -2158,18 +1220,6 @@
- balance: The Knock Heretic portal cannot summon Flesh Worms, but can summon Fire
Sharks.
- balance: The Knock Heretic portal will disperse if its creator is killed.
- - rscadd: SM crystal can now dust someone or something if it falls on it.
- - bugfix: The reverse revolver now looks like a normal Syndicate revolver on inspection.
- - bugfix: fixed the stamp in the metastation CMO office always spawning on the floor
- - bugfix: You can now spray paint the SM without getting dusted
- Smol42:
- - rscadd: Added some new hairstyles
- Zergspower:
- - bugfix: Crew Monitor works again properly
- nikothedude:
- - rscadd: A waterbreathing quirk
- - qol: Waterbreathing is now documented on species pages of the species that have
- it
- admin: Mob abilities can be granted to arbitrary mobs via the VV menu in a similar
way to spells.
- bugfix: Lavaland syndicate operatives can no longer trivially use the jetpack
diff --git a/html/changelogs/archive/2023-10.yml b/html/changelogs/archive/2023-10.yml
index 611e2e9c112..1a0eb987d0c 100644
--- a/html/changelogs/archive/2023-10.yml
+++ b/html/changelogs/archive/2023-10.yml
@@ -10,40 +10,6 @@
budget by cargo crew, or privately by everyone else.
- rscdel: Any material stacks that can be bought and sold on the market before have
been removed from the cargo catalog.
- - rscadd: Adds Bitrunning to supply department- a semi-offstation role that rewards
- teamwork.
- - rscadd: Adds new machines to complement the job- net pod, quantum server, quantum
- consoles, and the nexacache vendor.
- - rscadd: Adds several new maps which can be loaded and unloaded at will.
- - rscadd: Some flair for the new bitrunning vendor.
- - rscadd: Adds a new antagonist for the virtual domain only. Short lived ghost role
- that fights bitrunners.
- - rscdel: Removes the BEPIS machine, moves its tech into the Bitrunning vendor.
- - bugfix: Fixes missing baseturfs and clowns in mining planet VDOM..
- - qol: Font settings in the chat panel applies to all text now.
- - image: new chaplain outfit
- - bugfix: Blob spores will respond to rallies more reliably (it won't runtime every
- time they try and pathfind).
- - bugfix: Blobbernaut pain animation overlays should align with the direction the
- mob is facing instead of always facing South
- - refactor: Blob spores, zombies, and blobbernauts now all use the basic mob framework.
- They should work the same, but please report any issues.
- - bugfix: Added warden to list of default required enemies for rulesets.
- - bugfix: Blob Zombies and Blobbernauts have had their attack speed restored to
- its original value
- - refactor: Supermatter Spiders have been refactored into basic mobs, on the extremely
- off chance you spot one and also notice any weird bugs regarding it, please
- report it.
- - balance: There are now 3 roundstart cyborg job slots open by default.
- - rscadd: Quantum servers now talk over supply channel when they're done cooling
- off. Go outside!
- - bugfix: You can no longer use dragon swoop to bypass cordons.
- - bugfix: Netpod brain damage is now properly reduced upon server upgrades.
- - bugfix: Fixed an bug where swapping bodies in vdom prevented you from disconnecting.
- - bugfix: Fixed a bug where a quantum server could get locked out of loading new
- domains.
- - bugfix: Changed quantum console UI to display "no bandwidth" rather than "none"
- - bugfix: Actually fixed the hooked item exploit.
GPeckman:
- bugfix: Security officers can now download the crew manifest PDA app that they
start with.
@@ -71,15 +37,6 @@
'snowflake check' rituals can utilize.
- balance: The first non-path knowledge, the Mansus Hand Mark, has had its cost
reduced from 2->1 points.
- - bugfix: Aloe and other baked foods that don't have reagents can be baked again
- without turning to ash
- Vekter:
- - bugfix: Fixes the missing grinder in Birdshot's Virology department
- jjpark-kb:
- - bugfix: the ashwalker tendril will allow you to respawn again (the tendril blessing)
- - bugfix: the round end report will accurately report ashwalker sacrifices
- nikothedude:
- - code_imp: Gauze removal is now handled by the gauze's destroy instead of seep_gauze
distributivgesetz:
- qol: Font settings in the chat panel applies to all text now.
nikothedude:
@@ -89,10 +46,6 @@
- rscdel: An easter egg plushie that was spawning where it shouldn't has been brought
back home.
- rscadd: The secure closet can now spawn live gibtonite, enjoy your free bomb.
-2023-10-02:
- SkyratBot:
- - balance: Sci now has access to the materials & canisters section in their departmental
- order console
san7890:
- refactor: Supermatter Spiders have been refactored into basic mobs, on the extremely
off chance you spot one and also notice any weird bugs regarding it, please
@@ -112,38 +65,11 @@
the minigame UI to less generic ones. Reaching master level in fishing also
does that.
- qol: The experiment handler UI no longer shows unselectable experiments.
- - bugfix: Security officers can now download the crew manifest PDA app that they
- start with.
Jacquerel:
- rscadd: Wizards who complete the grand ritual can now gift everyone with eternal
life
distributivgesetz:
- bugfix: Font scaling in TGUI chat has been reverted to its original implementation.
- softcerv:
- - rscadd: Adds the mini-soulcatcher, a more lightweight soulcatcher that can be
- attached to objects
- - rscadd: Adds in the RSD brain interface, an item that allows for soulcatcher souls,
- that died within a round and were scanned, to be transferred to a new brain.
- - rscadd: Adds in the NIFSoft Scryer, a NIFSoft that gives the user a Scryer they
- can use to communicate with other Scryer users.
-2023-10-03:
- SkyratBot:
- - bugfix: fixed misplaced door on syndicate listening post
- - rscadd: adds boxes of bandages, a quick healing item
- - bugfix: Spiders, Morphs, Fire Sharks, and Regal Rats no longer have a reduced
- click speed.
- - image: Railings have had a visual update.
- projectkepler-ru:
- - balance: reverted the nerf on the X-01
- softcerv:
- - rscadd: Adds in Purpura Eye, a NIFSoft that allows for the user to hypnotize others.
- vinylspiders:
- - bugfix: the pollution system will no longer try (and fail) to pollute a turf from
- nullspace
-2023-10-04:
- Coded by Jacquerel, Sprited by Dalmationer:
- - rscadd: Added tongs to the kitchen, which you can use to manipulate food from
- further away
2023-10-03:
ArcaneMusic:
- image: Railings have had a visual update.
@@ -153,45 +79,6 @@
- rscadd: Added a budget solar crate to the derelict teleporter room
- rscadd: Added a solar panel control to the north derelict solar
- qol: The derelict's AI coridoor is now shorter and prettier
- - rscadd: A lot of new content has been added to the beach away mission
- - qol: It also looks substantially better, too!
- Motho:
- - bugfix: An anonymous visitor to the NSV Void Raptor has turned in security's biosuit
- to the lost and found. Security officers everywhere rejoice.
- Paxilmaniac:
- - rscadd: A significantly smaller selection of new SolFed weapons has taken the
- place of the now missing Armadyne selection.
- - rscdel: So basically, all of Armadyne is gone.
- - qol: A large number of weapons now use singular interchangeable magazine types,
- rather than having seven different 9mm magazines to do the same thing
- - balance: Any weapon that was replaced is going to have different stats from what
- they used to be, numbers subject to change
- - sound: Several new firing sounds from TGMC for the new weapons
- - image: Whole collection of new ammo, gun, case, and so on sprites by myself
- - image: Gun case worn on the back sprites done by Zydras
- - code_imp: Where applicable, containers spawning gun stuff use generate_items_inside,
- which is much neater than spamming new x(src)
- SkyratBot:
- - bugfix: The Syndicate have fired their previous construction company after poor
- results in recent outposts.
- - qol: Departmental order consoles now alert their department via radio when their
- cooldown expires
- - bugfix: Fix butchered monkeys to transfer reagents and diseases to meat
- - bugfix: Fix organs having no DNA and become bloody when violently removed.
- - refactor: Raw Prophets now use the basic mob framework. Please report any unusual
- behaviour.
- - bugfix: Cutting open a hand-pressed paper bundle no longer deletes all of the
- paper.
- - balance: Kudzu will now be destroyed by adverse weather.
- - balance: Kudzu will no longer spread over holes.
- - refactor: fixed many instances of updatehealth() either being called needlessly
- or not at all within on_mob_life() and in various other parts of the code
- - refactor: damage procs now return useful information--the actual net change in
- damage on the mob. added a unit test for this
- - bugfix: Some icons for selecting character preferences are no longer scaled incorrectly.
- ninjanomnom:
- - admin: Appearance vars in VV now display instead of being left blank
-2023-10-05:
Ical92:
- bugfix: fixed misplaced door on syndicate listening post
Jacquerel:
@@ -211,8 +98,6 @@
- sound: '*flap now makes a fluttering noise for moth wings'
- sound: Moths now have a death sound
- qol: '*tremble emote now is just "trembles!" instead of "trembles in fear!"'
- LT3:
- - image: Added colourable arm and leg wraps
Fazzie:
- rscadd: A lot of new content has been added to the beach away mission
- qol: It also looks substantially better, too!
@@ -225,18 +110,6 @@
- qol: Moved a lot of maintenance spawnpoints out of non-maintenance rooms. Some
antags (paradox clone, fugitives, nightmares, spiders) are now less likely to
spawn in obvious places like the morgue, tech storage, or dorms rooms.
- Motho:
- - image: Sector 13's station air alarms and fire alarms have been updated to be
- more in line with other frontier station models.
- SkyratBot:
- - admin: Admins can turn off dynamic rulesets (or force them on despite not meeting
- the qualification criteria) on a per-round basis.
- - rscadd: The funds the syndicate have been saving by restricting galley access
- has been suddenly funneled into a singular mosaic pattern in the experiments
- wing.
- - balance: CQC legsweeps now cause knockdown instead of paralysis.
- - balance: CQC kicks now knockout a target on the floor for ten seconds if they
- reach stam crit. Helmet protection shortens the knockout length.
TheBoondock:
- rscadd: Added blackout, happens when you drink...ALOT
Wallem:
@@ -249,36 +122,6 @@
corazargh in your system.
- refactor: The cursed heart has been streamlined a bit, and now gives you a visual
cooldown for when you can beat your heart again.
- Wallem:
- - rscadd: Adds The Hand of Midas, an ancient Egyptian matchlock pistol.
- honkpocket:
- - bugfix: Extra magazines for all the Foam Force guns are now purchasable from cargo
- imports
- - rscadd: The Foam Force dart collector MOD modules are now purchasable from cargo
- imports
- - sound: added a unique racking sfx for the sol 'Renoster' shotgun
- softcerv:
- - qol: NIFSofts now use the same TGUI as their parent NIF.
- tf-4:
- - bugfix: Fixed some weirdness with mould mob attacks.
- - qol: Mold mobs delete themselves on death.
-2023-10-06:
- LT3:
- - image: Job icon for departmental guards, DS2 and other SR specific jobs are properly
- aligned
- Majkl-J:
- - bugfix: Table to the cafe food processor
- RatFromTheJungle:
- - balance: Interdyne now spawns with Sidano SMG's, instead of .50 snipers
- - bugfix: you can now actually wear the 'LIZARED' top, yippie!
- SkyratBot:
- - bugfix: The Galactic Materials Market now offers things for sale as it should.
- - rscadd: Added blackout, happens when you drink...ALOT
- - bugfix: plumbing reaction chamber now balances the ph of it's solution correctly
- to the best of it's ability so no guarantees
- - code_imp: converted plumbing reaction chamber & mixing chamber UI files to Typescript
- - refactor: plumbing mixing chamber now also accepts an TGUI input list to input
- it's chemicals
- bugfix: Cutting open a hand-pressed paper bundle no longer deletes all of the
paper.
nikothedude:
@@ -314,25 +157,6 @@
- image: Station budget cards have gotten a facelift
- image: Emags and Doorjacks
- bugfix: Numbered prisoner IDs will now be legible
- Wallem:
- - rscadd: Buffs the Active Sonar module with a radial scan, and makes the power
- costs more in-line with other modules.
- softcerv:
- - bugfix: the ghost role NIF boxes now contain the Purpura Eye NIFSoft
- vinylspiders:
- - bugfix: fixes gender shaping and height offsets on underwear
- - bugfix: female gender shaping now works with digi jumpsuits
- - bugfix: fixed rainbow jumpsuit digi sprite
-2023-10-07:
- GoldenAlpharex:
- - bugfix: The round end report will no longer expose people's ckeys for the achievements
- they obtained through the round, nor when they're contractor support agents.
- LT3:
- - bugfix: Adjusted Void Raptor shutters and firelocks in the pharmacy, hallway and
- HoP line
- - balance: Hypovial capacity now matches bottle capacity
- - bugfix: Broken and placeholder hypovials can no longer be printed in the ChemMaster
- Melbert:
SyncIt21:
- bugfix: plumbing reaction chamber now balances the ph of it's solution correctly
to the best of it's ability so no guarantees
@@ -385,81 +209,6 @@
- refactor: Refactored AI, cyborg, and PAI camera (photo taking) code
- bugfix: fixed being unable to print photos as a cyborg when below 50% toner, even
though photos only take 5%
- SkyratBot:
- - bugfix: Engineering borgs can no longer grab and drop their own iron/glass sheet
- module.
- - bugfix: It is no longer possible to chasm yourself on the geode. Again.
- - rscadd: Fish analyzers can now be used to perform fish scanning experiments.
- - balance: They can now be singularly bought as a goodie pack for 125 cr each, instead
- of a crate of three for 500 cr.
- - bugfix: Borgs will no longer become permanently upside-down if tipped over by
- multiple people at the same time.
- - balance: Despite earlier reports suggesting that the famous lethality of the Regal
- Condor was largely a myth, there has been rumors that the gun has once again
- started to display its true killing potential on any station that it 'manifests'.
- - bugfix: The AI can no longer turn you off if you shapeshift into a robot.
- - bugfix: Blood once again appears as small drops instead of splatters during minor
- bleeding.
- - bugfix: you are now made a ghost faster if you get gibbed
- - bugfix: fixed bad food not having bad food reagents
- - rscadd: The laser carbine, a weak but fully automatic sidegrade to the normal
- laser gun, can now be ordered from cargo.
- - bugfix: Adminheal will now properly clear negative mutations as intended.
- - bugfix: Ice whelps can now use spells given to them by admins, and people who
- have polymorphed into ice whelps can now polymorph back to normal.
- - bugfix: Fixed silent catwalks.
- - rscadd: Fake moustaches are now poorly slapped on top of what you're wearing
- jjpark-kb:
- - rscadd: ashwalker nest is now in the NE corner of lavaland
- neocloudy:
- - bugfix: MetaStation disposal pipes from Cargo to Disposals/the rest of the station
- are working again.
- nikothedude:
- - rscadd: Synthetic wounds! Blunt, Pierce, Slash, Burn, Muscle. See PR 23733 for
- more information
- - rscadd: Robodrobe now has 2 chilled hercuri sprays for treating synthetic burn
- wounds
- - rscadd: Robodrobe now has 2 pairs of black gloves to let robotics painlessly meld
- T3 synthetic blunt wounds
- - balance: 'Synthetic damage multiplier: 1.3 -> 1.0'
- - rscadd: '3 new cargo packs to science: 2 chilled hercuri, a synth trauma kit,
- and synth medicine'
- - balance: Quadruple amputee can now be picked with frail
- - rscadd: Interdyne/DS2 now have advanced synthetic trauma kits in their medbays
-2023-10-08:
- LT3:
- - image: Text alignment on ID cards slightly adjusted
- Melbert:
- - bugfix: Fixed an error from reading an ID card closely when you can't read
- - config: Adds a config option for player respawning that enables respawns, but
- forces you pick a new character.
- - config: '"NORESPAWN" has been replaced with "ALLOW_RESPAWN 0". Unlimited respawns
- is "ALLOW_RESPAWN 1" and character limited respawns is "ALLOW_RESPAWN 2".'
- SkyratBot:
- - bugfix: Fix bodies now lose fire stacks while husked.
- - bugfix: Flesh Worms will move smoothly more consistently.
- - balance: You can now remove and replace power cells from PDAs (with screwdriver).
- - balance: PDAs now drain their power cells harder, and also take into account active
- programs & their flashlight being on.
- - balance: PDAs running out of charge now turn their flashlights off.
- - qol: allows janitor keys to be stored in janitor wintercoats and janibets
- - bugfix: PDA flashlights wont cause the cell to constantly drain faster and faster.
- - bugfix: People who are irremediably bald can still grow a beard with barber aid.
- - qol: Added slapcrafting to unloaded tech shells, click on them with ingredients
- to quickly craft your shell.
- - qol: gives empty fireaxe and mech removal crowbars cabinets directional helpers
- - bugfix: fixed a PDA's messenger TGUI issue with handling of destroyed recipients.
- - qol: '"prison" intercoms have been renamed to "receive-only" intercoms to make
- it clearer they cannot transmit.'
- - refactor: Rust Walkers, Ash Spirits, Flesh Stalkers, and The Maid in the Mirror
- now use the basic mob framework. Please report any unusual behaviour.
- - spellcheck: '"offical" has been officially corrected to "official" in several
- official locations.'
- - refactor: Sloths are now basic mobs, however their overall sluggish behavior shouldn't
- have changed much- let us know if anything is broken.
- - refactor: Refactored goats into basic mobs! Not much should have changed beyond
- their endless desire to retaliate should you attack them, they're still just
- as good as chomping away plant life as ever.
ReezeBL:
- bugfix: fixed a PDA's messenger TGUI issue with handling of destroyed recipients.
Sealed101:
@@ -960,9 +709,6 @@
- image: Removed all unused/duplicate tram icons from .dmis
- image: Colors are now consistent between status, tram, incident displays
- admin: Reset tram commands available to admins in the debug panel
- Melbert:
- - bugfix: You can punch yourself again
- - rscdel: Deleted a mapped in wrestling belt
MTandi:
- bugfix: Distilled drink quality is fixed - can't give a mood debuff anymore
Melbert:
@@ -1289,41 +1035,6 @@
smarter, and they also have a slightly improved set of attack effects and sounds.
They love to drink milk, but will be harmed greatly if any heartless spaceman
tricks them into drinking soymilk instead. Please report any bugs.
- - refactor: Juggernaut constructs now use the basic mob framework. Please report
- any bugs.
- - qol: Universal scanners are now capable of recognizing the account owners and
- assigned profit splits on barcodes. Cargo technicians are asked to do their
- due diligence when matters call for it.
- - bugfix: Ghost alerts have been tuned down a bit.
- - qol: Railings now have Examine hints for how to deconstruct them
- - bugfix: hallucination announcements use new announcement style
- - bugfix: surgical trays no longer animate when opened
- - rscadd: New automatic weapon for the crew - Disabler SMG. Capable of rapidly firing
- weak disabler beams.
- - bugfix: '[Tramstation] fixed a missing Scrubber in the Civilian Radiation Shelter'
- - bugfix: You will no longer be asked to construct meteor shields on stations which
- cannot be hit by meteors.
- - bugfix: you may not enter knock path caretakers last refuge with the nuke disk
- - bugfix: you can no longer cuff knock heretics in refuge
- SpringSkipper:
- - qol: clocked-out crew now has assistant access to maints
- honkpocket:
- - balance: Reverts the dual e-sword's block_chance from 45% back to 75%
- jjpark-kb:
- - qol: you can now directly feed worm/ant farms from plant bags
- - qol: you can now directly harvest ash farms with plant bags
- - bugfix: worm farms can reproduce with 2 now (instead of the 3 due to a logic error)
- - bugfix: fixed fertilizer being deleted even if it didn't upgrade an ash farm
- wiverns:
- - rscadd: drake to service borgs
-2023-10-26:
- OrionTheFox:
- - balance: the flatpacked Fabricator and RTG are now restricted-access imports
- SkyratBot:
- - refactor: Hostile Nanotrasen mobs now use the basic mob framework. This should
- make them a little smarter and more dangerous. Please report any bugs.
- - bugfix: Russian mobs will now actually use those knives they're holding.
- - bugfix: fixed hair gradients not applying correctly to huge afros
- refactor: Hostile Nanotrasen mobs now use the basic mob framework. This should
make them a little smarter and more dangerous. Please report any bugs.
- bugfix: Russian mobs will now actually use those knives they're holding.
@@ -1349,58 +1060,6 @@
included in the check!)
- bugfix: Fixed an issue where a monkey check in doorcrushing was never actually
able to pass. Also they screech now.
- - qol: Add smoke particles to burning fireplace
- - bugfix: Fixed gorilla attack cooldown. Now attacking speed to mobs is the same
- as attacking speed to objects.
- - bugfix: fixed hair gradients not applying properly on dismembered heads.
- Smol42, OrionTheFox, & softservedeath:
- - rscadd: Added a few new clothing items.
- Stalkeros:
- - rscadd: Added some helpful utility items to the loadout.
- - rscadd: Loadout crucifix ungatelocked from being chaplain-only and now available
- to be taken by anyone.
- - code_imp: New job blacklisting proc for the loadout menu.
- - rscadd: Saner employment contracts that no longer mention slavery and deity corporations.
- Thlumyn:
- - spellcheck: fixed millstone description typo
- Zergspower:
- - rscadd: Cargo borgs now gets a boxcutter! You can now manage packages properly
- - qol: Mining borg survival tweaks, Service borg overload tweaks
- - qol: Borgs can now have their own front panel sprite!
- - qol: Cargo borgs can now hold unwrapped crates with the upgraded clamp
- - qol: Reduces the cost and building time for cyborgs
- - balance: Mining borgs now have an upgraded welder option for research, the PKA
- nerf has been removed to match a normal one.
- - refactor: Most borg code has been refactored into one master module folder
-2023-10-27:
- GoldenAlpharex:
- - spellcheck: Fixes a CRITICAL typo in one of the towel feedback messages.
- Hatterhat:
- - qol: Pocket medkits and first-aid pouches no longer use numerical stacking for
- items stuffed in them.
- Iamgoofball, Paxilmaniac, lessthnthree:
- - rscadd: Assistants now spawn with Good Assistant Points Punchcards.
- - rscadd: The punchcards can be punched by heads of staff, who spawn with punchers.
- - rscadd: A punchcard can have six punches at maximum. Your starting punchcard comes
- with a free punch.
- - rscadd: Turning in a punchcard gives 50 credits for each punch directly to your
- ID card's bank account, a box of chicken nuggets, and a new fresh punchcard.
- - rscadd: Punchcards are turned in at the Good Assistant Points Redemption Machine
- in the Cargo lobby.
- - rscadd: Don't lose your punchcard, or you can't replace it.
- LT3:
- - bugfix: You can no longer use the GAP card to get infinite chicken nuggies
- SkyratBot:
- - rscadd: Reworked the colour schemes for the minor and major announcements as well
- as their layout
- - rscdel: Rolled back changes to deadchat notifications
- - admin: Admins can now select the colour of their announcements as well as the
- subheader when creating a command report.
- - bugfix: Dying when using (most) shapeshift spells will now kill you rather than
- having you pop out of the corpse of your previous form.
- - bugfix: Damage will now be accurately carried between forms rather than being
- slightly reduced upon each transformation.
- - bugfix: venus human traps no longer die when on weeds
timothymtorres:
- qol: Add smoke particles to burning fireplace
2023-10-27:
@@ -1413,27 +1072,6 @@
- spellcheck: Ammo boxes (incl. magazines) can now be set to use different phrasing
for their ammunition (e.g. cartridges, shells, etc. instead of just mixing "rounds"
and "shells").
- sqnztb:
- - rscadd: Adds Vexcint's donation item.
-2023-10-28:
- AshtonFox:
- - image: '''Tajaran, Normal'' and ''Mammal, Short'' snout types now come with colorable
- noses.'
- GoldenAlpharex:
- - bugfix: Inserting a comma as the first character of your emote will now once again
- remove the space that separates your emote from your character's name! Yay for
- correct spacing!
- IsaacTheSharkWolf & Motho:
- - rscadd: The derelict NSV Blueshift has been located and refitted for active duty
- after being "lost with all hands" for nearly a year. NanoTrasen leadership has
- declined to comment on why the ship went missing in the first place, sparking
- rumors of esoteric circumstances regarding the ship's disappearance.
- - config: Revamped Blueshift added back into rotation.
- Kyo:
- - rscadd: Adds a new, unique modsuit for Blueshields - The Praetorian Modsuit!
- - rscadd: Adds the Praetorian modsuit to blueshield lockers.
- - code_imp: Added the Praetorian modsuit to list of items removed from cryo, in
- case a sleepy blueshield forgets to take off their suit.
Jacquerel:
- bugfix: Dying when using (most) shapeshift spells will now kill you rather than
having you pop out of the corpse of your previous form.
@@ -1462,32 +1100,6 @@
- bugfix: Fixes some occasions which some effects (glass jaw, explodable worn items)
won't respond to hits.
- refactor: Refactored core code related to mobs sustaining damage.
- Nerev4r:
- - image: The Naga taur option has been replaced with a new sprite, with two Naga
- variants.
- - image: A new Drider option, Tarantula, has been added; as well as a new Tentacle
- option.
- - image: A new plug tail option, as well as a new set of wings.
- Paxilmaniac:
- - bugfix: the printable water synthesizer now only synthesizes water again
- SkyratBot:
- - bugfix: Mobs without the "advanced tool user" trait - such as monkeys - are no
- longer able to interact with camera consoles.
- - bugfix: Every misaligned railing ending has been corrected by the Nanotrasen Hall
- Monitor's Lunchclub.
- - bugfix: Wigs now properly follow your head when you're any non-standard height
- - bugfix: If a mob you are shapeshifted into attempts to grow up into a different
- kind of mob then you will stop being shapeshifted
- - bugfix: The health bar on the mech diagnostic hud display should update consistently
- now.
- - balance: Sutures now heal a percentage of basic/animal max health instead of a
- flat amount.
- - bugfix: Monkeys can now properly attack parrots.
- - bugfix: The Demonic Frost-Miner will no longer run around destroying the corpses
- in its arena the moment the round begins.
- projectkepler-ru:
- - image: gave the sindano proper inhand icon for both variant
-2023-10-29:
Xackii:
- balance: Sutures now heal a percentage of basic/animal max health instead of a
flat amount.
diff --git a/html/changelogs/archive/2023-11.yml b/html/changelogs/archive/2023-11.yml
index 371c07446b4..9240318c4d3 100644
--- a/html/changelogs/archive/2023-11.yml
+++ b/html/changelogs/archive/2023-11.yml
@@ -583,62 +583,6 @@
- bugfix: Tram plate checks and energizes when the tram is moving
- code_imp: Omen component now applies the cursed trait
Melbert:
- - bugfix: Fixes hallucination and encrypted announcements printing to the Newscaster.
- Nerev4r:
- - bugfix: Kicks are no longer supercharged by the dark energies of the Satsui no
- Hado, making them no longer do a billion damage.
- Shroopy:
- - bugfix: Molotovs now light their splashed contents on fire.
- SkyratBot:
- - bugfix: PDAs now log that they've been emagged, but will no longer log any further
- programs they open beyond that. This means Nukies don't sell themselves out
- by opening their disk tracking app.
- - qol: looms will now attempt to loop through stackable items (cotton as an example)
- - qol: You will no longer be added to the list for ghost-orbit role polls if you
- have opted out of getting antag ghost roles in your preferences.
- - qol: You will get a tgui_alert to accept the ghost role if you were selected via
- the orbit poll, instead of it just throwing you intot he role.
- - refactor: Destructive Analyzers now have a TGUI menu.
- - bugfix: Safeties in the code have been added to prevent things in disposals going
- into nullspace whenever they get ejected from a pipe - you will just magically
- spawn at the turf that you were meant to be flung towards.
- - balance: Sapient brimdemons can't hurt themselves with their own beams
- - bugfix: bileworms will now attack
- - bugfix: The plaguebearer can no longer depower virology on Tramstation
- - spellcheck: hopefully changed all instances of the word 'mjolnir' to 'mjollnir'
- StrangeWeirdKitten:
- - rscdel: Removes the omni-lathe from blueshift secure tech storage. Replaces it
- with some law modules.
- TwistedSilicon:
- - bugfix: invisimin verb now makes you invisible to all HUDs too! No more floating
- healthbars or job identifiers giving you away while you sneak around.
- san7890, Ghommie:
- - bugfix: The Blessing of Insanity now grants no damage slowdown and free hyperspace
- movement correctly.
- vinylspiders:
- - bugfix: Adds a bitrunning version of the double esword that has a 75% block rate
- - bugfix: fixed a bug where loadout plushes would sometimes have their custom descriptions
- reset under certain conditions
- - refactor: fixed hard dels associated with anesthetic machine, & the mask item
- will now cause ci to fail when placed via mapping
- - bugfix: you no longer have to violently beat the anesthetic machine to death with
- the anesthetic tank to load it
- - bugfix: fixed a bug that would cause the anesthetic machine to become unusable
- when a mask gets destroyed (e.g., in a fire or explosion)
- - bugfix: fixes some of the runtimes in the loadout system caused by job/species
- restricted items
-2023-11-16:
- Hatterhat:
- - balance: Disabler SMGs and laser carbines (the full-auto sidegrades to the disabler
- and laser gun, respectively) are now available for purchase through Microstar.
- - balance: Cargo now stocks laser gun and energy gun crates again, which means that
- they can be ordered through security's dep-order console.
- Majkl-J:
- - qol: Bluespace miner now has visual indication to its status and problem
- - sound: The sound on the bluespace miner is no longer earpiercingly loud
- - image: Added lights to the bluespace miner
- - refactor: Refactored bluespace miner code
- Melbert:
- code_imp: General heart code cleanup.
- bugfix: Heartbeat sound effects are no longer sourced to the exact tile you fell
into crit at
@@ -762,15 +706,6 @@
new types. Check your preferences!
- bugfix: The quantum server will now show its balloon alerts to all observers.
- bugfix: Random domains should be fully random again.
- - rscadd: Adds a chance that, when sharpened, a sufficiently potent carrot will
- turn into a sword instead of a shiv.
- - qol: if you die in a mech you automatically eject
- - bugfix: Fixed catwalks over open space not making a sound when walked over.
- - qol: The supermatter filters have been flipped on BirdshotStation to work like
- the supermatters on every round, meaning the filtered gas goes in, and the non-filtered
- gas comes out.
- - bugfix: Space Ruin - All American Diner - Soda Machine now is scooted out of the
- way
mc-oofert:
- qol: if you die in a mech you automatically eject
mogeoko:
@@ -782,22 +717,6 @@
- balance: After a string of unfortunate incidents, persons with telekinesis have
been strongly warned against playing Russian Roulette, as they tend to hyperfixate
on the gun a bit too much and end up firing it directly at their head.
- - bugfix: grabs no longer trigger krav maga
- - rscadd: Androids now have robotic brains instead of organic brains.
- - bugfix: 'The CRAB-17 will now only take whole credits, as fractional credits were
- found to be worth less.
-
- :cl:'
- TheSS13Melon:
- - rscadd: Adds a "negative" perk called gifted which gives 6 free points.
- Vekter (on behalf of Constellado):
- - image: 'Added a new bar sign as one of the winners of our Bar Sign Contest: "The
- Assembly Line".'
- mogeoko:
- - bugfix: Turbine parts will now use an amount of materials no greater than needed
- for the upgrade
-2023-11-18:
- SkyratBot:
2023-11-18:
Ben10Omintrix:
- bugfix: gutlunches will stop having too many children
@@ -807,15 +726,6 @@
- refactor: Wall safes are now structures, rather than items that can't be picked
up.
- refactor: Lockable items (Wall safes & Secure Briefcases) now use TGUI.
- - bugfix: gutlunches will stop having too many children
- - balance: gutlunches are no longer in the mining faction
- - bugfix: After correcting a slight miscalculation, Bit Avatars now have hands again.
- - rscadd: Chat Reliability Layer
- - code_imp: TGUI chat messages now track their sequence and will be resent if the
- client notices a discrepenency
-2023-11-19:
- Deek-Za:
- - image: New Digitigrade icons for red sec officer and HoS uniforms.
ZephyrTFA:
- rscadd: Chat Reliability Layer
- code_imp: TGUI chat messages now track their sequence and will be resent if the
@@ -895,68 +805,17 @@
declared)
- bugfix: Fixes multiple nuke teams (or an admin) being able to declare war at once
- rscdel: Heretic side path points are gone
- Nerev4r:
- - balance: Hemophages now have higher healing numbers, and liquid blood helps non-bone
- wounds like tea does.
- - rscdel: Heretic side path points are gone
- OrionTheFox:
- - bugfix: fixed the Face Scarf not changing the icon correctly when toggled
- - bugfix: fixed Vapes checking for digitigrade legs, rather than muzzles
- - image: added muzzle compatibility to the Face Scarf
- Paxilmaniac:
- - rscadd: Adds a new weapon given to blueshields and available through cargo if
- you REALLY wanted, the Bogseo submachinegun, firing .585 and able to give both
- you and your target an equally bad day!
- - image: Sprites for the Bogseo done by me :333
Rhials:
- rscadd: Nuclear Operatives, in an attempt to appeal to the more "tacticool" members
of their cause, have begun using callsigns to designate themselves. Check your
preferences to set your Operative Alias!
- qol: At the request of the more vain members of the cause, hair dye has been added
to the Operative Firebase dorms.
- SkyratBot:
- - bugfix: fixes bug that was preventing high luminosity eyes' light from turning
- on
- - bugfix: fixes eyes being on the wrong side of the head when facing east/west
- - bugfix: Fixed the infinite growth serum exploit.
- - bugfix: Fixed generic nutriment processing even when dead.
- - rscadd: The mother hallucination has more possible one-liners now.
- - rscadd: The mother hallucination has more possible one-liners now.
- - bugfix: selling large amount of mats in cargo should not give you infinite credits
- - bugfix: runtime when adjusting material market after buying
- - spellcheck: Nukie and ERT defibrillators now reference combat mode instead of
- intents.
- - bugfix: fixes bug that was preventing high luminosity eyes' light from turning
- on
- - bugfix: fixes eyes being on the wrong side of the head when facing east/west
- - bugfix: Chat shouldn't bluescreen at the start of the round
- - bugfix: Hydrotrays consume nutrients according to their proportion in the mix,
- instead of randomly picking reagents to consume every cycle.
- - bugfix: Stopped a DS crash when shooting a rebar crossbow in specific circumstances.
- - qol: Nearly every ghost alert should now feature a "VIEW" button, even those with
- click interaction.
- - rscdel: Ghost alerts no longer show the entire message in the tooltip, instead
- have been replaced with titles.
- - spellcheck: Some roundstart tips have been made clearer regarding "suits" vs.
- "exosuits".
SyncIt21:
- bugfix: debug chem synthesizer works again. cleaned up chem dispenser, portable
chem dispenser & debug chem synthesizer ui code
- qol: ui for displaying beaker reagents for debug chem synthesizer has been improved.
Now displays input list for adding reagents
- - bugfix: Hydrotrays consume nutrients according to their proportion in the mix,
- instead of randomly picking reagents to consume every cycle.
- - bugfix: The aquarium auto-feeding feature now works correctly.
- - bugfix: Stopped a DS crash when shooting a rebar crossbow in specific circumstances.
- - bugfix: Hardcore Random will no longer assign incompatible quirks.
- - bugfix: Chat shouldn't bluescreen at the start of the round
- - bugfix: Admins can spawn bitrunning events (again!)
- - bugfix: fixed a race condition with mutations
- - bugfix: Fixed an issue with un-hidden (alien, syndie etc.) nodes not being researchable.
- - bugfix: selling large amount of mats in cargo should not give you infinite credits
- - bugfix: runtime when adjusting material market after buying
- - spellcheck: Some roundstart tips have been made clearer regarding "suits" vs.
- "exosuits".
- code_imp: Removes & merges `get_multiple_reagent_amounts()` proc with `get_reagent_amount()`
inside reagent holder
- code_imp: Removes & merges `get_reagent()` proc with `has_reagent()` inside reagent
@@ -971,24 +830,6 @@
click interaction.
- rscdel: Ghost alerts no longer show the entire message in the tooltip, instead
have been replaced with titles.
- - spellcheck: Nukie and ERT defibrillators now reference combat mode instead of
- intents.
- Tattle:
- - bugfix: admin painting manager works again
- nikothedude:
- - qol: Examining guns now shows you the safety keybind
- vinylspiders:
- - bugfix: fixes missing examine_more text when double examining a mob (e.g. dogtags
- will now display)
- - bugfix: clickable links in examine text will now be surrounded in [brackets].
- - bugfix: Hardcore Random will no longer assign incompatible quirks.
- - bugfix: Admins can spawn bitrunning events (again!)
- - bugfix: fixed a race condition with mutations
- xXPawnStarrXx:
- - rscadd: Added a stone griddle
- - rscadd: Added a seed shelf & produce bin
- - rscadd: Crafting recipes for stone cooking structures.
- - rscadd: Crafting recipes for Paxil's fences.
- bugfix: Chat shouldn't bluescreen at the start of the round
- bugfix: Admins can spawn bitrunning events (again!)
lizardqueenlexi:
@@ -1034,9 +875,6 @@
glass tables
- bugfix: Floating mobs won't squish stuff like roaches anymore
- bugfix: Fixes bear traps triggering on floating / flying mobs
- SkyratBot:
- - balance: signers no longer suffer from social anxiety's speech changes when they
- go non-verbal. Other effects are maintained.
OrionTheFox:
- qol: Allergy Dogtags (and any other dogtags, really) are now Tiny items and can
fit into wallets.
@@ -1068,38 +906,6 @@
- balance: Surplus prosthetic limbs contribute more of their carried damage to overall
health (AKA they make you actively more vulnerable to damage), and deal less
damage with unarmed attacks. Take Quadruple Amputee at your own risk.
- - bugfix: When you successfully block a body collision, it does something rather
- than nothing at all.
- - qol: Allergy Dogtags (and any other dogtags, really) are now Tiny items and can
- fit into wallets.
- - image: 'Following now have unique item sprites: syndicate war declaration radio,
- curator and chief beacon''s, chaplain beacon.'
- - image: 'Following now have unique inhand sprites: radio, export scanner, walkie-talkie,
- syndicate war declaration radio, curator and chief beacon''s, chaplain beacon.'
- - bugfix: healing viruses can no longer have floor virus side effects
- - balance: The SC/FISHER disruptor pistol is now more likely to show up in black
- market uplinks.
- - balance: The SC/FISHER now has more range (21 tiles up from 14), and is usable
- by pacifists.
- san7890 and Ben10Omintrix/Kobsamobsa:
- - refactor: Parrots (including Poly) have undergone a massive refactor, please report
- any bugs or unexpected behavior that you may encounter.
- - qol: Left-clicking a parrot with a cracker will tame it, right-clicking a parrot
- with a cracker will now feed it the cracker.
- yooriss:
- - rscadd: Examining tamed companions of any type with shift double-click now gives
- a brief indication as to their overall health. This also includes a handy reminder
- on how to heal pets if they get injured.
- - rscadd: A new recipe for anointing bloodresin is now available exclusively for
- Primitive Demihumans, made from 80u liquid gibs and 20u of blood. Bloodresin
- invokes traditional rites of the Hearth to give names to worthy creatures. Using
- this in poor ways may displease the Gods. Woe upon your lineage.
- - rscadd: A single pack of glowshroom mycelium has been added to the Hearth's starting
- seed stores for the benefit of creative healers, shamans, and radiation enthusiasts.
- Cyprex:
- - code_imp: Another test of the changelog bot!
- Majkl-J:
- - bugfix: Fixes an exploit with synth computers
2023-11-22:
Bumtickley00:
- balance: The CMO's hypospray now holds 60u, and can be set to inject smaller amounts
@@ -1130,29 +936,6 @@
of halfway down the shaft.
- bugfix: Blind personnel are no longer able to magically see heads impaled on spears
from a distance.
- - bugfix: Meta's recycler works again
- - qol: Slightly moved the universal enzyme on meta's kitchen to a prettier spot.
- - bugfix: The universal enzyme on meta's kitchen is no longer unecessarely varedited.
- - bugfix: The plasma river is about as deadly for animals as it is for humans.
- - bugfix: Golems can now wade in the plasma river unscathed.
- - bugfix: Undismemberable limbs will no longer be dismembered by the plasma river.
- - balance: Golems and plasmamen cannot become husked.
- - image: Robotic and Skeletal parts will remain distinct while the rest of the body
- is husked.
-2023-11-23:
- Nerev4r:
- - rscadd: NanoTrasen, after extensive testing in a variety of stars' light wavelengths,
- have deemed their PDAs ready enough to actually use the onboard cameras they
- already had.
- SkyratBot:
- - rscadd: Certain types of pens now function like you expect they would when inserted
- into a foam dart
- - qol: Examining a foam dart closely will show you how to modify it, or what it
- is modified with
- - bugfix: Skillsoft's skillchip stations are now ADA-compliant (Astronauts with
- Disabilities Act). Paraplegic characters can now implant themselves with skillchips,
- the same as anyone else.
- - qol: adds pixel perfect 4x, 4.5x, and 5x
2023-11-23:
OrionTheFox:
- qol: Allergy Dogtags (and any other dogtags, really) are now actually whitelisted
@@ -1196,56 +979,6 @@
likely to eat shit on a whiff. DO OR DIE, BITCH.
- refactor: Shoving slowdown and all its implementations now use a status effect,
Staggered.
- - bugfix: Fix refresh button in log viewer
- - qol: Allergy Dogtags (and any other dogtags, really) are now actually whitelisted
- to fit into wallets.
- vinylspiders:
- - code_imp: 'The currently operating rust-g version on a live server is posted to
- places like the runtime.log, in the same place where the revision information
- and any applicable test merges already were. /:cl:'
- BurgerBB:
- - bugfix: Fixes weak tackles bugging out your movespeed.
- Majkl-J:
- - rscadd: Rockfruit, the new awesome fruit that's literally just a plant growing
- a granite shell
- - image: Rockfruit seeds, plant, fruit, and rocks
- - rscadd: Salt in biogenerator
- - bugfix: Lime juice is no longer orange juice in biogens
- - rscadd: Synths can now be printed in exofabs
- ReturnToZender:
- - rscadd: Pref check on autopunctuation
- Runi-c:
- - bugfix: non-moths can digest moth milk
- The Sharkening:
- - bugfix: removes skyrat rules from the antag TGUI
- The-Sun-In-Splendour:
- - balance: emp mold mosquitoes no longer shock you all the time until you have a
- stroke irl over the annoyance
- pixelkitty286:
- - rscadd: 'emotes: mrrp, fpurr, gecker, and prbt'
- - sound: mrrp.ogg, prbt.ogg, fox_purr.ogg, and foxgecker.ogg
-2023-11-24:
- Danny Boy:
- - rscadd: Added Affection Aversion quirk which stops affection modules
- Iajret:
- - bugfix: borers can once again fill their hosts with various wonders of chemistry
- Majkl-J:
- - bugfix: Projector hud traits now get applied correctly
- - refactor: hud_trait gets deprecated, using clothing_traits instead
- Nerev4r:
- - bugfix: Chameleon mutation is toggleable again.
- - rscadd: Certain firmware updates rolled out, finally, in Sector 13 have allowed
- machines to emulate personal computers within their brains.
- RatFromTheJungle:
- - bugfix: fixes punches doing like triple stamina damage, by removing a 2.6x multiplier.
- SkyratBot:
- - rscadd: Cyborg inducer for engineering borgs
- - balance: The borg RPED can hold as many part as the BSRPED now
- - balance: Cyborg chargers now draw from the power net as cell chargers do
- - bugfix: RCD can build directional windows on top of existing grills & without
- them.
- - bugfix: gutlunches now produce miner salve instead of milk, as well as the other
- reagents if fed the correct ore
vinylspiders:
- bugfix: fullupgrade chem dispensers will now spawn with all their chems
2023-11-24:
@@ -1277,13 +1010,6 @@
dieamond13:
- qol: gives roundstart prisoners a key memory of what their crime is
jjpark-kb:
- - rscadd: you can craft the gutlunch trough
- - qol: you can fill the gutlunch trough with a mining bag
- - rscadd: you can hammer glass shards to get back sand
- Majkl-J:
- - rscadd: 'New quirk: Waddle'
- larentoun:
- - code_imp: Now if ONLY modular content was modified, build recompiles dme correctly
- bugfix: gutlunches now produce miner salve instead of milk, as well as the other
reagents if fed the correct ore
2023-11-25:
@@ -1344,23 +1070,6 @@
wesoda25:
- bugfix: the dismemberment moodlet will now properly clear for ethereals who regrew
a limb in their resurrection crystals
- - qol: Oculine now tastes bitter, and not like toxin.
- Stalkeros:
- - rscadd: '"Ancient Milsim" bitrunning domain that lets you shoot guns at CIN people
- as SolFed people.'
- - code_imp: Added a way to add Skyrat-exclusive virual domain safehouses.
- jjpark-kb:
- - rscadd: added a new derelict station (for drones)-- Babylon Station 13
- nikothedude:
- - rscdel: Removes a irrelevant quirk restriction of a nonexistant quirk
- - rscadd: Resonance degradation disorder, a highly customizable quirk that acts
- as a far more in-depth version of DNR
- Majkl-J:
- - rscadd: Ghosting or going DNR makes you appear slightly transparent
- The Sharkening:
- - balance: Nerfs the blueshield modsuit and gives it back
- - balance: "Security modsuit buffed (\tmelee = 40, bullet = 30, laser = 30, energy\
- \ = 40, bomb = 50, bio = 100, fire = 100, acid = 100, wound = 10"
2023-11-28:
FeudeyTF:
- code_imp: Removed currency value for free products
@@ -1370,10 +1079,6 @@
- qol: Bar signs can now be purchased from cargo. Neat!
- qol: Bar signs can now be deconstructed with a screwdriver and wrench.
- qol: Bar signs can now be smashed to pieces, rather than just disabled.
- SkyratBot:
- - code_imp: Removed currency value for free products
- - bugfix: Ranged Guardians (Holoparasites/Power Miners/etc.) can no longer use ranged
- attacks in scouting (incorporeal) mode.
Y0SH1M4S73R:
- bugfix: People exposed to romerol while alive will once again revive as zombies
on death.
@@ -1385,59 +1090,6 @@
- bugfix: flashlights placed inside of backpacks and other storage items that were
on the floor will no longer allow light to shine through
- bugfix: fixed a null client runtime in advanced camera console
- - bugfix: People exposed to romerol while alive will once again revive as zombies
- on death.
- - bugfix: fixed a runtime in handle_dead_metabolism()
- Smol42:
- - rscadd: Added custom donator item.
- Thlumyn:
- - rscadd: Added pet owner quirk to spawn with a pet in a pet carrier.
- nikothedude:
- - spellcheck: The vox N2 tank no longer directly references vox
- sqnztb:
- - bugfix: bitrunners can now drop off their caches properly on void raptor under
- certain roundstart access conditions.
-2023-11-29:
- Ghasterino:
- - bugfix: Made the hypospray actually use the "WAIT_" values for the respective
- mode it's using.
- - bugfix: Made the CMO hypospray actually instant, instead of seeming instant in
- code but not actually instant in game.
- LT3:
- - bugfix: 'Disease outbreak: classic spawned from the admin secrets panel no longer
- fails to start'
- - bugfix: Disease outbreak provides a message about why it fails to start
- - bugfix: Getting beheaded by the tram increments the scoreboard
- MGO:
- - rscadd: Introduces new inverse reagents for Salicylic Acid, Oxandrolone, Salbutamol,
- Pentetic Acid, Atropine, Ammoniated Mercury and Rezadone!
- Majkl-J:
- - qol: Synths can now recharge in borg chargers
- - qol: Synth brain surgery now actually targets the synth brain location
- Rhials:
- - bugfix: Renames a bar door from "Kitchen" to "Bar" on Metastation.
- SkyratBot:
- - code_imp: verb callbacks will no longer execute if the original client disconnected
- - bugfix: fixed chemical closet door not rendering when open
- - bugfix: During the "Cursed Items" wizard event, you should only have smoke spawn
- on you if you actually had a cursed item equipped to you.
- - bugfix: fixed remaining footstep runtimes
- - code_imp: Made ARDS death check respect maxHealth.
- - bugfix: The quick carry module should now correctly apply the appropriate traits
- - image: Premade cleanbots are now always blue.
- - bugfix: you no longer get an empty crate when ordering bluespace crystals from
- the galactic material market.
- - bugfix: All drones now can craft again
- - rscadd: Non-Shy drones can now strip people of their things
- - bugfix: Centered the "pull" button properly over the drop button
- - bugfix: You can now destructively analyze syndicate and abductor items. It works
- this time, I promise!
- itseasytosee:
- - bugfix: staggered targets now have the correct chance for escaping grapples.
- - spellcheck: changed attack verb for punching a grappled target
- rarytech:
- - bugfix: fixed the displaying of tacticool clothing for digi legs
-2023-11-30:
- bugfix: fixed a runtime in handle_dead_metabolism()
2023-11-29:
Ghommie:
@@ -1489,17 +1141,6 @@
- bugfix: The Radioactive Nebula station trait will now respect its upper intensity
cap set at one hour and forty minutes, no longer scaling past that, as was initially
intended.
- Majkl-J:
- - bugfix: Synth eyes now inhabit the correct body zone slot
- SkyratBot:
- - rscadd: Standing on structures such as crates, tables and bed will now look like
- it.
- - bugfix: bitrunning den shows up on the camera console now.
- - bugfix: Fix bitrunning triggering claustrophobia
- Smol42:
- - bugfix: Fixed warm coat, sweaters for digi sprites.
- capsaicinz:
- - spellcheck: your fiscal image is no longer actualized.
Mothblocks:
- rscadd: Instead of teaming up random people together, blood brothers will now
start out with one player and let them convert a single other person over to
diff --git a/html/changelogs/archive/2023-12.yml b/html/changelogs/archive/2023-12.yml
index fb17356ce6e..6d8dfc6f781 100644
--- a/html/changelogs/archive/2023-12.yml
+++ b/html/changelogs/archive/2023-12.yml
@@ -1,61 +1,6 @@
2023-12-01:
Fikou:
- rscadd: turns triple ai mode into a station trait
-2023-12-02:
- MidoriWroth:
- - bugfix: Icebox chemistry lab shutters are controlled by the button in the chemistry
- lab and not in the pharmacy again.
- Paxilmaniac:
- - rscadd: All AK-whatever guns, the NRI pistol, and the nri smg, have been replaced
- with a new selection of weapons now also for sale in the nearest cargo console.
- - rscadd: The CIN clothing in company imports will now spawn with random colors,
- rather than always being grey.
- - sound: New Lanca firing sound from TGMC
- - image: Resprites and sprites for the new weapons by me, Paxilmaniac
- SkyratBot:
- - rscadd: Instead of punished sect healing people like the normal bibble- you take
- their burdens on instead!
- - bugfix: Cyber cops are now equipped with the correct outfit.
- - bugfix: Changelings will no longer get an objective to impersonate crew without
- absorbable DNA.
- - bugfix: Changelings will no longer start without an escape objective.
- - bugfix: fix parrots not appearing dead sometimes
- - spellcheck: fixed typo in one of spacer's moodlets
- - bugfix: shield wall gens actually use power now
- - qol: shield wall gens may now be rebuilt and use some balloon alerts, and have
- wiring
- - code_imp: The singularity processing is a bit more important than the other subsystems.
- - admin: A new debug verb to turn yourself into an MMI(almost the funniest thing)
- - bugfix: MMI's inside mechs can now properly open doors like there posibrain counterparts
- Vekter:
- - rscdel: Replaced the "monkey cube" in Birdshot's tool storage with a different
- "monkey cube".
- - rscadd: Added a fun surprise item to Birdshot's tool storage to compensate for
- the above change.
-2023-12-03:
- BurgerBB:
- - balance: Explosive lemon detonation time changed from 1 to 6 seconds to 4 to 12
- seconds.
- Cursor, as dictated by George Washington & Martin Van Buren,:
- - rscadd: The Freedom Crate is now available to sovereign citizens who refuse to
- respect Cargo's laws.
- Hatterhat:
- - bugfix: The toxin damage from overdosing on TWitch now respects server tickrate/REM.
- Majkl-J:
- - image: 'New borg sprites: Raptor'
- - refactor: Moved most if not all bubber borg code into one modular folder
- Paxilmaniac:
- - rscadd: A whole host of new armors for protecting yourself from being turned into
- red mist by a psycho with a rifle are for sale at relatively low cost from Sol
- Defense in cargo!
- - image: Sprites for every piece of new armor done by yours truly.
- ReturnToZender:
- - rscadd: Mice waddle
- SkyratBot:
- - qol: psyker echolocation cooldown time has been reduced from 2 to 1.8 seconds
- - bugfix: psyker heads no longer render an overlay of not having eyes
- - bugfix: Sign Language action properly toggles between an active/inactive background
- again.
Jacquerel:
- rscadd: Agent IDs once more trick Beepsky into treating you more leniently.
- rscadd: Prisoner IDs make Beepsky treat you somewhat more suspiciously, as do
@@ -159,29 +104,6 @@
- balance: Attacking a cultist with a halo or a nuclear operative first instantly
makes THEM guilty, allowing further attacks.
- balance: More favor for converting someone to the honorbound rules
- - bugfix: Mod links are now disabled in the virtual realm.
- - bugfix: Fixed an issue with the offsets of ridden vehicles on tables, and another
- when buckled to a bed.
- - bugfix: crafting food or any other items that require reagents will not leave
- behind blank reagents. That and properly updates the holder those reagents are
- stored in
- The Sharkening:
- - balance: The brainwashing surgery disk is no longer obfuscated
-2023-12-04:
- BurgerBB:
- - balance: Nerfs Miasma
- - balance: Rebalances maintenance loot.
- - balance: Getting EMP'd now affects your suit sensors differently.
- Cursor, Delbert Grady:
- - rscadd: The Overlook- Err 'Twin'- Whatever the Space Hotel is called has had some
- minor additions.
- Cursour, dictated by the Joker (Jack Nicholson and Jared Leto versions) and Pogo.:
- - rscadd: One may now directly fax Clown Planet. Mime Planet too if you hate trees.
- HoodMilk:
- - rscdel: Removed the holiday restriction on red-colored Christmas clothing.
- Majkl-J:
- - sound: Subtler now has a sound cue
- - refactor: Hungry is no longer an item_quirk
2023-12-04:
Ghommie:
- rscadd: Added the daily (roundstart) message server key to the Chief Engineer's
@@ -201,59 +123,6 @@
This replaces the knockdown with a short slowdown, and also has the trade-off
of causing more leg damage.
- rscadd: Cats can now fall z-levels without sustaining damage.
- MrDerpi:
- - bugfix: "synth livers not emp-able\n/\U0001F191\n\n\
- "
- MrMelbert:
- - bugfix: smartfridges no longer show false overlays
- Nerev4r:
- - bugfix: Lopland Security has finally negotiated an order of blue tackle gloves
- with the FTU, abandoning the red NanoTrasen models.
- Odairu:
- - rscadd: Birthday Cakes are now able to be lit and emit light
- ReturnToZender:
- - rscdel: comments out the LustWish remote signaller
- - rscadd: QM permit sunglasses
- Rhials:
- - qol: Bar signs ordered from cargo will no longer be access-restricted.
- - spellcheck: Fixes a typo in the Factory Quartermaster outfit name.
- SarmentiCampbell:
- - rscadd: 'Added a new quirk : Dead Inside'
- SkyratBot:
- - bugfix: SecTech restocking units are now actually named SecTech restocking units,
- and not Generic restocking units.
- - admin: Removed the "Turn Target into MMI" right click context menu verb entirely,
- and instead added the same command as a VV dropdown on human mobs.
- - rscadd: Added the daily (roundstart) message server key to the Chief Engineer's
- memories.
- - rscadd: Added new roast dinners, able to be cut into smaller portions hopefully
- in time for the Christmas season.
- - rscadd: Instead of teaming up random people together, blood brothers will now
- start out with one player and let them convert a single other person over to
- blood brother using a flash.
- - rscadd: 'Festival Sect has 3 new rites: Cogitandi Fidis, Portable Song Tuning,
- and Illuminating Solo.'
- - balance: lowers threshold for triggering a final effect. Consult your Cogitandi
- Fidis for more information
- - bugfix: Some mapped-in gifts that were supposed to guarantee a certain gift weren't
- spawning that exact gift type, this has been patched to reflect the mapper's
- intent.
- - admin: The Player Panel should now contain the unique mob tag associated to a
- certain mob that a player might inhabit at one time, which is stored on their
- player details datum on their client (which is guaranteed to always exist).
- - admin: The "Old Names" details of a player is now visible in their own personal
- per-player player panel.
- - server: Minimum compile version has been bumped to 515. clients still support
- 514 but we're gonna start using 515 restricted features for serverside now.
- - bugfix: Fixed some oopsie whoopsie with elevation, trams and beds causing people
- to visually ascend or descend to heaven or hell.
- - bugfix: Blocking a tackler no longer causes things to go haywire and stun the
- tackler/the tackle victim.
Profakos:
- rscdel: Removes the slime's reagent holder. This will make them not slow down
from somehow imbibing morphine or frostoil.
@@ -265,8 +134,6 @@
- bugfix: reactions which are overheated should diminish all the way to 0
- code_imp: cleaned up code in `datam/equilibrium` in general. Slightly optimized
soup reaction code
- - refactor: medbots are now basic bots. please report any bugs
- - rscadd: medbots can wear hats!
Timberpoes:
- admin: Removed the "Turn Target into MMI" right click context menu verb entirely,
and instead added the same command as a VV dropdown on human mobs.
@@ -275,68 +142,6 @@
and increased burn damage. Clone damage dealt by the cosmic beam has been removed.
The star gazer now deals burn damage instead of clone damage.
- bugfix: The health of mobs combo'd by a cosmic blade will now update correctly.
- - rscadd: Added sprites for bone spears to match the other bone items.
- - rscdel: Removes the slime's reagent holder. This will make them not slow down
- from somehow imbibing morphine or frostoil.
- - spellcheck: Occurrences of "recieve" has been changed to "receive".
- - bugfix: Heretics can no longer cast all of their spells while in jaunt
- - sound: Added human laughter to felinids
- - balance: The Meat Hook will now "ground" you whenever you fire it out at someone.
- You get a very small immobilization every time you fire, which "upgrades" to
- a full immobilization whenever you actually hit an atom and start to drag it
- in.
- - bugfix: A chain should now show up as you drag in something with the meat hooks.
- - bugfix: Meat hooks should no longer play the "magical gun" suicide if you were
- to use it, but instead do their own unique thing.
- - bugfix: Digi legs work with the QM's jumpskirt
- - refactor: cats are now basic pets. please report any bugs.
- - rscadd: the cake cat and bread cat can now help the chef around in the kitchen
- Vekter:
- - rscadd: Added a new hostile variant of cats, "feral cats".
- - rscadd: Added a new traitor item, "feral cat grenades". For 5 TC, you too can
- throw a grenade at someone and make five cats maul them to death.
- - bugfix: Fixed damage ranging on feral cats
- - bugfix: Fixes hole in Birdshot hallway
- honkpocket:
- - rscadd: The 'fake announcement device' from the OPFOR selection has received a
- fully customizable upgrade.
- nevimer:
- - balance: vent pumps are unlimited again, as the forefathers intended.
-2023-12-05:
- SkyratBot:
- - bugfix: 'Janitors rejoice (or lament): Floors should now be dirty shift-start.
-
- / \:cl:'
- - rscadd: Heterochromatic, Signer, Spacer, and Voracious quirks are now properly
- accounted for in medical records.
- - bugfix: Rebirthing from headslug properly reapplys void adaptation
-2023-12-06:
- BurgerBB:
- - rscadd: Adds "Merged" and "Closed" stamps. They can be found in the research director's
- locker.
- Cursor on behalf of Jock. Co:
- - bugfix: Modern Glasses can be stomped on.
- Erol509:
- - rscadd: Tesla zaps now make power
- LT3:
- - code_imp: Announcement CSS is reverted to TG default
- Majkl-J:
- - rscadd: Christmas stuff for the SM!
- - image: SM christmas lights and hat
- - rscdel: Santa claus no longer makes claustrophobes die
- - bugfix: Lima now has an arrival shuttle console
- ReturnToZender:
- - rscadd: Prisoners can't spawn with razor claws
- - rscadd: The flavor text requirements now show when you are rejected due to not
- having enough
- SkyratBot:
- - balance: Deleting and reprogramming pipes/devices with RPD is now INSTANT!
- - rscadd: The NTSS Independence (Cruise Evac Shuttle) has received a makeover! Engineering
- crews are still working on it, but it is operable and available for those who
- have the money to rent it.
- - qol: Converting someone will now give a chat message.
- - bugfix: Blood brothers can no longer get other antagonists, I hope.
- - rscadd: adds propeller hats, rainbow bowties, and swirl lollipops
necromanceranne:
- bugfix: Blocking a tackler no longer causes things to go haywire and stun the
tackler/the tackle victim.
@@ -364,192 +169,6 @@
\ 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. -->"
- The Sharkening:
- - balance: Silver ID's no longer have infinite access. There are 5 access wildcards
- for basic IDs and 10 for silver IDs
- - balance: Agent ID cards have AA
- vorpal-void:
- - bugfix: yeah here we go, APC recharging, mission accomplished.
- - code_imp: power_cord.dm, whooping 4 lines of code.
-2023-12-07:
- BurgerBB:
- - bugfix: Fixes fire overlays. Possibly. Hopefully. Probably not.
- Chimpston, atlasle and aBlimpfox:
- - image: "added Cult Cove, Neon Flamingo and Slowdive bar signs\n/\U0001F191"
- Cursor.:
- - rscadd: Old Sol Police hat sprites are usable via Police Cap reskinning.
- Hatterhat:
- - bugfix: The Peacekeeper Equipment Vendor has been restored to upstream standard
- contents with adjustments where needed, meaning that energy holsters are available
- as a premium option.
- - bugfix: 'Code-side thing: the reskinned SecTech and reskinned SecDrobe are just
- renamed, now, and not using entirely redundant resupply packages.'
- HoodMilk:
- - rscadd: Changes the chemicals and traits found on xenobotany plants, to be more
- interesting.
- IgiariValkyr:
- - rscadd: Sol Defense has reclaimed selling rights in cargo!
- - balance: Sol Defense bullets cause wounds far less now.
- - balance: Sol Defense bullets now seem to have less powder in the casings and cause
- less damage.
- KannaLisvern:
- - bugfix: '*gaspshock being only limited to humans'
- - rscdel: removes a detective cabinet from blueshift
- - qol: puts an extra set of gear into the det locker on all maps
- LT3:
- - code_imp: Lighting brightness lowered and range increased reflecting new fixture
- positions
- Lutowski:
- - rscadd: You can now craft metal shelves with iron sheets.
- OrionTheFox:
- - qol: Wall Lockers can now be rebuilt! The wall mounts can be crafted the same
- as a default closet, with 2 iron in-hand.
- - image: resprites (almost) all Skyrat lockers, including wall-mounted ones! They
- should be much more in line with TG's sprites now.
- - bugfix: fixed several bugs with wall-mounted lockers, and formatting inconsistencies
- of modular lockers
- Plum-but-gayer:
- - rscadd: Overbearing authority figures rejoice! Holobadges are now available in
- the neck loadout slot and the Armadyne peacekeeper vendor, now in a pleasant
- Lopland blue.
- - bugfix: Detectives can now actually swipe their ID on their holobadges.
- ReturnToZender:
- - rscadd: Reverie to fax machine list
- SkyratBot:
- - rscdel: Stagger animation no longer fires longer than it should on dead bodies
- or on dead bodies period.
- - admin: Spawning in Nar'Sie will no longer automatically trigger the round-ender,
- you need to specifically start this chain of events through the new VV Dropdown
- Option "Begin Nar'Sie Roundender".
- - rscadd: Added a new modular bitrunning domain - Starfront Saloon.
- - balance: Psyker shuffle domain was made slightly easier and has been given more
- rewards.
- - bugfix: Medibots made from advanced medkits works again
- - bugfix: Medibots made from brute medkits have their bonus healing again
- - bugfix: Medibots can use robotic emotes again
- Tattle:
- - balance: you can no longer teleport into chasms
- The Sharkening:
- - rscadd: Readds the ability to buy metal and glass
- - rscdel: Removes the GMM from cargo due to infinite money.
- rarytech:
- - rscadd: Added digi variations for tactical Hawaiian outfits
- - bugfix: fixed digi blood-red pajamas
- theselfish:
- - spellcheck: You can now holo-display your coat. No idea what a Dislpay is.
- xXPawnStarrXx:
- - rscadd: Added new storages for tribals/greytiders.
- - rscadd: Added wooden bowls.
- - qol: made soups clean, for chefs.
-2023-12-08:
- GoldenAlpharex:
- - bugfix: The typing indicator has overcome its shyness and is now back to its usual
- form.
- KannaLisvern:
- - qol: Good Assistant Points punchcard now fits in wallets.
- Melbert:
- - qol: Replaces unused xeno weed extract item in abandoned crates with a random
- assortment of cannabis.
- Nerev4r:
- - rscadd: Hearthkin have discovered a new herbal remedy to clear the sinuses, and
- now enjoy bloodhound-level scent tracking as they did long ago.
- - rscadd: Hearthkin have discovered a population of grizzly bears on the ice moon,
- and have appropriately skinned some of them.
- OrionTheFox:
- - balance: removed all the unsecured gear on the ERT Ferry. Consider this a reminder
- that all ERTs are expected to be fully prepared before departing for the station.
- RatFromTheJungle:
- - bugfix: colorable maid's dress no longer has a hole in it
- SkyratBot:
- - bugfix: medbots now drop hats when tipped and drop their items when they explode
- - bugfix: fixed mutations holding onto refs after removal
- - bugfix: fixes timed dna injectors
- - rscadd: TGUI Stack elements can now be zebra-styled (alternating colors for contrast)
- - bugfix: Fix cult halo and eyes affecting deconverted cultists
- - image: resprited CTF ID Cards
- SomeRandomOwl and Iamgoofball:
- - bugfix: Hash Bricks and Dabs are no longer recursive
- honkpocket:
- - rscadd: Adds various hair ties, they hold up your hair.
- - rscadd: Adds a -8 negative quirk called narcolepsy
-2023-12-09:
- ATHATH:
- - bugfix: Spacemen can no longer use curses to cheat at Russian roulette by selectively
- blocking attempts to shoot themselves.
- - rscadd: A Russian revolver has been added to the contraband section of each Good
- Clean Fun vendor.
- KannaLisvern:
- - qol: Synthetics no longer have the same food prefs as humans
- SkyratBot:
- - balance: heretic robes now have wound armor
- - balance: heretic blades now have knife-level wound bonuses
- - bugfix: fixes punished sect giving you burden for stuff like changing species
- - bugfix: false walls icons will now display again
- - bugfix: Bolt action rifles no longer open their bolt when firing their last bullet.
- - bugfix: False anomaly alarms now work.
- - bugfix: canisters don't disappear when their colours are changed
- - code_imp: changed some vars into defines to save memory, removed unused/useless
- vars & added auto docs
- - code_imp: converted UI to typescript. moved global canister list to its appropriate
- folder
- - refactor: removed prototype canisters and optimized canisters as a whole.
- - bugfix: coffin cookies are no longer invisible during the holiday seasons
- - bugfix: Cryostylane and oxygen reaction now cools down temps. Other reactions
- with the `REACTION_HEAT_ARBITARY` flag also cools down temps correctly
- - bugfix: Eggs don't leave behind their shells when cracked into a soup pot. Cups
- end their attack chain early when dealing with specific items
- - bugfix: Being revived inside a legion now sets you free
- - bugfix: "in some rare cases gib() did infact not spawn gib\n/\U0001F191"
- - rscadd: Sprited and implemented a short lizard tail
- - rscadd: Added new modular Assault-Type domain "Abductor Ship"
- - rscadd: Added new simple mob abductor agents team
- - bugfix: Minor bug fixes and improvements to the garbage truck space ruins.
- - image: Claw hammer icon has been neatened up a little.
- itseasytosee:
- - rscadd: Sleeping carp/cqc users can now snap peoples necks by punching them in
- the head while they are in a kill grab.
- vinylspiders:
- - bugfix: updates the remaining skyrat uis in preparation for react
- - refactor: (Almost) all smoothed icons can now be edited in their pre cut forms
-2023-12-10:
- Melbert:
- - refactor: Refactored some methods of items interacting with other objects or mobs,
- such as surgery and health analzyers. Report if anything seems wrong
- SkyratBot:
- - refactor: cleanbots are refactored into basic bots. please report all bugs
- - bugfix: fixes cleanbots getting stuck sometimes while patrolling
- - rscadd: janitors get a new skillchip which allow them to communicate with cleanbots
- - bugfix: Pyrosium oxygen reaction now heats the holder and causes reactions inside
- it. Also correctly sets the holder temperature to 20 kelvin & causes reactions
- when first made
-2023-12-11:
- Hatterhat:
- - balance: Energy shoulder holsters can now fit the CIN plasma pistols and their
- associated batteries.
- Rhials, MrMelbert:
- - rscadd: The Tracker implant has had its teleport beacon functionality migrated
- to the new (cargo accessible) Beacon implant.
- - rscadd: Teleport Blocker security implant, that prevents the implantee from teleporting
- by any means. Purchasable from cargo.
- - rscadd: Security implants may now be harmlessly self-destructed at the Prisoner
- Management Console.
- - balance: The Tracker implant tracking radius has increased from 20 to 35 tiles.
- The Prisoner Management Console will track and display the area the implantee
- is in as well.
- - balance: The exile implant now prevents implantees from operating shuttle controls.
- - code_imp: Various code improvements and removal of unused vars in the Prisoner
- Management Console
- - code_imp: The HUD slots for chem/tracking implants have been converted to display
- any implant with the IMPLANT_TYPE_SECURITY flag and an associated sprite.
- - spellcheck: Modifies various implant pad readouts, removing false information
- and rewriting some sections.
- SkyratBot:
- - bugfix: Healing viruses now no longer self-cure for reasons they're not supposed
- to and do for those that they are.
- - rscadd: Slimepeople can now get wings from flight potions.
- - refactor: 'TGUI V5: The UI has had its entire engine replaced with React v18.2.
- This might cause obvious or laughably broken UIs in places you wouldn''t expect.
- Please report any issues you find to the repo!'
san7890:
- bugfix: 'Janitors rejoice (or lament): Floors should now be dirty shift-start.
@@ -726,18 +345,6 @@
object instead of you having to search the stat-panel for the "release obj"
verb. You can still use the verb but it's a lot nicer now. Aghosting will also
work now.
- - bugfix: fixed big rice pans getting worse with cooking.
- - qol: Add RMB hotkey and screentip UI to tracking beacons to toggle them on/off.
- - bugfix: 'The air_alarm_circuit to gets the environment from the proper turf.
-
- :cl:'
- honkpocket:
- - bugfix: Changes the main chemical of the Narcolepsy medicine from synaphydramine
- to modafinil
- vinylspiders:
- - bugfix: randomized spawned mobs will now have their species' random mutant colors
- and features applied properly
-2023-12-12:
timothymtorres:
- qol: Add RMB hotkey and screentip UI to tracking beacons to toggle them on/off.
2023-12-11:
@@ -755,29 +362,6 @@
surgery, BUT BEFORE the item's own interactions. As an example, this means using
a mesh on a mob will attempt to progress surgery first, then attempt to fix
any burn wounds, then heal burn damage.
- Rhials:
- - bugfix: Sunset Saloon virtual domain should no longer sometimes spawn with holes
- in the floor.
- SkyratBot:
- - bugfix: 'DNA Sequencer UI: You should be able to cycle in reverse with RMB again.'
- - bugfix: Goldgrubs no longer block death bolts, even while alive.
- - bugfix: fixes some AI runtimes that were caused by the pawn becoming null
- - image: New cleanbot sprites
- - image: New bucket sprites
- - rscdel: All buckets and cleanbots are back to being blue
-2023-12-13:
- LT3, Majkl-J:
- - image: SM now has holiday lights
- - image: You can now put a santa hat on the SM
- LovliestPlant:
- - qol: '[Void Raptor] [Blueshift] Adds door timers to permabrig isolation cells,
- and directions for using the genpop system near prisoner lockers.'
- - qol: '[Void Raptor] [Blueshift] Adds translator glove MOD modules to the stack
- of "accessibility" modules found in some storage rooms.'
- - qol: '[Blueshift] Adds stacks of "accessibility" MOD modules to Engineering, Security,
- and Medbay.'
- - bugfix: '[Blueshift] The forgotten exosuit fabricator will no longer attempt to
- output directly into the wall.'
OrionTheFox:
- image: The Head of Security's "Sturdy Shako" hat now uses the same gold color
as his other hat
@@ -785,20 +369,6 @@
- qol: Blackout drunkard personalities will now recieve a "you are about to sober
up" warning at the 60/40/20 second mark, instead of repeatedly at the 50 second
mark.
- Ryll/Shaps:
- - bugfix: You can no longer stack more than one applications of a burn wound at
- once
- SkyratBot:
- - admin: Updates the admin smite "Ocky icky phobia" with some new words
- - bugfix: Painting should be working again.
- - rscadd: Added subversive pins to the black market uplink which make security hate
- you
- - rscadd: The detective's spy cam can now be conveniently pinned onto people in
- the same manner as medals
- - bugfix: You should be able to edit your character using the feature buttons again.
- - bugfix: fixed outdated item description
- - bugfix: You should be able to move stamps on paper again.
- - bugfix: climbing or being shoved into a glass table won't cause elevation issues.
- bugfix: Sunset Saloon virtual domain should no longer sometimes spawn with holes
in the floor.
SyncIt21:
@@ -818,45 +388,6 @@
- bugfix: cleanbots can clean floors directly underneath them and prioritize floors
nearest to them
- bugfix: medbots drop empty medkits now
- - bugfix: Bird Phobia now triggers on geese
- - bugfix: Dropdowns should show what you've selected again.
- - bugfix: no runtime when unwrenching Atmos components
- - spellcheck: fixed typo in attack chain define comment
- - image: The Head of Security's "Sturdy Shako" hat now uses the same gold color
- as his other hat
- dis-integrates-the-integration-tests:
- - qol: Laser pointers are now more accessible, being now available in the loadout
- and in the Good Clean Fun vendor.
- theselfish:
- - image: The Snouted Clown mask is now the same colour scheme as the rest of the
- species clown masks. A shared symbol of unity in Clown Brotherhood.
- vinylspiders:
- - bugfix: Loadout menu will no longer crash when switching tabs
- - bugfix: fixes reinforced walls getting reverted back to the tg icon
- whataboutism-alos:
- - code_imp: Skyrat sprite override updated to reflect upstream lizard tail
- - rscadd: Adds two-tone version of short lizard tail
-2023-12-14:
- BurgerBB:
- - balance: Bulletproof armor and helmets can no longer be found in maintenance.
- Exceptions apply to the justice/siren helmet.
- - balance: Removes the 100% reflect energy chance from Marked One armor and the
- 25% block chance from the Marked One sword.
- Majkl-J:
- - rscadd: Sylveon bodyparts
- - image: Sylveon bodypart sprites. Credit to Splurtstation
- - bugfix: The roundstart SM now also gets smissmass lights
- SkyratBot:
- - bugfix: Cult chat, PDAs, succumbing, etc shouldn't blue screen anymore.
- - bugfix: Crabs will properly only target Tiny creatures
- - qol: For admins, in the "Spawn Atom" window where you pick atoms to spawn-by-type,
- anything that is a subtype of `/mob/living/basic` should now be replaced with
- the `BASIC` tag instead (like with carbons, reagent containers, turfs, etc.).
- So, instead of having to scroll through and try and figure out what that weird
- subtype of Poly is, it should now be easier to read in that smaller screen.
- - server: The TGS -> Discord Relay Warning that detects if a cliented mob has a
- null loc should now be plaintext instead of being fully screwed up with useless
- codestuffs.
Buyrcsp2:
- bugfix: Bird Phobia now triggers on geese
Ghommie:
@@ -888,10 +419,6 @@
of them.
- balance: Morgue trays will now properly display if someone stored within them
is revivable and make periodic beeps every minute.
- - qol: The asteroid on Tramstation can now have areas expanded into or created within.
- theselfish:
- - rscadd: Neko is now the default language of Felinids again.
- - rscadd: Pirate has been restored to be Piratespeak.
jlsnow301:
- bugfix: You should be able to edit your character using the feature buttons again.
- bugfix: You should be able to move stamps on paper again.
@@ -923,23 +450,6 @@
ATHATH:
- rscadd: If your bitrunning avatar somehow acquires and consumes a red pill, they
will be disconnected from the Matrix.
- Jonnatonne:
- - rscadd: Adds new palmated antler horn type.
- SkyratBot:
- - bugfix: Tram controls should work again.
- - balance: Light Footed now makes stepping on glass Knockdown instead of Paralyze
- - code_imp: Fixes some single letter variable usage in caltrop.dm
- - bugfix: The clown car once again obtains the accesses of kidnapped crew within
- the car. Supermatter crystals beware!
- - bugfix: Advanced Plastic Surgery is now unavailable shiftstart
- - rscadd: Adds a new discount experiment for unlocking the combat exosuit nodes
- - complete it by scanning two exosuits with equipment in the left and right
- hand slots. This replaces the prior discount experiment about destroying exosuits.
- - bugfix: Chemicals are now no longer less effective at curing advanced viruses
- than they used to be.
- - bugfix: items that are rejected by the mat container will display the chat message
- saying that.
- - bugfix: Away lathes can now print robot navigational beacons
Higgin:
- bugfix: Chemicals are now no longer less effective at curing advanced viruses
than they used to be.
@@ -966,32 +476,6 @@
- refactor: Machines like autolathe, techfab etc now display summed up material
inserts to chats rather than each item individually. Also, will skip items &
its contents if it cannot be processed thus saving time
- - bugfix: mobs that have the `TRAIT_PERMANENTLY_ONFIRE` trait cannot be extinguished
- by anything.
- - bugfix: stuff thrown into lava should not runtime. it currently does not but if
- there is a slight chance it does not happen
- - bugfix: Fix double-clicking in various UIs
- - bugfix: fixes zombie tumor not reviving
-2023-12-16:
- Arturlang:
- - code_imp: /obj/machinery/rbmk2_sniffer/process() no longer checks private variable
- atom_jntegrity, instead it uses the function get_integrity. No functional changes
- except removing the error this caused.
- Deek-Za:
- - qol: Red sec options added to existing reskinnable security equipment.
- LT3:
- - code_imp: Loading and title splash are now modularized
- Majkl-J:
- - qol: 'Kilo: Layer adaptors in atmos'
- - balance: Disallows siphoning credits outside of station
- ReturnToZender, LT3, Waterpig, Nevimer:
- - rscadd: Character directory from SPLURT, originally, I think?
- ReturnToZender, Shadow_Quill:
- - rscadd: Adjusted statpanel with game time, active and observing players
- SkyratBot:
- - qol: Anesthetics tank description now mentions a rare quirk of anesthetic.
- - bugfix: fixes a bug which was causing certain mutations to only get partially
- removed
Time-Green:
- bugfix: fixes zombie tumor not reviving
jlsnow301:
@@ -1034,40 +518,6 @@
- bugfix: Fixed the weird spacing on buttons.
- bugfix: Confirmation buttons should be usable again. Bitrunning domains, command
reports, etc.
- - balance: Emagged and Hacked APCs now occasionally flicker a blue effect, and the
- effect is not visible with cameras.
- - bugfix: Admin interview panel should feel snappier.
- - balance: '"Scarves" and "Wallets!" are now neutral traits.'
- - balance: Delamination variants no longer change once the explosion point has been
- reached.
- - spellcheck: Fixed a minor grammar mistake in the RD's job description and the
- encrypted cache crate.
- - bugfix: Newscaster shouldn't bluescreen anymore.
- projectkepler-ru:
- - balance: Removes His Grace from the uplink
- thegrb93:
- - bugfix: Fix vox tails being unable to wag
- - bugfix: fixed lizard spine sprites disappearing when wagging
- theselfish:
- - rscadd: Clown slots are re-openable by royal decree. The incident between Nanotrasen
- and King Honkington has been resolved.
-2023-12-17:
- Paxilmaniac:
- - rscdel: Every gun from the gunsgalore module has been deleted, long live the king
- - qol: The lanca and miecz can be suppressed.
- - qol: Suppressors no longer increase the weight class of a gun they're attached
- to.
- - image: New sprites for lanca and miecz suppressors done by me.
- SkyratBot:
- - bugfix: 'Bitrunners can now access the Northstar ORM
-
- :cl:'
- - qol: Added a confirmation prompt to breaking your vow of silence.
- - balance: Mimes can no longer repair the vow of silence once broken.
- - balance: The negative moodlet from breaking your vow of silence is now lighter,
- and no longer permanent.
- - balance: Mimes are back to being able to write while under a vow of silence.
- - bugfix: character setup screen no longer runtimes with all_nighter quirk
tralezab:
- qol: Anesthetics tank description now mentions a rare quirk of anesthetic.
2023-12-17:
@@ -1101,94 +551,6 @@
- bugfix: Motorized wheelchairs will drop their power cell when destroyed or deconstructed.
- qol: Power cells are now inserted into motorized wheelchairs as part of the crafting
recipe, instead of as an extra step afterwards.
- - bugfix: Fixed a rare false positive with morgue tray alarms.
- - bugfix: fixed the oversight with martian food complexity.
- - balance: Exosuit Materials 1 now only requires one mech.
- - qol: "Exosuit Materials 1 is much more lenient on the percentage it requires.\n\
- /\U0001F191"
- Thlumyn:
- - bugfix: Contractor PDAs do not bluescreen any more.
- yooriss:
- - bugfix: Loadout MODlink scryers now come with the NT frequency by default, allowing
- them to actually be used without requiring complicated setup. Try them out again
- and holocall all your friends!
-2023-12-18:
- KannaLisvern:
- - qol: You can now LOOC while in crit/unconscious.
- Melbert:
- - bugfix: Fixes Laughter demons deleting the bodies of their friends.
- - bugfix: Fixes PAI health scan software
- Paxilmaniac:
- - qol: deployable thermomachines no longer deploy in the direction you're facing,
- meaning the pipe connection will be visually in the right location
- SkyratBot:
- - rscadd: Adds a new shuttle event, where space shuttles can experience minor turbulance.
- Keep your belt on while the appropriate cabin light is lit.
- - bugfix: 'Interview UI should now be more obvious how it works: You must press
- "enter" or save the answer.'
- - bugfix: Fixed runtime regarding thanking non-existent clown car drivers
- - bugfix: ED-209s can no longer be crafted with most instances of helmet, you need
- security ones just like Beepsky.
- - code_imp: All nighters can now drink energy drinks to cope with their lack of
- sleep.
- - balance: Roundstart AIs are now made of positronic cubes, rather than brains inside
- MMIs
- - bugfix: Reviver no longer attempts to revive impossible to defib mobs.
- - refactor: Cleaned up unnecessary variables and re-arraigned code to have it perform
- altogether in one tick. Additionally added a proper cooldown to revivers.
- - balance: Fitness level decreases the time it takes to firemany carry someone.
- Fitness level determines how much of a positive mood the workout grants. Working
- out is now more difficult and requires more nutrition.
- - balance: Exercise no longer triggers double metabolism.
- - bugfix: Aivime, Lentslurri, Eigenswap and Libitoil can now be cooked again.
- - balance: Aivime now can stack blur effects for the soapiest game ever.
- - spellcheck: Lenturri description become more actual
- - bugfix: coffee cartridge racks start with a coffee cartridge in them
- - bugfix: Fire alarms no longer cause pitch blackness, instead creating a dark but
- not black red light.
- - image: 'New Security clothing: Security High-Vis jacket!'
- - bugfix: fixed ghost role descriptions on NTTS Independence
- - bugfix: Fix search categories in log viewer
- - rscadd: If you throw a bee at someone it will hit them sting-first and inject
- that bee's reagent
- - balance: Thick clothing can now protect you from the venom of bees, snakes, frogs,
- and (small) spiders
- Tattle:
- - admin: obsession targets are logged
- The-Sun-In-Splendour:
- - rscadd: you can now kill people with a rock
- - balance: Horror ling cannot ventcrawl anymore
- Thlumyn:
- - bugfix: opfor panel works again
- YakumoChen:
- - image: cameras are back to the classic sprites from tg
- goobliner:
- - rscadd: Adds a new verb in the IC tab, "toggle reflexes", which lets your toggle
- being able to be head pat, nose bopped or hugged. Works for both people AND
- robots.
- jjpark-kb:
- - rscadd: added the plant tank-- allows simple farm growing and production of nitrogen
- and oxygen
- - bugfix: simple farms will now destroy themselves if their parent atom is destroyed
- projectkepler-ru:
- - balance: Readds the traitor bluespace launchpad.
- yooriss:
- - bugfix: Laser pointers now show appropriate messaging to nearby players when someone
- is using them for both benign and hostile actions.
- - bugfix: Due to budget cuts and petitioning from protesting silicons, the FTU has
- replaced all full-power laser pointers available in crew loadouts and Good Clean
- Fun vendors with limited promotional variants that can't have their diodes repaired
- or upgraded on the field. Joint litigation by the NT research and service departments
- has allowed the RD and lawyers to keep their original ones, however.
- - bugfix: Extensive lobbying by the Felinid Rights Association has forced the FTU
- to replace all laser pointer diodes with special low 'radiationyan' variants
- that no longer trigger felinids to compulsively leap. They're still super distracting
- though...
- yorii:
- - rscadd: Added Plant DNA Manipulator circuit board to techweb node.
-2023-12-19:
- GreytideSkye:
- - bugfix: AI Announcement Help Is Now Not A Malfunction For The Not Black Mesa VOX
tralezab:
- qol: Added a confirmation prompt to breaking your vow of silence.
- balance: Mimes can no longer repair the vow of silence once broken.
@@ -1274,20 +636,6 @@
tendril again.
- bugfix: Ashwalker tendrils no longer break hooded suits and modsuits.
- bugfix: Ashwalkers can sacrifice silicons, it wont give anything though.
- SkyratBot:
- - qol: Assistants with <10h of playtime are now "Interns"
- - admin: Delete painting button is once again visible.
- - bugfix: Emojipedia shouldn't bluescreen anymore.
- - bugfix: monkeys will no longer cause other monkeys to get angry at the mobs they
- just poofed by attacking
- - rscadd: Added orange hardhats, hazard vests, and pocket protectors to the cargo
- drobe
- - bugfix: Fixed pressing Esc not unbinding keys in preferences.
- - rscadd: Map Votes are now weighted random.
- - rscadd: Custom Votes can now take advantage of Weighted Random winner selection
- - rscdel: Removed Herobrine from the game
- - bugfix: The bitrunner domain completion screen alert is once again properly clickable
- - rscadd: Added 2 pocket quick equip keybinds
SyncIt21:
- bugfix: crafting now transfers reagents from ingredients to final product making
previously inedible foods (toasted seeds, kasei dango & snow cones) edible.
@@ -1381,37 +729,8 @@
- bugfix: '''A whole bunch of spiders in a SWAT suit'' to ''A whole bunch of spiders
in a MODsuit'''
2023-12-24:
- A.C.M.O.:
- - bugfix: Fixed Personal AI cards, allowing them to wake up from sleep.
BurgerBB:
- balance: Miasma is now filtered through gas mask filters, at medium strength.
- - qol: Reduces the frequency of miasma notifications/coughing.
- ChakatStormCloud:
- - bugfix: Synths now properly regenerate blood volume with oil
- GreytideSkye:
- - refactor: LustWish interns, fed up with 5e Grappling Rules, explicitly clarified
- what is a restraint and what is a structure.
- Jolly:
- - image: Colored labcoats have been GAGSed! Please report any weird oddities on
- Github.
- - bugfix: The coroners lab coat is no longer offset by one pixel.
- LemonInTheDark, Donglesplonge:
- - image: Redoes fov "mask" sprites. They're clean, have a very pleasant dithering
- effect, and look real fuckin good!
- - rscdel: Changed FOV, it no longer hides mobs, instead it blurs the hidden area,
- and makes it a bit darker/oversaturated
- ReturnToZender:
- - bugfix: job estimation actually works again
- - bugfix: Runtime on obscurity examine prefs when the mob in question lacks a client
- ReturnToZender, The Sharkening:
- - rscadd: Department ordered SolFed guns
- - rscadd: Sol-Fed Firearms now require a weapons permit to order
- - bugfix: Adjusted Sol weapon balance to be more fair
- SkyratBot:
- - bugfix: the boozeomat ui will stop duplicating space beer bottles
- - refactor: refactored vending machine backend to have unique keys for their data
- structures. should fix bugs related to items that happen to have the same name.
- - balance: Ai's using the mech domination ability can now eject from the mech
Deadgebert:
- qol: Head of Security beret added to their garmet bag
- qol: Head of Security bowman added to their locker
@@ -1420,80 +739,6 @@
and mechs with a cell with no max charge won't runtime.
- refactor: Gives hyposprays a var to check if they're fully used up rather than
setting total_volume to 0.
- - refactor: Ghost roles now offer ghosts a clickable poll button. Ghosts can select
- a role, deselect it, alt-click it for "Never For This Round", can cancel "Never",
- can see the countdown, and can see how many other people are signed up for the
- role poll.
- - bugfix: AI voice changer UI should show defaults properly
- - bugfix: NTOS Software Hub should focus on the input immediately now
- - bugfix: Ore container UI should autofocus on the search bar now
- - bugfix: Vend-a-tray registration text should display as intended
- - bugfix: Fixed integrated circuit UI breaking.
- - bugfix: Camera circuits actually print pictures again!
- - qol: Camera circuits can now take pictures while on a carbon, whether held, hung
- around the neck, or sneakily hidden in either pocket. When held they try to
- deposit their pictures into the holder's hands if possible.
- - bugfix: Camera circuits should now actually use the camera's x axis picture size,
- rather than using the camera's y axis picture size setting for both axis.
- - spellcheck: changes mutiline text to multiline text in vv
- - rscadd: Canisters now have wires! You can pulse wires to do various canister functions
- like opening/closing the valve. Make sure it has a cell though.
- - rscadd: You can rig assembly combos (igniter-timer, prox-signaler, etc.) onto
- canisters
- - qol: Canisters now have screentips
- StrangeWeirdKitten:
- - config: The headshot is no longer vetted or donor locked
- - bugfix: Shadekin is fixed
- vinylspiders:
- - qol: loadout menu has a search function and is zebra-styled for readability.
- - code_imp: improved performance of the loadout menu
- - bugfix: removed nonfunctional tutorial button
- xXPawnStarrXx:
- - image: Made Skyrat Christmas clothes GAGS compatable.
-2023-12-25:
- Gandalf2k15:
- - rscadd: PDAs with a dead power cell are now limited to using their Messenger app.
- - bugfix: Microwaves now stop charging PDAs if the cell was removed mid-charge.
- - bugfix: Microwaves can now charge laptops.
- - bugfix: 'PDA Flashlights can''t be turned on while the PDA is dead. fix: You can
- now hold a laptop up to a camera (if it has a notekeeper app installed) like
- PDAs already could.'
- Jacquerel and Fikou:
- - qol: If the station rolls the "Cargo Gorilla" station trait. you will be able
- to sign up for the role from the game lobby.
- - qol: If nobody signs up to be the Cargo Gorilla then you can select it from the
- Late Join menu and arrive on the arrival shuttle.
- - bugfix: The Cargo Gorilla will actually spawn.
- KannaLisvern:
- - qol: Removed Bluespace Crystals and Diamonds from medical emergency bed's recipe.
- LT3:
- - qol: TGUI will now wait longer trying to reconnect to a new round
- Rhials:
- - qol: Obsessed crewmembers are now displayed in the orbit panel.
- - qol: The Paradox Clone orbit menu tab is now white. Neat!
- SkyratBot:
- - bugfix: Fixed a bug that would give you the chat message "/datum/element/damage_threshold
- looks unharmed!"
- - bugfix: bridge assistant no longer passes some head of staff checks
- - qol: if you steal a command member's liver, you can now sabre better!
- - qol: NTNet Downloader now has a search bar, and programs are now better sorted.
- - balance: Cyborg lover has been replaced with Transhumanist. Transhumanists start
- with a robotic limb and get mood buffs by being near to silicon-based lifeforms.
- However, they get mood debuffs by being near organics, so there is a tradeoff
- to taking this quirk. The cost for this quirk has been reduced from 2 to 0.
- - bugfix: lab coats no longer have directional sprites when thrown
- - bugfix: Cut down a significant amount of time that caused the start of rounds
- to lag.
- - rscadd: Bridge Assistant job accessible from a station trait.
- - rscadd: Infiltrators (Latejoin/Midround traitors) can now buy and use Contract
- kits again.
- - rscdel: Contractor baton can now only be purchased once.
- - rscadd: The Spectre-Meter modular computer app. A little, amatuerishly coded app
- that, as the name implies, scan an area for spectral presence. It can be found
- amongst other apps in maintenance computer disks.
- - rscadd: An easier, lazier version of the Arcade app, also found in maintenance.
- - rscadd: Black market computer disks, which contains programs not readily available
- to the average assistant.
KannaLisvern:
- qol: Removed Bluespace Crystals and Diamonds from medical emergency bed's recipe.
Rex9001:
@@ -1559,10 +804,6 @@
- bugfix: NTOS Software Hub should focus on the input immediately now
- bugfix: Ore container UI should autofocus on the search bar now
- bugfix: Vend-a-tray registration text should display as intended
- - qol: Wendigo Cave ruin gets an aesthetic refresh
- - bugfix: Wendigos (Wendigi?) no longer attack corpses
- - bugfix: fixes a hard del with thrown items
- - bugfix: Fixed integrated circuit UI breaking.
2023-12-26:
13spacemen:
- rscadd: Canisters now have wires! You can pulse wires to do various canister functions
@@ -1602,20 +843,6 @@
ui tracking code. Added auto doc for everything.
- refactor: removed chem heater tutorial help button & its related reward, chem
heater code has been optimized as a whole.
- Thlumyn:
- - rscadd: Added and moved some areas in the ghost cafe.
- - rscadd: Added an icewalker section to the ghost cafe.
- - rscadd: Added an ashwalker section to the ghost cafe.
- honkpocket:
- - balance: Blueshift's vault, armoury, AI upload and prison are a little more antag
- friendly!
- jjpark-kb:
- - rscadd: added the crusher to mining borgs
- - rscadd: added a cursed ashen necklace to loadout (allows you to understand and
- speak to ashwalkers)
- - rscadd: icecats(?) can now respawn, similarly to ashwalkers
- zeroisthebiggay:
- - rscadd: icewalkers can be digitigrade
- bugfix: plumbing rcd ui no longer has any graphical glitches
- bugfix: mat container displays correct number of sheets inserted for alloy materials.
- bugfix: remote materials now properly respect the `MATCONTAINER_NO_INSERT` flag.
@@ -1631,27 +858,6 @@
Melbert:
- bugfix: Fixed some occasions in which heartbeat SFX will continue on revival for
longer than expected
- Ryll/Shaps:
- - balance: Yawns are less likely to propagate
- SkyratBot:
- - bugfix: NTOS Messenger should search as you type now
- - bugfix: Fixed the surgery menu spamming chat messages when on the eyes section
- of a player with no eyes.
- - rscadd: Adds a brown suit jacket to the detective's vendor
- - image: 'Adds a new sprite for the a brown detective suit jacket
-
- :cl:'
- jjpark-kb:
- - rscadd: added embershroom, polyporeshroom, watermelon, and grass seeds to icewalker
- seed storage
- - bugfix: modular computers won't runtime while closing/minimizing programs
- - bugfix: bokkens have visual block effects now
- - balance: forging is unleashed-- everyone can imbue, use whatever materials/reagents,
- and it will no longer break
-2023-12-28:
- SkyratBot:
- - bugfix: mercury & lithium will no longer make you randomly move outside of cryotubes
- or in ground less turfs (space, water, lava etc)
Mothblocks:
- bugfix: Fixed the surgery menu spamming chat messages when on the eyes section
of a player with no eyes.
@@ -1679,22 +885,6 @@
Vorpal Scythe
- admin: Adds logging for the death knell, both when starts and when it is completed
successfully.
- - qol: Add UI screentips to spraycans
- - rscadd: basic bots can now display their paths on huds
- - bugfix: medbots can research healing again
-2023-12-29:
- SkyratBot:
- - bugfix: Fixed a lot of missing/broken images, such as emojis, language icons,
- commendation hearts, icons in R&D menu, etc.
- - bugfix: Fixed "was shocked by /datum/component/energized" message.
- - rscdel: Removes the wires from canisters. It's a cool idea, but cheap controlled
- maxcaps are bad actually
- - refactor: Photo albums and photo frames are now more resilient to data loss, especially
- when a server crashes.
- - spellcheck: changes some let's to lets
- - bugfix: Off station ORM's can redeem points again.
- - rscadd: Add 50% graffiti speed boost to tagger quirk
- - bugfix: Fix time duration of large graffiti not applying properly
2023-12-29:
Diamond-74:
- bugfix: ai can now tell if it is in a do_after for resisting and will not interrupt
@@ -1718,24 +908,6 @@
- bugfix: instant and normal reactions now get triggered more often so for e.g.
more plastic sheets from polymer reactions or more reactions occur when there
are multiple reagents present
- - bugfix: Dear mappers, the light debugger tool no longer deletes dragged wall lights
- - bugfix: NTOS Messenger should clear on enter now
- - bugfix: ai can now tell if it is in a do_after for resisting and will not interrupt
- it. monkeys also now don't freeze up when aggressively grabbed and will resist
- out of those and cuffs.
-2023-12-30:
- Ghommie, 13spacemen:
- - bugfix: Signing or removing your candidature from ghost roles now properly updates
- the screen button for it.
- ReturnToZender:
- - bugfix: JSX files, when edited, cause TGUI to recompile on build
- SkyratBot:
- - bugfix: reduces lag in the tgui textarea input boxes
- - rscadd: Added a "postal workers strike" negative station trait. In the case of
- holidays and sunday though, it'll be a "postal system overtime" instead.
- - bugfix: Poll alert buttons candidate number should be more responsive
- Useroth:
- - rscadd: Added a config entry for bypassing the veteran locks on jobs and quirks
- bugfix: Off station ORM's can redeem points again.
jlsnow301:
- bugfix: NTOS Messenger should clear on enter now
@@ -1766,13 +938,6 @@
- bugfix: Atmospherics machinery will now share air from nodes after being rotated
and reconnected to pipenet.
2023-12-31:
- Echomori:
- - bugfix: trying to move up or down while controlling an advanced camera console
- now properly moves the camera up or down, not your body
- LT3:
- - bugfix: Fixed BYOND membership status being available to non-BYOND members
- Melbert:
- - bugfix: Lizards now show a proper description in the magic mirror
13spacemen:
- bugfix: Dimensional anomlies converting airlocks preserves the old name
Echomori:
@@ -1787,21 +952,11 @@
- sound: added *gaspshock emote sound effect to felinids
Rhials:
- code_imp: Unholy water no longer calls parent twice in on_mob_life().
- SkyratBot:
- - bugfix: Dimensional anomlies converting airlocks preserves the old name
- - bugfix: The transhumanist quirk now should work as intended.
SyncIt21:
- bugfix: chem heater now shows the new value of its buffer dispense volume immediately
when it gets changed.
- bugfix: debug chem synthesizer now shows the new values of amount & purity immediately
when it gets changed.
- - bugfix: Bot launchpads can deploy cleanbots and medibots again.
- - spellcheck: Clarified the message when failling to recall a bot.
- - bugfix: Fixes borg polymorph
- - qol: makes modal list uis autofocus
- - rscadd: 69(roughly?) new vox phrases
- - bugfix: Holodeck monkeys are properly cleaned up now
- - bugfix: Holodeck monkeys have organs now
Time-Green:
- bugfix: Fixes borg polymorph
- bugfix: Holodeck monkeys are properly cleaned up now
@@ -1812,7 +967,5 @@
undeletable spawner object
- code_imp: adds a warning to the stack trace when something tries to forceMove()
a qdeleted spawner
- softcerv:
- - bugfix: fixes the NIF settings menu
- bugfix: fixes textarea input boxes not updating on prop change (such as changing
tabs)
diff --git a/html/changelogs/archive/2024-01.yml b/html/changelogs/archive/2024-01.yml
index 2944cfd1420..6e71473c598 100644
--- a/html/changelogs/archive/2024-01.yml
+++ b/html/changelogs/archive/2024-01.yml
@@ -1,14 +1,4 @@
2024-01-01:
- A.C.M.O.:
- - bugfix: Fixed the Automatic Robotic Factory, making its cooldown timers visible
- to ghosts.
- - bugfix: Fixed the Automatic Robotic Factory to stop processing when it breaks
- or loses power.
- - balance: Balanced the Automatic Robotic Factory by adding a 60 second cooldown
- for spawning cyborgs.
- GoldenAlpharex:
- - bugfix: Vending machines now display the proper color customization options and
- item quantities again!
13spacemen:
- rscadd: Atmos Holofan projectors can be right-clicked inhand to make their holograms
more transparent
@@ -21,69 +11,6 @@
same system dimensional anomalies use. That means the colossus crystal now has
access to some dimensional themes (bamboo, plasma, glass) and the dimensional
anomaly now has access to some colossus themes (jungle, alien).
- Nova Sector:
- - qol: The names and descriptions of every paxilmaniac weapon have been improved
- to be shorter (names) and mention at least what bullet the weapon fires (description)
- - qol: Every weapon with an extended description has a hint in its normal examine
- telling you that you can look further to get more info on the weapon
- - code_imp: Two instances of now-deleted weapons paths (which i found out about
- through someone getting one in a christmas tree) existing due to manufacturer
- examines of all things have been cleaned up, players wont notice this one i
- think
- - rscadd: 'New quirk for those who hate their appendix: Appendicitis Survivor! A
- positive (-2) quirk.'
- - bugfix: fixed the confetti loaded shotgun shells
- - rscadd: Re-Adds Cat Scream to the list of available screams to choose in character
- creation
- - bugfix: clockcult slab now lets you change tabs once again
- - bugfix: colonial cloaks and imperial police cloaks can now carry suit storage
- items when worn in the suit slot.
- - image: modified many sprites for Vox Primalis, they will have a broader wardrobe
- now
- - rscadd: Chitter emote has a different sound effect, unless you're a moth
- - rscadd: Nanotrasen's Fashion Department released some new masquerade masks, available
- in single or split colors, with an optional feather! They can be found in every
- AutoDrobe, and they were even approved to be brought from home!
- - image: Said masquerade masks are available for all head shapes, whether it be
- the standard, the snouted, the Teshari, the Vox and even the Vox Primalis!
- - bugfix: NIFsoft settings panel now works once again
- SkyratBot:
- - qol: added screentips to the janicart (pimpin' ride)
- - bugfix: fixed fire extinguisher cabinets not appearing opened after removing the
- fire extinguisher from them
- - bugfix: Dropdowns and pop-up menus have been rewritten. This should fix an issue
- where dropdown text was accidentally scrolling if hovered. Please report any
- issues on the repo
- - bugfix: Cyborgs do not deathgasp twice when dying anymore
- - refactor: hygeinebots are now basic bots. please report all the bugs
- - bugfix: fixes hygenebots not being able to patrol
- - rscadd: hygeinebots can now be controlled by Players
- - bugfix: The sustenance vendor in perma actually serves food now
- - bugfix: fixes textarea input boxes not updating on prop change (such as changing
- tabs)
- - rscadd: Atmos Holofan projectors can be right-clicked inhand to make their holograms
- more transparent
- Useroth:
- - rscadd: Added kilostation and its automapper templates.
-2024-01-02:
- Iamgoofball:
- - bugfix: Re-enables the Detective's Replacement Revolver(ID-locked) Goodie Crate
- being purchasable since all NT guns are being removed from imports and the Detective's
- revolver is job gear that needs to be able to be replaced by Cargo
- SkyratBot:
- - image: resprited the Pirate/Sailor costumes, the pirate jacket, and the pirate
- spacesuit
- - bugfix: Protolathe input should feel more responsive.
- - qol: The "Explosive Planted" alert for C4 actually shows the C4
- - bugfix: Fixed footstep sounds.
- - bugfix: Having an inorganic chest/legs no longer makes you drop your ID, belt
- or pocketed stuff upon losing your jumpsuit
- - qol: Toggling an armour booster module on a MODsuit now gives a balloon alert
- making the tradeoffs more clear.
- - qol: Gas analyzer can scan adjacent turfs. No more roasting yourself just to scan
- your burn mix.
- - rscadd: Added new lizard variants of existing foods for equality of edibility.
- - qol: made pickle jars reusable and vinegar craftable.
Time-Green:
- rscadd: Adds a geared assistant station trait! Spawn with a skateboard, toolbelt
or in your favorite bee suit!
@@ -126,24 +53,6 @@
for endothermic reactions(no more 99.99 but 100 units).
- bugfix: chem heater now applies heat per reaction step and sends updates to UI
more frequently
- - bugfix: slamming through a glass table while previously on a table no longer gives
- you a negative offset.
- - rscadd: A new heretic path opens up! Gaze up at the great sky for the path of
- the moon opens and the lie shall be slain in pursuit of ultimate truth!
- - bugfix: Fixes the syndicate delusion not working
-2024-01-03:
- Lutowski:
- - rscadd: Sunflower crown, poppy crown, lily crown and floral garland added to loadout.
- - rscadd: Black Gas Mask added to loadout.
- SkyratBot:
- - bugfix: turbine now shuts itself off when the room apc loses power or if it gets
- damaged. Also uses a small amount of power for operation of internal electronics,
- the green light & other stuff
- - bugfix: No more runtime in turbine computer when parts are not fully connected
- - qol: adds screentips & examines for turbine
- - code_imp: removed unused vars, auto doc procs and cleans up some code in turbine
- - image: Improved sprites for sailor school uniform
- - bugfix: Fixed integrated circuit speech logging
YakumoChen:
- qol: Toggling an armour booster module on a MODsuit now gives a balloon alert
making the tradeoffs more clear.
@@ -176,82 +85,6 @@
- bugfix: slimes can now properly drain basic mobs and simple animals that they
can damage
- bugfix: slimes can drift in zero gravity
- Vishenka0704:
- - admin: The ability to export a part(or z-level) of the map has been added.
- xXPawnStarrXx:
- - balance: removed funny crystal from researcher, added low tier mining loot.
- - image: new xenoarch tool sprites.
-2024-01-05:
- LT3:
- - bugfix: Alternate carpet colors will no longer reskin to normal carpet
- - bugfix: OOC announcements will now be in shown in OOC colors
- Melbert:
- - bugfix: Fixed Fugu Gland applying to mobs incorrectly
- - bugfix: Some things which affect everything in an area are less laggy, the "all
- lights are broken" station trait especially
- - bugfix: Fixed runtime from blobbernauts attacking non-living things
- SkyratBot:
- - bugfix: the moon heretic ascension now produces lunatics again
- - bugfix: 'TGUI: Sections should be scrollable on mouse hover'
- - refactor: Introduced a simple budget system to station traits, so that smaller
- things only count as half a trait, for example.
- - balance: Increased the odds and maximum number of station traits that can be rolled
- each shift.
- - bugfix: 'Birdshot: Released gulag prisoners can now get off the gulag shuttle.'
- - bugfix: 'Birdshot: The gulag shuttle airlocks will now cycle like other airlocks.'
- - bugfix: Universal scanners are no longer invisible when set to the export or sales
- tagger modes.
- - bugfix: Fixed redundant "Integrity:" in air alarms
- - bugfix: you no longer fall down cliffs if you dont have gravity
- - bugfix: fixes some runtimes in pathfinding code, as well as one in the give direct
- control admin verb
- - admin: Amputation Shear amputation is now logged
- - bugfix: fixed a runtime in datum/thrownthing
- - bugfix: closets now have a working welder deconstruct screentip
- - bugfix: Gibtonite ore on ice planet gulags no longer spawns as lavaland rock.
- - bugfix: stationary medbots will no longer ignore u for a while if u move out of
- their way while healing
- - code_imp: progressbars no longer qdel their /image
- - bugfix: food made with drying racks now counts as "chef-made" (ergo, can provide
- a mild buff).
- - bugfix: Guardian host's ability buttons now works while the host is sleeping/unconscious.
- - bugfix: 'Icebox: Added a fire alarm to the upstairs fore primary hallway.'
- - qol: Path of moon and lock now actually fit in the heretic tree
- - balance: Certain path of moon rituals that needed brains now use easier to obtain
- organs
- - bugfix: fixed an /image hard del in ghost code
- StrangeWeirdKitten:
- - bugfix: Quick reflexes now properly dodge snout boops
- jjpark-kb:
- - bugfix: ashies will now egg respawn properly again
-2024-01-06:
- Melbert:
- - bugfix: Strong arm implant users can shove more correctly.
- SkyratBot:
- - bugfix: you can use your hand to make minebots go into combat mode again
- - bugfix: conveyor belts no longer maintain movement if whatever is on them suddenly
- leaves their z level
- - bugfix: Cyborgs no longer think they're hitting themselves when stunned with a
- stun baton
- - bugfix: Search bars for smaller lists should return to their former responsiveness.
- - bugfix: fixes an /image harddel in station blueprints
- - code_imp: cleaned up some more /image qdels
- - qol: The hub entry shows the next map and shuttle time, and no longer shows the
- alert
- - image: resprited onmob cone icon.
- - bugfix: fixes an image hard del
- - code_imp: adds context to image hard dels to make them easier to track
- - rscadd: Reworked Binoculars to function like a scope from long-range rifles. They
- also can be used while moving, albeit that'll slow you down significantly.
- - rscadd: Authentic mothic softcaps can be found in the "Mothic Pioneer" curator
- kit, which googles can also used to look into the distance. The date on the
- boxed kit has been updated to match "muh lore".
- - qol: Using a scope (and now binocs or moth cap) won't hide your mouse pointer
- away now, so that you won't slip out of the game screen and close the game tab
- by accident.
- - bugfix: the eZ-13 MK2 heavy pulse rifle does damage again
- - spellcheck: Corrects every misspelled 'kenetic' in the codebase.
- - spellcheck: Fixed punctuation in Luini Amaretto's description.
SyncIt21:
- bugfix: turbine now shuts itself off when the room apc loses power or if it gets
damaged. Also uses a small amount of power for operation of internal electronics,
@@ -264,19 +97,6 @@
- sound: Throwing things also has a sound accompagnying it.
- spellcheck: Dwarves don't throw things hard like hulks. Instead their throws are
described as "flimsily".
- - bugfix: Having a netpod destroyed will no longer grant you permanent healing.
- - bugfix: After a raid on the local drug mafia in the sector by TerraGov, the Russian
- Mobsters no longer have access to easy drugs and as a result are no longer 24/7
- running faster than the average spaceman.
- - bugfix: Queen bee's made with cytology now work
- SomeRandomOwl:
- - bugfix: Build Mode Export's options menu now knows when you want to cancel and
- not change the options
-2024-01-07:
- LT3:
- - bugfix: Morgue trays and freezing temperatures will no longer husk bodies
- - bugfix: Organs outside bodies will properly receive cold damage
- SkyratBot:
Vishenka0704:
- admin: The ability to export a part(or z-level) of the map has been added.
Watermelon914:
@@ -384,66 +204,6 @@
- balance: The Path of Blades ascension will accept either a beheaded person, or
someone with their skull split open.
- rscdel: Removed the beheading objectives from traitor.
- - bugfix: Hub shuttle time works correctly
- - bugfix: Papers no longer crash tgui
- - bugfix: Biogenerator no longer crash tgui
- - bugfix: Randomization button in prefs should look normal again.
- - bugfix: Quirk customization shouldn't close immediately.
- Stalkeros, Zergspower, Paxilmaniac, Vinylspiders, Nova:
- - refactor: refactors all(?) modular items to a standard list format (zergspower)
- - rscadd: Ancient Military Simulator got some of the previously implemented items
- back, i.e. CIN weaponry and DeForest medkits
- - balance: Ancient Military Simulator, generally speaking, became more 'rigid' and
- straightforward
- - balance: Ancient Military Simulator prize room has been moved deeper into SNPC
- compound to prevent drakes from flying in early.
- - bugfix: Ancient Military Simulator should no longer break down into space tiles
- on wall explosions
- - rscadd: The CO2 Cracker makes a return, a device that takes power and turns ambient
- CO2 into ambient oxygen, handy!
- - rscadd: The portable recycler has been added, a machine that lets you recycle
- stuff autolathe-style, clang!
- - rscadd: The hydroponics chemical synthesizer has been added, the sister to the
- water synthesizer, makes all of the basic botany chemicals to work with reagent
- pipes.
- - rscadd: The sustenance dispenser makes a return, dispense yourself some powdered
- coffee or nutraslop today!
- - rscadd: The organic rations printer has been added, a little biogenerator-type
- machine specializing in food specifically. An excellent kitchen buddy for the
- supply-deprived cook.
- - image: Sprites for all the listed new machines were made by me, Paxilmaniac.
-2024-01-08:
- SkyratBot:
- - bugfix: The clown planet biodome and virtual domain can now be completed without
- slipping directly into the exit.
- - bugfix: adds missing navigation landmarks to tramstation
- - refactor: some very large tgui lists (air alarms, all recipes techfab view, techweb
- view) are loaded on-demand as you scroll, making them not lag so hard
- - qol: It is now possible to craft more Security bio suits
- - qol: Bio-emergency crate from Cargo now contains a box of latex gloves and sterile
- masks
- - bugfix: fixed coupon codes with expiration times.
- - rscadd: Adds a geared assistant station trait! Spawn with a skateboard, toolbelt
- or in your favorite bee suit!
- - code_imp: Moves assistant code around
- - bugfix: vents that are turned off dont replay their animation if you go out of
- sight and back in
- - bugfix: spasm_animation now correctly resets the transform, as it should
- - bugfix: Fixed H.A.R.S. fucking up the brains a little.
- - bugfix: Jumping to C4 via ghost notification works again
- - bugfix: Comms console should now update as you type.
- cherdaq:
- - rscadd: added a hairstyle
- - image: added an icon state to SR hair.dmi
- - code_imp: added required code to hair.dm
- fIoppie:
- - qol: Cargo techs can now access the windoor in the delivery office on Delta.
- jjpark-kb:
- - rscadd: added cargo tele upgrade and forging upgrade to cargo borgs
- - qol: you can click drag some items to the forge now (fuel, ores, imbuing)
- theselfish:
- - rscadd: Skyrat races now produce butcher results closer to their ancestors. Cannibals
- rejoice.
exdal:
- bugfix: Papers no longer crash tgui
- bugfix: Biogenerator no longer crash tgui
@@ -478,18 +238,6 @@
Melbert:
- bugfix: '"The sister and He Who Wept" Heretic painting will no longer cause big
lag'
- SkyratBot:
- - bugfix: Spamming the weld on a robotic part no longer drains the fuel
- - qol: Ghosts can now view Wanted Status and Sec Records by examining people
-2024-01-10:
- LT3:
- - bugfix: Unencoded server admin announcements will now actually broadcast
- Melbert:
- - bugfix: Carps now migrate slightly better, probably.
- - bugfix: And Poly now talks better, probably.
- SkyratBot:
- - bugfix: The HoP's cartridge vending machine now sells regular PDAs instead of
- base command ones.
2024-01-10:
13spacemen:
- qol: If you can't heal a body part, you won't get a healing time delay. No more
@@ -513,16 +261,6 @@
roles again.
- bugfix: Some antagonists which had elements that scale with living station population
now function properly again.
- - bugfix: Ripley MK-Is and Paddys now correctly make incoming projectiles hit the
- pilot again.
- - bugfix: Medical records console should be useable again
- - bugfix: popup screen locs will work on clients >1614. Security cameras and Spyglass
- will work
- - admin: Fixed the bluescreen in the centcom pod launcher.
- - bugfix: Eldritch reagent (the one that heals heretics) now heal heretic monsters
- rather than kill them.
-2024-01-11:
- Melbert:
JohnFulpWillard:
- bugfix: Refried beans and Spanish rice now lets you take the bowl back after eating
it.
@@ -547,40 +285,6 @@
it after they are gibbed.
- balance: Heretics no longer produce a Bastard Sword upon cult conversion. They
are still immune to cult stun and cannot be converted by blood cultists.
- SkyratBot:
- - bugfix: Certain areas are now properly protected against grid check. Namely the
- supermatter should consistently be protected.
- - image: Resprited a majority of undershirts
- - bugfix: Fixed the Codex Cicatrix always requiring a dead body, despite the description
- saying leather or a hide would work too.
- - bugfix: Pipeguns no longer have floating bayonets
- - bugfix: The various borg apparatuses can no longer pick up other internal borg
- tools.
- - bugfix: ejecting cells from microwaves via ctrl click now requires player proximity.
- - bugfix: Refried beans and Spanish rice now lets you take the bowl back after eating
- it.
-2024-01-13:
- LT3:
- - bugfix: Icebox kitchen has its light switch again
- - bugfix: Icebox medbay hallway now has a fire alarm
- Melbert:
- - bugfix: Ghost alert for buying a badass balloon should have a proper icon
- - bugfix: Blood Drunk Miner (Hunter version) should dash a bit more.
- - admin: Several types are now more accessible via the "spawn" verb (and friends),
- meaning you can type 'Spawn" Modsuit' or 'Spawn "Jumpsuit' in the command bar
- and it'll just give you a list of modsuits or jumpsuits to pick from.
- - bugfix: Fixes some cult spells being unable to heal constructs (blood rites particularly)
- - bugfix: Fix Ringleader's Rise not causing as many hallucinations as expected
- - bugfix: Chameleon Suits will now automatically set your helmet into a hood if
- using a hooded suit again
- - bugfix: Lunar Parade has the potential to break less.
- Rhials:
- - bugfix: Specialty drinks crafted in the crafting menu will now create the intended
- reagents, instead of containing the reagents used to craft it.
- SkyratBot:
- - qol: ID cards now set their accounts with Alt-Right click.
- - bugfix: ID cards now once again have contextual screen tips showing what buttons
- do what actions.
- bugfix: Carps now migrate slightly better, probably.
- bugfix: And Poly now talks better, probably.
OrionTheFox:
@@ -606,19 +310,6 @@
- bugfix: when doing emotes with your face obscured, your runechat color will now
appear as either that of Unknown or the mob you are wearing the id of (if you
are wearing a mask with someone else's id)
- - admin: Made logging for BSA targeting and firing easier to find for admins.
- - bugfix: Healing simplemobs with sutures and other stacks works again
- - spellcheck: Healing mobs with medical stacks like suture and mesh give better
- user feedback messages
- - code_imp: smart fridge content overlay now uses `base_icon_state` instead of a
- separate var
- - bugfix: The "required_container_accepts_subtypes" variable on chemical reactions
- now actually works again
- - code_imp: The check that prevents your stuff from dropping when you have robotic
- parts is now more robust
- - qol: If you can't heal a body part, you won't get a healing time delay. No more
- spending 5 seconds healing a body part only to get a "can't heal that" message.
- - bugfix: Fixed being able to download the contractor program on the syndie store.
2024-01-12:
13spacemen:
- bugfix: Healing simplemobs with sutures and other stacks works again
@@ -816,62 +507,6 @@
- balance: Riot shields can tank a lot more damage against melee weapons, but less
against bullets.
- qol: strobe shields can now be used to bash people while combat mode is on.
- - bugfix: Hub time should be correct again
- - image: The "One Lean, Mean, Cleaning Machine" achievement now has its own icon.
-2024-01-21:
- Gandalf2k15:
- - rscadd: A system for making lowpop less unbearable, namely an automatic recharging
- system for SMES'.
- Melbert:
- - bugfix: Items and mobs no longer hide behind big runes (heretic, cult, wizard)
- Momo8289, Pepsilawn, Sinsinins, JohnFulpWillard:
- - bugfix: Clown ops now get a code set for their nuke.
- Rhials:
- - spellcheck: Modifies some existing Emergency Shuttle prerequisite messages, and
- adds some missing ones.
- SkyratBot:
- - bugfix: Borgs now use the hug module to substitute for hands, allowing them to
- finish previously unfinishable surgeries
- - bugfix: The map saving tool will no longer lock up and prevent all further action
- at random
- - bugfix: Map saving now takes on the order of seconds, not minutes
- - bugfix: Fixes an issue with lists that caused strongdmm to report saved maps as
- broken
- - bugfix: cyborg inducer respects cell changes
- - bugfix: Monkeys don't get stuck on obstacles as often.
- - bugfix: fixes whispering formatting
- - bugfix: Filled trash bags show up properly when worn.
- - bugfix: Icebox perma's cytology lab is now useable without outside repairs.
- - image: The honkbot now looks up to date.
- - bugfix: Prototype emitters now work.
- - bugfix: Prototype emitters don't go invisible if screwdriver'd open.
- - bugfix: Emitters no longer show up as their panel being closed when it is open.
- - bugfix: Lunatics spawned from moon ascension now actually have an objective to
- assist their ringleader
- - bugfix: Lunatics now get a moonlight amulette on the ground if they have full
- hands
- - bugfix: fixes megafauna AI getting stuck attacking some corpses
- - bugfix: Fixes how the aquarium looks.
- YakumoChen:
- - image: headshots now support lensdump as a host.
- jjpark-kb:
- - balance: xenoarch machines will now default take 10 seconds instead of 20 to do
- their process
- - rscadd: the xenoarch researcher can now create lavaland loot, anomalous crystals,
- or bepis tech
- - rscadd: the xenoarch machines will now be affected by both their stock parts
- - bugfix: you can now wrench, screwdriver, and crowbar the xenoarch machines
- xXPawnStarrXx:
- - image: new GAGs variant for croptop sweater.
-2024-01-22:
- Lutowski:
- - rscadd: Fluffier than ever before, moths can now have hair & facial hair.
- SkyratBot:
- - bugfix: Tool arm implant hotkeys will properly work even after you change your
- arm/species now.
- - bugfix: Nanotrasen is now stocking proper french Cognac instead of discount Irish
- Cognac. It will now taste Smooth and French
- - bugfix: fixed some visual artifacts from achievement icons.
JohnFulpWillard:
- refactor: Implant pads now use TGUI
- refactor: Ice cream vats now use a radial menu instead of an HTML one.
@@ -901,26 +536,6 @@
background).
- rscadd: Modular Consoles (the machinery) now have a small backup cell they draw
power from if the power goes out.
- - bugfix: Wagging tail spines now sync up properly with the tails they're attached
- to.
-2024-01-24:
- SkyratBot:
- - sound: APCs actually play the tool sound when exposing their wires.
- - spellcheck: iron sheets's what?
- - bugfix: Goldgrubs should no longer spit out things that aren't ore (e.g. stasised
- mobs from the polymorph belt).
-2024-01-26:
- LT3:
- - bugfix: You can no longer interact with medical beds while incapacitated
- - bugfix: Fixed alignment of RPG titles
- - bugfix: Server announcements again no longer escape HTML by default
- Melbert:
- - bugfix: Click CD applies to looking up and down correctly.
- - bugfix: Replacing a limb fully claimed by an infested burn wound now properly
- grants you control of the limb back
- - bugfix: Losing control of a limb now sounds less weird in chat
- - bugfix: Fixed AIs who shunt to APCs causing their laws to be deleted.
- SkyratBot:
- image: The honkbot now looks up to date.
- bugfix: Fixes how the aquarium looks.
JohnFulpWillard:
@@ -988,17 +603,6 @@
- bugfix: Contractor support units now comes in an antag spawner (like syndicate
monkey, nukie borgs/reinforcements).
- bugfix: Syndicate monkeys now get their monkey antag datum.
- - bugfix: pAIs downloaded while in a PDA now gets the action button to control said
- PDA.
- - bugfix: pAI cards can now be ejected from a PDA when there is no pAI inhabiting
- it.
- - bugfix: Kidnapping traitor objective now properly returns the victim to the station
- with their items
- - bugfix: The smelter and refinery now properly hold mining points, only taking
- a small amount out of net gained points.
- - bugfix: fixes a spurious CI failure from do_charge() signal overrides
- - bugfix: Moved the curator's treasure hunter fedora up by a single pixel.
- - bugfix: Missing fire alarms added to several rooms on Birdshot
LT3:
- bugfix: Server announcements again no longer escape HTML by default
Melbert:
@@ -1073,63 +677,6 @@
- bugfix: ore silo UI now functions correctly after removing an entry from the UI
- bugfix: no runtimes when connecting a machine to silo that was previously disconnected
via the ore silo UI
- - bugfix: reactions that create multiple reagents now terminate without looping
- endlessly.
- - bugfix: oatmeal reactions now terminate & produce the right quantity of results
- but without milk.
- - refactor: Refactored Ore Processing Unit UI.
- - bugfix: Ore Processing Unit UI no longer lags client.
- - bugfix: fixes features not updating when changing character slots
- - refactor: Stock market events are now their own objects, and are handled by the
- stock market individually.
- - bugfix: The library console's category search box now displays the category being
- searched.
- - bugfix: the blur effects for hallucinogenic withdrawal and psychic projection
- are now properly centered on the screen
- - bugfix: fixes runtime when mineral scanning, passes right argument for scanner
- in golem eyes
-2024-01-27:
- JohnFulpWillard, Unit2E teaching me the TEG:
- - bugfix: The TEG now works again (still unobtainable by regular means though).
- - bugfix: the TEG and its circulators can now be rotated counterclockwise again.
- - refactor: The TEG now uses a TGUI interface rather than the old HTML one.
- Melbert:
- - bugfix: You can no longer neck snap anyone with martial arts assuming you've got
- someone in a tight grip.
- SkyratBot:
- - bugfix: items that contain recursive contents inside them (like foam dart boxes
- from autolathes) now have their custom materials set to match with its design
- cost rather than being nullified, meaning they are now recyclable.
- - code_imp: all custom materials are now integer values. Improved code for how materials
- are used in techfab & auto lathe for printing
- - bugfix: Icebox will no longer spawn a fuck ton of plasma after gibonite blows.
- YW besties
- - refactor: airlock controllers now use tgui
- - refactor: Newspapers now use TGUI.
- - bugfix: Fixed the newscaster's wanted section showing a non-existent photo.
- - bugfix: fixes a hard del with decals
- - bugfix: Fixed the messenger circuit not sending messages.
- - bugfix: Added several ports to modpc circuits that were missing or needing them.
- - bugfix: Fixes ever-expanding ports whenever circuits are re-inserted in a modular
- computer.
-2024-01-28:
- Useroth:
- - rscadd: Jukeboxes added to automapper, to spawn in open areas in the bar
- - rscadd: Ported BurgerLUA's jukebox overhaul from bubber (https://github.com/Bubberstation/Bubberstation/pull/552)
- - rscadd: Added an age prompting system.
- - server: Added a new SQL table for keeping some of the data declared by players
- - rscadd: EZDB will now apply our modular sql schema when used during development
-2024-01-29:
- LT3:
- - bugfix: Emergency shuttle console now only works while on the emergency shuttle
- Melbert:
- - bugfix: Rush Gland now triggers correctly on being grabbed by a Goliath
- SkyratBot:
- - bugfix: Removed kitten omniscience. (They stop pointing at you now.)
- - refactor: Legions abilities have been changed into actions that can be added to
- any mob.
- - bugfix: Oppenheimer, the nukie medbot, has been reprogrammed to use Airplane Mode
- as a factory default. The station AI is no longer immediately aware of his presence!
- refactor: chemical reaction tester in runtime station has been remastered from
ground up.
intercepti0n:
@@ -1161,59 +708,6 @@
examines.
- code_imp: adds sanity checks and removed deprecated `content` tag from PCM UI.
Stops hologram items from being inserted.
- - spellcheck: You no longer fail to find "a anything" when swabbing something for
- cytology that doesn't have swabbing results.
- - bugfix: Cats can be swabbed for feliform cells again.
- - sound: Cats have had their mastery of silent walking revoked, and have their pitter-pattering
- footsteps back again.
- - refactor: 'Refactored Telecommunications Monitoring Console UI: added search bar,
- made UI more compact.'
- - image: Added an icon to the "My Watchlist Status is Not Important" achievement.
-2024-01-30:
- A.C.M.O.:
- - config: Added two new config flags for quirks, DISABLE_QUIRK_POINTS and MAX_POSITIVE_QUIRKS.
- LT3:
- - bugfix: Tramstation external atmos ports are now properly connected
- Melbert:
- - bugfix: You can build on some niche tables again, such as the Wabbajack Altar.
- - bugfix: Wizarditis Timestop now has the desired effect.
- - admin: Admins can now VV Timestop to make the caster not immune to their own Timestop.
- If they really wanted.
- Rhials:
- - bugfix: The encrypted bitrunner cache is now impervious to most conventional means
- of destruction.
- SkyratBot:
- - image: Resprited the goldfish and lanternfish as well.
- - bugfix: Rootbread soup now uses poached egg (egg reagents in soup pot) instead
- of raw unpeeled egg (which would break into reagents upon coming into contact
- with the soup pot) and is thus craftable again.
- - bugfix: The hub time should be accurate for servers with different timezones
- - bugfix: auto lathes don't hog local apc supply when printing items
- - bugfix: Blobs sitting on APCs no longer break them when already broken, and so
- no longer spam the power down noise.
- - bugfix: The construction console drone becomes visible again while its in use
- - spellcheck: typos fixed in the fireproof clothing religious rite
- - bugfix: pesto pizza (cooked) is no longer raw, and cilbir is meat instead of fruit
- - bugfix: sets minimum volume of reagent allowed to exist inside anything to 0.01
- therefore allowing plumbing iv drip small transfer rates to occur without reagents
- disappearing.
- - bugfix: Bone daggers and shivs are now longer electrically conductive
- - bugfix: Ambient loops will now refresh when entering a mob.
- - bugfix: Jerry Tramstation can get laid again! (Fixed cat breeding.)
- - rscdel: The lathe tax on printing items has been removed from the game for both
- humans and silicons.
- - refactor: Husk icons are now dynamically generated. See if you can identify what
- species it was!
- - bugfix: ' The buttons for flashers on birdshot/tramstation now work'
- - bugfix: fixes a runtime that sometimes happens in ai controllers
- Zergspower:
- - bugfix: fixes the missing ARC Mining setup in Kilo
-2024-01-31:
- Zenitheevee:
- - bugfix: Port Tarkon's research server works correctly now.
- - bugfix: Port Director now spawns with Port Director ID card
- - bugfix: Port Tarkon Residents spawn with Crowbars to fix lack of them in map,
- and it makes sense.
VladinXXV:
- bugfix: Oppenheimer, the nukie medbot, has been reprogrammed to use Airplane Mode
as a factory default. The station AI is no longer immediately aware of his presence!
diff --git a/html/changelogs/archive/2024-02.yml b/html/changelogs/archive/2024-02.yml
index 998bf4f7f15..e98a9540d4a 100644
--- a/html/changelogs/archive/2024-02.yml
+++ b/html/changelogs/archive/2024-02.yml
@@ -4,246 +4,13 @@
now use any supply general, mining, and bitden access, and the top righthand
door no longer says its mining decontamination and uses the proper mail sorting
room airlock instead.
- - bugfix: All Within Theoretical Limits should properly unlock now when the crystal
- comes back from the countdown.
+ JohnFulpWillard:
+ - balance: Pirate suits can now hold the laser musket and smoothbore disabler.
+ - bugfix: Cultists can now vote for a Cult leader again.
- bugfix: Slimes using Feed while buckled now stops feeding.
- bugfix: Slimes are no longer prompted to feed off of dead people.
- bugfix: Slimes that can only feed onto one person now immediately feeds off of
them.
- - balance: Pirate suits can now hold the laser musket and smoothbore disabler.
- - rscadd: '[IceBox] Botany now has a service accessible bio generator'
- - qol: '[IceBox] Kitchen and service hall rearranged'
- - bugfix: Mk-II Ripley exosuits are spaceproof again.
- - bugfix: Converted mechs now have their lights on if they did before the conversion.
- Zenitheevee:
- - balance: Xenos are now more resistant to temperatures, but die faster once past
- resistances.
- - balance: Simple_animal Xenos now have (correctly) pressure resistant exoskeletons
- Zergspower:
- - bugfix: Kilo's Mining area for ARC mining
- jjpark-kb:
- - rscadd: adds back the teg (you can research and print it)
-2024-02-03:
- Arturlang:
- - rscadd: Add bloodsuckers, a new reason to fear maintenance and the dark. Don't
- go out there alone, or you might wake up pale and fainting.
- - bugfix: Observing works again.
- AtoriBirb:
- - image: added white/black sprites for worn/in hand.
- - code_imp: added variant code to krav maga sec gloves
- - image: Security Beanie
- BurgerBB:
- - rscdel: ' Removes the ability for Seedlings to have multiple harvests.'
- - balance: Sets Evil Seedling TC cost to 2 (From 8),
- - rscdel: Removes Slaughter Demons from the wizard spellbook.
- - balance: Laughter Demons cost 2 points (instead of 1), and are limited to 1 purchase
- per wizard.
- - bugfix: Fixes some Moonstation things (Fixes mining shuttle not having power,
- Honkbot in clown's room starts unconstructed, Fixes missing Bar lighting, Fixes
- missing emergency atmos in maint, Fixes missing robodrobe)
- - rscadd: Replaces the Oh Hi Daniel shuttle with a similar shuttle.
- - rscadd: Organs that rot now create miasma. Note that miasma emissions will stop
- once the organ is fully decayed.
- - balance: The Crab17 uplink item cannot spawn in surplus crates, nor can it be
- discounted.
- - rscadd: Adds Moon Station
- - rscdel: Removes Burgerstation
- - balance: Blob Fake Announcements are now followed by a clarification 60 to 180
- seconds later.
- - balance: Balances or outright removes some wizard spells.
- - balance: Reworks or removes some wizard events so they're more roleplay friendly.
- - rscdel: Removes/rewords some Gimmick objectives, and adds some new ones.
- Cyprex:
- - server: We've added a new relay, located in the city of Singapore!
- Deek-Za:
- - rscadd: Added redsec armor and belt reskin option
- - bugfix: Adjusted redsec boots sprite to be more in-line with peacekeeper style
- - image: Added new sprite for redsec gloves in peacekeeper style
- Huskil & Orion:
- - rscadd: Added cowprint bra and underwear
- IgiariValkyr:
- - rscadd: Centcom Administration has moved to the Interlink
- Justavidya:
- - image: modified the cherry cupcake and blue-cherry cupcake sprites
- Kepteyn:
- - rscadd: Added a xenomorph plushie.
- - rscadd: 'Added a xenomorph maid plushie.
-
- :cl:'
- Kyogon:
- - rscadd: The new MultiSec vendor, containing all the Security clothing in one.
- - rscadd: A new custom sprite for the MultiSec vendor.
- - rscdel: Insertion file for Civil Protection suits, moving them into native vendor
- lists.
- LT3:
- - rscadd: Runechat message colour is now a character preference
- - image: Colorable jean skirt is now adjustable
- - bugfix: Morgue trays and freezing temperatures will no longer husk bodies
- - bugfix: Organs outside bodies will properly receive cold damage
- - bugfix: Character directory will show all fields without resizing
- - config: Adjusted population thresholds for certain random events
- LT3 (code):
- - server: Makes relay text display properly
- Lutowski:
- - rscadd: Mothic language returns with its own lore blurb.
- - image: Added icon for Chitinclick.
- Majkl-J:
- - qol: Crew monitor consoles receive a new firmware update to address recent complaints,
- removing the low health alarm on DNR and low sensor settings
- - code_imp: Introduced get_dnr() proc
- - image: Sexy snoodle plushie inhand sprite
- - qol: Subtler sound can now be toggled in game prefs
- - qol: Synth computers now show the current charge of the synth
- - qol: Synth power cord now charges you more than before
- - balance: Synth computer capacity is now back to 64, from Skyrat 32
- - rscdel: Removes broken stealthmerge change
- - bugfix: Biodome now has the bitrunner vendor
- - rscadd: The syndicate access override on the Dauntless now includes the radio
- key
- - rscadd: Windows on Dauntless robotics
- - rscdel: The mask FOV is gone
- - rscadd: Secmed huds are now available for security medics
- - rscadd: Secmed headset upgraded into a bowman
- - image: Icons for secmed huds and secmed headset
- MefAnneFeminene:
- - rscadd: New Russian Flag sprite
- - code_imp: description of Russian flag changed
- Melbert:
- - bugfix: Robocontrol app maybe works better now.
- - bugfix: Fixed examining modular PCs
- - refactor: Big martial arts refactor, they should now overall act a ton more consistent.
- Also technically any mob can do martial arts. Let me know if something is funky.
- NithaIsTired:
- - rscadd: Synths now scream in agony when they die.
- ReturnToZender:
- - server: cleans up some relay names
- - rscadd: role restriction to the tactical boots
- - rscadd: two more goobers to the pinwheel list
- - rscdel: restricted_roles on the mech suit, so anyone can wear it
- - bugfix: /datum/armor/none added to the colorable arm wraps in loadout
- - rscdel: redundant mech suit
- ReturnToZender, Gax (Sprites):
- - rscadd: Vale clownborg sprites are now available!
- - bugfix: Fancy raptors have had their hat bounce fixed, Syndicate raptors have
- their headlamp overlays properly implemented.
- ReturnToZender, LT3, Waterpig:
- - rscadd: NSFW flavor text (for players and silicons)
- - rscadd: New examine panel with slightly bigger font, easier to read, also integrates
- most of the new preferences
- - rscadd: Flavor text requirements now respect silicon flavor text, thanks to @lessthnthree
- ReturnToZender, SpaceManJim (sprites):
- - rscadd: Animated raptorborg sprites
- Rhials:
- - qol: Spider eggs will now close their spawn menu when you move away from them.
- SarmentiCampbell:
- - balance: removed abductor's wounds immunity and delimbs.
- - balance: Normal Zombies, not infectious types are no longer immune to pressure.
- SkyratBot:
- - rscadd: Wearing certain gloves (such as black gloves and combat oriented gloves)
- allow you to cuff people faster
- - balance: base handcuffing time is now 4 seconds
- - balance: latex gloves now hide your fingerprints
- - rscadd: There's now a small chance to be a smartass when affected by Voice of
- God
- - bugfix: Robotic voicebox actually lets you speak any language again (as long as
- you know it).
- - refactor: refactored experimentor UI to TGUI.
- - rscadd: Exosuit-mounted RCDs now have the same functionality as the handheld version.
- - bugfix: lathes now respect always-powered areas
- - balance: lathes now use power as they print instead of all at once
- - bugfix: Teleportations will no longer exceed reservation bounds.
- - refactor: chemical reaction tester in runtime station has been remastered from
- ground up.
- - balance: Mech wire panels are now blocked when the mech is occupied. I guess it
- was moved to be behind the seat.
- - bugfix: Ash drake's fire breath attack has proper cooldowns again
- - code_imp: Removes /obj/item/onetankbomb, assembly bombs are now handled by the
- tank itself.
- StrangeWeirdKitten:
- - code_imp: Switches the emergancy shuttle to Centcom instead of the Interlink
- - bugfix: You can no longer dodge nose boops if you have a sensitive snout
- - balance: gives medical borgs back their crew monitors
- Swiftfeather:
- - rscdel: Door sounds from Citrp
- - qol: better door sounds
- - sound: changed sound back to better original airlock sound
- - code_imp: re enables skyrat's door sound override
- Sylphet:
- - rscadd: added vertical variants of the pride flags used in biodome
- - image: resprited horizontal pride flags used in biodome
- - bugfix: added cmo turtleneck/skirtleneck to garment bag
- TealSeer:
- - bugfix: Dropdown options for quirks should now function properly
- - bugfix: Randomize button in character prefs should look normal
- Thlumyn, Arta/Maxi for the sprites:
- - rscadd: Added peacock tails
- YakumoChen:
- - rscdel: After the introduction of the Multisec Vendor, stations are no longer
- shipped with an additional Redsec vendor.
- - rscadd: Security, HoS, Captain, Blueshield, and Centcom roles have had armour
- booster modules built into their modsuits. Most do not reduce the slowdown of
- your suit (except the HoS one)
- - balance: Armour values in said modsuits have been halved across the board, with
- the lost values moved to the armour boosters.
- - balance: Effectively, armour in EVA combat is severely nerfed for everyone except
- the syndicate who already had armour boosters.
- aKromatopzia:
- - rscadd: digitigrade cybernetic legs, and the ability to select them in preferences
- jjpark-kb:
- - rscadd: added the powerator (purchase-able and BEPIS-tech), a machine to sell
- power for cargo credit
- - rscadd: added back the default turf mining
- - rscadd: boulders are now affected by your mining skill
- - balance: you get more mining xp from boulders
- lilBlovy:
- - rscadd: Taurs_Types.dms folder
- - rscadd: NagaFat Sprites
- nevimer:
- - rscadd: Shortcuts to internet relays are now on the top menu bar.
- - bugfix: dnr behavior is consistent again
- - rscadd: Malf AI Doomsday now makes a tidal wave of explosions from APC's.
- nikothedude:
- - spellcheck: The nobility dresscoat has been reflavored to not be nobility
- pixelkitty286:
- - rscadd: Door sounds from Citrp
- - qol: Better door sounds
- - sound: added door sound files in modular sounds folder
- - code_imp: Disabled skyrat's door sound over rides in airlock.dm
- - rscadd: F3-LINE
- - image: added felibot_all.dmi
- - code_imp: modular robot_model.dm
- - sound: Add synth_scary.ogg synth_error.ogg synth_startup.ogg synth_shutdown.ogg
- - code_imp: modular synth_emotes.dm
- projectkepler-ru:
- - rscadd: DS-2 role now all starts with some form of armament
- thegrb93:
- - rscadd: Borg dominatrix module to lustwish that gives them some dominatrix toys
- theselfish:
- - rscadd: Donator item.
- - rscadd: Donator stamp.
- - rscadd: ACTUALLY REALLY Lets Clown and Mime slots be opened again.
- xXPawnStarrXx:
- - rscadd: Added new bounties for inmates.
-2024-02-07:
- Majkl-J:
- - image: Mouth worn sprites for rubber ducky and dog bones
- ReturnToZender:
- - bugfix: Readying up without proper flavor text now reports the correct flavor
- text source instead of saying you need silicon flavor.
- ReturnToZender, GenericDM (Original Version):
- - rscadd: Cargo shelves are now craftable using metal! They store up to 3 crates
- per shelf.
- - bugfix: Skyrat modular shelves (such as gun racks and tall shelves) are now buildable
- using metal.
-2024-02-04:
- SkyratBot:
- - code_imp: Removes /obj/item/onetankbomb, assembly bombs are now handled by the
- tank itself.
- projectkepler-ru:
- - rscadd: DS-2 role now all starts with some form of armament
-2024-02-05:
- LT3:
- - bugfix: Fixed alt-click validation for tram interactions
K4rlox:
- bugfix: makes the experiment chamber in syndicate lavaland base no longer explode
when testing grenades
@@ -767,122 +534,6 @@
- admin: You can now set someone's TC to 0
- admin: Removing Traitor from automatically removes the uplink from them
- admin: Removing Uplink from someone no longer wipes ALL of their memories
- - bugfix: Fixes AI double-click tracking
- MelokGleb and KREKS, McRamon, Ghommie:
- - image: New sprites for changeling powers and items. Woooh.
- SkyratBot:
- - qol: Circuit multitools can now mark (visible) items worn/held by a mob.
- - bugfix: Grill checks if the item got deleted to avoid runtimes. Also cook time
- is set based on the individual items type & not a constant of 20 seconds
- - bugfix: BBQ ribs can be grilled on a grill but now takes anywhere between 30 to
- 40 seconds to get proper smoked ribs and not lightly smoked ribs or turn into
- a mouldy mess on a girddle. Delicious.
- - bugfix: you may not put disposal outlets on cargo shuttle
- - bugfix: mecha drill won't use power & do other checks if the target cannot be
- drilled.
- - bugfix: mecha drill will stop drilling if the mech moves even without changing
- direction. Also will use power & check other conditions every drill cycle.
- - bugfix: forcefully pushing disposal outlets and chutes deconstructs them instead
- of making them behave like budget eigenstatium lockers
- - rscadd: deathmatch minigame
- - qol: makes the tgui_input_number user friendly for negative and decimal inputs
- - code_imp: the onBlur={(_, value) => onBlur(value)} event should now be used on
- all uses of RestrictedInput to ensure that the number is fully sanitized whenever
- the user leaves the field or submits it through a button
- - rscadd: nanotrasen museum gateway map
- jjpark-kb:
- - rscadd: you can now increase the probability of certain mats from bluespace miners
- at the cost of not producing the other mats
-2024-02-21:
- Melbert:
- - balance: Scientists have discovered Nuka Cola is not good for short term health.
- SkyratBot:
- - bugfix: machines that should not drop contents when deleted no longer do.
- - refactor: refactors how machines are deconstructed. report bugs on github.
- nikothedude:
- - bugfix: Characters with multiple bodytypes are no longer forced to bear broken
- clothing sprites
-2024-02-22:
- LT3:
- - qol: Air alarms now display the source of triggered fire alarms/firedoors
- - rscadd: The tram has been equipped with enhanced safety glass to reduce the severity
- of crew injuries
- LemonInTheDark, Kryson:
- - image: Modified railing sprites to be a bit more three-d
- Lutowski:
- - bugfix: Service Hall's disposal pipes are fixed on Void Raptor.
- Majkl-J:
- - refactor: Changed how headshot prefs are applied
- Melbert:
- - bugfix: Chasms no longer break your verbs
- - bugfix: Organs have the blood DNA of their owns on them again
- SkyratBot:
- - bugfix: you may not teleport in or out of deathmatch arenas
- - bugfix: sec-hailers no longer apply filters on TTS when pushed out of the way.
- - bugfix: multiple reactions occuring in the same holder like mixing drinks will
- yield correct reagent result volumes
- - code_imp: ' Removes `update_total()` from instant reactions improving performance
- slightly'
- - code_imp: merges `remove_all_direct()` with `remove_all()` to reduce code size
- - bugfix: The DNA scanner's joker button no longer instantly activates itself when
- the cooldown between uses is done.
- - bugfix: Regenerative cores (and other monster organs) now work when using it in-hand
- while resting.
- - bugfix: The door above tool storage on birdshot now has maintenance access on
- it and officials can now enter the CC dock room.
- - code_imp: removed redundant check for plasmamen in survival box code
- - bugfix: if you died as a changeling/anyone that has cool mind spells you do not
- get them in deathmatch
- - rscadd: Curators now get a 22.5% cut on credits spent on painting patronages (divided
- by the number of curators). The service department also gets another, 12.5%
- cut.
- - qol: Added a zoom in and out buttons to the painting UI.
- - code_imp: deathmatch lobbies take 8 seconds to start as to give lighting a breather
- - bugfix: Ethereal heart revive doesn't delete organs alien to your species, like
- prosthetics, cybernetics, and possibly itself.
- - bugfix: Nightmare heart revive doesn't delete organs alien to your species, like
- itself, upon which it would stop the conversion to shadowperson.
- - qol: hides the delete button on the main tab allows to reorder all other chat
- tabs
- - bugfix: Adds a missing servo component into the MK1 Ripley Crate ordered from
- cargo.
- - bugfix: fixed an issue with tactical appearance (potted plants / cardboard cutouts)
- not going away after giving the item to someone else.
- - bugfix: Fixed slaughter demon cutouts being invisible. Also fixed another issue
- with the tactical appearance not going away when the cardboard cutout is pushed
- down.
- - bugfix: The North Star's disposals are now functional!
- - qol: The North Star has had a staggering amount of quality of life changes.
- - rscadd: Nanotrasen has now supplied North Star security outposts with a disposals
- line leading directly to the drunk tank.
- jjpark-kb:
- - rscadd: stone tiles (the turf) will now speed you up slowly
- - bugfix: railroads will now have the appropriate icon
-2024-02-23:
- Melbert:
- - rscdel: Deletes Mythril Coins from random coin spawners
- - rscdel: Replaces Mythril sheets in icebox vent fishing with Runite sheets
- - refactor: Frames have been refactored, you know the things you use to build computers
- and machines, report any oddities
- - bugfix: You can now smack (de)constructed computer and machine frames to break
- them, rather than doing nothing.
- - rscadd: Machine frames can now be deconstructed with screwdrivers, and computer
- frames can now be deconstructed with welding torches. Welders are faster.
- Rhials:
- - bugfix: Removes the double-newscaster from the arrivals sec post.
- SkyratBot:
- - bugfix: Chefs (not to be confused with cooks) actually display as being a part
- of service on the crew monitor.
- - refactor: Holographic mobs now gives better feedback to players and should more
- consistently not give any drops.
- - rscadd: Painkillers (i.e morphine, miner's salve) now actually induce analgesic
- effects, preventing various pain-related effects, such as screaming due to pain,
- and also provides a speed bonus during surgery.
- - rscadd: The tenacity trauma (traumatic neuropathy) also applies analgesic effects.
- - refactor: Simplified code related to reagents adding traits.
- - spellcheck: Removed a double space in health analyzer's message telling you someone
- is deaf.
- - bugfix: ForceEvent tgui panel search is more reliable.
Rhials:
- bugfix: Removes the double-newscaster from the arrivals sec post.
SyncIt21:
@@ -914,61 +565,6 @@
a 3 second cooldown is applied to stop the conveyer belt from clogging up, With
this BRM wires are removed as there is no need for timers to be attached to
wires which intefers without our batch processing timings.
- - bugfix: Feature manipulation surgery will now properly update the patient's appearance.
- - refactor: The tail portion of lizard spines will no longer draw on people who
- do not have a tail.
- softcerv:
- - spellcheck: when someone else licks you, you no longer lick yourself
-2024-02-24:
- A.C.M.O.:
- - qol: CPR can be administered by species which do not need to breathe, so long
- as they have functional lungs.
- Melbert:
- - bugfix: You can now take our your anger upon arcade cabinets upon losing (they
- can be hit again)
- SkyratBot:
- - bugfix: The Summon Simians spell will now properly check for monkey faction, allowing
- people who are monkeys to not be mauled.
- - rscadd: Added three new 'special' bedsheets. One of them is quite rare and made
- from gondola hide.
- - refactor: Bloody item overlays no longer use icon procs to generate the overlay
- softcerv:
- - refactor: refactors a majority of the code behind soulcatcher souls to be a component.
-2024-02-25:
- SkyratBot:
- - bugfix: Alien larvas' examine text no longer tells you they are missing arms and
- legs.
- - bugfix: fixes spurious CI failure in museum
- - code_imp: adds a blacklist feature to spawners
-2024-02-26:
- Melbert:
- - bugfix: Cyborgs spark and spit out oil when smacked again. Among other things.
- MrDas:
- - spellcheck: The tier of servo in mech construction is no longer explicitly stated.
- SkyratBot:
- - qol: Blood Brother convert objective now explains who you can convert and what
- to do if you mess up with your flash.
- - balance: buffs corporate modsuit(centcom only)
- - bugfix: Disabled the popsicle stick maximizer. (Producing popsicle sticks actually
- deletes the input logs.)
- - bugfix: Mining cyborgs now keep the state of their mining scanner when stored,
- without shutting off.
- - bugfix: meatwheat is now firmly made out of meat, instead of sometimes being wheat
- and sometimes being meat and sometimes being both.
- - bugfix: you can no longer feed people with covered mouths using spoons or ladles
- destrucktoid:
- - bugfix: Slimeperson Clockwork Cultists now heal toxins from the prosperity prism
- properly.
-2024-02-27:
- 13spacemen, Kapu1178:
- - refactor: Footprint sprites are now based on your shoes and legs, shoes have priority
- - image: Monkey legs now produce pawprints instead of footprints
- Melbert:
- - bugfix: The Paddy's Claw should be properly unusable in situations which it should
- be properly unusable.
- SkyratBot:
- - balance: Adds a 1 second delay to moving up and down with the verb/keybinds to
- disable z-level combat cheese
- bugfix: mecha drill won't use power & do other checks if the target cannot be
drilled.
- bugfix: mecha drill will stop drilling if the mech moves even without changing
@@ -1112,72 +708,6 @@
bar, a sink in the medical storage and a sink in the perma-brig's kitchen are
now properly rotated and connected with the plumbing.
- bugfix: The unisex showers on Birdshot have been given a water tank for its plumbing.
- - bugfix: Chef and department security have the assignment on their ID imprinted
- onto their PDA by default, instead of defaulting to Cook/Security Officer and
- requiring you to do so manually.
- - balance: Gorillas are faster, stronger, but not bigger too. Note while holding
- an item, they are the same speed as they were prior.
- - balance: Gorillas now have the understanding of languages as monkeys do.
- - balance: The Gorilla Cube Box for traitors has been replaced with a singular gorilla
- cube. Due to the aforementioned changes, this singular gorilla should be as
- scary if not scarier than 3 gorillas were prior.
- - balance: ' Magillitis Serum Autoinjector now grants the resulting gorilla a slow
- passive regeneration effect which kicks in after not taking damage for 12 seconds.'
- - bugfix: RCD converts miscellaneous turfs like basalt, sand, beach etc to plating
- first & not put a wall directly on top of them
- - qol: You can use atmos machines, holopads, crayons, spray cans, and disposal bins
- while floored.
- - bugfix: You can close extinguisher cabinets while floored.
- - bugfix: You can climb onto a photocopier from the floor.
- - qol: Constructs now reuse the victim's mind instead of just moving their client
- - bugfix: Fixed instances where holochip/holocredits would spawn with a total of
- zero credits contained within.
- - bugfix: You may no longer make deathmatch arenas dark with a lightswitch.
- - bugfix: Blood overlays on items no longer leak onto other objects
- - balance: Power crepes are now finger food
- - bugfix: The say TGUI would recognize :g (changeling hivemind) prefix. and give
- a visual indicator in it that you are talking in the right channel
- - rscadd: Added an option to deathmatch loadout dropdown that allows you to pick
- a random loadout
- - bugfix: In deathmatch, plasmamen are made humans and the UI supports more players
- - bugfix: fixes pokemon ai still being active when inside the pokeball
- - bugfix: Newscasters no longer say "No wanted issue posted. Have a secure day."
- when there is, in fact, an active wanted issue currently posted.
- - qol: adds examines & screentips for building & deconstructing both machine & computer
- frames.
- - qol: Adding a circuitboard from a rped to n computer frame will automatically
- screw it in place like before.
- - code_imp: merged procs for computer & machine frames. autodocs them where possible.
- - code_imp: moved code for machine frame into its own file.
- jjpark-kb:
- - rscadd: added two-handed component to reagent sword, katana, axe, and hammer
- - rscadd: added butcher component to reagent knife, spear, and axe
- - rscadd: added jousting component to reagent spear
- - rscadd: added two-handed reach component (new) to all spears (reagent and not)
- - balance: reset the bone spear's damage back to the /tg/ version
- thegrb93:
- - bugfix: Fixed cyborg brain not being user preference
-2024-02-28:
- LT3:
- - code_imp: Tram throwing now breaks grilles consistently
- - code_imp: Tram malfunction lethality/throw chance are now a multiplier instead
- of flat value
- - code_imp: Tram throw chance can be adjusted
- - code_imp: Unlucky trait is now used in tram throw calculation
- PapaMichael:
- - balance: Fugitive hunters will spawn early if the emergency shuttle is called.
- SkyratBot:
- - rscadd: 'New Changeling Ability: Hive Head'
- - bugfix: Fixed bees having an improper sprite offset
- - bugfix: Fixed Bluespace RPEDs failing to apply circuits from a distance if you
- had to select between multiple.
- - refactor: Bodytypes to do with character sprite shape now have their own bodyshape
- var, all sprite handling is done with bodyshape and not bodytype anymore
- - bugfix: Medical/security records now show an icon based on the registered trim,
- rather than showing a question mark for records with customized titles.
- - bugfix: The North Star finally has a bluespace gas sender system.
- - bugfix: Lobby manifest shows the head/captain symbols next to heads and captains
- with custom titles, as long as they're registered with a head/captain trim.
EEASAS:
- balance: buffs corporate modsuit(centcom only)
Higgin:
@@ -1202,9 +732,6 @@
- rscadd: A new module, the Safety-First Head Protection module, protects you from
head trauma! Available in most modsuits expected to take hits to the head often.
And from roundstart exofabricators.
- - qol: The chapel has been slightly overhauled on Birdshot, with the chaplain now
- having a place to preach sermons.
- - bugfix: Sparring chaplains are now able to operate on Birdshot!
2024-02-27:
00-Steven:
- bugfix: Newscasters no longer say "No wanted issue posted. Have a secure day."
@@ -1291,17 +818,6 @@
it to use acid_act()
- bugfix: fixes xenomorph vore accidentally destroying mobs it wasn't supposed to
destroy, im thinking this was modified list in place shenanigans
- - image: New sprites for plant grafts!
- - bugfix: fixes cardboard cutouts not updating when held and using the crayon on
- them to change their appearance, and fixes the alt_appearance being added to
- the cutout instead of the mob holding it
- - rscadd: Added a multi-dimensional bomb payload to the black market. It's very
- expensive.
- - qol: Intelligent monkeys now punch people instead of biting them.
- - code_imp: TRAIT_DEAF now works on non-carbon mobs
- - rscadd: a list of items called vendor_nocrush that vendors dont deal integrity
- damage to upon hitting them.
- - bugfix: Makes vending machines no longer crush chairs and conveyors.
IndieanaJones:
- rscadd: 'New Changeling Ability: Hive Head'
- bugfix: Fixed bees having an improper sprite offset
diff --git a/html/changelogs/archive/2024-03.yml b/html/changelogs/archive/2024-03.yml
index dec50243377..19283db8208 100644
--- a/html/changelogs/archive/2024-03.yml
+++ b/html/changelogs/archive/2024-03.yml
@@ -1,50 +1,4 @@
2024-03-01:
- A.C.M.O.:
- - bugfix: Fixed the AI hologram's ability to copy the appearance of crew members.
- Majkl-J:
- - qol: Borers being inside someone no longer makes them die to storms
- - bugfix: Dead borers don't permanently lose reagent containers
- Melbert:
- - bugfix: Fixes grabbing yourself when you tackle someone.
- - bugfix: Rat hearts apply their damage modifier malus correctly
- SkyratBot:
- - spellcheck: changed the fitness skill title to powerlifter
- - bugfix: Meat and other bloody things will not spread blood forever.
- - bugfix: You can build material airlocks again
- - rscadd: Pipebombs
- - rscdel: Improvised Firebombs
- - bugfix: the north star's main intersections are brighter, the elevator is properly
- lit, and a single floating poster was moved.
- - rscadd: Added a new law to the Artist lawset in order to encourage Artist AIs
- to build an audience.
- - bugfix: Grilles dont break by just walking into them under any circumstances
- - bugfix: fixes an issue where being gibbed while under the HARS mutation can sometimes
- lead to the brain being deleted when it's not supposed to be
- - qol: HUD implants will now notify you when toggled on or off
- - bugfix: Being in a Swat Suit appropriately protects you from collisions with a
- body, rather than the body thrown at you having these protections protecting
- YOU, the victim of the collision.
- - bugfix: Fixed (cross)bows' strings not loosening once fired.
- - image: adds a visual effect for hive head bees despawning
- - bugfix: the multi-dimensional bomb payload now works as intended and doesn't break
- once you select a theme.
- - bugfix: Cryostylane reaction now has a moderate & not extreme cooling effect.
- Helps you achieve more pure amounts of Cryostylane
- - bugfix: Fixes the slot machine's jackpot. It should now give all of the available
- prize money + 10,000 credits as payout for a jackpot.
- - refactor: Converts the slot machine's UI over to TGUI
- - rscadd: The slot machine now has a whole new type of jackpot! This one's a banger!
- - admin: Logs holosign swatting.
- - balance: '"Freshness Jars full of Natural Bait" is now a goodie and costs 200
- credits instead of 2000'
- - balance: the shadow eyes of nightmares and shadowpeople more broadly are now sensitive
- to light, requiring additional protection.
- - qol: Allows dragging from boxes into All-In-One Grinders
- - bugfix: The M-90GL now correctly states that it accepts .223 toploader magazines.
- Swiftfeather:
- - bugfix: Elder atmosian armor appears properly on digis.
-2024-03-02:
- SkyratBot:
Ben10Omintrix:
- rscadd: new virtual pet app on the pda
Cheshify:
@@ -128,60 +82,6 @@
in the dark
- balance: The changeling power "Chameleon Skin" has been buffed, Reduces the cost
to 1 and sped up the time it takes to turn invisible
-2024-03-05:
- LT3:
- - image: medical and improvised gauze are visibly different from cloth
- SkyratBot:
- - rscadd: added the lightbearer moth set, available in the character setup.
- - image: added icons for the lightbearer set; new moth wings, antennae and markings.
- - bugfix: fixed the chances of living flesh actions
- - bugfix: fixed some issues when calculating the duration of moon smile's effects
- - bugfix: fixes deathmatch baseturfs (you cant crowbar the floor to breach to space)
- - rscadd: Added new clown shoes "moffers"
- - rscadd: Added moffers to the contraband list of the autodrobe
-2024-03-06:
- Rhials:
- - bugfix: Fixes some tiles outside the Icebox AI satellite not getting hit by storms.
- SpaceLove:
- - bugfix: Central Command Logistics department noticed the missing items on their
- listings for robotics assembly crate. They have updated it!
-2024-03-08:
- Melbert:
- - bugfix: All bibles are no longer suspiciously hollow
- - rscadd: Boulder refineries and smelters can refine Golems.
- - rscadd: The animation that plays when an alert pops up on your screen is different.
- - bugfix: Extremely Minor Delta Morgue Fixes. See if you can spot them.
- - bugfix: Moving "down" as an observer is no longer janky.
- Seven:
- - rscadd: Lockers and crates now shake when someone is attempting to resist out
- of them.
- SkyratBot:
- - bugfix: Revenants can now again emag Medibots, Cleanbots, and Hygienebots.
- - image: 'added unique icons for spells: caretaker''s refuge, apetra vulnera and
- ascended shapechange'
- - bugfix: Prevents polymorphing deleting items by consuming them when transformed
- then leaving the polymorph
- - balance: personal flashes now Knockdown rather than Paralyze direct targets.
- - bugfix: MetaStation Pharmacy is no longer accessible with general medical access,
- Also changes the Chemistry and Pharmacy airlocks into medical ones.
- - bugfix: Basic mobs no longer have the (unintended) ability to shoot out of containers,
- like bluespace body bags.
- - qol: If your OOC message gets eaten due to some weird circumstance in how your
- message is handled, it will feed the applicable message back to you so you can
- copy-paste and try to send it again.
- - sound: Added the new moffers sound effect and made moffers use it instead
- - rscadd: Vending machines now track how many credits have been spent on them, and
- when restocked will pay out that saved portion to the restocker, with a 50%
- match going to the cargo department.
- - rscadd: Adds the restock tracker app, an NTOS app that tracks how well stocked
- the station's vending machine units are at a glance as well as how much is contained
- in each.
- - refactor: Vending machines now use the payment component for money handling behavior,
- meaning it will now accept held or pulled coins/cash/credits
- - qol: Attacking vending machines can drop a portion of it's stored credits, at
- the usual expected danger.
- - balance: Tweaked the cost of various restock modules up and down.
- - qol: Restock modules can now be sold for 50 credits.
ViktorKoL:
- bugfix: made some heretic descriptions more accurate
- spellcheck: improved english of the heretical eldritch patrons
@@ -267,45 +167,6 @@
their rarity and a timer to show how long until it updates.
- rscadd: New Stock market events, one locks a material from being purchased, the
other maximizes the value and quantity of a material for sale.
- - bugfix: Tackle and wellcheers code for sanity values now function.
- - image: The minigames icon now has an icon for the deathmatch minigamee
- - admin: Made it easier for admins to adjust blood brother teams using admin tools.
- - bugfix: Correct blood brother conversion logging.
- Wallem:
- - bugfix: The cursed coupon now only triggers a cursed event once, rather than infinite
- times.
-2024-03-09:
- Majkl-J:
- - bugfix: Certain maps no longer have broken machine frames
- SkyratBot:
- - bugfix: fixes ore vent spawned wolves being untammable
-2024-03-10:
- Drag:
- - rscadd: Adds the Shark and Shork costume. Blahaj lovers rejoice!
- EspeciallyStrange:
- - rscadd: Added Energy Revolver, Energy Carbine and Bogseo being now a weapon choice
- you can pick from the beacon. Blueshield now has a lifeline program in their
- PDA and spawn with brute firstaid kit, alongside having set of sunglasses to
- choose from to fit their personalisation. Does not include synth treatment kit
- for command
- - image: blueshield energy revolver, made by yours truly.
- LT3:
- - bugfix: Fixed ineligible airlocks from receiving engineering override when activated
- from the communications console
- - bugfix: Various airlock/firelock overlay fixes
- Majkl-J:
- - bugfix: DNA Syringe Gun now works correctly
- - bugfix: Chicken meatballs can now be made again
- PapaMichael:
- - bugfix: Removed erroneous information on some health analyzer's examine text.
- SkyratBot:
- - code_imp: Chem stun reductions are now applied more consistently.
- - bugfix: Chem stun reductions should now more consistently apply to unconsciousness.
- - refactor: Improved shuttle gibbing code, adding a new resistance flag, `SHUTTLE_CRUSH_PROOF`.
- - bugfix: Immortality revival spectres can no longer be crushed by shuttles.
- - rscadd: The ghost of Poly can no longer be shuttle-crushed, nor can anything incorporeal.
- - rscdel: Removed a nanomachine pizza from the deathmatch meat tower map that allowed
- you to become a borg
Hatterhat:
- bugfix: Basic mobs no longer have the (unintended) ability to shoot out of containers,
like bluespace body bags.
@@ -383,47 +244,6 @@
it hits the maximum length.
- bugfix: This also fixes the PIN pad leading to the right wing of the museum away
mission.
- - qol: EVA can be given now in common access slots for non-command crewmembers.
- - balance: Adjusts the values and contents of the Contraband Crate's item loot table.
- - code_imp: Use a common list for acceptable silo materials for some stuff. Renamed
- ore category into silo category.
- - rscadd: Adds 3 new kits into the syndie-kit spawn pool, 2 for special and another
- for tactical
- - bugfix: When a carbon talks over robotic it uses their voice instead of visible
- name. Meaning, voice changers work like they do over other comms regardless
- of face covering.
- - bugfix: Plexagon Access Management actually updates the shown template list on
- authentication, avoiding needing to refresh/reopen/somesuch the program manually.
- - rscadd: Wheat and meatwheat can now be worn in the mask slot. Farmers rejoice!
- - qol: Extended the metric prefixes.
- Zergspower:
- - qol: Curtains and shower curtains are no longer solid objects that defy common
- sense
- nikothedude:
- - rscadd: Roboticists now spawn with synthetic medkits to make their jobs a bit
- easier
- - rscadd: New cargo packs for synthetic medkits
- - balance: Roboticists now spawn with diag huds, welding helmets, and black gloves
- - balance: Synthetic burn kits now have extra bottles
-2024-03-11:
- Nidvex250:
- - bugfix: Lidocaine now properly numbs your patient for pain free surgery!
- - balance: We found trace amounts of meth in tests conducted on Lidocaine and scrubbed
- the chem dispensers, making Lidocaine safe and non-habit forming.
- SkyratBot:
- - bugfix: fixes toolact screentips & balloon alerts for boulder machines & machine
- frame
-2024-03-13:
- Majkl-J:
- - bugfix: posis in living borgs dont ping ghosts anymore
- - bugfix: Fixes a bunch of broken overlaycode, namely the liquid overlays
- - qol: SAD reloads quirks now
- - bugfix: Ghost cafe loads quirks correctly
- Melbert:
- - bugfix: Some things which should pacify people (but aren't) now will properly,
- like hypnoflash
- - bugfix: Silicons can use asterisks in binary without fear of saying something
- interesting.
Pickle-Coding:
- qol: Extended the metric prefixes.
mc-oofert:
@@ -628,16 +448,6 @@
a holster equipped in order to utilize this feature. Also, they have a tighter
dual-wield cone.
- balance: Thermal pistol crates are now 2000 credits, up from 1400 credits.
- - bugfix: Fixed the larva "hide" ability not properly hiding larvas under tables.
- - bugfix: Prevent runtime from humans with biowares gettingn deleted.
- - balance: All materials except glass are now worth more gulag points than before.
- - balance: Mining skill decreases the time it takes to break boulders, and makes
- it less tiring.
-2024-03-16:
- Rhials:
- - balance: Irradiated meteors now hit harder and leave behind radioactive goop.
- SkyratBot:
- - qol: Tramstation botany now has roundstart watering cans and syringes
starrm4nn:
- balance: Ephedrine spasms won't affect small or tiny items
- balance: Ephedrine's movement speed bonus now scales with purity.
@@ -664,34 +474,6 @@
having to worry about friendly fire with this, for 750 mining points at your
mining vendor.'
- bugfix: Minebot passthrough upgrade now properly makes PKAs pass through minebots.
- - bugfix: fixed some errors with the prepackaged tts
- - bugfix: A missing recharger has been added into science's testing range on Birdshot
- station.
- - rscadd: Added a 'Closet Anomaly' station trait, which links and turns a portion
- of the roundstart closets into impromptu teleporters.
- - code_imp: We now log how many ores spawned on lavaland each round, as well as
- the sizes of all of the ore vents.
- - bugfix: Time on servers hosted outside of the UK should now properly have their
- timezone offset.
- - image: Updated button icon for Summon Simians and Gorilla Transformation.
- - refactor: Instruments now use TGUI.
- - qol: Uninverted the inverted corner of the Icebox medbay treatment center.
-2024-03-17:
- Majkl-J:
- - balance: Robotic part surgeries no longer cause you to scream out in pain or affect
- you negatively.
- - bugfix: People no longer scream in pain on stasis beds
- - refactor: Removes TRAIT_NUMBED, using TRAIT_ANALGESIA instead
- Melbert:
- - rscadd: MODsuits now use the "suit charge" HUD element to show how much charge
- they have left, rather than a screen alert
- Rhials:
- - qol: Posters now return to your hand when the hanging process is cancelled, or
- they are snipped down.
- - qol: Abductor posters can now only be cut down with abductor-tier wirecutters.
- SkyratBot:
- - bugfix: now spiders get extra damage by fly swatter
- - bugfix: Modsuit Pathfinder module is significantly better at finding it's destination.
2024-03-16:
00-Steven:
- sound: Placing paper in a paperbin is no longer silent.
@@ -754,78 +536,6 @@
are a caveat to it: It cannot be ridden on open space gaps deeper than one level
or actual space, unless there''re objects that prevent falls, like lattice or
catwalks.'
- - bugfix: NumberInput(used in chem heater, plumbing reaction chamber etc) highlighting
- & editing requires only single click like before
- - refactor: Typescript conversion for NumberInput TGUI Component
- - bugfix: Cleanbots once again require an emag to spray acid on people. They can
- still acid trash objects normally.
- - sound: Placing paper in a paperbin is no longer silent.
- - bugfix: Psyker vision no longer causes infinitely worsening lag
- - balance: If you work out under heavier-than-earth gravity, you will get gains
- faster.
- - balance: Bulldog Shotguns now have a 2-round burst fire.
- - balance: Lone Operatives now come with some additional Bulldog Shotgun magazines.
- - qol: The LawDrobe now stocks two (2) boxes of evidence bags.
- - bugfix: Lathes don't hang if materials run out mid printing. Also displays message
- if materials are put on hold while printing
- - qol: added tooltip to newscaster to tell people that they need to insert paper
- if they want to print a newspaper
- - bugfix: Fixed cap overlay being added even when pipe is not hidden.
- - bugfix: Fixed cap overlay being visible on turfs that are masked with darkness
- plane, but still visible via mesons, cameras etc.
- - rscadd: Added a collar bomb to the black market.
- - rscadd: Added a possible kit to the special syndie bundle B, which also has uses
- these collars.
- Tattle:
- - rscadd: Getting shrunk makes you talk small
- Webcomicartist:
- - bugfix: Fixed RLD,RTD and Rebar crossbow not being storable on the engineering
- winter coat slot.
-2024-03-18:
- Rhials:
- - bugfix: Plasmamen nukie reinforcements are now properly given a plasmaman-safe
- outfit.
- SkyratBot:
- - bugfix: Human AI now closes regular AI job positions.
- - rscadd: The Bartender's double barrel shotgun can be purchased for 1,800 credits
- on goodie tab
- - bugfix: Plasmamen will become human in the deathmatch so they don't instantly
- die
- - rscadd: Ice cream and frozen treats now have a chilling effect.
- - rscadd: You can add a scoop of ice cream on waffles.
- - balance: added an action speed modifier to the generic food haste effect (you
- do things, and not just run, an itsy bitsy faster)
- - bugfix: Action abilities hidden from players are now not shown to observers either.
- - rscadd: Added 20+ modifiers to the deathmatch minigame, which can be enabled by
- the host.
- - bugfix: ID locking and unlocking work.
- - bugfix: Security camera consoles no longer have infinite range.
- - bugfix: fixed consecutive tgui text input inheriting user input from previous
- input form within the same proc
-2024-03-20:
- Rhials:
- - code_imp: Deathmatch files, map names, and keys should all be consistent now.
- SkyratBot:
- - bugfix: You can no longer determine the result of a dice roll from off-screen.
- - bugfix: Prisoners who are teleported to the Nanotrasen Work Camp should now always
- be stripped of their gear to prevent escapes.
- - bugfix: If you place a headset on a non-Poly Parrot, you should be able to remove
- it from the parrot as-expected now rather than having the parrot send it to
- the shadow realm.
- - bugfix: Deathmatch players should no longer be able to roll any midround antagonist.
- softcerv:
- - rscadd: Adds in fullscreen overlays to soulcatchers/carriers
-2024-03-21:
- LT3:
- - bugfix: Export barcodes are visible on wrapped packages
- SkyratBot:
- - bugfix: The deathmatch modifiers modal menu can actually be opened now. Also fixed
- a bunch of issues it had.
- - bugfix: Fixed the lua editor being outright broken.
- - admin: cluster bombs stop spamming admin logs
- - image: modified gi sprites, making them more customisable.
- - qol: Can now use wirecutters when performing Tend Wounds.
- - code_imp: Mineral logging now collects ore names more cleanly.
Jacquerel:
- balance: If you work out under heavier-than-earth gravity, you will get gains
faster.
diff --git a/html/changelogs/archive/2024-04.yml b/html/changelogs/archive/2024-04.yml
index d03c062c644..9677f61ec71 100644
--- a/html/changelogs/archive/2024-04.yml
+++ b/html/changelogs/archive/2024-04.yml
@@ -418,20 +418,6 @@
mode and stop planning or acting.
- bugfix: AI controllers will now record how much time was spent on planning or
un-idling AI controllers.
- - bugfix: The rebar crossbows now properly loosen their bowstring upon firing.
- - balance: Longfall modules no logner stun you when they activate.
- - balance: Falling from a height greater than one z-level while using the longfall
- module will still stagger you.
- - bugfix: The plasma flower modsuit core now actually contains a reasonable quantity
- of power.
-2024-04-27:
- aKromatopzia:
- - rscadd: Chaplains can be "Clerics"
-2024-04-28:
- Melbert:
- - qol: Tuberculosis makes you cough more
- - qol: Nicotine Addiciton makes you cough less
- - qol: Medicine Addiction maybe makes you cough more, maybe makes you cough less
Jacquerel:
- balance: The Bioscrambler will now actively attempt to get closer to living targets
rather than chilling in a closet nobody goes into (unless you trap it in a containment
@@ -648,41 +634,6 @@
san7890:
- qol: There's a bit more user feedback when it comes to attempting to handcuff
someone.
- grungussuss:
- - bugfix: fixed being able to install multiple of the same upgrade to medical cyborgs
-2024-04-29:
- LT3:
- - bugfix: Skyrat specific crew monitors work properly
- Majkl-J:
- - bugfix: Synth recharging in mechchargers is now fixed
- - bugfix: Crank cell can now be cranked for 1MJ of energy instead of 100J. How a
- human manages to pull that off shall not be discussed
- Melbert:
- - bugfix: You can handcuff people with 2 arms and you can no longer handcuff people
- with 0 arms
- ReturnToZender:
- - bugfix: NTC office bugs have received some minor fixes
- - rscadd: It is now free to exit the NTC office, even if the outer access is not
- free
- SpaceLoveSs13:
- - admin: New verb to play local internet music!
- StrangeWeirdKitten:
- - bugfix: Hardlight wheelchair no longer drops metal when deconstructed
- VexingRaven:
- - bugfix: The debug box no longer spills its contents everywhere
-2024-04-30:
- BurgerBB:
- - rscadd: Adds the DOTA suit and various extras to research.
- Erol509:
- - balance: Nerfs powerator cash generation
- LT3:
- - bugfix: Skyrat specific crew monitors work properly
- Majkl-J:
- - code_imp: Further cleared out MCR defines
- - qol: Debloated the service borg module count
- - balance: Moved service borg art and music supplies to the new artistic module
- - bugfix: Fixed the dual cooking tools on service borgs, opting to keep tg ones.
- - spellcheck: Fixed lowercase on a few borg module recipes
starrm4nn:
- qol: Replaced the surgical tools in the Primary Surgery Theatre with 2 Surgery
Trays.
@@ -950,25 +901,6 @@
Jacquerel:
- balance: Netguardian Prime can see in the dark.
- image: You can see Netguardian Prime in the dark.
- - bugfix: fixes mobs getting stuck trying to reach something unreachable
- - bugfix: Examining someone with Med/Sec HUDs will no longer filter the message
- under Radio.
- - bugfix: CentCom dispatched a team of interns to fix the loot panel's loading message.
- It should now load properly. It did before too, but now the message is fixed.
- - image: The Infiltrator Suit has received a new model, sleeker than ever!
- - admin: spy can now be rolebanned
- - bugfix: pAI requests should no longer randomly permanently break in a round.
- aKromatopzia:
- - rscadd: teshari move speed change applies to raptor cybernetics
- destrucktoid:
- - rscadd: Added new healing systems for bloodsuckers
- - refactor: Made the code use AddBloodVolume() exclusively for blood costs as bloodsucker.
- scabs3:
- - rscadd: Added new lines and responses to the 'dark and brooding lizard plushie'
- tmyqlfpir:
- - bugfix: Automatically link machines to closest research server for off-station
- z levels (fixes Tarkon/DS-2 machines linking to wrong R&D server)
- - qol: Wrench down research console on DS-2
SyncIt21:
- bugfix: Eigenstasium exposed & Anomaly station trait affected closets work again.
Eigenstasium closets are tainted blue
diff --git a/html/changelogs/archive/2024-05.yml b/html/changelogs/archive/2024-05.yml
index 261118bb313..899638d1843 100644
--- a/html/changelogs/archive/2024-05.yml
+++ b/html/changelogs/archive/2024-05.yml
@@ -1,90 +1,4 @@
2024-05-01:
- Erol509:
- - rscadd: Added back TEG to techwebs and engineering protolathe
- - image: Changed TEG sprites from YogStation. Credits to original author.
- - balance: Nerfs powerator cash generation
- Flleeppyy, Absolucy:
- - sound: Added unique announcement jingles to each heretic path's ascension, replacing
- the old "space-time anomalies detected" announcement.
- LT3:
- - qol: The various RCD upgrade disks no longer look identical
- Majkl-J:
- - qol: Debloated the service borg module count
- - balance: Moved service borg art and music supplies to the new artistic module
- - bugfix: Fixed the dual cooking tools on service borgs, opting to keep tg ones.
- - spellcheck: Fixed lowercase on a few borg module recipes
- SkyratBot:
- - bugfix: Ethereal unarmed attacks "sear" instead of "singe", which was buggy
- - bugfix: On examine PDAs will now inform players that the power cell can be removed
- for recharging or replacement, and how to do so.
- - bugfix: QM is now excluded from getting tasked with stealing telescopic batons
- and the captain's spare ID, like all other command personnel are.
- - bugfix: computers don't deconstruct themselves twice so machines like slotmachine
- don't spawn excess chips upon deconstruction
- - bugfix: Fixes a bluescreen in the deathmatch lobby UI.
- - bugfix: Genetic sequence scanners now show the sequence to mutated genes from
- scanned individuals.
- - qol: Made birdshot atmos easier to use.
- - bugfix: The Birdshot engineering department is no longer using a second hand broken
- microwave.
- - bugfix: Infinite-range laser pointer (for "AI" Big Brother) now has a correct
- diode. If you accidentaly remove it then you can put it back!
- - rscadd: you can use a photo with blueprints on it to read wires
- - bugfix: Fixes tramstation gravgen wiring
- - bugfix: Fixes tramstation turbine wiring
- - bugfix: Fixes northstar cmo button name
- - rscadd: trainship hijack deathmatch map
- - bugfix: The syndicate infiltrator has no weak spots anymore
- - bugfix: Monkey changelings that are disguised as someone can now take off their
- flesh clothes.
- aKromatopzia:
- - rscadd: teshari move speed change applies to raptor cybernetics
- jjpark-kb:
- - balance: forged sword, katana, spear, axe, and hammer had their force lowered
- (so wielding multiplier can double)
- - balance: bokken had its force very slightly increased (so wielding multiplier
- can halve)
- - bugfix: you can no longer get infinite amounts of experience for hammering forged
- items (the hits required check is earlier and with a return)
- - rscadd: added perfect hits, which grant a great deal of smithing experience and
- can increase the damage of forged weapons (up to 3 additional force)
- - rscadd: added mindless killer component to all forged weapons-- deal twice the
- damage to any mob that has no mind (no mind means not player controller)
- tmyqlfpir:
- - bugfix: Automatically link machines to closest research server for off-station
- z levels (fixes Tarkon/DS-2 machines linking to wrong R&D server)
- - qol: Wrench down research console on DS-2
-2024-05-02:
- Fluffles:
- - qol: you can pick up wheelchairs while on the ground
- - qol: you can place wheelchairs a tile away from you, like roller beds
- Majkl-J:
- - bugfix: Company imports button is brought back
- SkyratBot:
- - bugfix: The syndicate infiltrator has no weak spots anymore
- - rscadd: trainship hijack deathmatch map
- - qol: The Human AI's advanced security console can be repackaged with a screwdriver
- if you wish to move it.
- - bugfix: You can now re-construct pod doors that had deconstruction started.
- - qol: You can now make pod door assemblies using plasteel in-hand.
- - bugfix: If you are a freerunner, you don't end up faceplanting despite having
- catlike grace.
- - admin: Debug uplinks now shows all categories and won't lock upon buying items
- like his grace and the syndicate balloon.
- - qol: conveyor switches now have direction-specific input signals
- - bugfix: AIs can now track Silicon as long as their built-in camera is online.
- - bugfix: Constantly fleeing in Battle Arcade will no longer give you a very large
- amount of decimals due to halving your gold every time.
- - bugfix: Monkey changelings that are disguised as someone can now take off their
- flesh clothes.
- - bugfix: Fixes hypercharged slime core cells and circuit guns having 1,000 times
- less energy than intended.
- - bugfix: Monkeys can no longer be knocked over by walking into a windoor on combat
- mode while they're behind it.
-2024-05-03:
- Majkl-J:
- - qol: Health analyzers now include basic information on treatment of husked bodies.
- - bugfix: Synth computers no longer force open the messenger app
13spacemen:
- bugfix: Ethereal unarmed attacks "sear" instead of "singe", which was buggy
Constellado:
@@ -166,47 +80,6 @@
- qol: add screentips for conveyor switches
- rscdel: removes circuit conveyor circuit default trigger behavior in favor in
favor of the three state triggers
- - bugfix: fix runtime when no events were drafted to be picked from
- - config: make events frequency configurable
- - rscadd: increased the size of the pool that Machine Blessing draws from
- - balance: weighted some of the implants that Machine Blessing can give
- SpaceLoveSs13:
- - rscadd: Fragile now has customization for damage from 1.2x to 5x modifier.
- - bugfix: Interlink Arrivals shuttles have tiny fans for air support!
- nikothedude:
- - bugfix: Jousting no longer bypasses pacifism
-2024-05-04:
- Melbert:
- - bugfix: New machine god blessings now actually works probably
- Ryll/Shaps:
- - bugfix: Pacifists can no longer endlessly spam the backblast functionality of
- loaded rocket launchers that they cannot actually fire
- SkyratBot:
- - bugfix: mobs in the same faction will no longer be at odds against one another
- - bugfix: mobs can now perform behaviors alongside searching for targets
- - bugfix: mobs will no longer be starting and stopping when chasing targets
- - bugfix: Candy corn is once again available to detective fedoras
- - rscadd: Adds an Icebox-specific station trait that brightens outdoors areas on
- the surface level.
- - bugfix: Stage 2 singularities should no longer escape containment
- - bugfix: Fire ant colonies created by burning regular ants will now contain fire
- ants as their reagent
- mogeoko:
- - bugfix: Ventcrawling mobs can change Z-level using multiz-decks again.
-2024-05-05:
- Majkl-J:
- - bugfix: Fixed the scream emote being silent
- - bugfix: Fixed cooldowns on emotes being incorrectly applied, indirectly fixing
- the cry emote and a few others
- Melbert:
- - bugfix: Map vote should work better
- SkyratBot:
- - balance: Bitrunners can now earn Bepis disks, once per medium domain or above,
- if they scored at least an A.
- - rscdel: Bitrunners can not buy Bepis disks from their vendors.
- - bugfix: Blood Brothers should spawn knowing what their objectives are.
- - bugfix: Teams of 3 Blood Brothers will once more have an additional objective.
- - bugfix: Fixed lua scripts breaking when turfs with registered signals get deleted.
Gaxeer:
- bugfix: fix runtime when no events were drafted to be picked from
- config: make events frequency configurable
@@ -253,32 +126,6 @@
the station automatically after 6 minutes.
- bugfix: You can no longer be kidnapped and held for ransom by cargo technicians
posing as pirates.
- Useroth:
- - bugfix: Fixes transfer votes
- - refactor: Removes modular piece of code related to electrocution that is no longer
- necessary.
-2024-05-06:
- Erol509:
- - bugfix: Fixed Armaments station tgui error, when trying to select item.
- SkyratBot:
- - bugfix: fixes traditional equipment crate name
- - qol: Admin modsuit now has a radiation protect module
- chestlet, Lutowski:
- - rscadd: Three Security skirts & a jumpsuit were added to the Peacekeeper Outfitting
- Station & loadout.
- - rscadd: Security officers with jumpskirt pref now spawn with the new jumpskirt,
- battle dress is moved to loadout.
- - qol: Feline Traits now gives a cat tongue
- - qol: Cat tongue now has special saymods
-2024-05-07:
- SkyratBot:
- - rscadd: '''puppy'' ''kitten'' and ''spider'' pai skins'
- aKromatopzia:
- - bugfix: moved raptor and digi cybernetics' categories
-2024-05-08:
- BurgerBB:
- - qol: The inspector's Fedora now uses regex. When saying commands, it is much more
- generous on picking up trigger word.
Jacquerel:
- bugfix: Blood Brothers should spawn knowing what their objectives are.
- bugfix: Teams of 3 Blood Brothers will once more have an additional objective.
@@ -327,33 +174,6 @@
ShizCalev:
- bugfix: Inducers no longer break completely after trying to charge a PDA with
them.
- SkyratBot:
- - bugfix: Lootpanel now requires 515.1635 to generate most icons. TG support for
- 514 ended May 1. Update your client to fix the icons.
- - bugfix: You can no longer bypass construction restrictions via the crafting menu
- - bugfix: A meter attached to distribution pipes in Birdshot's atmospherics has
- been moved to the matching pipe layer.
- - qol: temporarily soulless (deathmatch, etc) bodies dont appear as soulless on
- medhud
- tmyqlfpir:
- - qol: Cafe and Interlink now have Disposals
-2024-05-09:
- "@\_MrEmre12, @\_Majkl-J":
- - rscadd: Fishing pool introduced to metastation garden
- - refactor: All water tiles now handle fishing through a unified fishing_datum variable
- Bisar:
- - balance: Knockdown effects will know consistently disarm, instead of failing to
- disarm if you're already lying down.
- Melbert:
- - balance: To see wires in photos of blueprints, you first must squint at the photo.
- SkyratBot:
- - balance: Spies can now use other spies' uplinks.
- - rscadd: RD's skillchip adds cyborg wires knowledge
- - rscdel: You can no longer use another station's blueprint photo to look at wires
- or do the traitor objective with.
-2024-05-10:
- GoldenAlpharex:
- - bugfix: Removed another rogue cable from underneath a disconnected SMES.
delingar:
- rscadd: RD's skillchip adds cyborg wires knowledge
jlsnow301:
@@ -402,23 +222,6 @@
sprite used as the base. Less black void, let's go!
- image: Added smooth broken/burnt overlays for grass, meaning that it's going to
look a lot less broken when the grass tile is at the edge of a smoothing group.
- Jane:
- - qol: The Coroner's Ritual Knife can now sit upon Med Belts!
- Melbert:
- - qol: There is now a slight animation to entering a portal or teleporter.
- - qol: Morgue trays (and the contents inside) are now animated on open and close
- - bugfix: DNA infusing tiers works again
- - bugfix: Cult can build again
- - qol: Spies may spawn in less numbers, but rarely may also spawn in more numbers.
- MrStonedOne & Lilah Novi:
- - rscadd: Say commands typed in the command bar now trigger typing indicators
- Rhials:
- - balance: Virtual domain ghost roles can no longer enter the safehouse/"equipment"
- areas of a domain.
- - bugfix: Pirate virtual domain ghost roles will no longer make a pirate team antag
- datum.
- ShizCalev:
- - bugfix: Cursed Items wizard event actually works again.
Jacquerel:
- rscdel: Being sacrified by a Heretic no longer gives you an incurable phobia.
- rscadd: Being sacrificed by a Heretic will drop 2-4 of your organs on the ground
@@ -427,30 +230,6 @@
- rscadd: Players who have been sacrificed by Heretics will experience additional
and rapidly lethal consequences for attempting to fight someone who previously
sacrificed them, as long as that person is wearing a focus.
- - bugfix: Pride pins can be reskinned again with alt-click.
- - bugfix: moths with functional/flight potion wings get an animation when they *flap
- once again, and it makes a sound
- - bugfix: fixed clients being seen as stuck doing tutorials in some cases when changing
- mobs
- - bugfix: Added the missing bulwark MOD module and the jawed fishing hook to the
- black market.
- - bugfix: The stomach pump surgery actually works again.
- - spellcheck: '"brusing" to "bruising" in the message you get when failing the stomach
- pump surgery.'
- - qol: Mech drills can auto-mine by walking into rock.
- - bugfix: conveyor switches work for cyborgs again
- - bugfix: The quick equip 'E' hotkey shouldn't warn if one of your bags is full
- anymore
-2024-05-11:
- SkyratBot:
- - rscadd: Chance to become crab on nonlethal DNA meltdown
-2024-05-12:
- xXPawnStarrXx:
- - bugfix: fixed mold spiders dying from Co2/plasma
-2024-05-14:
- Erol509:
- - rscadd: Leashes have been stocked in a very particular vendor in the dormitories.
-2024-05-15:
- sound: Lasers adjust their pitch as they run out of charge, rather than frequency
Melbert:
- qol: Morgue trays (and the contents inside) are now animated on open and close
@@ -497,19 +276,12 @@
Melbert:
- rscadd: Cigarette smoke is now more smokey.
- rscadd: Taking a cigarette out of your mouth will let out a big puff of smoke.
- - qol: Some alerts, such as Fleshmend's, show their remaining duration on their
- icon.
PapaMichael:
- bugfix: Rat Kings can no longer trap mice inside of pipes by creating them while
ventcrawling.
- balance: Rat Kings can no longer create grime and miasma while ventcrawling.
Rhials:
- rscadd: Bitrunners now have their own job figurine. Cool!
- Shayoki, Wolf751:
- - image: The frontier gas masks now fit properly on your snouts.
- SkyratBot:
- - bugfix: Deleting someones brain kills them again
- - qol: Gives Health sensor assemblies a UI so its easier to use.
nikothedude:
- spellcheck: Added a period to the end of the wendigo deathrattle
paganiy:
@@ -517,31 +289,6 @@
on yourself.
- bugfix: The cigarette pack no longer moves under the spaceman when they interacts
with it with the RMB
- - bugfix: Accelerator laser gun no longer shoots sun size projectiles.
- - bugfix: Spies no longer get the 'nothing' / 'free objective' due to trying to
- make Protect objectives without targets.
- - bugfix: Ale now has a drinking_glass style
- - spellcheck: Added a period to the end of the wendigo deathrattle
- - bugfix: Fixes random decal in space on Tramstation
- - bugfix: Alt click will draw the captain's sabre again
- - bugfix: The random arcade machines in the 'Interdyne Spinward Research Base's
- now function.
- Webcomicartist:
- - bugfix: The lavaland mining shuttle doors no longer trap cargo security on lavaland
- due to access weirdness.
-2024-05-16:
- Gandalf2k15:
- - bugfix: The "job traits" button on the lobbyscreen now supports skub.
- Seven:
- - bugfix: Destroyed solar panels no longer drop their overlays
- SkyratBot:
- - qol: adds examines & screentips for tool & container actions on the smoke machine
- - qol: smoke machine no longer requires a power cell for construction
- - code_imp: autodocs & removes vars for some machine, Updated attack chain to latest
- standards for smoke machine
- - bugfix: You no longer hit the smoke machine with the beaker
- - bugfix: You can hit the smoke machine with tools & beakers when in combat mode
- - bugfix: no abstract & hologram item interactions allowed with smoke machine
2024-05-14:
Jacquerel:
- rscadd: People who spend time improving their bodies are able to evaluate the
@@ -592,12 +339,6 @@
the item rather than take it.
- qol: Examine blocks for screen alert examining.
- qol: Screentips for offer alerts.
- Seven:
- - bugfix: Fixed a runtime when using the cultist blood rites on yourself.
- ShizCalev:
- - bugfix: Spam clicking a modkit with a kinetic accelerator can no longer lead to
- ghosted versions of the modkits appearing in the modkit list, breaking the gun.
- SkyratBot:
PKPenguin321:
- rscadd: New funny wizard staff/wand that shrinks stuff.
- rscadd: Being shrunken now leaves you vulnerable to being crushed to death.
@@ -645,62 +386,6 @@
- qol: Added activity toggle to voice activator component
- qol: Added quiet mode to speech component
- qol: NTNet send component will not use power/trigger if NTNet is offline
- - bugfix: The SC/FISHER can now shoot floor lights.
- - rscadd: parrots will now try to immitate the speaker's voice
- - bugfix: Fixes error when running docker compose on apt upgrade
- - bugfix: You can adjust your uniform while lying down again
- - rscadd: New funny wizard staff/wand that shrinks stuff.
- - rscadd: Being shrunken now leaves you vulnerable to being crushed to death.
- - rscadd: Adds a new neutral lawset, the Y.E.S.M.A.N. lawset, to the AI lawset boards
- and random pool.
- - bugfix: Bitrunning antagonists no longer gib on teleport
- - bugfix: Cyber tac now have a visible name / ID
- - bugfix: 'Renamed the bitrunning malfunction event to just "Malfunction: x"'
- - balance: There are reports of malfunctioning guns being confiscated.
- - qol: The "Confirm Order" button on Cargo consoles is now active when the cargo
- shuttle is at Central Command instead of at the station.
- - bugfix: Space Ninja and other space spawned antags get a 1 minute radiation shield
- in the radioactive nebula
- - qol: Additional box types can be crafted from cardboard. Happy organizing.
- - spellcheck: A typo in box crafting for prescription glasses has been fixed.
- - admin: Admins can now more easily modify whether a Blood Brother can convert someone
- - rscadd: People who spend time improving their bodies are able to evaluate the
- relative physical strength of those they examine as a kind of "power level".
- - rscadd: Changeling transformation copies the target's athletics skill level.
- - bugfix: Fixes an accidental reversion to greyscale plate armor.
- - bugfix: Fixes the knife offset for pipeguns
- grungussuss and Virgilcore:
- - sound: portals now have a unique sound to them
- jjpark-kb:
- - balance: requires journeyman research level to change empty circuits from forging
- - bugfix: added a hardcap to the added force for forging weapons
-2024-05-18:
- BurgerBB:
- - rscadd: Makes Ashwalker/Lizard names use a special name generator
- Melbert:
- - bugfix: After 3 years, radiation now causes you to go bald and mutate again
- - rscadd: Adds Minecarts, (possibly admin only depending on when this PR is merged
- in relation to the Icebox Bar PR)
- NullDagaf:
- - rscadd: added an explorer suit side-grade, the H.I.F.L. suit
- - rscadd: worm fertilizer now imcreases plant potency
- - refactor: refactored simple farm code
- - image: added a new frill option
- Rengan:
- - bugfix: Officers sabre and grilles now conducts electricity as it should.
- Seven:
- - bugfix: Wings no longer work in space if you activated them beforehand.
- ShizCalev:
- - bugfix: Atoms on the border of a tile will now only trigger landmines if they
- ACTUALLY pass over said mine.
- - bugfix: Malf AI can now override/overload closed turrets.
- - bugfix: Fixed a scenario in which a turret would have its covers closed while
- still firing.
- SkyratBot:
- - bugfix: Fixes engineering cyborg screwdriver not being pointy. Fixes engineering
- cyborg crowbar from being pointy.
- - bugfix: Fixes cyborg omnitools not using the correct wound bonus and armour penetration
- values.
2024-05-17:
00-Steven:
- bugfix: Emotion masks no longer use a janky workaround for infinite reskinning.
@@ -711,9 +396,6 @@
rather than whether it's in storage or not.
- rscdel: Removed redundant reskinning usage context code from medical sprays, now
shows reskinning usage context like other reskinnables.
- - bugfix: Fixed the spess knife's cutter tool icon being invisible.
- - code_imp: Most instances of parse_zone now refer to the limb's plaintext_zone
- var
EnterTheJake:
- balance: Rust Heretics rusting is now consistent and tied to knowledge progression.
- balance: Walking on rust applies disgust and chem purge to non-heretics and brute
@@ -772,83 +454,6 @@
- rscadd: Round ending "critical" items will be listed at the top.
- rscadd: Click the settings button to expand for more info
- rscadd: Your current orbit target is highlighted.
- - bugfix: Pyre chaplains can no longer generate infinite favour for free by buying
- and selling candles. Candles now offer for 40 favour, down from 50.
- - bugfix: fixes metastation science scrubber pipeline
- - rscdel: Due to a need for company restructuring, virologists have been laid off
- by CentCom and doctors can optionally take their place.
- - bugfix: cell chargers, mechbay port chargers & recharge stations heat lost is
- directly proportional to energy drawn from the grid to charge their respective
- cells
- - bugfix: cyborgs should charge more frequently & to their max capacity at recharge
- stations
- - qol: Neckties are now worn underneath suit items and accessories, they can still
- be optionally worn over them in case you want the "business space suit" look
- - bugfix: Fixed a bug where accessories wouldn't correctly apply over suits if you
- equipped the jumpsuit they're attached to after the suit
- - bugfix: Simplebot UI won't display '0' anymore when locked
- - spellcheck: Fixes some typos in the goodies section and makes it look a bit more
- consistent.
- - rscadd: mobile defibrillator mount
- - bugfix: Snails no longer move at normal speed while resting.
- - bugfix: Snails can no longer get insane speed from getting their legs replaced.
- - bugfix: Humans don't become immensely slow when getting a Snail leg.
- - admin: lube walking element is now much easier to mess with to fit however you
- want to use it for.
- - bugfix: You will now be ejected from Space Phase if you lose your focus or lose
- consciousness somehow during the jaunt.
- - bugfix: Fixes a bunch of hearts turning into errors when you try to eat them
- - bugfix: adds missing prefix to name of The Lizard's Gas Lava land ruin.
- - balance: Nukies ordnance now include more gasses and stock parts
- - qol: The Ansem, suppressor, and SC/FISHER included in the Fisher gimmick bundle
- now come together as one whole gun, the Ansem/SC. It's integrally suppressed,
- and fires the disruptor on right-click.
- - bugfix: The SC/FISHER disrupts APCs for an appropriate amount of time, not ten
- times the intended disruption length.
- - bugfix: fixed malf AI being able to overload shuttle consoles and the gateway
- control console
- - bugfix: Mob spawners (such as lavaland tendrils) won't spawn more mobs than they
- are supposed to, faster than they should.
- grungussuss:
- - qol: suit sensors can now be maxed by ctrl clicking your jumpsuit
- jjpark-kb:
- - rscadd: 'added two new skills: construction and primitive'
- kaylexis:
- - rscadd: Added more stuff to the seed vault.
- nevimer:
- - rscadd: Round end credits
- sheets, spacemenart, ben10omintrix, goofball, infrared baron, aofie:
- - rscadd: adds lavaland raptors and the raptor ranch
- tmyqlfpir:
- - rscadd: Added new BCI eye camera circuit component
- - rscadd: Added new movable drone camera component
- - rscadd: Added new polaroid camera component
- - rscadd: Added new illegal bluespace reagent injector component for BCI shells
- - qol: Lowered pathfinder component cooldown to 15 seconds
- - qol: Target scanner component moved to advanced shell research tech node
- - qol: Cell charge component moved to advanced shell research tech node
- - rscadd: Restore classic Interdyne base for Ice Moon
- - bugfix: Department display screen no longer calls itself recursively
- - bugfix: Fixes vents in Dauntless bridge
- - qol: Adds new battle attack arcade machine in Dauntless prison
- - bugfix: Changed Dauntless brig radio freq
- - rscadd: Add R&D servers to Dauntless/Interdyne ruins
- - qol: Only allow machines located within Syndie areas to connect to Syndie R&D
- servers (and vice versa)
- - bugfix: Interdyne brig closets can be accessed by regular crew
-2024-05-19:
- Melbert:
- - rscadd: Adds Minecarts, (possibly admin only depending on when this PR is merged
- in relation to the Icebox Bar PR)
- NullDagaf:
- - image: added a new frill option
- - rscadd: worm fertilizer now imcreases plant potency
- - refactor: refactored simple farm code
- ShizCalev:
- - bugfix: Malf AI can now override/overload closed turrets.
- - bugfix: Fixed a scenario in which a turret would have its covers closed while
- still firing.
- SkyratBot:
- bugfix: Simplebot UI won't display '0' anymore when locked
mc-oofert:
- rscadd: mobile defibrillator mount
@@ -878,42 +483,6 @@
and fires the disruptor on right-click.
- bugfix: The SC/FISHER disrupts APCs for an appropriate amount of time, not ten
times the intended disruption length.
- - spellcheck: Fixes some typos in the goodies section and makes it look a bit more
- consistent.
- - rscdel: Due to a need for company restructuring, virologists have been laid off
- by CentCom and doctors can optionally take their place.
- - bugfix: You will now be ejected from Space Phase if you lose your focus or lose
- consciousness somehow during the jaunt.
- - bugfix: Mob spawners (such as lavaland tendrils) won't spawn more mobs than they
- are supposed to, faster than they should.
- - balance: Nukies ordnance now include more gasses and stock parts
- - bugfix: adds missing prefix to name of The Lizard's Gas Lava land ruin.
- - bugfix: Snails no longer move at normal speed while resting.
- - bugfix: Snails can no longer get insane speed from getting their legs replaced.
- - bugfix: Humans don't become immensely slow when getting a Snail leg.
- - admin: lube walking element is now much easier to mess with to fit however you
- want to use it for.
- - bugfix: cell chargers, mechbay port chargers & recharge stations heat lost is
- directly proportional to energy drawn from the grid to charge their respective
- cells
- - bugfix: cyborgs should charge more frequently & to their max capacity at recharge
- stations
- - qol: Neckties are now worn underneath suit items and accessories, they can still
- be optionally worn over them in case you want the "business space suit" look
- - bugfix: Fixed a bug where accessories wouldn't correctly apply over suits if you
- equipped the jumpsuit they're attached to after the suit
- - bugfix: Simplebot UI won't display '0' anymore when locked
- - bugfix: fixed malf AI being able to overload shuttle consoles and the gateway
- control console
- - rscadd: mobile defibrillator mount
- - bugfix: Fixes a bunch of hearts turning into errors when you try to eat them
- grungussuss:
- - qol: suit sensors can now be maxed by ctrl clicking your jumpsuit
- jjpark-kb:
- - rscadd: 'added two new skills: construction and primitive'
- sheets, spacemenart, ben10omintrix, goofball, infrared baron, aofie:
- - rscadd: adds lavaland raptors and the raptor ranch
-2024-05-21:
Jacquerel:
- bugfix: Mob spawners (such as lavaland tendrils) won't spawn more mobs than they
are supposed to, faster than they should.
@@ -961,10 +530,6 @@
- qol: Custom emotes now default to both visible and audible rather than just audible
- qol: Invoking the custom emote verb now explains how to set your custom emote
to visible or audible
- - rscadd: 'Icebox: The bar returns to its home.'
- - rscadd: 'Icebox: Standardizes some decal styles in the main hallway.'
- - bugfix: 'Icebox: The lower brig''s missing air alarm has been found.'
- ShizCalev:
Pickle-Coding:
- balance: Cargo ripley's cell starts fully charged.
Profakos:
@@ -978,32 +543,6 @@
- bugfix: Malf AI can now properly interact with APCs under their control
- bugfix: Malf AI & their slaved cyborgs won't be told that access is denied when
trying to right-click lock/unlock APCs.
- - bugfix: Icecream vats will no longer eat cyborg beakers.
- SkyratBot:
- - bugfix: jumpsuit sensors quick maxing now works
- - balance: If you can't absorb a species' DNA as a changeling, you also can't use
- transform sting to turn someone into that species.
- - balance: Buffs Antihol's purge rate to 8u/tick when pure (6u/tick minimum).
- - admin: sentience balloon can now assign antag to affected mobs
- - balance: Multiver stops purging when Anacea is present in the bloodstream.
- - balance: Halved Psyker echolocation cooldown. This will hopefully make it actually
- usable.
- - bugfix: carps now properly stop floating when you kill them
- - rscadd: Nanotrasen has made strides in their frontier sector food networks, increasing
- the selection of produce available to chefs.
- - balance: Cargo ripley's cell starts fully charged.
- - spellcheck: Pulse of entropy description now displays the correct reagents for
- the ritual
- - bugfix: HoS on birdshot now has a pet like on all other maps
- - balance: Ore vents, if blocked off from all four sides while being defended, now
- cause a mild gas explosion, resulting in a mild dissuasive explosion.
- - bugfix: NODE drones spawned from ore vent defense have lower maximum health.
- - admin: Various bad things that can happen as a result of Legion organs are now
- logged
- - bugfix: playful raptors now correctly play with owners
- grungussuss and Virgilcore:
- - sound: added sounds for the gateway
-2024-05-23:
Striders13:
- admin: sentience balloon can now assign antag to affected mobs
Watermelon914:
@@ -1043,7 +582,6 @@
a higher severity now.
- sound: Wound sounds drop off more quickly, and no longer travel through walls.
This has no effect on attack sounds.
-
Fikou:
- spellcheck: the nuke op reinforcement beacon no longer talks about clones
Horatio22:
@@ -1074,113 +612,6 @@
- balance: Suplexing a rod grants a large burst of athletics experience.
- rscadd: The more sentient casualties of the rod, the more experience suplexing
that rod grants. Absorb the souls of the weak and feeble.
-2024-05-24:
- Melbert:
- - bugfix: Height now applies less weird to certain worn items, bare-handed bloody
- hands, and damage overlays.
- - bugfix: Fixed Slimepeople's hair not matching their slimey colors.
- NullDagaf:
- - rscadd: adds kinetic gauntlets
- - bugfix: demon claws now correctly increase the force of whatever they're attached
- to
- SkyratBot:
- - balance: Auto-aim in combat mode at mobs on the floor is disabled after the projectile
- passes 10 tiles.
- - bugfix: The Lance Crew Evacuation System now moves in the right direction in Hyperspace.
- - balance: reduced claymore/weak force from 30 to 24 and armor penetration from
- 15 to 10
- - rscadd: Remapped NorthStar's medbay a little bit
- - code_imp: The mushroom cap is now an external organ (jungle station will never
- happen)
- - bugfix: Mushpeople caps are no longer solid black
- - spellcheck: Fixes a typo with latejoin AIs
- - rscadd: adds a new fish to lava and plasma rivers, the lava loop
- - balance: The melee attacks from small mobs spawned by Legions can now be dodged.
- - balance: Legions spawn their mobs less often.
- - bugfix: Legions cannot spawn mobs while inside pipes or closets.
- - rscadd: Added RUN_SERVER.bat for maintainer issues
- - bugfix: Smoker quirk users can select a favourite brand again.
- by INFRARED_BARON:
- - image: 'Changes icons of: Gygax, d-gygax, durand, ripley variants, firefighter
- statue, phazon & odysseus. Adds new icons for polar hide item.'
- projectkepler-ru:
- - bugfix: blueshift not having enough recharger for security even though its a gigantic
- map
- - bugfix: voidraptor having no paddy
-2024-05-26:
- PapaMichael:
- - bugfix: Epinephrine will prevent metabolism of all allergic reagents (instead
- of just one), if taken with multiple chemicals that one is allergic to.
- SkyratBot:
- - spellcheck: When a vendor tells you something dropped onto the floor, the line
- no longer starts with a broken character in the case of cigarette boxes.
- - bugfix: '[Ice Box Station] Dorm 1''s door no longer shares ID with dorm 2''s door'
- - bugfix: Fixed an inconsistency regarding the interactions between the Piercing
- Hypo Borg upgrade and Hacked Borg Hypos.
- - qol: Made borg inventory not shift around depending on equipped items
- - bugfix: The destructive analyser once more hungers for multitools
- - qol: Added a "Remind me later" button for tutorials
- - bugfix: Airlock electronics created by deconstructing roundstart airlocks inherit
- their cycling id properly.
- - code_imp: New signals for atom storage remove and insert
- - spellcheck: A handful of grammar errors in some department signs has been fixed.
- - bugfix: You can no longer open the loot panel at range as a blind person and cheese
- item names
- - spellcheck: Examining a renamed airlock assembly no longer says it has a paper
- placard that is "labelled with written on it is".
- - balance: you can now polymorph into raptors
- - balance: raptors overall have less health and no longer have armor against ranged
- attacks
- - bugfix: Mixing the reagents for moon rocks, bLaSToFF ampoules, or SaturnX globs
- in amounts less than the minimum for the recipe no longer eats the reagents
- without doing anything.
- - image: resprites egg (and more)
- - bugfix: Airlocks without access requirements no longer create airlock electronics
- with a broken menu.
- grungussuss:
- - bugfix: changed layout of Northstar dining hall so customer bots can reach the
- kitchen counter
-2024-05-27:
- Melbert:
- - refactor: Refactored the way high toxins cause you to vomit.
- SkyratBot:
- - rscdel: Miasma and gibs no longer generates random diseases
- - bugfix: You can shoot at items on the floor again
- - qol: The "Proto-Nitrate BZ response" atmsopheric reaction now lists it's required
- temperature.
- - bugfix: Ghosts can more reliably become a harvester.
- - bugfix: Material floor tiles once again have their improved sprite.
- by INFRARED_BARON:
- - image: Changes the sprites of bone and ash drake armor (suit + helmet mob/objs)
- grungussuss:
- - qol: tramstation upload now has an extra motion camera
- - qol: tramstation SM setup now has an emergency cooling setup
-2024-05-29:
- Fluffles:
- - bugfix: echolocation is less laggy. and works.
- LemonInTheDark:
- - refactor: I have reworked how parallax and its animations (space travel) work.
- Please report any bugs lads!
- Majkl-J:
- - bugfix: Akula suits no longer error sprite when you have a tail
- Melbert:
- - bugfix: The Bar on Icebox should receive less trash
- ReturnToZender:
- - rscadd: Ears now properly display through helmets and hoods
- - bugfix: subtyping on the recolorable, standalone hood
- SkyratBot:
- - image: makes food hud burger icon have a sharp outline
- - image: Revamped Contractor Gear. You'll stand out more now, but hey, that's why
- the syndicate contracts out work in the first place.
- - bugfix: Rust debuffs now gets properly removed if you derust a tile you are standing
- on.
- - bugfix: Lootpanel no longer opens up when alt clicking objects on your person
- - bugfix: Venus Man Traps cannot use vines to drag around machines or objects that
- are bolted, welded, rooted to, or otherwise are part of the ground
- - bugfix: Standing on a table will not prevent you from being grappled by a Venus
- Man Trap
- - balance: Mobs significantly larger than humans, such as Space Dragons and Xenomorph
- Queens, breakout of being arrested by a mech significantly faster.
nikothedude:
- rscadd: Adds a new deathmatch modifier that enables quirks
- bugfix: The deathmatch modifier menu works now
@@ -1289,8 +720,6 @@
- bugfix: the is_off signal now works on consoles
- bugfix: printing text on a console component now uses a signal
- refactor: each input signal in console circuits now have their own proc
- - refactor: Wendigos abilities have been changed into actions that can be added
- to any mob.
EnterTheJake:
- bugfix: Rust debuffs now gets properly removed if you derust a tile you are standing
on.
@@ -1307,23 +736,6 @@
- balance: Viruses now progress slightly slower.
- balance: Viruses now only hide if their stealth stat is greater than their total
computed severity.
- - rscadd: Added a screentip for hilbert's hotel door
- - bugfix: Fixed alt-click interaction with hilbert's hotel door
- - sound: Disposal chutes will no longer play a sound for each item when many items
- enter it at once
- - bugfix: Fix a rare issue where a turf would remain permanently "elevated" if an
- elevated object was initialized inside of a non-turf object.
- - spellcheck: Fixes labour camp shuttle retrieval message starting with "/p".
- - qol: Traitor-created Infected AIs no longer hear the Malf AI antag sound alert.
- Wolf751:
- - bugfix: Micro fusion self recharging now actually recharges again,More or less
- its exact same values with the power changes.
- thegrb93:
- - rscadd: Added new leash item to borg dom module
-2024-05-31:
- Fluffles:
- - bugfix: holodecks no longer use increasing amounts of power the longer they're
- on
Jacquerel:
- balance: Mobs significantly larger than humans, such as Space Dragons and Xenomorph
Queens, breakout of being arrested by a mech significantly faster.
@@ -1396,11 +808,6 @@
- bugfix: Trees/plants will no longer grow through wood pathways on Icebox
- bugfix: Railings will no longer appear ontop of rock walls on icebox
Vekter:
- - spellcheck: Fixed a grammar inconsistency in round tips.
- - bugfix: Fixed a missing access helper in Northstar Medbay. Assistants should no
- longer be trapped post-mending.
- - bugfix: Replaced an incorrect disposal variant in Northstar's Medbay.
- Vekter:
- bugfix: Fixed a missing access helper in Northstar Medbay. Assistants should no
longer be trapped post-mending.
- bugfix: Replaced an incorrect disposal variant in Northstar's Medbay.
@@ -1411,8 +818,6 @@
- bugfix: fixed metal foam plating description and add more user friendly explanation
on how to replace tiling.
grungussuss:
- - balance: The DNA vault now requires less animal and plant DNA to be completed
- - admin: admin RCD now works much faster.
- admin: admin RCD now works much faster.
improvedname:
- balance: Adds a threshold to oculine and increases metabolism, and reduces the
diff --git a/html/changelogs/archive/2024-06.yml b/html/changelogs/archive/2024-06.yml
index cea04554878..100647af432 100644
--- a/html/changelogs/archive/2024-06.yml
+++ b/html/changelogs/archive/2024-06.yml
@@ -1,14 +1,3 @@
-
-2024-06-02:
- '@xXPawnStarrXx, @Majkl-J':
- - bugfix: fixed an erroneous path to make the produce bin sprite appear.
- NullDagaf:
- - rscadd: cyborgs now can do botany
- Rhials:
- - bugfix: You can no longer force NODE Drones off of ore vents. That includes using
- fulton packs!
- - bugfix: When a NODE Drone is forcibly separated from its vent, it will fly away.
- SkyratBot:
2024-06-01:
JohnFulpWillard:
- rscadd: The Law office now has a pet goldfish.
@@ -29,32 +18,11 @@
- rscadd: New syndicate fish, the monocloning jumpercable
- rscadd: New aquarium, the bioelectricity generator
- bugfix: Mixotrophic fish now properly lack food requirements
- - rscadd: The Law office now has a pet goldfish.
- - rscadd: 'Station-Wide Background Checks (station trait, rare): Disables crew antagonists,
- but get a lot more non-crew antagonists'
- - balance: Reworks Adrenaline Glands into Repurposed Glands (Realingment). Lose
- the use of your arms, but you can escape any situation!
- - bugfix: '[Tramstation] Departures and under east tram distro/waste pipes now properly
- connected'
- - bugfix: Fixes railings being invisible
- - bugfix: Snow walls dont spawn on railings anymore in icebox
- - rscadd: Changes the layout of MetaStation's cargo to fit with new Nanotrasen guidelines.
- - bugfix: When removing a corrupted organ from a patient, the patient will now be
- checked for Holy Water or magic resistance, rather than the person performing
- the surgery.
zxaber:
- bugfix: Minebots purchased via mining points are no longer stuck in idle mode.
Clicking on them will activate their AI.
- spellcheck: Removed the examine text about feeding ore to minebots; this functionality
was removed already.
- - bugfix: Fixes janitor borgs killing the machinery subsystem by charging light
- replacers 200k times a tick.
- oranges:
- - spellcheck: Gripper gloves are now Enhanced Retrieval gloves
- thegrb93:
- - code_imp: Can now use kink toys on cyborgs
- xXPawnStarrXx:
- - bugfix: fixed an erroneous path
2024-06-02:
00-Steven:
- spellcheck: Photo descriptions containing living entities no longer have a pile
@@ -83,9 +51,6 @@
- image: Central Command has cut funding to the Mining department, resulting in
leather sleeves for the Shaft Miner Explorer Suit rather than the metal plates
of before.
- LT3:
- - bugfix: Fixed bug where players could be invisibly attached to the tram forever
- Melbert:
JohnFulpWillard:
- rscadd: You can now flush toilets. You can also put fish in the toilet. And flush
them.
@@ -115,15 +80,6 @@
(every eight seconds), rather than every two seconds. The chance of spread is
the same, though - it has been scaled up to accommodate.
- code_imp: Cleaned up a fair bid of airborne-transmission-code. Report any oddities.
- - balance: Re-ups the cost of the new ling adrenal ability
- - bugfix: Patches an exploit with new ling adrenal ability
- SkyratBot:
- - bugfix: Imaginary friend brain trauma works again.
- - bugfix: Imaginary friends can be heard by their hosts from more than a tile away
- again.
- - bugfix: Cryo tube respects `NO_DEBRIS_AFTER_DECONSTRUCTION` for the occupants
- visual contents flags & traits & won't allow hologram/abstract item interactions
- - code_imp: Cryo has improved attack chain & uses defines for reagent volume rounding
Metekillot:
- qol: Sign language users can now sign in cuffs, but to a very limited degree.
They also have more descriptive emotes for questions, exclamations, and a combination
@@ -154,27 +110,6 @@
- rscadd: Crutches will reduce slowdown from missing a leg by 60%, and they will
remove the limping from fractured bones. (canes do that now too) They're also
a fairly decent bludgeon. However, they do nothing if both legs are cut off.
- - refactor: Gondolas (including gondola pods) are now basic mobs.
- - bugfix: Fixed some borg modules just being constantly eaten up by borgs even when
- they shouldn't allow duplicates
- - refactor: Borg module code now has better handling for adding/removing items,
- and to prevent duplicate module usage (Unless one wishes to override the behaviour.
- - qol: Sign language users can now sign in cuffs, but to a very limited degree.
- They also have more descriptive emotes for questions, exclamations, and a combination
- of the two.
- - bugfix: Fixed the biogenerator's tabs
- - balance: When an AI is alive, on main power, and not SSD its bolts cannot be raised
- or lowered externally.
- - rscadd: You can now flush toilets. You can also put fish in the toilet. And flush
- them.
- - bugfix: Urinals can no longer be used to delete items.
- - bugfix: Urinals no longer grant infinite urinal cakes.
- - bugfix: Made the anxious zipzap accessible.
- - spellcheck: Photo descriptions containing living entities no longer have a pile
- of unnecessary periods. .. Which they used to have between describing different
- entities. .. Also removed that additional space they had too sometimes..
- - qol: Photo descriptions containing living entities have these sub-descriptions
- split into newlines for ease of reading.
grungussuss:
- qol: lathes will now print cables coils in packs of 5
- bugfix: added missing context tips for atmos canisters
@@ -205,16 +140,6 @@
- balance: Berserker rage now halves brute damage rather than just adding Melee
Armor to you and your squishy body.
- qol: Berserker and H.E.C.K. helmets can be used for internals.
- - bugfix: ambush spider (should instantly agressive grab) and other giant spiders
- can now agressively grab
- - bugfix: positive viruses are no longer hidden.
- - bugfix: Orbit UI icons are no longer scrollable..
- - balance: 'Floor diseases cures are now common chemicals: Milk, Chlorine, Space
- Cleaner'
- - balance: Attack with a pillow now consumes 5 stamina regardless of wielded or
- not.
- - bugfix: COMSIG_ATOM_POST_DIR_CHANGE is now a functional signal
- - balance: you may not decap people with a plasma cutter
nikothedude:
- bugfix: COMSIG_ATOM_POST_DIR_CHANGE is now a functional signal
norsvenska:
@@ -222,23 +147,6 @@
up to the cryo loop.
- qol: The NTSS Independence's medical bay has received improvements. The medibot
and the sleeper are upgraded, and advanced surgery equipment has been added.
- - bugfix: you are now able to cancel the look up/down verbs from anywhere
- - refactor: ghetto chem separator has been reworked from scratch. See PR 83275 for
- details
- - qol: adds examines & screentips for ghetto chem separator
- Vekter:
- - rscadd: Adds an ion law possibility that changes the human status of station pets.
- grungussuss:
- - qol: lathes will now print cables coils in packs of 5
- - bugfix: added missing context tips for atmos canisters
- theselfish:
- - bugfix: Blast Helmet's toggled OBJ sprite now exists.
- xXPawnStarrXx:
- - rscadd: Added the Kahraman machines to cargo.
-2024-06-05:
- Goat:
- - bugfix: meta's cargo lobby and mining maintenance APCs is now connected to the
- power line
2024-06-03:
MTandi:
- balance: 'Floor diseases cures are now common chemicals: Milk, Chlorine, Space
@@ -268,28 +176,6 @@
healed per wrap.
Melbert:
- sound: Boiling soup now makes a sound.
- PapaMichael:
- - spellcheck: Nukie uplinks no longer claim to have nonexistent "Tesla Energy Relays"
- SkyratBot:
- - qol: Failing to hit someone with a proto-kinetic crusher one-handedly no longer
- force drops everything in your hands.
- - bugfix: Status displays should now no longer sporadically randomly break when
- in the custom message mode
- - qol: AI's jump to AI Core button works while on backup power (likely when needed
- most).
- - bugfix: fixes touching a crutch permanently crippling you
- - bugfix: fixes crutches giving permanent speedboosts even when dropped
- - qol: The memories for Smoker and Alcoholic now actually mention the preferred
- brand.
- - bugfix: A tiny fan was added to Tramstation's disposal room under the blast doors.
- No more accidental depressurizations.
- - bugfix: fixed being able to confirm cargo orders from cargo request console (and,
- probably, from PDAs)
- - spellcheck: Changed grammar in cat_house.dm
- Tera:
- - bugfix: Fix artistic module not installable
- - qol: Made artistic module accessible at round start for any borg module
-2024-06-07:
Time-Green:
- bugfix: fixes touching a crutch permanently crippling you
- bugfix: fixes crutches giving permanent speedboosts even when dropped
@@ -311,19 +197,6 @@
- code_imp: Biomes can now affect features (which are usually structures), on top
of flora and fauna.
LT3:
- - balance: Doubled number of assignable wildcard slots on grey ID cards
- - balance: Doubled number of assignable wildcard slots on silver ID cards
- - balance: Doubled number of assignable wildcard slots on agent/chameleon ID cards
- - qol: Icebox's service hall has a disposal unit again
- Majkl-J:
- - rscadd: Scrubbing tools and cellulose now clean puddles
- - qol: The mop is now faster at cleaning puddles, making it not as fiddly to use
- - bugfix: fixes runtime with empty liquid pools
- - bugfix: fixes liquid pools staying after floor updates to space
- - code_imp: Minor improvements of overall liquid code, with more comments and less
- single letter vars
- NullDagaf:
- - rscadd: watchers can now drop a new trophy
- qol: Icebox's service hall has a disposal unit again
MelokGleb:
- code_imp: crab17 telegraph now uses animated spinning telegraph circle instead
@@ -378,73 +251,6 @@
- code_imp: cult shades now have their own antag datum.
- bugfix: constructs now properly clear the cultist antag datum and transfer the
mind slightly earlier.
- - admin: Admins can now reroll random events into something else.
- SkyratBot:
- - bugfix: RLD glowsticks actually glow again.
- - image: New icons for berserker, godslayer and adamantine armor. Removes the old
- icons.
- - qol: Disgust vomit knocks you down rather than stunning you.
- - rscdel: Mitogen Metabolism Factor knocks you down rather than stunning you.
- - balance: Mutadone restores your originally monkey status, rather than always turning
- monkeys into humans
- - bugfix: Metastation's vault is now connected to the power grid
- - bugfix: curator whip will no longer disarm when parried
- - qol: 'Swabbing the clown''s stamp also gives clown cells.
-
- :cl:'
- - bugfix: COMSIG_ATOM_POST_DIR_CHANGE should ACTUALLY work now
- - balance: Corrosive slime left behind after a slime fails to eat you can be scraped
- off with your hands, or shaken off in some other way, by clicking on the debuff.
- This is slower and less effective than washing it off using water.
- - refactor: honkbots are now basic mobs, please report any bugs
- - rscadd: honkbots will try to slip people on banana peels
- - qol: Coffee types are overall more consistent, causing jittering only from the
- overdose effect.
- - bugfix: Pumpkin lattes will actually work like coffee.
- - bugfix: Pre-Loaded Syndicate Intellicard AI's no longer appear in PDA messenger.
- - bugfix: Drake empowerment for berserker armor now uses valuable drake remains,
- made from ashdrake hides and bones.
- - rscadd: Drake armor is made use drake remains to construct. (This is a net neutral
- to the previous recipe)
- - bugfix: Fixes paradox clones using a different voice from the owner.
- - bugfix: When implanting functional wings into a new body, they will actually be
- able to use said wings now.
- - qol: Cyborgs on AI statpanel now have jules energy format.
- - bugfix: autolathes don't hang when printing items in areas without apc or if it
- runs out of materials mid printing
- - bugfix: Using the 'ESC' key on your keyboard to unbind a key in the keybindings
- preferences menu should now work as expected. This should also be fixed for
- people in a variety of other spots too.
- - balance: cult stun gets weaker when they get red eyes and later more when they
- have halos
- - code_imp: crab17 telegraph now uses animated spinning telegraph circle instead
- of sniper scope button
- - rscadd: A unique kind of mob is created when a Monkey is infested by a Legion.
- SpaceLoveSs13:
- - image: Mech sprites are now back to what they used to be
- grungussuss:
- - sound: frog sounds will no longer explode your ears
-2024-06-08:
- LT3:
- - bugfix: Fixed timing issue where tram crossing signals would be out of sync with
- the moving tram
- - bugfix: Tram crossing signals consistently show green when safe, blue when broken
- - bugfix: Tram crossing signals show red instead of yellow when degraded
- Melbert:
- - bugfix: Fix some modifiers to do after speed (sanity, midas gun) stacking when
- they shouldn't
- ShizCalev:
- - bugfix: Syndicate AI can no longer be selected via the station law upload console.
- - bugfix: Non-syndicate borgs can no longer accidentally be slaved to syndicate
- AI by pulsing their AI wires.
- - bugfix: Syndicate borgs can no longer be slaved to the station AI by pulsing their
- AI wires.
- - bugfix: Syndicate operatives onboard the station can no longer end up with an
- objective to destroy their own syndicate AI.
- SkyratBot:
- - bugfix: some missing modsuit (un)sealing messages should no longer be missing
- - bugfix: MOD circuit adapter core deployed parts output should work again
- - bugfix: Modsuit painter works again
SyncIt21:
- qol: more examines & screentips for plumbing machinery
- qol: plumbing grinder has a grind/juice mode which be toggled by hand
@@ -454,27 +260,6 @@
getting that item consumed
- bugfix: You cannot grind abstract/ hologram items in the plumbing grinder
- bugfix: growing vat now uses the correct layer selected on rapid plumbing device
- - qol: you now don't need to weld a closet to install/uninstall electronics/card
- readers.
- - bugfix: 'Tool-based flashes (read: from welders) are no longer incorrectly locked
- at flash level 1. Wear proper PPE!'
- - rscadd: You may choose a color preference for your blindfold with the blindness
- quirk.
- - bugfix: Fixes the brig cell timer adjustment not working correctly on live timers.
- - refactor: modsuits have been refactored if you see bugs report them
- - bugfix: admin cargo tech modsuit outfit now works correctly
- - bugfix: Bubblegum can no longer melee you while using his charge abilities.
- - balance: Antag/Centcom mechs now have top notch un-upgradeable armor out of the
- box. You can't add armor to centcom or nukie mechs anymore, but their default
- armor rating is a lot higher.
- - bugfix: The armor plate component only adds the prefix once.
- projectkepler-ru:
- - rscadd: Security's funding has been increased for NTSS Blueshift, and they have
- received an additional mecha equipment for their trouble
- - bugfix: the blueshift brig locker not being set correctly
-2024-06-09:
- Goat:
- - bugfix: mobs no longer move during cutscenes
mc-oofert:
- balance: cult stun gets weaker when they get red eyes and later more when they
have halos
@@ -574,80 +359,6 @@
- qol: Personal AI's face display selection is now a radial menu. As a bonus, now
you can see what the faces look like before selecting them.
Rhials:
- - rscadd: Adds some more station-trait dependent pulsar star reports. Keep an eye
- on that roundstart command report!
- - bugfix: Only filled graves will impact your mood.
- SkyratBot:
- - rscadd: final destination deathmatch map, loadouts
- - bugfix: indestructible light tile emits light
- - spellcheck: Intern announcer no longer has a weird space before the introduction
- message.
- - balance: You can now dodge sneezes
- - balance: Infectious simple diseases that use sneezes now infect with sneezes and
- have lowered airborn transmission
- - balance: Damageless attacks, projectiles, hugs etc no longer drain shields
- - admin: The auto-mute system yells at you harder when you send a bunch of identical
- messages.
- - rscadd: 'New deathmatch modifier: "Random martial arts"'
- - sound: added operating sounds for wrench, wirecutter and crowbar
- - spellcheck: Corrected wrench contextual screentip typo for smart fridge
- - rscadd: Janitorial keyrings are now part of every janitor's toolkit instead of
- just the first one.
- - bugfix: Fixed borg chargers (especially unpowered ones) constantly draining a
- borg's cell.
- - bugfix: Fixed Silicons not being able to (un)lock Air Alarms.
- - bugfix: Fixes admin borg panel upgrade functions
- - bugfix: Borg emag module jank when no longer emagged
- - bugfix: Borg piercing hypospray fail message
- - qol: Plexagon Access Management now tells you that you need an ID Trim before
- applying a Template, rather than silently failing.
- theselfish:
- - bugfix: Ghost Cafe no longer has a security camera.
-2024-06-10:
- A.C.M.O.:
- - qol: Changed maximum age to 100. Renamed Age field to Physical Age.
- - rscadd: Added a new character preferences field for Chronological Age with a maximum
- of 400.
- - rscadd: Added Chronological Age field to medical and security records computers.
- - rscadd: Added fields for Physical Age and Chronological age to the Medical Records
- app for modular computers.
- Erol509:
- - balance: Sansufentanyl metabolizes slower than before, and
- LT3:
- - bugfix: Tram doors can now be constructed and assemblies built
- - bugfix: Emergency opening tram doors no longer spam balloon alerts
- - bugfix: Tram doors open faster on arrival
- - bugfix: Tram doors correctly force close on attempt 3
- - rscadd: Wawastation now has automapper templates, making the map usable
- - rscadd: Telecoms now has a central tram controller
- - rscadd: Tram controller is now included in communications blackout event
- - qol: Tram malfunction event only stops tram once, requiring engineering to reset
- (no tools required)
- - qol: Tram malfunction event no longer sends a Central Command announcement when
- fixed
- - rscdel: Tram doors no longer force crush you during tram malfunction event
- - rscdel: Silicons can no longer control the tram when communication is lost
- Majkl-J:
- - bugfix: Brains get souls transferred again
- Melbert:
- - refactor: Random Name Generation has been refactored. Report any instances of
- people having weird (or "Unknown") names.
- - qol: Felinids, Slimepeople, Podpeople, and some other species without defined
- namelists now automatically generate names based on their primary language(s).
- - qol: More non-human names can be generated in codewords (and other misc. areas)
- than just lizard names.
- - balance: Coders are now locked to the coderbus
- Rhials:
- - rscadd: Shovels and entrenching tools can be used to dig graves on asteroid/dirt/etc.
- surfaces. Neat!
- - rscadd: The Icebox Morgue has been given a fenced-off graveyard in the back.
- - code_imp: burn_tile() is no longer double-defined on asteroid turfs.
- Seven:
- - bugfix: Paradox clones (and changelings) now properly copy hair gradients and
- heterochromia eye colors.
- - bugfix: Hardcore random no longer mistakenly makes your hair white, this was not
- a feature.
- ShizCalev:
- bugfix: Only filled graves will impact your mood.
SyncIt21:
- spellcheck: Corrected wrench contextual screentip typo for smart fridge
@@ -699,9 +410,6 @@
heresy mood event.
- bugfix: Seeing skeletons while having the skeleton phobia will now apply the spooked
(by skeletons) mood event.
- - bugfix: Basic bots are now in the proper faction and will no longer be targeted
- by turrets.
- SkyratBot:
- bugfix: Getting surgically cut open while conscious will now give you the "THEY'RE
CUTTING ME OPEN!!" surgical mood event.
TheBoondock:
@@ -767,45 +475,6 @@
- bugfix: Fixes items you're holding not catching on fire alongside the rest of
you when you light on fire.
- bugfix: Fixes the Changeling Shield having one more hit than it was supposed to.
- - code_imp: stacking machine consoles check in area instead of a tiny view range
- on init
- - bugfix: Fixes several service and item-handling borg modules not functioning
- - bugfix: Lobstrosities are no longer pre-cooked through bluespace shenanigans.
- - spellcheck: fixes bad raptor grammar
- - rscadd: Added new circuit camera components
- - qol: Circuit drones can now recharge at recharge stations
- - bugfix: Latejoiners with heterochromatic eyes no longer have the wrong fingerprint
- in the security records.
- - bugfix: Latejoiners actually have their quirks visible in the medical records.
- - rscadd: Adds a positronic sphere to bepis tech and roboticist mail goodies. It
- can now wreack havoc across the robotics lab while whining for a DURAND body,
- but you can also punt it!
- - image: Cleaned a single stray pixel in a single frame of a bite telegraphing accidentaly
- found while re-organizing the files.
- - bugfix: fish with the Anxiety gene wont die when in the same loc as any 3 items
- - refactor: alt right click has been refactored. report bugs on github
- - balance: Roundstart mutadone pills now have less chems in them from 50 to 5
- - bugfix: You may no longer submit, or obtain, a spy bounty for the contractor baton.
- - qol: Adds a chat message for fishing in a chasm with a normal and rescue hook,
- to clarify that only rescue hooks can drag up corpses.
- - bugfix: Fixes certain quirks being erased by slimeperson cloning.
- - qol: Many Janitors have cleaned up Birdshot station. Permanently.
- - qol: Loose floortiles on Birdshot Station have been properly affixed to the floor
- by the Engineering and Atmospherics Teams.
- - bugfix: Birdshot Dorms have been reworked and incorporated the Holodeck Ship as
- an actual and permanent installment. Come visit our new and improved barber
- shop!
- - balance: Rust walkers' summoning ritual now requires 5 sheets of Titanium instead
- of Iron.
- - bugfix: Magic resistance grants complete immunity from the passive disgust buildup
- from standing on Rusted turfs.
- - bugfix: admins can force rulesets on background checks station trait (fucking
- lame)
- - bugfix: energy bolas now work on prone targets and don't leave behind a fake item
- when they whiff.
- - bugfix: The orbit menu clicks are accurate again
- Thlumyn:
- - bugfix: add general engineering access to birdshot engineering entrance
IsaacExists:
- bugfix: You may no longer submit, or obtain, a spy bounty for the contractor baton.
LT3:
@@ -845,59 +514,6 @@
- bugfix: fixed rebar crossbow shots not dropping items on hitting walls
- bugfix: fixed traitor crossbow having worse wound chance than the base one
- sound: added new crossbow firing sound effect
- sprites by INFRARED_BARON:
- - image: New icons for Marauder, Seraph, Mauler and adjusts the Phazon/Dark Gygax's
- sprites.
- tmyqlfpir:
- - rscdel: Removed skyrat circuit cameras as they are now upstream'd
-2024-06-11:
- ShizCalev:
- - bugfix: Getting surgically cut open while conscious will now give you the "THEY'RE
- CUTTING ME OPEN!!" surgical mood event.
- SkyratBot:
- - bugfix: Fixed entries in config file 'spaceruinsblacklist.txt'.
- - balance: remove human requirement for invisible wall
- - bugfix: techfabs don't runtime & hang when printing in no apc areas
- - bugfix: lobstrosities will no longer be able to fish out multiple necropolis chests
- - rscadd: NT reports indicate that the Syndicate have increased listening activities
- on Icemoon, crew is advised to watch out for possible communication interference.
- - qol: The ERT's ship has better mapping now.
- - balance: buffed healing values of helbital, probital, lenturi, hercuri, syriniver,
- musiver, and tirimol for their respective damage types.
- - balance: Tirimol now uses oxygen as a catalyst rather than consuming it over time
- making it easier to make without babysitting. Tirimol now requires much more
- careful management of impurity in order to make Super Melatonin.
- - rscadd: medical chem vendors now sell bottles of calomel, a potent full-range
- chemical purger.
-2024-06-12:
- Goat:
- - bugfix: blood drunk miner can now path over lava
- Majkl-J:
- - balance: Quiet environment surgery buff now requires a lower clearance range (3>2),
- and ignores unconscious people
- - bugfix: Quiet environment surgery buff no longer focuses on the body, and can't
- pierce walls when the body is dead
- - bugfix: Synth organs no longer show up as harmful bodies
- SkyratBot:
- - bugfix: Eastern icebox visitation door no longer missing a floor tile.
- - bugfix: Polishes up new Meta Cargo's decals and associated amenities.
- - rscadd: New room in Wawastation, the Cytology Lab! Positioned behind the test
- fire range.
- - qol: the first Medieval pirate to spawn will be the Warlord, warlord and crude
- helmet have flash protection
- - bugfix: Medieval shuttle has actual engines now
- - bugfix: Shortsword has its original colours
- - bugfix: Crude helmet no longer makes you bald
- - bugfix: The Syndicate has corrected some technical issues at a listening post
- in the Icemoon.
- grungususs:
- - bugfix: fixed the hole in lawyer's office on tramstation
- theselfish:
- - rscadd: Some unused items found their way to the command vendor. And a new coat!
- - bugfix: Added some missing HoS items to the ComDrobe
-2024-06-13:
- Majkl-J:
- - bugfix: Events can now spawn again
2024-06-11:
Addust:
- bugfix: The Syndicate has corrected some technical issues at a listening post
@@ -934,12 +550,6 @@
all the other insane people are speaking
- spellcheck: added a bit of text to the RDS quirk and the RDS medical record text
to highlight the insane's new abilities
- SkyratBot:
- - bugfix: The recyclers in the snow cabin gateway, the cyborg mothership, and the
- deep storage space ruin are now rotated properly.
- - bugfix: there is now one more crayon in the Mortidrobe.
- - rscadd: Added another ruin to Lavaland
- - balance: Pacifists can now use psychotic brawling, at major mood costs.
aaaa1023:
- bugfix: there is now one more crayon in the Mortidrobe.
grungussuss:
@@ -951,82 +561,6 @@
:cl:
'
- grungussuss:
- - bugfix: fixed getting a fake white dwarf report when the shift isn't extended
- mode, which lead to meta knowledge being used.
- sylvia-from-fulp-station:
- - image: Adds a unique sprite for envyknife
- xXPawnStarrXx:
- - bugfix: Robotic repair patches no longer hurt you.
-2024-06-14:
- LT3:
- - sound: You can now experience tram crashes in higher fidelity than ever!
-2024-06-15:
- Goat:
- - qol: Mining's PKAs and PKCs are now fireproof.
- Rhials:
- - bugfix: The "mopper" gimmick assistant outfit spawns with one cart instead of
- nine.
- ShizCalev:
- - bugfix: Autolathes now print the correct number of cable coils.
- SkyratBot:
- - bugfix: added an id trim painter that was missing to MetaStation's QM office.
- - image: Updated slime sprites
- - bugfix: special networks are now displayed in the fax if it is the only one in
- the world
- - bugfix: EMPs on carbons no longer happen twice
- - code_imp: Moves organ emps under bodyparts, changes how bodyparts handle emp effects
- - qol: make the cart hold 2.5x more water
- - image: Rust Heretic's blade now has a new, slicker sprite.
- - bugfix: Crayons now fit in pdas
- - bugfix: Fix bug where you can't interact with a shocked door without shock protection
- even if it is depowered.
- - balance: Corpses won't remain cultists when ghouled by a flesheretic
- - sound: Some ambience tracks are quieter now.
- - rscadd: Added new keywords (%d, %date, %t, %time) for fields
- - bugfix: Fixed thermal pistols sometimes not recognising an equipped holster when
- trying to spin them to recharge.
- - qol: Cult pylons slowly close bleeding wounds
- - refactor: allowed aura healing to clot wounds shut
- - qol: you can now take pulled objects with you when going up and down in zero gravity
- - bugfix: conga lines now work correctly when going up and down ladders, and in
- zero gravity
- - balance: Moon Smile only does a knockdown if the targets sanity is low enough
- and the minimum duration of its abilities have been decreased
- - rscadd: adds the MOD shock-absorption module, into the game.
- - rscadd: The MOD shock-absorption module into the the uplinks, costs 4 TC.
- - balance: Nukie modsuits come with the shock_absorption module preinstalled.
- - bugfix: Peter Jr. is capable of surviving in the environment they spawn in.
- - balance: Now regaining a tail has three states. If you got your tail back - you'll
- get a temporarily debuff in exchange of infinite "tail missing" debuff (new).
- If it's NOT your tail and of same species - this temporarily debuff will be
- a bit stronger (new). If it's NOT your tail and NOT of same species - it will
- be a considerably stronger debuff (currently on live).
- - bugfix: Catwalk deconstruction yields iron rods as intended.
- - bugfix: ' RCD, RPLD & RTD cancels their build process if their design is changed
- during build.'
-2024-06-16:
- BurgerBB:
- - bugfix: Tweaks some instances of get_safe_turf so things like the nuclear disk
- doesn't accidentally teleport to the Icebox Syndicate Base
- Goat:
- - bugfix: Enviro suit lights no longer stay on when the welding visor is activated.
- - bugfix: A wrecked shuttle on lavaland no longer has asteroid tiles containing
- the danger of space.
- - code_imp: Added volcanic versions of all mineral turfs for those that did not
- have it.
- LT3:
- - bugfix: Wawastation barber and NT rep office are no longer blocked off by a wall
- - bugfix: Wawastation NT rep office moved to command hallway
- - bugfix: Various minor Wawastation fixes and updates
- Majkl-J:
- - code_imp: Code for borg module items updated to TG
- Melbert:
- - bugfix: Humans can't cough on menthol again
- - bugfix: Moth and lizard emotes decide what sound to play based on body type, not
- gender.
- - sound: '*gasp now makes a sound, it''s the same as *gaspshock.'
- - sound: Xenos (or anything with hands) can clap
norsvenska:
- bugfix: The recyclers in the snow cabin gateway, the cyborg mothership, and the
deep storage space ruin are now rotated properly.
@@ -1066,12 +600,6 @@
such as hotkey, clicking on the storage boxes, and mousedrop will still work).
- refactor: The detective's scanner will now be inserted into storage items if clicked
normally, and will scan the storage item if on combat mode
- - sound: Portals made by portal guns now make sounds as expected
- - sound: Wormholes from the wormhole event now make sounds when formed
- - bugfix: Human mousedropping
- - bugfix: Fix inability to make r-glass by hand inside your backpack
- - balance: Taking stamina damage in stamcrit has diminishing returns associated,
- meaning you cannot be infinitely stamcrit.
- balance: Taking stamina damage in stamcrit has diminishing returns associated,
meaning you cannot be infinitely stamcrit.
Rhials:
@@ -1173,8 +701,6 @@
- balance: 'The max number of bluespace cores available to the crew has been reduced
to 3 (was: 8)'
- balance: Chucking a BoH into an uncharged singulo may save the station.
- Moostard:
- - rscadd: New armor piercing hypospray design can be researched now.
- sound: Portals made by portal guns now make sounds as expected
- sound: Wormholes from the wormhole event now make sounds when formed
- bugfix: Heirophant Club Blink at range
@@ -1209,69 +735,6 @@
event.
- refactor: Minor refactor to how surgery events work, there is now better support
for per-surgery mood events!
- - bugfix: Fixed a bug with station traits being added to modify weights for events
- that couldn't actually occur on the current map!
- SkyratBot:
- - balance: Phazon mechs use ectoplasm cores now
- - balance: You can now acquire ectoplasm cores from the science supply interface
- - bugfix: The reset button in the bluespace launchpad UI should work again.
- - qol: You can now repair portable scrubbers and pumps.
- - bugfix: Icebox's service hall now now has a regular hand labeler.
- - rscadd: Cats and Dogs can lick slashing wounds clean.
- - rscadd: Basic Mobs with hands can relocate dislocated bones, and pluck eyeballs
- out of pulped skulls.
- - balance: Gorillas can strangle people.
- - qol: Bots can now bind voice lines to an action slot. Lowers cooldown for all
- bot voicelines to 5 seconds.
- - qol: Baby plushies are now smaller than their parents
- - qol: Adds additional piping to wawastation ordnance
- - bugfix: Adds a missing atmos waste vent for wawastation
- - rscadd: the flatpacker, a machine unlocked at industrial engineering
- - balance: Juicing and distilling plants only consumes nutriment and vitamin
- - balance: Lanternfruit and polypore mushrooms now contain nutriment
- - balance: Increased the amount of nutriment in sugarcane and saltcane
- - qol: Changes description of steal objective to match the name
- - bugfix: Fixed revenant spawning next to brains and other unharvestable dead mobs.
- - bugfix: Cosmos spells will no longer star mark your steed
- - bugfix: Neutralising an anomaly cannot produce more anomaly cores than are supposed
- to exist in a single round
- - refactor: Refactored wall button code, please report any issues.
- - bugfix: Wall buttons actually drop their contents when destroyed.
- - sound: Putting items into wall buttons actually plays a sound. This matters for
- assembly devices, but airlock electronics do not have a sound.
- - qol: Added screentips to wall buttons.
- - qol: You can now take out the airlock electronics or assembly device out of wall
- buttons individually. Left click prioritises the board, right click prioritises
- the device.
- - qol: Wall buttons are renamable with a pen when opened.
- - qol: Attempting to wrench deconstruct a wall button or put in airlock electronics
- or an assembly device when you can't actually gives feedback.
- - balance: Stamina healing has been significantly increased for most reagents and
- passive effects.
- - bugfix: Fixed the patient information for the mech sleeper module not displaying
- when the mech didn't also have a syringe gun.
- - rscadd: Added screentips to extinguishers.
- - bugfix: Fixed alt-click interaction with extinguishers and mod control units.
- - refactor: Ctrl click & Ctrl shift click has been refactored. Please report bugs
- on GitHub
- - rscadd: wawastation, the station map
- - bugfix: Missing legs no longer slow you down in non-gravity environments.
- - refactor: Mouse drag & drop attack chain has been refactored. Report any bugs
- on GitHub
- - bugfix: You cannot close the cryo tube on yourself with Alt click like before
- - rscadd: The Lizard's Gas ruin in Lavaland has been revamped, and now dispenses
- plasma gas fuel.
- - bugfix: the syndicate now imports warm air instead of cold air to their icemoon
- listening post
- WebcomicArtist:
- - bugfix: Healium bolt now no longer affects silicons.
- grungussuss:
- - spellcheck: all instances of reactive armor are now spelt the same
- projectkepler-ru:
- - bugfix: Blueshift brig timer now ACTUALLY work
-2024-06-17:
- Gandalf2k15:
- - bugfix: You are no longer GBJd
Wayland-Smithy:
- bugfix: Fixed revenant spawning next to brains and other unharvestable dead mobs.
WebcomicArtist:
@@ -1284,14 +747,6 @@
- balance: dental pills can now be used in crit.
- balance: dental pills now give off a message when you start using them
- balance: dental pills have a 2.5 second delay when in soft crit
- SkyratBot:
- - sound: added compressed air sound for when air tanks are inserted into machinery
- - balance: Certain changeling abilities won't work while on fire.
- grungussuss:
- - rscadd: Added Misha the bear to the HoS office on icebox.
- xXPawnStarrXx:
- - rscadd: Added new primitive, power free farming methods.
- - bugfix: stopped shelves spawning clay. (You don't think I saw you, but I did...)
JackEnoff:
- balance: Certain changeling abilities won't work while on fire.
TheBoondock:
@@ -1305,152 +760,6 @@
Let's go practice medicine!
- bugfix: Fixed the free reagent purging mechanic from causing an explosion so weak
that it doesn't cause any damage.
- Goat:
- - qol: fire extinguishers can now be filled via stationary tanks. (and water coolers)
- LT3:
- - image: Added time clock informational poster to all maps
- Melbert:
- - bugfix: Crusher Fix For Real
- - qol: Block'd out armor readout, should be more readable now
- SkyratBot:
- - bugfix: build mode and space dragons dont harddel on destroy
- - qol: A message with a link to publicly accessible logs (if enabled by your server
- operators) should now be visible far earlier when a world is about to reboot.
- - bugfix: you may now open the panel of a flatpacker with a screwdriver
- - bugfix: Fixed mulebots being able to run over people who are leaning against a
- wall.
- - bugfix: Transcendent Olfaction mutation now works properly
- - qol: adds a confirmation to malf AI shunting into APCs
- - bugfix: Non-metallic slime types are semi-transparent
- - bugfix: Fixed anomaly cores from the high-intensity grav anomaly event creating
- the wrong type of reactive armour.
- - sound: added squeaky turn and gas hissing sound to gas valve
- - bugfix: ctrl+shift clicking on a ghost will only quick spawn that clicked target
- and not you
- - bugfix: allows cigarette grinding in mortar
- - bugfix: Mining borgs can get multiple modkits of the same type installed again.
-2024-06-19:
- SkyratBot:
- - bugfix: Airlocks should no longer appear closed sometimes when fireman carrying
- someone into them.
- - bugfix: TGUI say will no longer spill your /me contents when you get attacked
- - balance: Gorillas have big fingers, which mostly just prevents them from using
- laser pointers and stun batons
- - rscadd: the advanced omnitool upgrade now hastens the mediborg's syringe too
-2024-06-20:
- Bisar:
- - rscadd: Sparks now ignite flammable things. Including you. Keep a fire extinguisher
- handy or stop dousing yourself in welding fuel!
- - bugfix: Fixed a few oversights with welding fuel pools not igniting when you throw
- lit/hot things into them or when you walk into them while on fire.
- - rscadd: The Nanotrasen safety commission reminds employees to properly clean themselves
- of all flammable material before going on smoke breaks.
- Melbert:
- - bugfix: Enabling or disabling ambience mid round will properly enable or disable
- ambience
- - qol: Added descriptions differentiating "Ship ambience" from "ambience"
- - bugfix: Fixed hand tele portals being forever
- SkyratBot:
- - balance: Items held in your hands can catch fire.
- - balance: Items you are holding won't catch fire if your hands cannot catch fire.
- - balance: When you stop being on fire so will items you are holding.
- - balance: If you roll around on your burning items they will stop being on fire.
- SpaceLoveSs13:
- - bugfix: Fix hypospray injection
- - bugfix: Fix summon beacons
-2024-06-21:
- Goat:
- - bugfix: Icebox's raptor den is now lined with asbestos and lead and no longer
- gets hit with radiation.
- LT3:
- - bugfix: SAD now provides better feedback whether the machine is turned on, or
- just a player sitting in there twiddling their thumbs idly while ghosts scream
- at the monitor that nobody turned it on
- - balance: Micro-laser tier now reduces SAD processing time at the expense of power
- - qol: SAD consent dialog moved to the start of procedure
- - qol: SAD automatically asks for consent after a delay
- - bugfix: Breaking out of the SAD doesn't render the machine permanently broken
- - balance: Breaking out of the SAD causes player damage
- - image: SAD now has sound and light, new icon states
- - spellcheck: Updated SAD text, removed remaining references to Cinco
- - spellcheck: Melon fruit bowl now comes with a side of foreshadowing for people
- who want to experience an explosion of flavour
- - bugfix: Fixed paramedics not having access to the Icebox NanoDrug using the west
- airlock
- Rhials:
- - balance: The energy bola slowdown has been (roughly) halved, to allow for more
- retaliation when used on a criminal.
- - bugfix: Fixes a door in the Fredington Fasting Bear Five Nights and Fnafbears
- map.
- SkyratBot:
- - bugfix: gasping makes sound now
- - qol: Vending machines now give audio feedback when you restock a vending refill
- and get a payout.
- - qol: The Restock tracker NTOS app for tracking vending machine contents now works
- on all consoles, and comes pre-installed on the cargochat cargo computers.
- - balance: Vending machines now offer a bit more credits when missing contents at
- the start of a round after getting restocked.
- - bugfix: Fix rust heretic being unable to rust walls or floors
- - bugfix: fixed wrong access on one door on wawastation and also made lights on
- elevators not break (On Wawastation)
- - bugfix: Made 10 MJ & 20 MJ cells properly correspond to tiers 1 & 2 in lathes.
- - image: Updated cell sprites to correspond to other stock parts of their tiers.
- - image: Updated plasma cell, 500KJ cell and 2.5MJ cell sprites
- - bugfix: no more runtimes when dragging turfs onto other stuff
- - code_imp: most actions now properly check for recursive locs & better adjacency
- - bugfix: Techfabs now print 5x cable coil
- - bugfix: Sparks will no longer turn areas with wooden furniture or similar into
- naught but a field of ashes; they no longer ignite furniture, (unless it's made
- of plasma(?!)) and have a decreasing chance to ignite items bigger than small
- size.
- - rscadd: vendrobes may have mothroaches inside them
- - rscadd: mothroaches will now seek out clothes to eat them
- - bugfix: Fixed new compressor UI
- - bugfix: The chaplain altar can once again be buckled to.
- - bugfix: Wawastation bridge now has the correct access on their suit storage and
- medkit now actually starts filled
- - bugfix: puts tiles under the wawa tool storage doors
- - bugfix: allows you to access a door and a fire alarm on wawa's prison second floor
- - qol: Prettied up the Chemical Analyzer's output in chat, making it easier to read,
- especially when scanning multiple things.
- - refactor: Compressor UI to TypeScript
- - qol: Simplified Compressor UI layout
- - bugfix: You can move around ui buttons in your action bar
- - bugfix: Fixed techweb app showing wrong designs on Details button click
- - qol: APC has wires for machinery/lights/environment channels
- - rscadd: every engineering lobby starts with a flatpacked flatpacker and multitool
- - bugfix: limbs that are both robotic and something else can be repaired properly
- grungussuss:
- - bugfix: mimes can now break their vow while borged or an MMI
-2024-06-22:
- Bisar:
- - bugfix: Felinids no longer remember losing their tail and regaining it roundstart;
- you need to do it during the round to get that mood event.
- Erol509:
- - rscadd: Added synth version of Big Legs taur sprite.
- Rhials:
- - balance: DRAGnets now come with a beacon they can be synced to, which will set
- the destination for the snare round's teleport ability.
- SkyratBot:
- - rscdel: Locker staffs have been removed from the Ragin' Mages deathmatch lootcrate
- pool.
- - qol: Dramatically improves delete character UI and UX.
- - rscadd: Adds Feast of Owls ritual to heretic which allows one to forsake their
- ascension in exchange for immediate power.
- - bugfix: When on 'stream' mode, the cleaning spray from a bottle of space cleaner
- should no longer be blocked by just about everything.
- - bugfix: borg factory gives you your preference borg name
- - bugfix: breaking an APC will depower the area
- - bugfix: lunatics now get their hud properly
- - bugfix: lunatics now get objectives
- - qol: ascended moon heretics are now labelled as ringleaders and are easier for
- lunatics to spot
- - image: New gibber sprite
- - image: New food/slime processor sprite
- - rscadd: Replaces the Particle Acceleration Rifle with the Event Horizon anti-existential
- beam rifle. It shoots black holes. You can make this in-game. That's right,
- YOU!
- - balance: Only one vortex anomaly can be made in a round.
GPeckman:
- bugfix: Mining borgs can get multiple modkits of the same type installed again.
Goat:
@@ -1475,13 +784,6 @@
- rscadd: Added a variant of machinery scan experiment that accepts any machines
with upgraded parts (required for tier 3 parts)
- rscdel: Removed material scanning experiments from the tech tree
- - image: Resprited all jetpacks
- - qol: Fullscreen mode can now be toggled by pressing F11 or the button at the top
- right
- - bugfix: sanitization on citation pda alerts
- - rscadd: Added disks for accelerator modkits and crusher trophies to the bitrunning
- vendor
- - bugfix: Conga lines of more than 2 no longer break when going up and down stairs.
Melbert:
- qol: Block'd out armor readout, should be more readable now
- bugfix: Crusher Fix For Real
@@ -1640,20 +942,6 @@
- bugfix: Allowed NTNet relay in away circuit imprinter for NT Frontier app
- qol: NT Frontier app installed on RD and Scientists` PDAs by default
- qol: Updated NT Frontier app to be more user-friendly
- - bugfix: Repurposed Glands (Adrenals) now show their correct duration and chemical
- cost in its description.
- grungussuss:
- - bugfix: Welding protection module for MODsuits protect flash-sensitives from welding
- arcs
-2024-06-23:
- Bisar:
- - rscadd: Ashwalkers are now better at riding, taming animals, and fishing.
- - code_imp: Behavior for the settler trait has been partially atomized into several
- traits instead.
- Melbert:
- - rscadd: Character Loadouts
- - rscdel: Pride Pin quirk (it's in the Loadout menu now)
- SkyratBot:
Rex9001:
- bugfix: lunatics now get their hud properly
- bugfix: lunatics now get objectives
@@ -1720,26 +1008,7 @@
by clicking the hololadder and netpod respectively.
- rscdel: Removed the starfront saloon BR map.
- bugfix: 'Syndicate assault map: Added pistols, reduced exploits.'
- - balance: most livestock crates, with some exception, have been made cheaper to
- facilitate healthier mental states in the crew, go build a farm!
- - image: added sprite for debug heretic painting
- SpaceLove:
- - qol: Self Actualization Device(SAD) is now available with Cytology techweb in
- research!
- - balance: The points requirement for Microfusion technology and powerator has been
- decreased.
- thegrb93:
- - rscadd: Some furry photocopier butt sprites for teshari/vox/podperson/fox
2024-06-24:
- Melbert:
- - rscadd: Adds an effect for emagging a fake emag
- ShizCalev:
- - rscadd: The game settings menu can now actually be accessed through the escape
- menu.
- SkyratBot:
- - bugfix: crayons interact with washing machine once again
-2024-06-24:
-
Bisar:
- balance: Sparks have been heavily adjusted; they only affect items made of plasma,
pools of welding fuel, flammable people, cigarettes, and items that contain
@@ -1747,10 +1016,6 @@
has been untouched.
DATA, with sounds by Beebblie:
- sound: Added sounds for turning on and off internals.
- LT3:
- - bugfix: Smartfridge will now correctly respond 'no power' instead of 'forbidden
- item' when it doesn't have power
- Melbert:
GoblinBackwards:
- rscadd: Breathing nitrium now has a chance to make you burp.
Kocma-san:
@@ -1768,36 +1033,6 @@
- qol: Gives plate sharts a more fitting hitsound / caltrop sound, gives them a
set caltrop stun duration (instead of default)
- bugfix: Fix DNA vault probes
- - bugfix: Touch Spells now apply click CD again
- - bugfix: Touch Spells now apply fingerprints again
- - bugfix: Touch Spells now check if your hands are blocked again
- - bugfix: Bloody footprints now go until you run out of blood on your feet instead
- if only a single tile
- - rscadd: Adds an effect for emagging an emag
- NullDagaf:
- - bugfix: fixed crusher code
- Rhials:
- - bugfix: Admin-only deadchat broadcasts don't append a second "this message is
- for admins only" string for every admin online.
- - bugfix: Drone fabricator subtypes that spawn pre-loaded now actually start with
- materials inside.
- - bugfix: The binocular fabriactor on the MediSim shuttle works again.
- - sound: The abductor team now has their own antag stinger.
- ShizCalev:
- - qol: Oven trays now count as valid trays to cut food on.
- SkyratBot:
- - spellcheck: rewrote GLA device's description for clarity
- - bugfix: you can hold Ian in your arms
- - rscadd: Breathing nitrium now has a chance to make you burp.
- - rscadd: Electric eels now prefer used car batteries for bait.
- - spellcheck: Grapple gun's description has been updated.
- SpaceLove:
- - bugfix: Ghouls can attach their limbs again
- theselfish:
- - balance: The Prybar's ability to be roundstart JoL is gone, thank God.
-2024-06-26:
- Bisar:
- - bugfix: The light eater can now again eat lights from things with lights.
- bugfix: Bloody footprints now go until you run out of blood on your feet instead
if only a single tile
- rscadd: Adds an effect for emagging an emag
@@ -1837,19 +1072,6 @@
- bugfix: deadchat pda messages show the imprinted sender's name instead of whoever
is holding the pda
- bugfix: emoji show up in deadchat pda messages
- Goat:
- - rscadd: Added boards for the library's book binder and scanner, printable at the
- service fabricator once computer tech is researched. Spritework done by lepiromano.
- Guestify:
- - bugfix: The visor of the welding mask no longer goes down when you enable internals
- - bugfix: Fixed secbots and mulebots bold text
- MrDas:
- - bugfix: Fixed the duration of wizard's mutate spell.
- ShizCalev:
- - image: Foam darts in the magazine of a toy/riot C20R45 will now show the correct
- color corresponding to the type of said dart loaded in it instead of a generic
- bullet sprite.
- SkyratBot:
FlufflesTheDog:
- bugfix: printed medical beds are no longer randomly offset
Goat:
@@ -1865,9 +1087,6 @@
punctuation.
- spellcheck: The nutriment pump implant's description in the lathes are no longer
typo'd.
- - bugfix: printed medical beds are no longer randomly offset
- - admin: Admins have a new secret to mass revive and heal all players on the server.
- - rscadd: wawastation stand-in shuttle
Jacquerel:
- bugfix: Minebots, Tamed Wolves, and Regal Rat Minions will now give you some space
if you start attacking yourself, rather than joining in.
@@ -1918,73 +1137,6 @@
- bugfix: The shortsword sprite no longer has a misaligned handle.
- code_imp: Organized the nullrod file, and removed some unnecessary subtyping on
various types of nullrods.
- - bugfix: Refactored borg omnitool code, fixing most of the unique interaction issues.
- - bugfix: The Infiltrator module now has the same welding protections as the engineering
- module.
- - bugfix: The infiltrator module now properly protects you from head impacts. Helpful
- if you wipe out on your hoverboard while fleeing the cops.
- - code_imp: Improves the definitions for welding protection values.
- - bugfix: Minebots, Tamed Wolves, and Regal Rat Minions will now give you some space
- if you start attacking yourself, rather than joining in.
- - refactor: Modular computers (PDAs, laptops, etc) and their applications have had
- their item interaction logic refactored. Please report any issues.
- - bugfix: You can deposit cash into IDs inside of PDAs by slapping it against the
- PDA again.
- - bugfix: Interacting with an assembly bomb in hand will now allow you to interact
- with the attached assembly instead of opening the gas tank UI. Right-clicking
- will display the gas tank UI instead.
- - rscadd: 'Bitrunning: You can now choose your hacker alias in prefs.'
- - rscadd: Bit avatars get orbit icons.
- - spellcheck: fixed typo in raptor emote
- - bugfix: Fixed crayons not being usable on anything except turfs (including washing
- machines)
- - bugfix: '[IceBox] The Head of Personnel''s Requests Console announcements now
- correctly display the HoP as the announcer, rather than "Unknown"'
- - qol: space dragon can see in the dark and the invalid rift location alert is more
- informative
- - bugfix: multi-z hole repair works better, especially when the turf below is blocked
- by items
- - bugfix: Analyzers should work on bioscrambler anomalies again.
- - spellcheck: fixed typos in a few heretic items
- - spellcheck: rewrote parts of the lunar heretic's abilities, items and traumas
- - bugfix: Fixed ctrl-click not dragging the bluespace gas sender or hydroponics
- trays.
- - bugfix: Autopsy experiments for techweb can be performed roundstart
- - balance: Thanks to incredible strides in selective slime breeding, slimes require
- substantially less nutrients to grow into adults, and split into children.
- - bugfix: wawa ordnance air alarms dont send alerts roundstart
- - qol: wawa ordnance gets more portable atmos machines to compensate for having
- next to no actual portable atmos machines
- - bugfix: wawa ordnance gets 3 random roundstart cores (forgor to add)
- - qol: NT Frontier app now allows to select experiments from inserted data disks
- - refactor: vibebots are not basic bots
- - rscadd: vibebots will now seek out the depressed and cheer them up
- - rscadd: You can now click pens! Clickity clickery click!
- - bugfix: E-Daggers can now break lockers/other renamable objects, and pendrivers
- can now extract their electronics.
- - code_imp: Most pen typechecks now check for writing implements.
- - bugfix: You should no longer attack mobs that don't have a chest in the chest
- (bots).
- - bugfix: RND console now properly rounds research points
- - bugfix: fixes an issue that was causing the quirk config tooltips to render behind
- the window, making them nearly impossible to read.
- - bugfix: durand shield doesnt immediately depower the mech when taking stamina
- damage
- - balance: durand shield is a bit stronger
- - bugfix: Medicated suture, advanced regenerative mesh, and mourning poultice reactions
- should more consistently spawn the items they are meant to produce.
- - bugfix: Orange balloons are no longer invisible in the hand slot.
- - bugfix: you can piggyback on players again
- - bugfix: you can strip someone while lying down
- - bugfix: paraplegics can buckle others & themselves to chairs & mobs
- - qol: improved feedback messages when an action cannot be done
-2024-06-27:
- LT3:
- - bugfix: Fixed Blueshift and Void Raptor engineering/telecoms airlock access
- SkyratBot:
- - qol: ' The xenobio console''s monkey placing command also clears dead monkeys
- on the tile.'
- - bugfix: Spraycans can once more paint things.
norsvenska:
- bugfix: '[IceBox] The Head of Personnel''s Requests Console announcements now
correctly display the HoP as the announcer, rather than "Unknown"'
@@ -2028,20 +1180,6 @@
Vekter:
- balance: The Event Horizon Anti-Existential Beam Rifle now requires Unregulated
Bluespace Research to be constructed.
-2024-06-28:
- LT3:
- - rscadd: New DeForest heavy medical kit, technician satchel
- - rscadd: Security medic can now order a single heavy medical kit using departmental
- order
- - bugfix: Hyposprays that are supposed to have a starting vial now actually start
- with the vial
- - bugfix: Combat hypospray correctly has the combat cooldown
- Melbert:
- - sound: Glug-glug sound when dragging a leaking gas tank
- - bugfix: Fix timestop being 1 tile too small again, and fixes a lot of other field
- effects from being 1-small as well
- - bugfix: Lizards and Moths don't deathgasp twice when they die
- - bugfix: Fixed cyborg omnitools being unusable on some things
Watermelon, Mayhazah:
- balance: Drastically reduces the power consumption and max charge of power cells
- balance: Added a new stock part called the battery, used primarily in the construction
@@ -2099,53 +1237,6 @@
ShizCalev, SpaceLove:
- refactor: Techweb strings are defined now so to maintain modularity
- balance: Research papers will have less overall point generation.
- SkyratBot:
- - rscadd: Crystallizer boards added to Delta and Tram HFR rooms
- - balance: Mediborg surgical omnitool upgrade makes the health analyzer advanced
- - rscadd: There is a chance that Spess Knife will be in a mail for engi and clowns
- - bugfix: infiltrator modsuit sprite is not misaligned anymore
- - rscdel: Removed tank dispenser UI to use left/right clicks instead
- - bugfix: Fixed hunger affecting your speed in nograv
- - bugfix: MODsuit pathfinder module works. Again.
- - code_imp: AI pathfinding should produce slightly better paths.
- - refactor: firebots are now basic bots
- - qol: 'polypore mycelium no longer contains sugar, preventing it from instantly
- creating fringe weaver beverage when ground up. qol: sugar may be acquired from
- grinding fireblossoms instead of polypore mycelium.'
- - bugfix: Retracted pens can be put into PDAs
- - bugfix: Headprotector modules and constructor modules work properly once more.
- - bugfix: Protolathes/Circuit Imprinters/Techfabs with better parts should now print
- items faster again.
- - bugfix: actions buttons can be dragged anywhere again
- SpaceLove:
- - bugfix: Roundstart drone dispensers have materials now
- Viralmilk22:
- - rscadd: Shifted up the service departments on Birdshot.
- - rscadd: Added an arcade.
- theselfish:
- - qol: You can now play your character in the bitrun domain spawners.
-2024-06-29:
- LT3:
- - bugfix: Hypospray switches vials as expected
- - bugfix: Piercing hypospray now has inject/spray delay
- SkyratBot:
- - rscadd: A new Anomaly organ has been introduced, The Voltaic Combat Cyberheart!
- - qol: Updated Microscope UI
- - qol: Microscope is easier to use - you can remove dish with right click and swap
- dishes
- - balance: 'Due to selective breeding of slimes, some species require roughly 3x
- more plasma than normal to activate a plasma reaction. Slime extracts affected
- are: Oil, Adamantine, Orange, and Gold. Yellow slimes require 3x more blood
- to activate a blood reaction.'
- - balance: Oil slime extracts have become less potent during a plasma reaction due
- to selective breeding conditions.
- - balance: Gold slime extracts give rise to one less monster during a plasma reaction
- due to selective breeding conditions.
- - balance: Yellow slime extracts have become less potent during a blood reaction
- due to selective breeding conditions.
- - balance: Adamantine golem shells require 3 sheets rather than 1, due to unknown
- circumstances.
- - bugfix: Fixed disconnected APC on birdshot and other minor service fixes.
SmArtKar:
- bugfix: Retracted pens can be put into PDAs
SyncIt21:
@@ -2166,10 +1257,6 @@
- bugfix: correct cost of the design scaled with `creation_coefficiency` is displayed
in the UI
- code_imp: overall improved code quality of all things flat pack related
- Vekter:
- - bugfix: Fixed the visibility of a pipe in Northstar's ordnance lab
- - bugfix: Fixes the door-bolting buttons in the dorms and bathrooms on Birdshot.
-2024-06-30:
- bugfix: actions buttons can be dragged anywhere again
Viralmilk22:
- rscadd: Shifted up the service departments on Birdshot.
@@ -2208,24 +1295,6 @@
who witness it.
- bugfix: Ashwalkers are now actually in the ashwalker faction, instead of the neutral
one.
- JohnFulpWillard, Tattax:
- - rscadd: Monkeys can now wear all jumpsuits.
- - rscadd: Bioscrambler anomalies can now give monkey legs.
- - bugfix: Monkeys can have their tails removed, and tails are no longer invisible
- when implanted into another species.
- LT3:
- - bugfix: Combat hypospray exists again, not just in a techweb design
- - bugfix: You can put all the medical technician kit's items back in the bag
- - image: Combat hypospray new sprite
- - spellcheck: More hypospray text consistency
- - spellcheck: Empty hypospray kits are now called cases, case/hypospray combos remain
- kits
- - bugfix: Hypospray techweb fix
- - qol: Hypospray Mk. II default delivery mode is now 'spray'
- ShizCalev:
- - bugfix: Airlocks will now correctly said what other airlock they are cyclelinked
- with.
- - bugfix: Portaturrets no longer go invisible when unwrenched from the ground.
EnterTheJake:
- rscadd: A new Anomaly organ has been introduced, The Voltaic Combat Cyberheart!
Higgin:
@@ -2254,251 +1323,6 @@
(ie admin ghosting, being moved to other mobs, ect.)
- bugfix: Monkeys that become sentient through the sentience helmet will no longer
be notified that they can ventcrawl.
- - bugfix: Toggling ambient ship sounds will now instantly turn it on/off.
- - bugfix: The soups wiki page no longer has error icons for soups that don't have
- unique sprites.
- SkyratBot:
- - bugfix: Emergency firesuits no longer hide your gloves.
- - bugfix: Guns no longer can be overfilled by 1 bullet
- - bugfix: Russian revolvers now spawn with only 1 live round as originally intended,
- and click when firing a blank.
- - rscadd: Reworked blood loss effects on the user to be much more noticeable.
- - code_imp: Changed the blood volume defines to be based on the BLOOD_VOLUME_NORMAL
- define, with a multiplier of blood loss applied, to be more understandable.
- - qol: The "Dental Implant" surgery no longer forces itself to restart after implanting
- one pill. Now implanting pills in the surgery has another step to either search
- the patient's mouth for another tooth to implant, or cauterization to end the
- surgery.
- - qol: Punching bags are now a equal method of training to the fitness machinery.
- - qol: Boxing grants more experience overall for participation.
- - bugfix: Lavaland elite are at lavaland fauna faction now
- - sound: added liquid pouring sounds to pouring of any reagents
- - bugfix: you can access your inventory when lying down
- - image: Ripley and Ripley-based mechs now have consistent outlines
- - bugfix: both engineers and roboticists may now access the controls of a firebot
- - bugfix: The Stimmed mutation now has the appropriate instability value for a largely
- meaningless mutation.
- - spellcheck: Syndicate jaws of life are now jaws of death!
- - spellcheck: Made its desc. more descriptive, stating that its faster.
- - bugfix: Fixed gas canister shields turning themselves off in unpowered areas when
- they weren't drawing any cell power.
- - bugfix: fixed cyborgs and monkeys not being able to buckle to chairs
- - bugfix: There's now a limit to how many dental implants you can cram into your
- mouth, which is governed by your species' teeth limit.
- - refactor: Most species have 32 teeth, due to being based on humans, weirding me
- out when thinking about their teeth, or lack of enough information
- - refactor: Moths and flypeople have NO teeth. They CAN'T get dental implants. I'm
- NERFING moths.
- - refactor: Lizards have seventy-five (!!!) teeth. Lizards are weird.
- - bugfix: Holodeck closet & crate items are marked as holograms as well
- - bugfix: Holodeck closet & crate items delete themselves when the program is changed
- - bugfix: Mood buffs/penalties are now properly equal on both positive/negative
- sides.
- - bugfix: Storage no longer deletes all of its viewers upon being deleted
- - bugfix: Storage UI now renders properly
- - bugfix: Removed a bush trapped inside a wall above morgue on Tramstation
- - bugfix: added a keycard auth to QM room
- - balance: Changelings regenerate chemicals faster when not on fire
- - balance: Changelings regenerate chemicals slower when on fire
- - bugfix: peg legs can't bleed
- - code_imp: Rewrote a portion of storage UI code to allow it to be influenced by
- UI style.
- - image: Prettified storage UI and made it affected by UI theme.
- - bugfix: Fix being unable to add a flux core to new the combat heart cybernetic
- - balance: Negative mutations now allow you to have more positive mutations, via
- reducing your instability!
- - code_imp: All mutations have been overall standardized via defines on their instability
- values. Many mediocre positive mutations have had their cost reduced significantly!
- - rscadd: 'Added a new height mutation: Acromegaly! It''s the opposite of Dwarfism
- and makes you uncannily tall. It also makes you hit your head 8% or 4% (with
- synch) of the time you pass through airlocks. Wear a helmet!'
- - rscadd: Gigantism is now a recipe mutation, mix Acromegaly with Strength to get
- it.
- - qol: Injectors and activators' duration is now dependent on the in/stability (absolute
- value) of the mutations to be injected! With a minimum of 5-10-15 seconds for
- each type of injector. Also changed up a bit how part upgrade cooldowns work,
- by making each tier reduce cooldowns by 25-15-10% for each injector type.
- Thlumyn:
- - bugfix: fixed active turfs in icebox listening post
- Vekter:
- - rscadd: Bitrunners can now access specific bounties asking for the item rewards
- from specific bitrunning domains.
- - bugfix: Fixed bitrunner pulling from a pool of literally every bounty available.
- grungussuss , Kayozz:
- - sound: exosuit fabricators, Autolathes and Techfabs will now produce sounds when
- printing items
- nikothedude:
- - spellcheck: Fixed a typo in systemic fault's examine text
- - balance: Synthetic electrical damage can no longer worsen if its currently being
- repaired
- - rscadd: Taurs now have custom leg names
- - bugfix: Synth taur legs now have all attributes of a organic taur leg except the
- fact theyre robotic
- - bugfix: Markings no longer render on taur legs
- - bugfix: Clothing with taur-specific clothing sprites now render those sprites
- properly
- - code_imp: Various improvements to taur leg code
- - code_imp: Taur bodies are properly subtyped
-2024-06-17:
- Arturlang:
- - bugfix: Bitrunner glitches should now spawn properly more often
- - balance: Reduced nightmare's burn weakness to 1.2, from 1.5.
- - qol: Becoming a special vassal will now ask the vassal in question if they wish
- to become it, and only go through if you accept it.
- Boviro:
- - rscadd: Adds the Bobr shotgun revolver to cargo as a goody.
- BurgerB:
- - balance: Buffs RBMK2 base power generation + Buffs RBMK2 cooling efficiency
- BurgerBB:
- - rscadd: Adds Big Fat Security Glocks
- - bugfix: Fixes some WT-551 ammo errors.
- - balance: Rebalances the overweight quirk, and adds a new obese quirk.
- - balance: Adds a damage threshold + RNG requirement for EMPs affecting heads and
- torsos, as well as organs inside those two.
- - balance: Changes Ninja's energy sword recharge rate from 350 to 200.
- - balance: The maintenance loot scarcity station trait now only spawns very rare
- loot
- - qol: Adds a module that allows engineering cyborgs (and some saboteur cyborgs)
- to carry handheld tanks.
- - rscadd: Destroying floor tiles on the Moonstation upper level can lead to a chasm
- that drops you down to the middle cave level. Note that you can't get dropped
- down to lavaland.
- - rscdel: Malfunctioning AIs can no longer purchase the "Nuke Station" module.
- - rscadd: Adds Legion to Moonstation + Raptor Farm outside Mining
- - qol: Map voting shows total map counts for each map
- - balance: Nerfs electrocution damage because I died to it once
- - bugfix: Fixes a missing moonstation disposals pipe.
- - bugfix: Fixes Moonstation SM pipes from Atmos
- - bugfix: Fixes maint loot being absurd.
- - balance: Increases the chances of the Wizard Die of Fate event running.
- - balance: Makes the exterior of Moonstation more enclosed.
- - bugfix: Fixes the second layer of moonstation creating space turfs.
- BurgerLUA:
- - bugfix: Moonstation Fixes and Balance Changes
- ChromeFoxxity:
- - rscadd: Adds Security High-Vis Jacket Red and Blue variant.
- - image: Added icons of both variants.
- - code_imp: Added code for both variants.
- Colfer1:
- - bugfix: Entombed trait reskin feature works now
- Erol509:
- - rscadd: Added leash line between user and your "pet".
- - bugfix: Fixed the fact that you can put a leash on your belt, doing some wonky
- stuff with resisting from that.
- - bugfix: Fixes the leash beam randomly dissapering
- Gandalf2k15:
- - bugfix: You are no longer GBJd
- Hacks-The-Doors:
- - balance: dental pills can now be used in crit.
- - balance: dental pills now give off a message when you start using them
- - balance: dental pills have a 2.5 second delay when in soft crit
- Iamgoofball:
- - balance: ' removes the antag-spawning trumpet from the maintenance pool because
- this is not supposed to be spawned'
- IgiariValkyr:
- - rscadd: Parts from a discontinued synth chassis line from the Mariinsky Ballet
- Company is making rounds on the black market - now available to install for
- synths and chromed up organics!
- KathrinBailey:
- - bugfix: Blue jumpskirts should not be in the vendor's red clothing section.
- - bugfix: Red jumpskirts should be available in the game again.
- Kyogon:
- - rscadd: Adds Kyo's true horns, named Biter's Horns.
- Majkl-J:
- - rscadd: Cooking pots can now be worn on your head
- - rscadd: Adds prefloading to bitrunning
- - qol: Makes the vote requirements code not terrible by allowing anyone with some
- effect on the round to use it
- - code_imp: The storyteller failed to pick events runtime now includes more information
- Nevimer, Majkl-J, BurgerBB, Azarak:
- - rscadd: Ported the storyteller event system from horizon
- RadiantFlash7:
- - balance: gave tajarans better tackles to compensate for weak ears
- ReturnToZender:
- - bugfix: Fixed some indentation issues in tajaran.dm, adjusted some lines of examine
- code to prevent runtimes, borg names show up on the examine panel now instead
- of nothing
- - refactor: applies AddElementTrait to the waddling quirk, and mouse waddling
- - balance: Borgs now take 2 seconds to emag. Cover lock functionality unchanged.
- - balance: The stun time on the tippable component for borgs has been reduced to
- 20 seconds, from 60 seconds.
- - balance: Extends the Spy bounty handler by 2x to match our longer rounds.
- - balance: Releases two new genders, Transmasc and Transfem, for use in the Character
- Directory.
- Shayoki:
- - qol: General Box Station improvements.
- Shayoki, Crumpaloo, Keila, Wolf751, bitsynapse.:
- - rscadd: Donator toys and clothes have arrived.
- SkyratBot:
- - sound: added compressed air sound for when air tanks are inserted into machinery
- - balance: Certain changeling abilities won't work while on fire.
- Tera:
- - rscadd: Added new leash item to borg dom module
- VrazzleDazzle:
- - image: Added one new alt skin to the mining MODsuit
- - rscadd: Advancements in mining R&D have introduced four new crusher variants to
- the mining vendor, courtesy of Monkestation
- aKromatopzia:
- - rscadd: new silicon model (smolraptor). non-syndie, sorry; for now
- - rscdel: Removed duplicate raptoral cybernetic defines in preferences, research
- web nodes and fabricators
- delingar:
- - qol: Relentless Heartbeat costs 0 knowledge
- grungussuss:
- - rscadd: Added Misha the bear to the HoS office on icebox.
- pixelkitty286:
- - rscadd: Research cyborgs
- - rscadd: ability to pry cyborg cells out
- - rscdel: ~~disabled malf cyborg factory~~
- - qol: made an alt method removing cells
- - balance: rebalanced cyborg making
- - image: Sprites for research cyborgs
- - code_imp: what ever needed to get the cyborgs working
- - rscdel: unused ass pics
- - balance: Tajaran body temps and flash sensitivities
- - bugfix: Moved images
- - code_imp: Defines for cat cyborgs
- - bugfix: Central Command small raptors from not showing up
- - rscadd: holding code for cyborgs
- - rscdel: Old 32x32 F3-LINE sprites
- - image: 32x32 F3-LINE sprites and a cargo variant
- - code_imp: preventive flags to indicate when held
- - admin: Two robot traits added to the trait list
- - bugfix: engineering borg BRPED upgrade re-added
- projectkepler-ru:
- - bugfix: idma co donor item being flammable and fixes the ammo reloading pouch
- for the hos revolver being flamable
- - bugfix: Due to a genetic sequencing error, hydrophilic slime people have once
- again been spotted on the station
- shayoki:
- - bugfix: fixed a few donator items.
- theselfish:
- - rscadd: Added various clown clothing into the autodrobe.
- - rscadd: Clown Cryto is back.
- - code_imp: Modular Vending code from Skyrat, but for us.
- - rscadd: Marge has breached containment.
- - rscadd: A Halo is a new 'horn' option for angel characters.
- - rscdel: Tiny loadout folder is now annexed into the bigger one.
- - qol: Drill hats are clickable and are in the command vendor. (Thanks to F13 for
- the OBJ sprite.)
- - spellcheck: Removed a reference to Skyrat, and a spelling mistake in the Credits.
- - bugfix: Drill Hats ACTUALLY work.
- - bugfix: MASSIVE File Structure clean-up.
- - rscadd: Crewimov related modules are printable now.
- tmyqlfpir:
- - bugfix: Dauntless space ruin bitrunner server no longer announces cool down over
- NT supply comms
- - bugfix: Dauntless and Interdyne are now immune to rad storms
- - rscadd: Added Syndie borg access cards to Interdyne
- - qol: Replaced the polarized windows in the Interdyne sauna area with blast door
- shutters
- - rscadd: Added experi-scanners to Interdyne/Dauntless R&D
- - bugfix: Interdyne never spawns on top Z level
- - qol: Interdyne dorm rooms now have crowbars in closets
- - qol: Interdyne deck officer does not leave empty sleeper on ghost role spawn
- xXPawnStarrXx:
- - rscadd: Added new primitive, power free farming methods.
- - bugfix: stopped shelves spawning clay. (You don't think I saw you, but I did...)
- bugfix: Airlocks will now correctly said what other airlock they are cyclelinked
with.
- bugfix: Portaturrets no longer go invisible when unwrenched from the ground.
@@ -2591,4 +1415,3 @@
- bugfix: fixed the name of a request console in the medical sec outpost on metastation
mc-oofert:
- bugfix: both engineers and roboticists may now access the controls of a firebot
-
diff --git a/html/changelogs/archive/2024-07.yml b/html/changelogs/archive/2024-07.yml
index 6d99c7252f2..632d897df75 100644
--- a/html/changelogs/archive/2024-07.yml
+++ b/html/changelogs/archive/2024-07.yml
@@ -1,55 +1,4 @@
2024-07-01:
- LT3:
- - rscdel: Removed references to security medic cargo packs
- - code_imp: Blood filter only pings and says finished when it's actually finished
- Majkl-J:
- - rscadd: You can now pick if you want to only understand, or also speak a language
- - qol: The language pref menu now shows understanding/spoken levels of languages
- - code_imp: The code for language prefs no longer uses snowflake values
- - bugfix: Fixes several errors in the modular savefile update code that basically
- ruined half the point of it running only once
- Melbert:
- - rscadd: Humanizing a monkey removes undergarments such as socks
- ShizCalev:
- - bugfix: The power for all science burn chambers across all maps now works properly.
- SkyratBot:
- - code_imp: Supermatter zap power generation takes perspective of the machines subsystem.
- - bugfix: Game not refocusing after closing a TGUI
- - bugfix: Vent-born wendigos no longer create one-way portals
- - rscadd: Added tons of new mutations to Genetics, alongside some recipes!
- - rscadd: Thermal Adaptation has been made a combination mutation from the stronger
- but narrower Cold and Heat adaptations.
- - balance: Cryobeams have 9 tile range, and fiery sweat doesn't cause spread on
- contact.
- - image: Added some neat new sprites for the new mutations, and added a greyscale
- version of the magic hand sprites.
- - code_imp: Infinitesmally improved mutation code.
- - qol: RD's labcoat is now classified as an actual labcoat instead of a glorified
- jacket, allowing them to put science-related stuffs into it
- - image: You can now toggle RD's labcoat
- - bugfix: Fixed the camera offset for the navigation console on a handful of Whiteships.
- - bugfix: Fixed the Pubby Whiteship drifting sideways through hyperspace when in
- flight.
- - bugfix: Fixed the Kilo Whiteship flying backwards through hyperspace when in flight.
- - bugfix: The Birdshot Whiteship should actually be able to spawn now.
- - spellcheck: fixed spelling of "aggressive" in the shuttle manipulator description
- for the Birdshot Whiteship.
- - bugfix: wawastation arrivals has firealarms so you may now leave
- - spellcheck: Fixed two typos in the heretic lore
- - refactor: Lizard and moth markings now use the bodypart overlay system
- grungususs:
- - bugfix: fixed the name of a request console in the medical sec outpost on metastation
- nikothedude:
- - rscadd: Serpentine taurs can now use their tails to constrict things and crush
- them
- - rscadd: Serpentine taurs can no longer wear shoes
- - rscadd: Reimplemented taur sprites for a bunch of clothing items
- theselfish:
- - rscadd: In spite of the many attempts of British agents purging any non anglo-saxon
- cultures, the kilt and Irish outfit are back. Our day has come.
- xXPawnStarrXx:
- - rscadd: Added new medical tools
-2024-07-02:
Ben10Omintrix:
- balance: raptors will now knock off their rider and disable them if hit by any
energy projectiles or if they recieve any stamina damage
@@ -57,26 +6,6 @@
- bugfix: Nanotrasen sent us a batch of faulty canisters. They've been recalled
and replaced with less faulty canisters.
- bugfix: Zauker SM interaction works correctly now.
- Kapu (ported by StrangeWeirdKitten):
- - bugfix: Ambience buzz will now respect ship ambience prefrences for observers.
- - sound: Ambience buzz requires APC enviorment power to function
- Majkl-J, BurgerBB:
- - bugfix: Fixed double manifest entries
- Melbert:
- - qol: Handheld Genetic Scanners fit in Geneticist equipment suit storage
- SciDragon:
- - rscadd: Telecomms Specialist job, with a niche carved out of an underutilized
- engineering department.
- SkyratBot:
- - bugfix: 'Hostile plant monsters (EX: Killer Tomatoes) no longer act hostile toward
- Seedlings.'
- - bugfix: brig cell timer ui works properly now
- - rscadd: Bounty Hunter teams now have personalized announcements for when they
- are spawned in.
- - spellcheck: Heretic spell invocations now use one dead language per path. Altered
- a few invocation types.
- - balance: portable air scrubbers scrub in a 3x3 square + hold as much gas as a
- canister
DaCoolBoss:
- image: Relics ("strange objects") now have unique sprites.
Iajret:
@@ -141,100 +70,6 @@
- bugfix: You must be in combat mode to punch objects and to bumpsmash into objects.
- bugfix: Stops mecha being able to punch literally any object and damage them.
- code_imp: Tidies up some of the autodoc comments for mech weapons.
- - rscadd: Shield generators and shield gen walls now glow a light blue. Pretty!
- - bugfix: You can grind slime extracts in reagent grinders once more.
- - bugfix: Fixed some UI bugs in the power monitor screen.
- - bugfix: Fulton animation is no longer sideways.
- - bugfix: fixed blood loss knocking you down at somewhat safe (~80%) blood levels
- - bugfix: Space heaters do not completely drain their starting cell while trying
- to change their room temperature by a few degrees.
- - bugfix: Some varieties of snow now visually melt properly again when burned
- - image: Relics ("strange objects") now have unique sprites.
- - image: updated halloween metoer sprites.
- - balance: raptors will now knock off their rider and disable them if hit by any
- energy projectiles or if they recieve any stamina damage
- - bugfix: fixed Wawastation areas
- - bugfix: fixed wawastation disposals
- - qol: Made light tiles available in the crafting menu
- - qol: Circuit tile variants can be cycled in-hand
- - rscadd: Moved loose tiles and wall frames from lathe designs to other tiles and
- frames in the crafting menu
- - bugfix: Fix /datum/weakref appearing when linking airlock heretic portals
- - bugfix: Pyrokinesis bolts no longer have infinite range and create trails of fiery
- doom.
- - image: Decluttered card textures
- - sound: added pickup and drop sound for beakers
- - image: Captain's spare safe received a new texture
- - bugfix: Hand of Midas now works point-blank.
- - rscdel: Removed cordons on deathmatch maps, since they're autoadded now.
- SpaceLove:
- - rscadd: RCD can now be researched and printed!
- Wallem:
- - rscadd: The detective now starts with the DET.ekt Skillchip, which allows them
- to identify chemicals and bloodtypes by taste.
- Watermelon, Mayhazah:
- - balance: Drastically reduces the power consumption and max charge of power cells
- - balance: Added a new stock part called the battery, used primarily in the construction
- of APCs and SMESs.
- - rscadd: Suiciding with a cell/battery will shock you and potentially dust you/shock
- the people around you if the charge is great enough.
- grungussuss:
- - qol: Windoors now stay open for 8 seconds instead of 5
- - qol: Secure windoors now stay open for 5 seconds instead of 2
- lorwp:
- - bugfix: extinguishers now can be filled with subtypes of water again (Namely,
- holy water)
-2024-07-03:
- Bisar:
- - qol: Loot panels should update more predictably and informatively now.
- - code_imp: Lootpanels have more consistent logic on when they automatically update.
- LT3:
- - bugfix: CMO and deluxe hypospray can again hold large vials
- - bugfix: Fixed tram door warning lights, returning a visual warning for those who
- don't enjoy being bitten
- Majkl-J, StrangeWeirdKitten:
- - bugfix: You can rename items again
- - bugfix: Donator items properly handle inside the loadout.
- - bugfix: Ckey and Role restricted items now show in the loadout
- Melbert:
- - bugfix: Fixed modsuit interactions slightly. No longer requires combat mode to
- use tools on it, plasma core works as intended as well. (Using combat mode,
- however, will make you insert the item)
- - refactor: Refactored lockboxes
- - refactor: Refactored medbot skin application
- MrDas:
- - bugfix: Bolas now slowdown properly.
- - bugfix: Cult bolas no longer leave in-hand sprite when they ensnare to non-cult
- user.
- ShizCalev:
- - bugfix: Fixed a number of shuttles having parts (such as lattices) completely
- disappearing.
- - bugfix: Fixed the ceilings above shuttles on station maps being full-bright.
- - bugfix: Fixed lattices sometimes appearing at random locations in space on station
- maps.
- - bugfix: Cleaned up a number of accidentally placed objects in space across all
- station maps.
- - bugfix: Fixed a false positive with the mapload_space_verification unit test failing
- on turfs that weren't actually part of shuttles.
- - code_imp: Added a unit test that automatically finds all base space turfs with
- objects on them, as well as non-space turfs that are set to space areas (meaning
- that these squares weren't lit properly.)
- SkyratBot:
- - bugfix: fixed Birdshot bar and surrounding areas not properly connected to the
- power grid.
- - bugfix: Inducers now accept megacells AND regular cells.
- - rscdel: "Removed Trichromatic Larynx per @\_mothblocks decision that it looks\
- \ uggo."
- - rscdel: Replaced heckacious laryncks' color and size changes with random bolding,
- italics, and underlining.
- - rscadd: Stoner has been un-locked and replaces TL in the above's recipe.
- - bugfix: Fixed elastic arms users being unable to use abstract items like mending
- touch or shock touch.
- - bugfix: Fixed mending touch being bad
- - qol: It is easier to do some required techweb experiments on Charlie station now
- - bugfix: Fixed experimental dissection surgeries giving too many points
- - balance: 'Techweb: Moved NTNet relay back to tcomms node'
- - balance: 'Techweb: Moved blood pack and chem pack to the starting node'
spockye:
- bugfix: fixed Wawastation areas
- bugfix: fixed wawastation disposals
@@ -252,7 +87,6 @@
- qol: Added more feedback to failing to hide items in bedsheet bins.
- sound: Made putting items in bedsheet bins not silent (If the items have associated
pickup/drop sounds).
- - image: Fixed shading on some metal ingots.
- code_imp: Deconstructing light switches now uses the proper tool action and tool
usage code, please report any issues.
- bugfix: Attempting to deconstruct a light switch by unscrewing it no longer makes
@@ -266,83 +100,6 @@
- qol: Added an examine hint denoting light switches are screwed to the wall.
- qol: Added visible messages for someone deconstructing a light switch parallel
to deconstructing intercoms.
- - bugfix: portascrubbers also scrub the tile theyre on
- - rscadd: Ghost role food truck merchants may occasionally turn up at the station.
- - rscadd: Adds a new fugitive hunter type, MI13 secret agents.
- - rscadd: Being cursed now enables disembowlements/cranial fissures outside of hardcrit
- - qol: you can now swap pens in pdas
- projectkepler-ru:
- - balance: cocain does not give you speed bonus and instead give you toxin damage
-2024-07-04:
- DrDiasyl aka DrTuxedo:
- - sound: Shoves now produce more meaty sound!
- LT3:
- - qol: Crew monitor defaults to sort by vitals
- Rhials:
- - balance: All cameras in bathrooms and showers have been removed.
- SkyratBot:
- - bugfix: cigarettes and vapes are no longer treated as clothing (eg. They no longer
- get shredded and need to be repaired with... cloth).
- - bugfix: Brought the fishing rewards experiments to normal values.
- - image: New linen bin / basket sprites
- - bugfix: Dark matteors no longer claim that they have missed when they actually
- impacted the station
- - rscadd: Added flatpacker & multitool to all R&D labs
- - bugfix: Removed three traitor posters from Cargo Warehouse's walls. (Metastation)
- - balance: Added one traitor poster each to the QM's Office, Vault and Evidence
- Storage to compensate. (Metastation)
- - bugfix: Bio Emergency crates now bring Bio Suits and Hoods compatible with the
- Security Hoods and Suits Schematics.
- - rscadd: 'Added a bitrunning deathmatch map: Island Brawl. Both ghosts and runners
- get many more spawns than normal.'
- - bugfix: Lowered the static vision time in domain load in.
- - bugfix: Fixed the basic Sandwich recipe and tags, now it matches the description
- and original intent.
-2024-07-05:
- Bisar:
- - bugfix: Dastardly clowns will no longer be able to get counted for three times
- the steps by moving diagonally.
- DATA_, with sounds made by Beebblie:
- - sound: You will now be able to hear your muffled breathing while using internals.
- This can be turned off in the game settings.
- LT3:
- - sound: Changed blood filter cycle sound
- Majkl-J:
- - bugfix: Fixed the infinite damage exploit on smithing weapons
- SkyratBot:
- - qol: You no longer need to reach the very edge of the game screen to reach the
- maximum zoom range when scoped.
- - rscadd: Heretics can now sacrifice Cultists for sweet loot.
- - rscadd: Cultists can now sacrifice Heretics for sick trinkets.
- - rscdel: Removed Bastard Blade from the game, code, and life
- - balance: Aggressive Spread now rusts non-turfs next to you as well
- - balance: Raise Construction cd raised to 7, now breaks rust walls as well, improved
- autoaim making it actually usable midfight
- - refactor: Auto-aim code now works on any atoms if configured
- - bugfix: omni crowbar tool interaction for replacing tiles has been fixed
- - bugfix: techfab screentip does not runtime when you hover over it with an omnitool
- multitool
- - bugfix: medi borgs can do brain surgery again
- - code_imp: improved multitool & general tool code for some machines
- - bugfix: 'Fixed the following shuttles flying in unexpected directions: Pubby escape
- pod, Humpback emergency shuttle, Pubby monastery shuttle, Birdboat emergency
- shuttle, Birdshot emergency shuttle'
- - code_imp: improved mouse drag & drop code
- - bugfix: deathmatch OSHA Violator map has actually functioning field gens now
- - bugfix: being polymorphed in deathmatch does not count you dead
- - bugfix: deathmatch cyborgs may not talk in binary
- - qol: deathmatch map names are sorted alphabetically
- - spellcheck: deathmatch final destination clown and chef loadouts have been renamed
- to avoid confusion
- - bugfix: Fixed toggleable screen colors for glasses.
- - code_imp: De-hardcoded, refactored the above, now-fixed feature.
- - rscadd: Pumpkin hardhats and the hood of the flash suit now affect the color of
- your screen.
- - rscadd: Prism glasses, obtainable through xenobiology crossbreeding, now also
- affect the color of your screen.
- - rscadd: You can now microwave station pets that you can pick up, with predictable
- outcomes
- - image: The sprites for the projectile dampener field have been updated
Bisar:
- qol: Loot panels should update more predictably and informatively now.
- code_imp: Lootpanels have more consistent logic on when they automatically update.
@@ -460,40 +217,6 @@
in.
- sound: Bedsheets use the cloth drop/pickup sounds instead of being silent.
- qol: You can tuck someone in telekinetically.
- - rscadd: mecha wire that shoots you or anyone nearby if pulsed or cut
- - bugfix: mecha shock wire shocks you
- - bugfix: Reverts the fully interactive lootpanel, please just refresh it if you
- want to see new contents
- - bugfix: Fixed telekinesis letting you grab people at a distance, and teleport
- them to you by strangling them.
- - image: Updated diamond stacks to fit its "unstacked" version.
- - bugfix: plumbing machinery should have consistent volumes throughout the course
- of its operations
- - bugfix: plumbing iv drop now only accepts reagents from ducts but won't put reagents
- back into it i.e. it only has a input pipe
- - rscadd: The Illumination Applications technode now includes a gunkit for a new
- gun, the Photon Cannon.
- - qol: Transhumanist and prosthetic limb no longer conflict. If you pick the same
- limb for both it uses the weaker prosthetic (dumbass)
- - code_imp: Made the name for prosthetic limb global list more intelligible
- - bugfix: Birdshot's AI core no longer has windoors concealed under open shutters.
- - balance: removed tasers, the unfirable turret gun, death wand, polymorph wands
- and the enchanted modsuit from lootbox loot tables
- - bugfix: lootbox guns should now mostly not have syndicate firing pins so you can
- actually use them
- - image: Some gloves have received new sprites
- - rscadd: Added Pipe Scrubber portable atmos machine
- - rscadd: 254 new vox lines
- - bugfix: fixes not being able to clean microwaves
- - bugfix: 'Techweb: Moved upgraded cyber organs to tier 3 from tier 4'
- - qol: 'Techweb: Added fully augmented android scan discount experiment for Advanced
- Cybernetic Organs techweb node'
- - rscadd: updated Icebox's lavaland ruin. The incursion grows...
- - bugfix: Bitrunning hacker aliases are now much more permissive
- - bugfix: you can hold your wound while resting via ctrl click
- - bugfix: Mending touch no longer damages non-humans
- - bugfix: fixes mansus grasp not clearing runes
- - image: Fixed the cargo crate having wrong stripe width in open state
ArcaneDefence:
- rscadd: You can now microwave station pets that you can pick up, with predictable
outcomes
@@ -542,41 +265,6 @@
itself is rejected for any reason
- qol: you can use any storage medium & not just bags/boxes to dump stuff into material
containers
- - balance: Facehuggers dont make people go to sleep but muffles speech
- - code_imp: Very very minor xenomorph code cleanup
- - refactor: Muzzles are now an element
- - refactor: Bayonet attachment is now a component.
- - code_imp: Improves cpu performance of transferring & removing reagents
- - rscadd: the Feast of Owls now leaves more dramatic messages in your chat
- - sound: the Feast of Owls now has a little theme
- - rscdel: You can no longer get turned into a dullahan by a genetic meltdown
- - refactor: Refactored genetic meltdown code into datums, making it more extendable.
- - qol: Data disks are now printed in lathes instead of circuit imprinter
- - bugfix: Instruments enhanced with portable tuning can perform the rites that have
- been granted
- thegrb93:
- - bugfix: Fix mask sprites for teshari/vox
- theselfish:
- - rscdel: Minecraft Youtuber plush is gone.
-2024-07-06:
- Jolly:
- - code_imp: Behind the scenes, maps had a little bit of tweaking. If you see things
- rendering in weird ways, or they don't look like how they used to/supposed to,
- please report them on GitHub!
- Majkl-J:
- - bugfix: Several techwebs now handle points and experiments correctly
- Melbert:
- - rscadd: Humonkeys and random corpse spawns now look more... human.
- SkyratBot:
- - rscadd: You can now craft a singularity hammer using all nine anomaly cores and
- the supermatter.
- - refactor: Vat grower is a normal machine now that doesn't need plumbing
- - qol: Cytology petri dish smartfridge starts with 3 random samples
- - rscadd: Added protein powder condiment bottle, available in the cytology supplies
- locker and the cargo pack
- - rscdel: Removed science variant of plumbing RCD
- - bugfix: Fixed a bug when machines without stock parts didn't spawn frames on deconstruction
- - bugfix: Fixed vat grower not growing
- code_imp: improved mouse drag & drop code
- code_imp: Improves cpu performance of transferring & removing reagents
- bugfix: plumbing machinery should have consistent volumes throughout the course
@@ -657,9 +345,6 @@
trees'
- qol: Made air horn craftable from a spraycan and a bikehorn
- qol: 'Techweb: Better wording on the slime scan experiment'
- - balance: Settlers are a bit slower on their steeds.
- - image: Goody case locked/unlocked sprites have been swapped again, having a gap
- for unlocked and no gap for locked.
- refactor: Vat grower is a normal machine now that doesn't need plumbing
- qol: Cytology petri dish smartfridge starts with 3 random samples
- rscadd: Added protein powder condiment bottle, available in the cytology supplies
@@ -684,85 +369,6 @@
the Psyker bounty hunters, and the MI13 Foodtruck.'
- bugfix: Fixed the SpacePol van, Russian bounty hunters, default bounty hunters,
and Psyker bounty hunters' shuttles all flying in incorrect directions.
- - qol: Linked speech now prevents messages from highlighting if its a message you
- sent, or if you are the owner of said link..
- - qol: Linked speech messages are now marked as radio messages, for chat tab purposes.
- - rscadd: 'New traitor mech: Justice. Emag fabricator to get it.'
- - qol: portable scubber, pump and pipe scrubber are buildable as any other machines
- Sosmaster9000:
- - balance: 'Xenobiologists now have a BZ-filled containment pen. Don''t breathe
- that!
-
- balance:Some items which either cannot be printed elsewhere or are part of game
- progression (e.g. teleporter endpoints and, of course, Nanners) have been moved.
- Alien Spawnpoints are in the same spot.'
- thegrb93:
- - bugfix: Fixes the rest of vox/teshari custom sprites
- - bugfix: Borg affection module tongue/nose not working
-2024-07-07:
- Majkl-J:
- - bugfix: Fixed some loadout items missing
- - balance: Changed the event horizon to not be a "Destroy 5x5 area every 10 seconds"
- weapon, instead making it into a single target annihilator
- Seven:
- - balance: Bloody footprint trails go a longer distance now.
- SkyratBot:
- - bugfix: Autolathe won't eat the borg omni tool
- - qol: Examining a windoor will now provide the construction steps, like other standard
- buildable objects.
- - bugfix: Reagent containers are no longer mysteriously fireproof.
- - rscadd: Projectile Dampener field now reduces stuns and stamina damage from incoming
- projectiles
- - bugfix: Binary devices no longer ignore the volume of the output pipe network
- - bugfix: Firefighting backpack tank nozzle can be used to hit objects and destroy
- atmos resin again.
- - code_imp: Cleaned up relic code.
- - image: Added necrotech themed relics.
- - bugfix: Fixed temp n space adaptations not conflicting
- - image: fixed and touched up the icons for the Doorjack and Cryptographic Sequencer
- (EMAG)
- - bugfix: Fixed the augmented organs experiment
- - bugfix: fixed ninja's adrenaline boost module not being rechargable
- - qol: CE and Engineer start with their hardhat as the respective welding hard hat
- variant
-2024-07-08:
- Imaginos16 (sprites) TheSelfish (port):
- - rscadd: New, ship like Captain clothes, now in the vendor!
- Majkl-J:
- - bugfix: Digitigrade pant sprites work again
- - bugfix: Fixed loadout descriptions being gone
- SkyratBot:
- - bugfix: ' Birdshot botany is resized. bar is also smaller.'
- - bugfix: Birdshot public shrine now uses the correct dirt. (Goodbye chasms)
- - bugfix: ' Examining a fishing spot twice with sufficiently high fishing skill
- (or the skillchip) will get you a list of fishes that can ACTUALLY be caught'
- - bugfix: Fixes hacker alias name preference not working.
- - bugfix: Added a forgotten firelock on second floor of wawa
- - bugfix: you may now use a legion core on an elite tumor
- - spellcheck: Renamed the organ thrower module to the 'organizer'
- - spellcheck: Made its description more accurate. Did you know it instantly replaces
- up to 5 organs in active surgery?
- - bugfix: defibrillator no longer has an abstract cell
- - code_imp: defibrillator attackby replaced with item_interaction
- - bugfix: You require breathing once more.
- - bugfix: you can craft the singulo hammer with either a supermatter engine/shard
- again
- - rscadd: There's a previously undiscovered variant of a nullrod, recently revealed
- from the depths of the skating rink..
- - balance: You can only stun someone with a shove if they have been shoved into
- objects or people, or have been hit by telescopic batons, contractor batons
- or the Mansus Grasp.
- - balance: If someone is knocked to the floor, however, you can still disarm them
- of any object with a shove.
- - bugfix: Knight helmets no longer burn as though made of cloth.
- lorwp:
- - rscadd: using 'skibidi' as a chaplain deity now gives you brain damage
- theselfish:
- - qol: Telecomms Sysadmin no longer has to crawl around to get a belt.
- - bugfix: You can now get Telecomms Drip if it burns off.
-2024-07-09:
- LT3:
- - bugfix: Fixed medical stacks like mesh and sutures not treating wounds
- bugfix: 'Fixed the following shuttles flying in unexpected directions: Pubby escape
pod, Humpback emergency shuttle, Pubby monastery shuttle, Birdboat emergency
shuttle, Birdshot emergency shuttle'
@@ -838,51 +444,6 @@
- balance: Cryostasis now has Fusion instead of Controlled Plasma as a prerequisite
- balance: Cryostasis cryostylane scan is now a discount experiment
- balance: Crystallizer moved from Controlled Plasma to Fusion
- Majkl-J:
- - bugfix: Brings loadouts back on par with the old system mechanically
- Melbert:
- - qol: Vending Machines have a search bar
- Rhials:
- - admin: Narrate verbs will now allow you to pick what text formatting span you
- want to use before you send them, if any.
- - admin: Quiet-announce random events still announce to admins and can therefore
- be rerolled.
- SkyratBot:
- - rscadd: Aquariums now influence the beauty score of an area based on their contents.
- - rscadd: Morbid people now get a positive moodlet when admiring an aquarium full
- of dead fish, and a negative one when fish are alive.
- - qol: blood bros get a hud to see eachother
- - code_imp: teambased antagonists may not see the HUDs of other teams
- - qol: the path to the wawastation chemsat is more clear now
- - qol: You can now copy blast door controller IDs directly onto shutters/blast doors,
- avoiding the need to open a menu for each one. Additionally, this lets you fix
- sets of roundstart shutters without needing to change the IDs on all of the
- ones in that set.
- - bugfix: Fixed the orbit icons scrolling sometimes
- - refactor: refactored `GetExactComponent` to be 1641 compatible
- - balance: 'Demon: bloodcrawl now deal damage when you using it.'
- - balance: 'Demon: demon can eat only carbon human beings.'
- - bugfix: Fixed space heater heating power and power consumption
- - qol: Mood more promptly reacts to the beauty of an area as it changes, and not
- just when changing areas.
- - rscadd: Coroners (and potentially other mobs with the morbid trait), now like
- degradated-looking rooms.
- - rscadd: Night vision goggles now subtly tint your screen.
- - rscadd: You can turn your night vision goggles off. Doing so removes the tint
- and the eye protection malus.
- - image: You can now flip your security helmet's visor up with alt-click! However,
- doing so will (obviously) expose your eyes.
- - bugfix: Hoverboards properly dysfunction in space without any kind of support
- underneath them.
- - bugfix: Fixed missing wires leading to the port hallway APC on Birdshot.
- - code_imp: Added the subtype vendor which lets admins and coders vend subtypes
- of a path
- - code_imp: Added the vendor and both varieties of omnitool to runtime station
- - admin: Added a config that regulares random spawners weights.
- - bugfix: raptors don't easily stress out in lavaland environments
- - bugfix: Fixed the bluescreen while setting a custom font in tgui panel
- - rscadd: 12% chance of a ouija board spawning in the chaplain office. Wawastation
- always has one.
Loafin34:
- rscadd: There's a previously undiscovered variant of a nullrod, recently revealed
from the depths of the skating rink..
@@ -896,18 +457,6 @@
windows not being able to embed into anyone.
- refactor: Refactored embedding code to use datums instead of bespoke elements
and ugly associated lists.
- - balance: Bait quality now influences the probabilities of getting a rarer fish
- compared to the most common one(s)
- - bugfix: paintings can be sponsored again
- - balance: All jetpacks are now modsuit jetpack speed
- - rscdel: Adv. Ion Jetpack module has been removed
- grungussuss:
- - sound: scalpel cutting sound now has a clean sound.
- theselfish:
- - bugfix: Donator Item loadout was fixed.
- xXPawnStarrXx:
- - bugfix: fixed my medical tools not being printable.
-2024-07-10:
- bugfix: You require breathing once more.
Toastgoats:
- rscadd: Added the designer EVA suit, a unique pirate hardsuit for Silverscales.
@@ -983,9 +532,6 @@
- code_imp: Behind the scenes, atmos machines (freezers/mixers) in maps were tweaked
a bit. If you see them no longer connected to specific pipenets, please make
an issue report, this is not intended behavior!!
- LT3:
- - qol: Hypospray and flashlight can be put in labcoat pockets
- Rhials:
Kocma-san:
- qol: the disposal unit has been added to the cargo bay and miner's office.
- bugfix: missed disposal pipe returned at QM's office
@@ -999,29 +545,6 @@
Overwatch Intel Agents (which break the role).
- balance: Loneops may now purchase chameleon noslips, station blackout triggers,
and station comms failure triggers.
- SkyratBot:
- - bugfix: Missing janitor access restrictions have been added to Birdshot's custodial
- closet doors.
- - sound: Added audible zipping to winter coats.
- - bugfix: Exosuit Stress Failure experiment now works
- - bugfix: Blood filters should filter out reagents completely now instead of leaving
- a small amount no matter what.
- - bugfix: Ore vents that are caught in the cross-fire of a lavaland tendril collapsing
- will now spare the ore vent and it's associated turf.
- - bugfix: hydroponic trays take in all reagents "proportionally" from plumbing ducts
- without leaving any behind
- - bugfix: plumbing bottler pumps out all reagents "proportionally" into output beakers
- - rscadd: Added the designer EVA suit, a unique pirate hardsuit for Silverscales.
- - balance: Increased the equipment available to Silverscales
- - image: Sprites for the designer EVA suit
- - qol: You can now use a spoon or ladle on an ice cream vat to spill a reagent,
- ridding the machine of all reagent of that type.
- - balance: Jetpacks are now briefly disabled by EMP.
- - balance: Mirage module has been removed from Sec modsuits.
- - balance: Security modsuits now spawn with a better cell and the jetpack module
- preinstalled.
- - bugfix: fixed CNS rebooter/Changeling adrenaline not preventing/fixing stamina
- crit
SmArtKar:
- bugfix: Blood filters should filter out reagents completely now instead of leaving
a small amount no matter what.
@@ -1084,44 +607,6 @@
Pubby cargo shuttle, and Delta cargo shuttle.'
- bugfix: Fixed the ERT bounty shuttle having incorrect offsets in the shuttle navigation
console.
- - qol: the disposal unit has been added to the cargo bay and miner's office.
- - bugfix: missed disposal pipe returned at QM's office
- - rscadd: Living flesh arms have a chance to actually touch the thing they're targeting
- instead of pulling it. Careful with supermatter!
- - bugfix: Welding helmet and hardhat will now properly protect against pepperspray
- while its down
- - bugfix: fixed dubious chem dispenser feedback when the beaker is full
- - bugfix: no more xenobio active turfs
- - bugfix: Embedding now properly changes its values.
- - bugfix: Bloody footprints no longer bloody your shoes even more when walked over.
- - qol: Using a multitool inhand tells you where the area APC is
- SpaceLove:
- - rscadd: Prybar is possible to be bought again!
- - rscadd: Colony Fabricator can be bought from company imports now!
- grungussuss:
- - bugfix: fixed an unrestricted airlock in metastation brig maints
- - sound: pen click now has a proper sound
- - sound: Zippos, Lighters and cigarettes now have sound
- grungussuss, ported from Beestation:
- - sound: abductee, hypnotized and brainwashed now have sound when becoming one.
-2024-07-11:
- LT3, distributivgesetz, unit0016:
- - bugfix: Several liquids rendering issues have been tackled.
- SkyratBot:
- - bugfix: stacking machines can be linked with its console via multitool
- - bugfix: Fixed a whoopsie with bait-related calculations for fishing.
- - qol: Docked emergency shuttles will always reset their departure timer when a
- hostile environment is stopped, regardless of if the timer displays ETD or ERR.
- - bugfix: Amputating a paraplegic's leg no longer miraculously allows them to walk.
- - bugfix: Fixed lights stopping emitting light in some situations
-2024-07-12:
- Jolly:
- - bugfix: '[Birdshot] The Ordnance freezer chamber is now linked to an APC, much
- like the burn chamber.'
- - bugfix: '[Birdshot] The Janitors quarters no longer uses `/area/station/commons`,
- instead, it uses the janitors regular area.'
- - bugfix: '[Birdshot] The entertainment center now has an APC.'
- - bugfix: '[Birdshot] A handful of smaller areas have received air alarms.'
grungussuss:
- sound: Zippos, Lighters and cigarettes now have sound
lizardqueenlexi:
@@ -1148,325 +633,6 @@
longer affect newly created machines or bots, just those present at game start
- rscdel: Machine Language station trait cannot affect the Automated Announcer in
telecomms
- SkyratBot:
- - refactor: move `status_display_bottom_text` and `fire_alarm_light_color` to security
- level prototypes
- - bugfix: Mapped in grounding rods can be upgraded again (not that upgraded parts
- do anything for it) and don't disappear when deconstructed anymore.
- - bugfix: Fixed an oversight that caused knockdown vomits to stun instead.
- - bugfix: Using a dual wielded deck to add another card to a single card bases the
- position of the resulting hand of cards on the position of the card.
- - qol: Clothing now tells you if it is pressure-proof and insulated enough for spacewalking
- when examining it.
- - bugfix: Vapes use correct fill level overlays
- - qol: TV helmet no longer has gas mask FOV, nor does it give you flash sensitivity.
- - qol: Since those are gone, removed pepper proof from it as well.
- - bugfix: You no longer try to pull out someones eyes in combat mode if they have
- cranial fissure
- - rscadd: You can emag grapple gun to use it on station.
- - code_imp: added a crash report and removes an arg
- - refactor: Refactored a lot of speech modifiers to use a component instead of copied
- over code.
- - bugfix: humanoid species featured are randomized correctly once again
- - rscadd: Most door animations now better line up with when they are/are not passable.
- - bugfix: Fixed being unable to cauterise wounds with improvised cautery tools such
- as welders.
- - bugfix: fixes the rightmost wawastation cryo cell
- - bugfix: gave tram's primary tool storage functional disposals
- - bugfix: Steaks and meatpacks no longer have an absurd amount of blood stored inside
- of them.
- - balance: Buffed the matrix flip skillchip duration. Lowered the stamina cost very,
- very slightly.
- - qol: You can now longer matrix-flip yourself into exhaustion, unless the emote
- is unintentional.
- - balance: bluespace navigation gigabeacons are now unlocked with Applied Bluespace
- Research
-2024-07-13:
- LT3:
- - image: Incident displays got a makeover
- - balance: Using the delam panic button will now reset the incident display counter
- to 0
- Melbert:
- - qol: Roundstart Mannitol pills are 15u (up from 14u)
- SkyratBot:
- - balance: If you remove a security officer's mindshield, then you can flash them
- to make them your blood brother.
- - balance: Experimentor's reduction chance is multiplicative, and chance to copy
- an object has been slightly lowered.
- - qol: adds an oxygen chamber for wawastation ordnance
- - qol: adds some missing critical items needed to do ordnance and xenobiology
- - balance: Experimentor will no longer duplicate Bags of Holding
- - balance: War declaration gives 600 research points to the station
- - balance: Cryokinesis and pyrokinesis more severely adjust temperature.
- - balance: Cryokinesis forces a target to slow down on hit for a few seconds.
- - balance: Pyrokinesis can ignite objects.
- - balance: Temperature projectiles change the temperature of the target's contained
- reagents.
- - bugfix: french berets will no longer force the user to speak spanish
- - balance: Tetrodotoxin can now be synthesized (bees, the odysseus mech, strange
- seeds...)
- - balance: Upped the amount of tetrodotoxin you can harvest from pufferfishes (or
- any fish with the trait).
- - spellcheck: Fixed some typos with the toxin.
- - image: re-sprited Catwalk Floor Tiles to fit with TG floor tiles
- - image: MOD hyposprays no longer use syringe fill sprites
- - bugfix: password doors and shutters will now play their sound effects again instead
- of just silently opening/closing
- - bugfix: Fixed a bluescreen in the heretic research ui
- - bugfix: Added a Mechbay power console to the Metastation cargo warehouse so that
- the cargo ripley is able to be charged.
- - qol: Heads of staff PDAs start with twice as much disk space
- - bugfix: H.A.R.S. will no longer disable your skillchips or show you text reserved
- for total brain removal.
- - bugfix: The modsuit paint kit is no longer broken.
- - bugfix: Other mobs no longer hear your breathing
- - bugfix: makes outpost45 cause less lag
- - balance: Moves XL beaker from Chemical Synthesis to Medbay Equipment
- - balance: Removes Plumbing node and moves most items to Chemical synthesis node
- - balance: Moves piercing syringe from Plumbing node to Advanced Medbay Equipment
- - rscadd: Add the National Ice Cream Day holiday, which falls on the third Sunday
- of July.
- - bugfix: all icons in the crafting menu (some that you missed) are now fixed permanently
-2024-07-14:
- SkyratBot:
- - rscadd: Changed the layout of birdshot engineering atmos and SM, added a proper
- engineering storage area.
- - bugfix: Fixes Icemoon syndie listening station APC's from being affected by station-side
- events
- - refactor: request managers have been refactored to typescript
- - bugfix: request manager type filter now works
- - image: the smoking pipe's directional looks have been altered to make it less
- ugly
- - qol: Using ctrl + your quick MOD button now opens module selector on your mouse
- position
- - bugfix: Grass turfs will render properly now. Reworked how floors render, please
- report any bugs!
- - bugfix: Cameras now properly capture lighting
- - bugfix: The layering seen in photos should better match the actual game
- - bugfix: Fixed tables and racks being climbable from half a mile away
- - rscadd: Adds the Herculean Gravitronic Spinal Implant; an implant that makes you
- better at athletics. You can upgrade it into an Atlas implant using a gravity
- anomaly core.
- - balance: Gravity anomaly cores have had their max number of cores reduces from
- 8 to 6.
- - balance: Your athletic ability allows you to climb faster.
- - rscadd: Added airlock pump atmos device to create cycling airlocks
- - rscadd: Cytology Lab has been added to Icebox
- - rscadd: Delta now has soy seeds on the Cytology Lab
- - bugfix: Cytology is playable again on Icebox
- - bugfix: Fixed dead slime icon not showing when cores are extracted
- - qol: Slime core removal surgery extracts all cores on completion
- - rscadd: A new ork mutation which can be acquired by mixing hulk and clumsy.
- SpaceLoveSs13:
- - bugfix: fixed RSD, BSRPD, Affection Module, Spray perfume bottles etc. Report
- further issues.
- Vishenka0704:
- - qol: With voting turned off for the dead, you can now understand why you can't
- vote (being dead).
- - admin: Voting switch for the dead players
- thegrb93:
- - bugfix: Fix laugh not being your selected laugh
- theselfish:
- - rscadd: Multiple new pets in the carrier.
- - bugfix: A few masks are more easily clickable now.
- - bugfix: Certain stock issues have been fixed. Kilts and Tactical Outfits are back
- in the vendors.
-2024-07-15:
- StrangeWeirdKitten:
- - rscdel: Removed the nuke code from spawning on the Interlink.
- thegrb93:
- - code_imp: Anthro borg can use affection module
- - refactor: Refactors borg affection module
-2024-07-16:
- Melbert:
- - qol: Lattices now make the same footstep sound as catwalks
- - qol: If you're in oxycrit (>50 oxy damage) or otherwise made unconscious through
- other means, blood loss will only kill you if you're *actually* missing a lethal
- amount of blood.
- MrDas:
- - bugfix: Clown operative reinforcements' uplink no longer break the syndicates'
- economy by creating TC from nothingness.
- SkyratBot:
- - bugfix: Attachment points on toolset implants have been improved, to prevent against
- recycler related decouplings.
- - bugfix: Fixes overwatch glasses not adding HUDs
- - bugfix: Destroying the jungle grass tiles in Tramstation's science wing should
- no longer open a chasm.
- - qol: Research nodes can be queued, one per player. RDs can place their node at
- the beginning of the queue.
- - sound: added pickup, dropping and opening sound for pill bottle
- - admin: Ghosts can no longer create deathmatch lobbies or join existing ones when
- admins disable minigames
- - bugfix: borgs have alt right click functionality
- - qol: Pathfinder MODule can now be triggered while wearing the MODsuit to implant
- yourself without having to pull it out of the suit.
- - bugfix: You can no longer cause a bluescreen by attempting to recolor non-recolorable
- loadout items.
- - spellcheck: Firelocks no longer output their full name in their balloon alert.
- - spellcheck: Failure message when a xenomorph tries to force open a welded firelock
- is now a balloon alert.
- - bugfix: mothroaches will no longer be crawling out of bags every minute
- - bugfix: Accelerator cannon projectiles no longer grow to absurd sizes after a
- bit of travel.
- - admin: Outfit manager UI no longer harddels after closing and thus is usable more
- than once
- Thedragmeme:
- - bugfix: Fixes the Plague hat having what the Plague mask should have
- nikothedude:
- - bugfix: Naga constrict no longer resets pixel x to 0 if you cosntrict someone
- being pulled
- theselfish:
- - rscdel: Deleted some unused icons.
- - bugfix: Even more OBJ fixes.
-2024-07-17:
- Hardly3D:
- - bugfix: Added a preview assistant outfit, allowing assistant jumpskirts to be
- previewed again on character preferences.
- SkyratBot:
- - bugfix: ACTUALLY fixed hoverboards being able to be used in space.
- - balance: However, you can soar space with the holy skateboard. at a slower speed.
- - balance: Grinding fish no longer gives you uselessly high amount of blood and
- gibs (unless they're very big)
- - balance: tweaked the Linked Closets station trait.
- - bugfix: You can't attach guns/drills/etc. to the Justice traitor mech anymore.
- - bugfix: Correct emote plays when a human scream. Should have sound now.
- - rscadd: Love is now stored in the heart.
- - balance: Characters with the Friendly quirk now have physically bigger hearts.
- - rscadd: new wizard spells category - perks.
- - rscadd: adds 9 wizard perks.
- - rscadd: Pipe pistols now magdump their entire magazine when fired.
- - rscadd: Pipeguns and their subtypes have a knockback effect.
- - bugfix: Pipe pistols cannot be bayoneted, as intended.
- - bugfix: Junk rounds now actually do their extra damage effects against certain
- mob types. Borgs across the Spinward tremble at the knowledge that these junk
- weapons can obliterate them with ease.
- - qol: removed a redundant, annoying reach check that prevents casting a fishing
- rod before the projectile is generated.
- - qol: You can now unhook the currently hooked item of a fishing rod with right-click.
- - bugfix: Fixes dead raptors getting excited when petted or groomed
- - rscadd: Megaphones now affect text-to-speech.
- - bugfix: fixing speech modifiers being applied to a tongue's native languages.
- - bugfix: Atmosphere can no longer flow through closed necropolis gates.
- - rscadd: If you can't shoot a gun, then... JUST TOSS IT AT THEM (for 0.5 seconds
- of knockdown and 10-20 an additional brute damage)
- - bugfix: The Icebox ordnance lab is now once again a habitable temperature.
- - bugfix: Icebox cytology now has cameras in it.
- - sound: all materials now have a sound for picking up and dropping
- - code_imp: items now have pitch vary sound support for dropping and picking up
- items
- - bugfix: Wawastation xenobio is no longer filled with BZ
- - rscadd: Examining high-value paintings now can give a positive moodlet.
- - qol: Observers can now zoom paintings in and out in the UI.
- - bugfix: You can no longer fit an infinite amount of drivers into a clown car -
- making spy-acquired clown cars usable!
- theselfish:
- - rscadd: Pirates speak pirate, Felinids speak Neko and you can return to ape. The
- age of oppression is just about done.
-2024-07-18:
- LT3:
- - balance: Adjusted price of DeForest medical duffels and satchels
- - balance: DeForest medical kit crates come with one unit instead of two
- Melbert:
- - bugfix: Using hulk (and a myriad of similar effects) now properly updates your
- movespeed to ignore the damage movespeed penalty
- - bugfix: Some things which temporarily make you fly don't make you fly forever
- - bugfix: MODsuit ball module now properly makes you immune to damage movespeed
- penalty when in ball form
- - bugfix: Adding Hulk via VV dropdown doesn't default to adding the strongest hulk
- available (that which is used by the medieval pirates)
- Rhials:
- - bugfix: Xenos have a "resist" ui element now. Cool!
- SkyratBot:
- - qol: made fish better quality when butchered, smushy koibeans and useable gunner
- jellyfish.
- - bugfix: malf ai voice changer no longer accepts dangerous inputs
- - bugfix: Style meter text is no longer blurry and doesnt overlap with UI anymore.
- - bugfix: Fixes hulks being able to activate dualsabers despite not being able to
- actually do anything with them
- - rscadd: standing on a closed crate now gives loud mode
- - qol: Stopping orbiting now automatically breaks you out of autoobserve
- - bugfix: Fixes space heater cell relative consumption inadvertently being changed
- from the introduction of megacells.
- - qol: The improvised chemical heater gives a more accurate description of its heating
- power on examine.
- - qol: Improved feedback when attempting to turn on a space heater that is lacking
- a cell, has no charge or is broken.
- - code_imp: Space heater relative cell consumption is consistent regardless of the
- cell charge scale.
- - bugfix: borgs can't put their integrated tools into the reagent grinder
- - bugfix: Removed bitrunning beach brawl fax machine
- - qol: You can properly aim mining bombs at turfs now
- - bugfix: added a missing cable to Wawastation perma
- grungussuss:
- - rscadd: You can now buckle to bar stools
- grungususs:
- - spellcheck: fixed a typo for carrot sword description
- theselfish:
- - bugfix: Fixes even more stuff with the balaclavas
-2024-07-19:
- SkyratBot:
- - bugfix: fixes sentient firebots mauling things from a distance
- - bugfix: acid/base buffers should update your target & source holder
- - bugfix: remove reagent operations won't trigger excessive workload
- - bugfix: deleting reagents from the chemmaster buffer works without a beaker inserted
- - spellcheck: Removed an unnecessary apostrophe in DeltaStation's genetics monkey
- pen door.
- - bugfix: Plague Doctor Mask can now be used with internals again, and is no longer
- unintentionally pepperproof.
- - bugfix: Justice mech invisibility fix
- - spellcheck: fixed a typo in borg research
- - bugfix: fixes runtime in storage datums when hiding the ui
- - bugfix: you can insert the withdrawal beaker into the portable chem mixer when
- locked
- - bugfix: Free items in research queue will now correctly be researched automatically.
- - qol: Ghost orbit menu now always displays person's real name and their roundstart
- job and cannot be fooled by disguises.
- - bugfix: Point blank piercing shots no longer fly directly north after hitting
- their intended target
- SmArtKar, Kapu:
- - balance: Projectiles now can hit border objects on other turfs instead of passing
- through them
- plsleavemealon:
- - bugfix: Hemophages can now drink Velvet Kiss without vomiting
- - balance: Velvet Kiss is now a race drink for Hemophages (in addition to the other
- races that were already present!)
- - balance: Velvet Kiss now restores blood at the same rate that Bloody Mary does
- - balance: made hemophages able to drink several different blood-based drinks
- theselfish:
- - rscadd: Certain Security Clothes can be reskinned. Rejoice.
- xXPawnStarrXx:
- - bugfix: fixed my oversight of the exosuit fabricator.
-2024-07-20:
- Melbert:
- - qol: Monkeys that pray are given bonana
- - bugfix: Fixes xenos being able to do that one mechanic that involves mouse-dragging
- people to you
- - bugfix: When Monkified or Humanified, you are no longer knocked down.
- - bugfix: When cured of Monkified, you get the cure text now.
- - bugfix: The text shown when cured / given Monkification now has color.
- - bugfix: Being humanified now tells you what species you become rather than assuming
- you are a human.
- SkyratBot:
- - bugfix: cold- & heat protection no longer have decimal precision issues.
- - bugfix: fixed a table in the mining office at the metastation
- - qol: Holofan and two thermomachine and emitter boards in lavaland syndicate base.
- - bugfix: Revenge of the Pun Pun no longer runtimes on init
- - bugfix: Elevator music no longer haunts you endlessly if you step off mid-transit
- - image: the smoking pipe east/west sprites are now more consistent
- - qol: Tweaked the colour of orange atmos pipes to be more distinct from the red
- pipes, especially in darkness.
- - bugfix: Fixed kinesis runtime due to un-unregistered signals
- - bugfix: fixed a hard del with soapboxes
- - qol: secmods jetpacks are now pinned by default
- - bugfix: Removed some rogue decals and added a wall to Birdshot atmos storage,
- and added cycling to upload/telecommunication entrances.
- - rscadd: Having a robotic voicebox installed now lets you use silicon emotes.
- - balance: MMI'd brains/posibrains can now use silicon emotes.
- - balance: Simple and basic bots can actually beep.
- - bugfix: MMI'd brains/posibrains are no longer both allowed AND blocked from beeping,
- now just being allowed to beep.
- - qol: Moths that pray get a moffin
-2024-07-21:
SmArtKar:
- bugfix: Vapes use correct fill level overlays
- bugfix: You no longer try to pull out someones eyes in combat mode if they have
@@ -1887,43 +1053,6 @@
- spellcheck: Holosigns and holosign creators' descriptions give more information
now
GPeckman:
- - spellcheck: The techweb no longer erroneously refers to MODsuits as exosuits.
- Hardly3D:
- - rscadd: 'Added new hairstyle: Short Bangs 2'
- JohnFulpWillard:
- - balance: Human AIs no longer have a teleport blocking implant or borg costume,
- but now has a portable crew monitor.
- Majkl-J:
- - qol: Borer crawling inside people now works without a tgui menu
- - bugfix: Fixed borer organs not properly cleaning up and linking to the borer
- - refactor: Borer ability code refactor. Report any issues on the github or to @waterpig
- on Discord
- Melbert:
- - qol: Random player characters now look less like rainbow vomit and more like some
- of the most average people you know.
- - bugfix: Non-humans should look less transparent while in space
- - bugfix: Fixed roundstart monkeys not having monkified
- - bugfix: Fixed being "de-monkified" while dead making it difficult to actually
- de-monkey you going forward
- - bugfix: Fixed genetic scanner showing dead mobs as "transforming"
- SkyratBot:
- - image: New deep fryer sprite
- - admin: Ticking "Job Playtime Exempt" on a player's Job Playtime Tracker panel
- will also exempt them from BYOND Account Age restrictions now. It previously
- only exempted them from actual living playtime minutes - this is for the BYOND
- Account Age in days.
- - qol: chem dispenser displays units instead of kilowatts
- - bugfix: Fixed new charger power not working fior strange objects
- - bugfix: Fixed emitters, shield gens and other wired machinery having lower power
- consumption priority than APCs
- - qol: Made APCs charge more evenly to ensure that environment and lights are working
- everywhere before giving the power for equipment
- - bugfix: fixed megaphone tts filter.
- - image: Added new unique sprites for cyborg upgrade modules
- - rscadd: Bitrunning and (spawn) Miner jumpsuits are now in their drobe.
- - qol: The Coroner Drobe got sorted into less 'shove everything in' and more 'in
- a sane format'.
- - image: Changed some default options in the character creator.
- rscadd: Added the civilian modsuit module as a standalone model. It offers no
slowdown while activated but does NOT protect you from the void of space. You
can print the plating from an exosuit fabricator and build it like a normal
@@ -1932,60 +1061,6 @@
model.
- image: Tweaked the sprites for the civilian modsuit head, both in-hand and on
the mob. Also added a civilian mod plating sprite.
- - image: Brainwashing victims now have smoothed out brain sprites without those
- pesky wrinkles
- - balance: reduced the prices of some blackmarket items across the board.
- - balance: the thermite bottle (from the contraband spawner and the blackmarket),
- now spawns with 50u of thermite vs 30, enough to melt one reinforced wall.
- - rscadd: Replaced the science googles from the blackmarket with a security + health
- scanner HUD.
- - rscadd: Replaced the single shotgun dart from the blackmarket with a box of XL
- shotgun darts.
- - rscadd: The donk pocket box from the blackmarket now comes in different flavors.
- - bugfix: Fixed null description in cerulean regenerative extract
- - qol: Allow custom borg hat placement for custom borg skins
- - bugfix: Fixes organizer sometimes deleting brains
- - bugfix: Context maptext now properly dynamically adjusts itself instead of using
- hardcoded pixel values
- - bugfix: Announcement subheader will no longer overlap the header if the second
- one is very long
- - bugfix: Blob victory no longer spams spore zombie notifications to ghosts
- - bugfix: Fixed sometimes obtaining the nodrop highlander kilt with relics
- - bugfix: Fixed bioscramble function not working for strange objects unless dropped
- - bugfix: Fixed the disguiser cardboard ID not overlaying properly
- - qol: Moving the light bulb removal function from the left mouse button to the
- right one.
- - qol: Added & improved tips related to the light fixture
- - bugfix: APC icon properly turns green on full charge
- - bugfix: APC shows correct charging rate in UI
- - code_imp: Added early machine process for shield generators and emitters to prioritize
- power draw
- - code_imp: Added late machine process for power monitors to gather accurate powernet
- load
- - bugfix: Fixed a signal reg error caused by add_occupant being called twice
- - bugfix: Sentient floorbots can now rip up tiles when emagged
- - code_imp: Slight cleanup in floorbot code
- SmArtKar:
- - bugfix: Ghosts can no longer move chairs
- - bugfix: You can attack bookshelves in a variety of states once more
- - qol: You can fire PKAs/plasma cutters point blank at turfs.
- SpaceLove:
- - bugfix: Towels can be used to mop up and Lustwish constructions can be deconstructed
- Thedragmeme:
- - qol: re-maps the raptor barn to not stick out like a sore thumb
- - bugfix: Miners and the public both can access the raptor barn without having to
- make a bridge themselves
- carlarctg:
- - rscadd: Adds six new strange object powers! Drink dispenser, bioscrambler, recharger,
- hugger, dimensional, disguiser.
- - code_imp: 'Removed some unused code and items, and added a proc that returns a
- random #colorstring.'
- thegrb93:
- - bugfix: Fixes hat offsets on quadruped borgs
- theselfish:
- - bugfix: another clothing file fixed
- - rscadd: Added admin spawnable Redsec varients to the override file
-2024-07-22:
Ghommie:
- bugfix: fixed megaphone tts filter.
MTandi:
@@ -2035,15 +1110,6 @@
- qol: Scanner gates description now tells to what mode they are set
- bugfix: You no longer can remove N-Spector from scanner gates without unlocking
them first
-2024-07-23:
- LT3:
- - balance: APCs are no longer arc shielded by default
- - balance: SMES throughput is now a multiplier based on capacitor tier
- Melbert:
- - refactor: Refactored how vending machine icons are displayed, please report if
- you see any broken icons. Also if all the icons look like missing file icons
- for you, you gotta update byond man, you're like a year out of date.
- - rscadd: Fox infusion has more content related to it now
Inari-Whitebear:
- spellcheck: Fixed a typo in the description for the Syndicate Rebar Crossbow in
the Uplink.
@@ -2074,15 +1140,6 @@
- balance: Gives voidwalkers chunky fingers
- balance: Voidwalker applies NODEATH on hit
- balance: Voided victims get dumped in safer places
- - rscadd: Adds Untie Shoes, a 1-point wizard spell. It can be upgraded to untie
- jackboots, summon shoes to untie, and become completely silent!
- - bugfix: Fixes fishing rods not working on adjacent targets.
- - refactor: refactored global set_basalt_light proc into object proc
- - bugfix: Holopads no longer suck in unsuspecting people when crowbared
- - code_imp: Removed 8 cases of double indentation
- - bugfix: HONK mech now waddles
- - rscadd: 'Charlie: Replaced external cycling airlocks with airlock pumps'
- - bugfix: Shuttle events meteors now dont sometimes kill everyone
carlarctg:
- bugfix: Fixed null description in cerulean regenerative extract
2024-07-22:
@@ -2098,154 +1155,8 @@
JoshAdamPowell:
- admin: 'Nanotrasen has brought Central Command kicking and screaming into the
20th Century by providing them with a real fax machine.
- - bugfix: Surgical tape and edagger's embedding values have been fixed
- - refactor: Refactored table item interactions, please report any issues.
- - bugfix: Fixed being unable to use decks to draw cards directly onto tables.
- - qol: Right clicking a table with a tray puts it down regardless of it having contents.
- - bugfix: general bitrunning fixes and 102% faster loading times
- - bugfix: bitrunning domains are no longer affected by nebulas in the real world
- - refactor: mulebot UI has been refactored
- - qol: Self-respiration no longer sends misleading messages and instead tells about
- lack of need to breathe once it actually gives you the effect
- - rscadd: You can now fish with explosives.
- - bugfix: Fixed an inconsistency with examining fishing spots with sufficiently
- high fishing skill (or skillchip).
- - qol: There is a larger stock of roundstart clothing availalbe in the clothing
- vendors. Now you can get your entire gang in matching outfits!
- - qol: Updated smart fridge UI
- Thedragmeme:
- - image: Adds a series of traditional yukata's and kimono's
- - image: Adds in black sandals and a traditional hairpin for the back of the hair
- Majkl-J:
- - bugfix: Collars can be locked again
- - bugfix: Taur legs can no longer create bloody floating sprites
- - code_imp: Taur legs no longer take overlay slots
- - bugfix: Alexander no longer causes harddels
- - bugfix: Removed a theoretical infinite block exploit from alexander
- - bugfix: Fixes bulldog shotgun unique mag display not working on the sprite
- - image: resprites the bulldog shotgun along with inhands and new worn sprites
- - code_imp: cleans up a little of the code surrounding the bulldog
- theselfish:
- - rscadd: Clown, Tiger and Mime Cats now have unique voice lines!
- - bugfix: Toddlers beware, you're in for a scare! At a Nanotrasen Finance meeting
- held by famed comedian Ian Fidance, the choice between the Lustwish and the
- Pitbull-Toddler-Eating suppression system was made. Pitbulls will now murder
- small animals if left unattended.
-2024-07-25:
- Arturlang:
- - balance: Bloodsuckers can only reach 560 max blood via drinking blood bags or
- the blood reagent, and bloodsuckers above level 4 will get 30% less blood and
- be disgusted by it.
- BurgerB:
- - rscadd: Overhauls the design of Moonstation Engineering
- - bugfix: Fixes Arcade Loot not properly spawning
- BurgerBB:
- - balance: You only get 1 corrupt organ when sacrificed, instead of 2 to 4.
- - qol: Removes some corruption options because they are extremely annoying / don't
- even work properly.
- - rscadd: Adds Big Bertha, a unique one-of-a-kind two-handed shield for security
- that blocks literally everything. It spawns in the Armory.
- - rscadd: Adds Changeling Zombies to the game. This is meant to replace RNA zombies
- and Tumor Zombies as a balanced, updated, and functional alternative.
- - rscadd: Being husked/absorbed from a regular Changeling turns you into an unaligned/unaffiliated
- changeling zombie. Note that this also cures your husk infection once turned.
- - rscadd: Adds Antag Tickets, a new currency that determines who gets antagonist
- roles.
- - rscadd: Overhauls loot that can spawn in abandoned crates, maintenance, and trash
- piles.
- - qol: Map Voting Occurs when the shuttle is called and cannot be recalled.
- - balance: Wearing the tinfoil hat no longer gives you a phobia of conspiracy theories.
- Tinfoil hat is no longer single use and will work indefinitely until removed.
- - balance: Only melee weapons can disembowel/dismember via damage via wounds. This
- does not affect other sources of disembowel/dismember.
- - balance: Significantly nerfs all arrows across the board.
- - balance: Adds Monkeydone, a chemical that transforms monkeys into humans. It can
- be made by mixing 10u Unstable Mutagen + 10u Mutadone + 1u Salt to make 1u Monkeydone.
- - rscdel: Removes the hardcoded 5 second emote delay for all emotes. Most emotes
- now have a cooldown of 0.8 seconds, with some being increased based on what
- /tg/ set.
- - rscadd: Fixes some Moonstation bugs and expands maintenance a little.
- - rscadd: Adds Quote of the Round, an entirely cosmetic way of showing off a random
- ass message said on Common Radio. This does not ping people. By default, it
- is posted in the same channel as roundstart announcements.
- - bugfix: Fixes incorrect Moonstation Dorms directions.
- - bugfix: Fixes the Moonstation Shuttle failing to dock properly
- - rscdel: You can no longer vote for a map if it was the last 2 maps played, or
- the current map.
- - balance: Your blob strain on start will always be Distributed Neurons, instead
- of a random strain. The cost to reroll for the first time is still free.
- - balance: Changing to Networked Fibers will instantly alert the crew that you exist
- (With a level 5 blob biohazard announcement), regardless of how many tiles you
- have.
- - bugfix: Fixes moonstation having space turfs on turf destruction on the upper
- level. Fixes weirdly placed camera monitors due to upstream changes. Fixes a
- few randomly placed doors in some areas.
- - rscadd: Improves Moonstation Janitorial by adding missing items found on other
- maps.
- Cecily-C-Catherine:
- - rscadd: Added new sprites and code to allow the choosing of sprites
- DimWhat for spriting, SigmaPredator for helping me with organizing this, and my (theselfish) poor keyboard.:
- - rscadd: Nearly every job has a Bunny outfit. I am not joking. Check your vendors.
- Doomtail:
- - image: added new beard icons
- Erol509:
- - rscadd: Added synth version of Big Legs taur sprite.
- ForrestWick:
- - balance: lowered Empath cost from 6 to 3.
- GoreDem:
- - rscadd: buffed bulldog back to a usable state
- Icarus-The-Sun:
- - bugfix: Prevents Departmental Guards from rolling antagonist roles.
- - rscadd: Added C4 Moth as a C4 reskin
- LT3:
- - rscadd: New DeForest heavy medical kit, technician satchel
- - rscadd: Security medic can now order a single heavy medical kit using departmental
- order
- - bugfix: Hyposprays that are supposed to have a starting vial now actually start
- with the vial
- - bugfix: Combat hypospray correctly has the combat cooldown
- - bugfix: Hypospray switches vials as expected
- - bugfix: Piercing hypospray now has inject/spray delay
- - bugfix: Hypospray right click works again
- - qol: Crew monitor now has sort options and a search box
- - bugfix: Fixed certain jobs being categorized as unknown on the crew monitor
- - qol: Improved alarm function on medbay's crew monitor console
- Majkl-J:
- - bugfix: Fixes atmos dying
- - bugfix: Captain office access can't magically grant you AA anymore
- - balance: Weight 8 for BS, Ling, Heretic
- - balance: Weight 10 for malf
- - balance: Weight 8 for spy and traitor
- - bugfix: Fixes runtime in get_antag_cap()
- - bugfix: Fixes maps failing unit tests
- - rscdel: Removed damage emp protection as the current strength of the emp does
- not justify it.
- - bugfix: Loadouts in bitrunning work again
- - bugfix: Names in bitrunning work again
- - balance: The ninja bomb objective is now available from 30 pop
- - bugfix: Ninja no longer spawns with quirks, making you not to randomly die and
- have a fighting chance
- - bugfix: Blue 98 UI Style fixes
- MonkeStation (sprites) TheSelfish (Port):
- - rscadd: Multiple new Bunny Outfits are in the vendors now!
- Odairu:
- - server: ghost only votable up to 40 pop
- - rscadd: DomAura quirk to dom borg module, and adds it to the tech tree
- - spellcheck: Untility Cyborg Upgrades -> Utility Cyborg Upgrades
- Rathen Ivanov:
- - rscadd: Added Employee Of The Month Special "Chief Screws Plush" for your use
- and carrying!
- SciDragon:
- - rscadd: Telecomms Specialist job, with a niche carved out of an underutilized
- engineering department.
- Shroopy:
- - bugfix: fixed a copy-paste error in character_directory.dm
- - rscadd: Added a GPS tracking collar to the LustWish
- SkyratBot:
- - bugfix: Borgs and AI can now use research queue
- - bugfix: You can no longer dupe metal by breaking walls under small light fixtures
- - bugfix: Animal/people skin is no longer metallic sounding
- - bugfix: Fixed fishing.
+
+ :cl:'
MTandi:
- rscadd: 'Charlie: Replaced external cycling airlocks with airlock pumps'
- qol: Updated smart fridge UI
@@ -2272,14 +1183,6 @@
- rscadd: Added wooshing, shaking, and glowing to flinging around with the heretic
blade
- balance: Removed the probability to not gain a reward when sacrificing a cultist
- - bugfix: Restores some of the items accidentally lost in the autodrobe.
- - bugfix: You can now put dead mice into mortars/grinders properly
- - qol: Now IDs and PDAs have money-reader module for picking some cash into your
- bank by swiping on money.
- - qol: fish analyzers now have a UI
- - bugfix: Fixes Hereditary Manifold Sickness's 4th stage not updating health when
- it should
- - config: Added an entry for TRAITOR_SCALING_MULTIPLIER, disabled by default
- bugfix: HONK mech now waddles
necromanceranne:
- qol: There is a larger stock of roundstart clothing availalbe in the clothing
@@ -2335,7 +1238,6 @@
- rscadd: For lobstrosities grown from aquariums, they can have additional effects
based on the fish traits they had in the aquarium, like being venomous or even
flying.
- - qol: Chat notifications are now at the top
Jacquerel, Kok0nut, Imaginos:
- image: Wall-mounted and Table-mounted ID card authorisation machines now use different
sprites
@@ -2358,151 +1260,6 @@
- bugfix: Drills now take armor from correct bodyparts when attacking
- code_imp: Cleaned up one-letter variables in mech drill code
- bugfix: You can no longer microwave kisses, slappers, and other abstract items
- - bugfix: fixes bitrunning breaking upon repeatedly climbing in and out the pod
- - qol: Photocopier updated their UI
- - bugfix: Stacking machine consoles link to machinery now
- - rscadd: Dehydrator, a machine version of drying rack, with a circuit board and
- available on some kitchens roundstart.
- - image: Updated the color palette of Smart Fridge
- - bugfix: Having your liver fail no longer keeps drug traits active without metabolizing
- them
- 'Sprites: axietheaxolotl Code: VioletN':
- - image: Added three new selectable "rat queen" skins to the royal rat.
- StrangeWeirdKitten:
- - rscadd: 'Adds two new quirks: Dominant Aura and Well-Trained'
- - bugfix: Dead well-trained quirk holders will no longer respond to snaps
- - bugfix: Borg Pinpointers and synthshells are now printable once more.
- - balance: Emote delay has been set to 1 second
- TheSelfish (code) CannibalHunter of MonkeStation (sprites):
- - rscadd: Traitors may goon. Gooning is also in the clothes mate and the vendor.
- - rscadd: Oh and the rabbit pendant is in the loadout, the rest of the bunny stuff
- won't be added, but this isn't especially out there.
- Vekter:
- - spellcheck: Reworded Voidwalker's objectives to be more descriptive of their actual
- goals as opposed to just fluff.
- YakumoChen:
- - balance: Reverts buff to the TEG making it output up to 20MW, now outputs 10x
- less with a decent setup
- - bugfix: Fixes guns being in imports again due to code reversion
- codehonky:
- - rscadd: Added new bluespace experi-scanner.
- - image: Added a simple reskin of the experi-scanner for the bluespace variant.
- nevimer:
- - bugfix: Storyteller should only take two minutes instead of five to spawn events.
- - balance: chest dismember only removes one organ per occurance
- - qol: allows the ghost to be voted for at any pop
- nikothedude:
- - spellcheck: Fixed a typo in systemic fault's examine text
- - balance: Synthetic electrical damage can no longer worsen if its currently being
- repaired
- - bugfix: Nagas off-station or restored with the SAD should now properly have their
- footstep sound
- - bugfix: Losing your naga lower body now tries to restore normal footsteps
- - rscadd: Mothroaches can now be milked for moth milk
- - bugfix: Naga footstep sounds now work properly
- - rscadd: Taurs now have custom leg names
- - bugfix: Synth taur legs now have all attributes of a organic taur leg except the
- fact theyre robotic
- - bugfix: Markings no longer render on taur legs
- - bugfix: Clothing with taur-specific clothing sprites now render those sprites
- properly
- - code_imp: Various improvements to taur leg code
- - code_imp: Taur bodies are properly subtyped
- - rscadd: Reimplemented taur sprites for a bunch of clothing items
- pixelkitty286:
- - rscdel: dogborgs (they are quadrupeds now)
- - bugfix: Verbs not being available to both tall and dog borgs to rest
- - code_imp: See refactor. Removed dogborg procs(commented them out)
- - refactor: small quadrupeds, large quadrupeds, and Tall cyborgs resting verb and
- how it populates
- plsleavemealon:
- - rscadd: 'New Quirk: Masquerade, exclusive to hemophages'
- projectkepler-ru:
- - rscadd: Maint area somewhat expanded, blueshield has an office, QM has a bedroom.
- Bitrunning den their own area
- - bugfix: Paddy not being present on this map
- - bugfix: TEG Research cost not being accomodated
- shayoki:
- - rscadd: Added more telescreens to BoxStation.
- - bugfix: Fixed BoxStation broken Telescreens.
- thegrb93:
- - bugfix: Tajaran photocopier booty sprite fixed
- theselfish:
- - rscadd: Clowns now have a beret. A rainbow one, too.
-2024-07-26:
- SkyratBot:
- - balance: Quality cybernetic hearts combat bleeds and restore blood, rather than
- inject you with epinephrine when you enter crit. This can result in mild toxin
- buildup, however.
- - balance: Upgraded cybernetic hearts give an extremely brief amount of action when
- you enter softcrit (but not hardcrit).
-2024-07-27:
- LT3:
- - bugfix: Fixed elevator panel allowing conflicting inputs
- - bugfix: Fixed elevator sound being out of sync with movement
- - bugfix: Fixed disease outbreak announcement sometimes missing the disease name
- - bugfix: Tram will no longer eat its own rails as it travels
- - bugfix: False supermatter surge announcements are now identical to real ones
- - bugfix: Fixed delam counter stuck in window near Ice Box bridge
- SkyratBot:
- - rscdel: Removed a janky fish bounty
- - rscadd: introduced exporting fish through cargo.
- - balance: reduced the average weight of the jumpercable. Conversely, eased up the
- requirements for the bone fish evolution.
- - bugfix: Janicart inserts items into the attached trash bag again (manual and vacuumed)
- - bugfix: Xenomorphs and door pryer basic mobs can now attack airlocks in combat
- mode
- - bugfix: Borgs now unequip their equipment upon module change like they should
- - bugfix: wawastation engineering water tanks are now highcap
- - image: Updated gas flow meter sprites
- - bugfix: Tram's Tool Storage now has proper lighting
- - bugfix: Fixes projectiles facing north if ricocheting, deflected or homing
- - bugfix: Firelocks will once again respect fire alarm's thermal sensors being disabled.
- - balance: If a bluespace cookie fails to teleport you then you will trip over.
- - bugfix: Fixed possessed blades being broken
- - code_imp: If testing is enabled everyone is polled in ghost polls.
- - bugfix: Fixes borgs not being able to place apparatus-held items on tables. As
- a side-effect, they can now combat mode right click splash containers as normal
- instead of having their own right-click floor splash.
- Thlumyn:
- - bugfix: self-resp viruses don't spam messages as often
- theselfish:
- - rscadd: New laughs and screams! Be gendered no more!
- - bugfix: Missing screams were added.
- - bugfix: Fixes the Cloth Foot Wraps
-2024-07-28:
- Jacquerel, Kok0nut, Imaginos:
- - image: Wall-mounted and Table-mounted ID card authorisation machines now use different
- sprites
- - bugfix: Wall-mounted ID card authorisation devices will now be destroyed if their
- wall is destroyed
- SkyratBot:
- - rscadd: Adds the Haunted Trading Post space ruin.
- - rscadd: Adds 10+ unique items for the Haunted Trading Post
- - rscadd: Adds 5 dangerous mobs for the Haunted Trading Post
- - rscadd: Adds 4 new types of hazardous traps for the Haunted Trading Post.
- - bugfix: Clicking on a table in the lootpanel with an item in-hand tries to place
- it in the center again.
- - bugfix: wawastation ordnance no longer has a light fixture on a window and looks
- objectively slightly better
- - refactor: Refactored parrying to be projectile-side and not user-side.
- - rscadd: You can now parry crusher projectiles to give them some more range, add
- damage and make the mark always count as a backstab.
- - rscadd: Projectile parrying has been significantly improved, making parrying and
- boosting projectiles actually possible. Includes a small grace period as lag
- compensation for players with higher pings.
- - balance: Crusher marks can now be detonated by any crusher, not only the one that
- applied it, as to incentivise coop mining for crusher users.
- - balance: Projectile boosting now gives a significantly bigger damage and speed
- increase
- - bugfix: fixed ghost huds
- - refactor: Pod code now uses datums instead of being a huge nested list
- - bugfix: Centcom technicians have been trained to recognize cargo-bought fish.
- You will no longer be able to trick the economy system by buying fish and sending
- it right back. Also nerfed fish selling price very slightly.
- - code_imp: Cleaned up clamp code.
- - bugfix: Clamp no longer anchors down some objects upon failing to pick them up
- - bugfix: Deathsquad KILL CLAMP finally works once more
- bugfix: Having your liver fail no longer keeps drug traits active without metabolizing
them
- code_imp: Cleaned up clamp code.
@@ -2532,14 +1289,6 @@
- balance: The strong-arm implant does additional damage to fauna and some other
dangerous mobs.
- qol: You can pair toolset arm implants with the strong-arm implants.
- SpaceLoveSs13:
- - refactor: HUD traits now apply their corresponding hud automatically
- theselfish:
- - rscadd: Even more alt titles, God.
-2024-07-29:
- DrDiasyl aka DrTuxedo:
- - sound: Hearing and talking into the radio now produces a sound. Heads get a special
- sound.
- balance: Quality cybernetic hearts combat bleeds and restore blood, rather than
inject you with epinephrine when you enter crit. This can result in mild toxin
buildup, however.
@@ -2639,43 +1388,6 @@
- bugfix: Players now receive a notification when trying to perform surgery steps
that involve chemicals
Rhials:
- - bugfix: Clown Ops gear has been returned to being available only to clown ops.
- Whoops!
- - bugfix: Monkey wizards can now interact with grand ritual runes.
- SkyratBot:
- - bugfix: Fixes void eater not refreshing
- - bugfix: Fixes planetary gravity not killing voidwalkers and voideds
- - rscadd: Emergency climbing hooks now spawn in emergency boxes on all of the multi-z
- level stations.
- - bugfix: now Justice invisibility turns off in non combat mode as it supposed to
- - bugfix: Recyclers no longer recycle contents of indestructible items
- - bugfix: People with tooltips enabled no longer lag the server when they move their
- mouse. Oops.
- - bugfix: peg limbs can now be amputated
- - qol: If you have auto fit viewport enabled, it will trigger upon entering or exiting
- fullscreen
- - bugfix: '[Mafia] The show_help button no longer shows you who the Obsessed''s
- target is.'
- - bugfix: Voidwalker should not run on planetary maps.
- - bugfix: Mirage grenade dispensers and ionic jump jets now work
- grungussuss:
- - sound: gas tanks now have sound
- - sound: medkits now have sounds
- - bugfix: lavaland no longer has roundstart atmos processing because of a passive
- vent
- - sound: the sneeze projectile no longer makes a sound when making contact.
- - sound: only the scream emote can be heard through walls
- - bugfix: birdshot holodeck's lighting has been fixed.
- - sound: the default metal sound has been changed
- - bugfix: Med sec telescreens are no longer the same item as the CMO telescreen.
- - spellcheck: correcte name for the CMO telescreen mount
- xXPawnStarrXx:
- - bugfix: fixed primitive storages being invisible, not updating overlays and accepting
- everything or nothing.
-2024-07-30:
- SkyratBot:
- - qol: drones now have soap in their internal storage!
- - bugfix: VIM no longer requires hands to enter
- bugfix: Monkey wizards can now interact with grand ritual runes.
- bugfix: Clown Ops gear has been returned to being available only to clown ops.
Whoops!
@@ -2704,13 +1416,6 @@
them to communicate with fellow miners or order your army of bots and raptors!
- rscadd: Mining headsets keep your voice loud and clear in low-pressure environments
(not vacuum!)
- - spellcheck: military javelin's name is now fully uncapitalised
- - rscadd: Cosmic Skull glows purple.
- Vekter:
- - bugfix: Fixes an exploit that allowed players to open a Bag of Holding rift in
- the Heretic dimension.
- theselfish:
- - bugfix: Unbroke the Patrol Cap, whoops!!
- qol: If you have auto fit viewport enabled, it will trigger upon entering or exiting
fullscreen
- bugfix: VIM no longer requires hands to enter
diff --git a/html/changelogs/archive/2024-09.yml b/html/changelogs/archive/2024-09.yml
index f3dca41ea5a..8c4e724d203 100644
--- a/html/changelogs/archive/2024-09.yml
+++ b/html/changelogs/archive/2024-09.yml
@@ -1,16 +1,4 @@
-
-2024-09-03:
- Moostard:
- - bugfix: Ceremonial rifle crate now contains 3 rifles as advertised. The naming
- of the single-pack variant is more clear as well.
2024-09-04:
- KathrinBailey:
- - bugfix: Jean skirts no longer cover chest/legs.
- SkyratBot:
- - balance: Plexagon Crew Manifest is now a default PDA app for everyone, and is
- free.
- - balance: Plexagon Crew Manifest no longer provides Detomatix resistance, but security
- records and status display control now do.
00-Steven:
- balance: Fax machines with hacked input servos can now send chap slices and cookies.
Please accept them.
@@ -70,8 +58,6 @@
disassembling than you put into the recipe
- bugfix: fixed 'Enable Radio Noise' pref only being respected for deaf people
2024-09-05:
- Erol509:
- - bugfix: Repathed tesh satchels, removed not needed hood overlay on Teshari characters
Archimus12:
- bugfix: Makes the Cytology Vendor sell science bio suits instead of medical bio
suits.
@@ -129,14 +115,44 @@
- bugfix: fixed a few minor nits with aquarium fish visuals.
- qol: You can kill germs by actually cooking the food (i.e. frying and grilling)
now, or by setting it on fire.
- grungussuss:
- - sound: being sacrificed by a heretic is now spookier
Hardly:
- sound: Plumbing Constructor and Rapid-Tiling-Device now has RCD's pick up and
UI sounds
- bugfix: Fixes ghosts being able to interact with the RCD, RPLD and RPDs
Jewelry-x:
- spellcheck: fixed a wrong extension in the RUNNING_A_SERVER.md
+ KazooBard:
+ - qol: All cans (soda cans etc) fit on utility belts now. Drink on the job!
+ LT3:
+ - image: 'The ''shit is fucked'' default turf no longer flashes
+
+ /:cl'
+ Majkl-J:
+ - bugfix: Embed updating now actually updates embeds
+ Melbert:
+ - refactor: Refactored heretic influences a tiny bit, now ghosts can see them! Report
+ any oddities.
+ OverwatchVoice:
+ - spellcheck: Changed description of Rebar crossbow.
+ - bugfix: Rebar crossbow description will no longer lie about it's missfire potential.
+ Rhials:
+ - bugfix: Runtime station has delivery beacons and navbeacons again.
+ Singul0:
+ - sound: adds sounds for energy shieldbashing
+ - code_imp: Shieldbashing feature is now consistent across all shield types
+ SmArtKar:
+ - bugfix: Changelings can no longer spawn undetectable spider eggs inside of vents
+ - bugfix: Acromegaly no longer makes you bonk your head on airlocks while you're
+ inside of objects
+ TwistedSilicon:
+ - bugfix: The Codex Cicatrix ritual now consumes the item in the case where a hide
+ was used instead of a corpse. No more free books.
+ Y0SH1M4S73R:
+ - admin: Dreamluau provides a more informative error message when trying to pass
+ references to qdeleted datums back to BYOND.
+ grungussuss:
+ - sound: some more items will vary in pitch when picking them up and placing them
+ down
jlsnow301:
- rscadd: 'Added two new bitrunning maps: Grasslands Hunt and Meta Central.'
- rscadd: Deer are now more complex animals, granting them enhanced ability to run
@@ -144,69 +160,11 @@
- balance: Reduced the cost of most BR vendor items.
- bugfix: Fixes an issue where modular virtual domains spawned less mobs than intended.
- bugfix: These modular spawns are now valid mutation targets to become an antagonist.
- KazooBard:
- - qol: All cans (soda cans etc) fit on utility belts now. Drink on the job!
- LT3:
- - image: 'The ''shit is fucked'' default turf no longer flashes'
- Majkl-J:
- - bugfix: Embed updating now actually updates embeds
- Melbert:
- - refactor: Refactored heretic influences a tiny bit, now ghosts can see them! Report
- any oddities.
- - bugfix: Some spy items should spawn less broken
- oranges:
- - rscadd: ghosts can now jump, bhop your way to life
- OverwatchVoice:
- - spellcheck: Changed description of Rebar crossbow.
- - bugfix: Rebar crossbow description will no longer lie about it's missfire potential.
r3dj4ck0424:
- spellcheck: made the grammar on the brimdemon horn crusher trophy nicer
- Rhials:
- - bugfix: Runtime station has delivery beacons and navbeacons again.
- - spellcheck: Anomaly suicides now use proper grammar.
- - bugfix: Anomaly suicides work again.
- Singul0:
- - sound: adds sounds for energy shieldbashing
- - code_imp: Shieldbashing feature is now consistent across all shield types
- SkyratBot:
- - qol: Smartfridges now lets you set how many pills you want to vend, rather than
- popping out a second separate tgui window.
- - bugfix: fixed a bug that could sometimes cause jump boots users to retain the
- floating trait indefinitely when using the ability
- - bugfix: Rum can be synthetized again.
- - bugfix: Big manipulator hands now move smoothly with the base when it's moved.
- - bugfix: Cardborg costume no longer gets its appearance deleted when you drop a
- second hat/suit you are holding in your hand
- - qol: Unsettle (Voidwalker) doesn't go on cooldown if line of sight is broken
- - qol: Mirrors now have text tooltips for their radial menus
- - bugfix: Fixed pride mirrors not dumping you into space after use
- - bugfix: Buckling yourself to a bed or stasis bed will now make you actually use
- the headrest/pillow and face up.
- - bugfix: fixed that screwdriwing radio headset in combat mode don't do anything.
- - bugfix: You will now be ejected from any jaunt (i.e bloodcrawl or shadow walk)
- if you lose consciousness somehow during the jaunt.
- - bugfix: due to a clerical error, all ballistic guns were shipping with built-in
- silencers. this has been resolved-they will now make noise once again when fired.
- - bugfix: Changelings can no longer spawn undetectable spider eggs inside of vents
- - spellcheck: fixed a few typos with energy shield descriptions.
- SmArtKar:
- - bugfix: Changelings can no longer spawn undetectable spider eggs inside of vents
- - bugfix: Acromegaly no longer makes you bonk your head on airlocks while you're
- inside of objects
- thegrb93:
- - bugfix: Fixes vox breath mask being unable to eat or drink through after adjusting
- it
- - sound: some more items will vary in pitch when picking them up and placing them
- down
- TwistedSilicon:
- - bugfix: The Codex Cicatrix ritual now consumes the item in the case where a hide
- was used instead of a corpse. No more free books.
vinylspiders:
- bugfix: fixed a bug that could sometimes cause jump boots users to retain the
floating trait indefinitely when using the ability
- Y0SH1M4S73R:
- - admin: Dreamluau provides a more informative error message when trying to pass
- references to qdeleted datums back to BYOND.
2024-09-07:
Ben10Omintrix:
- bugfix: fixes basic mobs not losing their aggroed appearance after death
@@ -224,11 +182,6 @@
won't be triggered when caught. no more plates shattering despite being caught
for example.
- rscadd: Goldfish, lavaloops, needlefish and armorfish can now be used as baits.
- grungussuss and kayozz:
- - sound: gravity generator has a new sound
- Melbert:
- - refactor: Refactored heretic influences a tiny bit, now ghosts can see them! Report
- any oddities.
MrStonedOne:
- bugfix: Fixed the taskbar/menu bar icon showing the virgin orange byond icon instead
of the chad blue ss13 icon.
@@ -237,19 +190,6 @@
to Space Station 13 and related Nanotrasen Installations.
Singul0:
- bugfix: Fixes makarov-stechkin mix up on forgotten ship virtual domain.
- SkyratBot:
- - bugfix: Embed updating now actually updates embeds
- - spellcheck: Changed description of Rebar crossbow.
- - bugfix: Rebar crossbow description will no longer lie about it's missfire potential.
- - sound: adds sounds for energy shieldbashing
- - code_imp: Shieldbashing feature is now consistent across all shield types
- - qol: All cans (soda cans etc) fit on utility belts now. Drink on the job!
- - image: Added new sprites for hellfire lasers
- - bugfix: fixed the die of fate deleting all your organs when rolling a 4
- - balance: When silicons use their radio they will not whisper out loud anymore
- TwistedSilicon:
- - bugfix: The Codex Cicatrix ritual now consumes the item in the case where a hide
- was used instead of a corpse. No more free books.
Xackii:
- qol: You don't need two hands to stream with broadcast camera.
2024-09-08:
@@ -1011,12 +951,3 @@
- rscadd: added the manufacturing smelter,router,sorter,crafter,lathe,crusher,unloader
tonty:
- code_imp: made some code relating to the world's icon size more readable
- xXPawnStarrXx:
- - bugfix: fixed cyborg upgrades deleting the bonesetter and giving no alternative.
-2024-09-08:
- LT3:
- - balance: Increased PDA default battery capacity
- SkyratBot:
- - bugfix: Fixed the taskbar/menu bar icon showing the virgin orange byond icon instead
- of the chad blue ss13 icon.
-
diff --git a/html/changelogs/archive/2024-10.yml b/html/changelogs/archive/2024-10.yml
index 75bf0d8e73e..98288b92f99 100644
--- a/html/changelogs/archive/2024-10.yml
+++ b/html/changelogs/archive/2024-10.yml
@@ -447,6 +447,8 @@
- bugfix: fixed up Metastation's cargo delivery office.
kittysmooch:
- bugfix: 'fixed east facing female human heads having an extra neck pixel
+
+ :cl:'
larentoun:
- spellcheck: Correct message is shown when YOU get devoured by an alien
- spellcheck: Fixed a few typos on some simple attack verbs being continuous
@@ -563,293 +565,25 @@
Absolucy:
- refactor: Refactored how some screen alerts, such as aura healing, show atom overlays.
- rscadd: PDA ringtones now show a balloon alert to the PDA holder.
- Adrian16199:
- - rscadd: HFZ can have digitigrade legs now.
- Aroliacue:
- - balance: Increased Shadekin bodypart burn damage received from 10% to 20%
- - spellcheck: Fixed some desc typos in shadekin.dm
- - bugfix: Removed doubleup eyes organ in shadekin.dm
- Arturlang:
- - refactor: Heavily refactors how bloodsucker powers function.
- - refactor: Tremere powers no longer have subtypes for each level.
- - rscadd: Completely redoes how bloodsucker ability descriptions, both the longer
- antag panel and the action button hover over, they will actually tell you actual
- values that the game itself uses for damage, cooldowns, and effect durations
- - balance: Tremere powers can now level up as far as you want.
- - balance: Mesmerize is heavily reworked, now it no longer forces both parties to
- stand still for it to work, but it is obvious to the victim when used, however
- the victim is muted for the duration of the spool up, and will stun and mute
- normally if the do_after completes.
- - rscadd: 'Mesmerize now has a secondary that allows you to mute and confuse your
- victim that happens on a right-click,
-
- dominate, the tremere''s version instead knockdowns.'
- - rscadd: Tremere's dominate now has a visual timer for temporary vassals, visible
- only to the master's vassals and the master themselves.
- - balance: Tremere's dominate now only requires level 2 to create temporary vassals,
- but the duration now scales with the level. It now requires the potential vassal
- to have more than 336 blood, and will use it all up once the duration ends,
- effectively making it only usable once per person.
- - balance: All tremere powers can now level up past level 4
- - balance: Thaumaturgy is heavily reworked, it now has a charge system, and while
- the projectile deal less damage, you can shoot a lot more of them, and the projectiles
- will seek towards any non-vassal mob near where you cast it.
- - refactor: Separates bloodsucker ability bitfields and action bitfields to avoid
- overriding eachother
- - balance: Bloodsuckers going into torpor outside of coffins will always die, but
- will wake out of torpor at 20% maxhealth(not counting critical health)
- - balance: A coffin being opened during sol will wake you up, given you are LITERALL
- BURNING UN-ALIVE.
- - balance: brawn costs 10 blood instead of 8, and has a cooldown of 12 seconds,
- instead of 9
- - balance: fortitude now has a cooldown of 20 seconds, from 8, also you will not
- be able to heal any brute or burn damage while it is active, the scaling of
- the damage resist is also halved, no longer is maximum resistance of 0.3 for
- brute, 0.5 for burn achieved at level 4, now it is reached at level 8, changing
- by 0.05 per ability level
- - balance: haste costs 9 blood instead of 6, and has a cooldown of 15 seconds from
- 12
- - balance: The candelabrum is no longer as tough
- - bugfix: candelabrum now turns off when unsecured
- - balance: Bloodsucker no longer level from sol when they reach level 4
- - balance: Ventrue now can only use blood drunk from sentients to level up vassals
- if they wish to level themselves up.
- - refactor: Refactors how ventrue vassalizing is handled, no longer copying most
- of level up code for it.
- - balance: Silver stakes no longer gib/dust sleepy bloodsuckers, instead they remove
- hearts, which leaves bloodsuckers power-less
- - balance: Bloodsuckers are no longer highly wound resistant, but their coffins
- will now heal all wounds
- - bugfix: Should fix the issue with bloodsucker bleeding staying active forever
- - balance: The range of haste is now 5 tiles.
- - bugfix: Malkavians will now actually get a notification and a objective once a
- bloodsucker breaks the masquarade
- - balance: Drinking from ghouls/vassals as a bloodsucker is no longer is 1/4th less
- effective than drinking from non ghouls/vassals
- - bugfix: Bloodsuckers now get blood thickening points
- Azarak (code), ReturnToZender (bugfixing):
- - rscadd: New players to a department now show properly as interns.
- Bangle:
- - spellcheck: Added some alt titles
Ben10Omintrix:
- balance: green raptors now refuse to mine mineral walls containing active gibtonite
- Boviro:
- - rscadd: Re-adds gun safeties
- - rscadd: Guns with enabled safeties will disable their safeties if you attempt
- to fire with it on.
- BurgerBB:
- - balance: Overhauls requirements for Anomaly Refinement, and removes some limits
- and implements some more.
- - balance: Changeling Zombie Toxins are capped when it reaches the curable stage.
- - balance: Changeling Zombie patients will deal damage to the cryotube if placed
- inside it while activated.
- - balance: Spaceacillin can be used to negate Changeling Zombie toxins damage, and
- half the cure threshold of curing changeling zombies. Note that using Spaceacillin
- too early in a patient, or too often, can result in the virus gaining an immunity
- to it.
- - balance: As a living creature, it is no longer possible to go 2 times faster than
- base movement speed. Base movement speed is the default running speed of mobs,
- without any buffs.
- - bugfix: Fixes some moonstation issues.
- - bugfix: Fixes some Moonstation bugs.
- - bugfix: Fixes even more moonstation issues.
- - bugfix: Fixes the bug where there are no possible maps to be voted for because
- all the lowpop maps have already been played recently.
- - bugfix: Fixes Moonstation Lighting being too dark.
- - balance: Significantly Boosts the chances of the Wizardly Die of Fate event triggering.
- The event now has a 20% chance not to announce the existence of a Wizardly Die
- of Fate
- - rscadd: People who sign up roundstart get triple the starting cash compared to
- latejoiners.
- - balance: Reworks (mostly) and renames all the storytellers and improves the code.
- - balance: Reduces RBMK2 temperature gain based on matter bin tier
- - rscadd: Predictable Chaos now has 50% more antagonists.
- - rscdel: Disables "The Bomb" storyteller from being votable because engineering
- cryos every time it's voted.
- - bugfix: Fixes a typo in map voting code that prevented the fallback "no maps to
- vote for" code to work.
- - bugfix: Fixes Moonstation Library Wiring and Disposal Pipe
- - rscdel: The mold event can no longer be triggered by events except by admin intervention.
- - balance: Makes Space Dragons immune to toxin + oxy damage because I saw a Space
- Dragon die to simplemobs on Moonstation Once
- - bugfix: Fixes missing Moon Station wire that caused Engineering (just the area
- outside the SM) to not be connected to the grid.
- - rscdel: Removes the Mannequin in Moonstation engineering because a shaft miner
- died to it 5 times.
- - balance: Buffs Xeno Weed temperature survivability in hotter environments. It
- was increased from 300K to 350K, which is only slightly higher than Moon Station's
- external temperature of 347.65K.
- - balance: Heretic Transmutation Runes can no longer have Fingerprints.
- Doomtail:
- - rscadd: Added twisted, twisted long, wicked, and inari hairstyles.
- - rscadd: Added cervine snout.
- - rscadd: Added naja hood frill.
- EnterTheJake:
- - balance: Syndicate quiver is now small sized instead of Bulky.
- FeudeyTF:
- - bugfix: fixed removing last case
- FlufflesTheDog (code), ReturnToZender (port):
- - bugfix: A restraining order has been placed on medibots on behalf of synthetic
- crew members due to reports of harassment.
GremlinSeeker:
- bugfix: fixed active turfs on two icemoon ruins.
Hatterhat:
- spellcheck: 'Chemical analysis now offers Root Beer the respect it deserves (read:
Root Beer is now capitalized like every other reagent).'
- IgiariValkyr:
- - rscadd: Lizard Gas can actually be staffed now!
JackEnoff:
- map: Birdshot's Emitter Room should no longer be disconnected from the grid at
shiftstart.
- KathrinBailey:
- - rscadd: Loincloths from Sandstorm.
- - bugfix: Jean shorts/skirt no longer covers legs and chest.
- KazooBard:
- - rscadd: The blueshield now can select "Henchman" as their title
- - rscadd: Added the card reader to the autolathe's designs
- KeRSedChaplain:
- - rscadd: Ports the Divine Lightblade nullrod from citadel
- Krypandenej:
- - rscadd: Added Leary's Delight cigs, a xeno action figure, and a pale zippo to
- loadout
- LT3:
- - code_imp: Holy Water lobotomies are now a standalone surgery operation named Blessed
- Lobotomy
- - bugfix: Feline traits will give purr speech modifier
- - code_imp: Tajaran tongue moved from Feline Traits quirk to augments menu
- - bugfix: Fixed telecoms specialist HUD icon
- - admin: Storyteller backend updates
- - rscdel: Disabled sandstorm random event
- - code_imp: Boykissers resume boy kissing! Kiss emote no longer causes a progress
- bar after using
- - balance: Syndie/death kiss projectiles have a 1.6 second cooldown
- - code_imp: Modularised and updated scrubber overflow event
- - qol: New vote reminder notification, enabled for storyteller votes
- - image: Added a moth to your taskbar
- - rscdel: No more eigenstate in scrubber overflows
- - code_imp: Radiation storm warning only sent to players who are in an area without
- radiation protection
- - balance: Occupied dorms are protected from radiation storms and scrubbers
- - qol: Gravity generator failures/power restores are now less announcement and sound
- spammy
- - code_imp: Bubber medsecHUD replaced with TG version
- - rscadd: Medic labcoat/vest added to Orderly garment bag
- - balance: Morgue surgery tray now comes with an autopsy scanner
- LT3, vinylspiders, LordVoidron:
- - rscadd: Private (subtle) PDA messaging by adding "#" to start of message
- - qol: Added button to NTOS messenger TGUI to toggle private messaging
- - admin: Public logging for non-subtle PDA messages
- Majkl-J:
- - rscdel: Removed broken unmaintained crusher code
- - balance: Sec no longer spawn in with fully loaded belts as it was an old undocumented
- change that introduced a bug
- - code_imp: Makes the empty synth body spawn logic run faster
- - bugfix: Harpy wings now display correctly
- - bugfix: Basic Medipens can be refilled again.
- - rscadd: Syndicate maid kit, a kit containing armored syndicate maid clothing
- - bugfix: Cargo shelves now drop crates upon being destroyed
- - bugfix: Moth climb works again
- - rscadd: Added Lone infiltrator ghost midround
- - rscadd: Added Malf AI midround
- - rscdel: Removes predictable chaos as all tellers now use its main gimmick as a
- baseline
- - qol: Storyteller votes now prevent a constant voting streak of the same type of
- tellers
- - balance: All storytellers now roll antags more often, but in smaller numbers per
- roll
- - balance: Clown storyteller no longer cares about event weights and just does whatever
- rng decides
- - balance: Meteors can no longer run repeatedly in a single round
- - balance: Makes ghost roles actually roll somewhat frequently
- - bugfix: Fixed a few bugs with storytellers, namely the tracks sometimes going
- into negatives, and voidwalker running on planet maps
- - refactor: Refactored how storytellers handle tracks to be easier to code with
- - bugfix: Storyteller now actually rolls stuff correctly and in respect to the antag
- cap
- - qol: The tank manipulator now gives feedback about what's in it
- Mitryll:
- - balance: Set Heretic sacrifice target amount to 5-6.
- - rscadd: Added *squeal emote
- - rscadd: Added *tailthump emote
- - sound: Added sounds for *squeal and *tailthump
- Nerev4r (Code), ReturnToZender (port):
- - rscadd: Moths now get a dash at the cost of stamina. You can use at most 3 dashes
- before entering stamcrit.
- - rscadd: Flutter emote for moths
- Odairu:
- - rscadd: Darkness regen, nightvision, nobreath, flash vulnerability, movespeed
- decrease in light, no stamina regen in light
- - rscadd: antag names
- - rscadd: Adds sec hailer
- - refactor: modularizes a few things
- - balance: nerfs heretics ability to ascend
- - code_imp: changed basic sec hud into a trait
- - bugfix: fixed abductors in deathmatch talking to station abductors
- - bugfix: bows properly apply damage as ashwalker/icecat
- - rscadd: adds silicon manager pda app
- - bugfix: Lima AI sat
- - bugfix: maps choosing themselves
- - bugfix: custom species lore properly displays
- - bugfix: AP mod has digisprites now and applies them properly.
- - image: filled in the nullspace for shadekin tail BEHIND icons
- - qol: ghosts can vote on transfers 2 - infinity
- - balance: removed slipstick from uplink
- - rscadd: hypno lipstick
- - bugfix: neck gaiter no longer has sec radio
- - bugfix: TK no longer teleports to stripper pole
- - qol: AIs can open doors without looking
- Redrover1760:
- - balance: Reverts 9x25mm and 9x25mm AP skyrat nerf to tg values.
- ReturnToZender:
- - rscadd: You can now control what your name is, when you spawn as an ERT.
- - balance: NTC no longer gets Stardust shells, they get only their laser.
- - balance: Re-orders character directory sorting based on what really matters.
- - rscdel: The Lungbuster now no longer calls forth hell's sirens.
- ReturnToZender (code):
- - rscadd: Anime eye sprites
- - rscadd: The futuristic security helmet is now properly added to the multisec vendor,
- and the loadout along with the patrol cap.
- ReturnToZender (code), APWill (Sprites):
- - rscadd: Deer snout to the character creator
Sealed101:
- spellcheck: fixed a typo in examining a bleeding wound on a corpse
- map: Wawastation xenobio now has two droppers
- Shadow-Quill:
- - spellcheck: Fixed a typo in the message that appeared when someone with the Well-Trained
- perk examined someone with the Dominant Aura trait.
- - balance: Oppressive Force Relocation Medicells no longer require bluespace extracts
- to become functional.
- ShadowLarkens:
- - rscadd: Mechanical Vore
- - bugfix: Claustrophobia no longer triggers inside vore bellies.
- - bugfix: Delete button on belly messages no longer has a rendering error.
- Shroopy:
- - bugfix: Added a missing period to law 2 of the NT OS Safeguard V1.0 lawset.
SmArtKar:
- rscadd: TTS pitch now affects emote sounds
- bugfix: Ghost polling/events no longer runtime or freak out when nobody signs
up for them
- bugfix: Tape recorders no longer deceptively claim to have wires or a wire panel
in order to lure in unsuspecting assistants
- StrangeWeirdKitten:
- - balance: Emagging a borg will now scramble its codes plus opening the cover has
- a delay
- - qol: Divides Jukebox volume by 2
- - rscadd: Holofans and Pipescrubbers to Moon and Box's ordnance
- - rscadd: Unbolted doors to the ordnance freeze chambers
- - bugfix: Missing power wire to QM's office on Box
- - rscdel: Smart Organ storage in the middle of Box' medbay
- Swiftfeather:
- - balance: Halves the time for bluespace crystal use
- - admin: Red Alert ERT no longer has pulse weapons.
- - bugfix: Can no longer rapid fire kisses, you boykisser.
- - balance: Reduced heretic weighting.
- - rscdel: Removed hostile pitbull crates.
- - balance: Reduced wound chance multiplication when injured.
- Szyszkrzyneczka:
- - code_imp: lore updates + species lore is now a list of strings instead of a string
- TealSeer:
- - rscdel: Remove air alarm in Space from BoxStation.
Y0SH1M4S73R:
- qol: All forms of jean shorts now count for eating the death sandwich right
carlarctg:
@@ -865,8 +599,6 @@
- code_imp: Added type_english_list() which recieves a list of types and returns
'an x, a y, and a z' strings.
- code_imp: Golem boulder breaking trait moved from species to limbs
- grungussuss:
- - sound: fish sounds are louder
grungussuss and gpeckman:
- sound: the sound folder has been optimized to take up less space
necromanceranne:
@@ -881,78 +613,8 @@
- rscadd: Empath chaplains ignore the fear consequences of examining an evil person.
They instead get additional information about what to do to these people if
the need arises.
- nevimer:
- - refactor: Vetted system is now using SQL and improved.
- - bugfix: airbags are no longer haunted
- - rscadd: Centralsmith Donor Item
- nikothedude:
- - rscadd: '*esigh, for exasperated sighing'
- pixelkitty286:
- - rscadd: cat like grace to lightweight chassis and small quad borg walking sounds
- - image: catborg death sprites
- - code_imp: changed how cyborgs get their walking sounds.
- - rscadd: cut down omitool a small upgrade for the scanner
- - qol: made research borgs actually able to revive and work on synths
- - balance: research cyborg grippers
- - bugfix: research cyborgs not being able to repair synths. research cyborgs being
- able to pick up the nuke disk (oops lol).
- plsleavemealon:
- - balance: lessened ethereal revive penalty
- - rscdel: Removed the agender trait from ethereals.
- - balance: rebalanced (buffed) ethereal's interior power cell
- - rscadd: Add new argument to cyborg rechargers, allowing an optional limit to be
- placed upon amount charged.
- - rscadd: Add new entry within ethereal stomach taking advantage of the new argument
- - balance: rebalanced entombed modsuit starting storage
- - rscadd: Makes the numb quirk actually numb you
- - bugfix: lets zombies be gendered
- projectkepler-ru:
- - rscadd: woodstock shotgun now buyable
- - bugfix: any remaining import gun being buyable
- - balance: riot shotgun now fire faster
- - balance: renoster now hold 9 + 1 shot
- - balance: casing pouch bumped to hold 14 shot
- - code_imp: moved the infanteria rifle crate down to emag contraband
- - code_imp: removed unnecessary override as changes were patched upstream
- - rscadd: disabler smg to sec medic
- - bugfix: erronously the c10 speedloader was normal sized
- - rscadd: you can now buy sidearm crate again
- shayoki:
- - rscadd: Five more new antler types.
- - rscadd: Added fitness equipment to Box Station's Fitness Room.
- - rscadd: Added a basic megacell in Boxstation's EVA Storage room inside the inducer
- storage.
- - rscadd: Added two secure lockers in Boxstation's Brig evidence room.
- - rscdel: Removed Borg Burger in Boxstation's robotics.
- - bugfix: Realigned the airlock and windows for Boxstation's Blueshield office to
- match the Vacant Office nearby it.
- - bugfix: Fixed an open wall connecting to Boxstation's Garden and maints.
- - spellcheck: fixed a crate's name in Boxstation's test firing range.
- shellspeed1:
- - rscadd: Cargo Companies are now available to offstation factions
- - rscadd: Tarkon now has a cargo setup available to them
- - bugfix: Made interdyne exofab circuit board actually work and made the exofab
- drop the right board
- - rscadd: Thanks to the effort of syndicate engineers, you can now reproduce the
- interdyne cargo equipment as well as firing pins and headsets complete with
- comms key! Don't let it get stolen by NT!
- sippykot:
- - rscadd: you can buy the surgical medkit in cargo now
the-orange-cow:
- bugfix: revs once again pass out upon deconversion
- thegrb93:
- - bugfix: Fix runtimes and bugs with using lewd toys on cyborgs
- theselfish:
- - rscdel: Duplicate Butler title is gone.
- - rscdel: Deleted duplicate Language files.
- - rscadd: Adds unused Red Pauldrons to Sec Vendor, as well as the Sec Med beret
- and Armadyne belts.
- - rscdel: Removed storage from (nearly) all the Bunny Suits
- - spellcheck: Various Bloodsucker things have been renamed after the Inconnu paid
- a visit.
- - bugfix: The Neck Gaiter no longer hides glasses.
- - rscadd: Recent events have caused an insane amount of plastic medals to flood
- the market.
2024-10-22:
00-Steven:
- bugfix: Getting a fish tail, cat ears, or a cat tail as any of the slime species
@@ -1146,53 +808,18 @@
it force a stagger rather than cause a chain lightning effect (this used to
do like only 5 damage so...)
2024-10-27:
- '@Majkl-J, @Wolf-751':
- - bugfix: Brings back the red berserker suit digi sprites, originally by Erol509
- - image: Adds digi sprites to marked one's berserker suit (By Wolf-751)
Absolucy:
- rscadd: GPSes now show the general direction of cross-linked z-levels.
- Ben10Omintrix:
- - refactor: basic mob AI interactions has been refactored. please report any bugs
- ChromeFoxxity:
- - rscadd: Added the Vortex-Class Luxury Evacuation Shuttle.
CliffracerX:
- config: altered coded defaults for human authority, no impact on TG
- CydiaButt13:
- - rscadd: '*yip'
- - rscadd: '*yipyip'
- Iamgoofball:
- - rscadd: Adds 20 more slots for free players and up to 100 slots for BYOND members
Jewelry-x:
- admin: make sparks optional when sending a supply pod
KazooBard:
- balance: Knock path's grasp now stuns the previous mech occupant when ejecting
them and unlocks BOTH the ID and DNA lock, allowing the heretic to freely board
the vehicle.
- LT3:
- - balance: Balanced company imports DeForest Medical section
- - bugfix: APCs again trigger lighting channel before equipment channel
- - rscadd: Halloween candy meteors
- - bugfix: Halloween, Easter, and Valentines Day events correctly trigger at roundstart
- - image: More Halloween holiday tile patterns
- - sound: Reduced length of meteor alert warning sound
- - balance: Adjusted warning time for meteor waves depending on intensity
- - qol: Received subtle PDA messages are labelled subtle in the text log
- - image: Fixed icon state for upgraded power cell
- ReturnToZender:
- - balance: Changeling shrieks now have a 10 second cooldown.
- Shadow-Quill:
- - bugfix: Headpats show a feedback message again.
- - bugfix: SSD timer now visible once more.
- - bugfix: Dauntless vendors no longer require money to use, as before.
SmArtKar:
- bugfix: Fixed hat stabilizer component not cancelling the attack chain
- StrangeWeirdKitten:
- - rscdel: Removes Limastation
- - rscadd: Radiation Storms will now irradiate the station again if you don't set
- the shields up.
- - rscdel: Removes blueshift entirely from the code.
- TealSeer:
- - bugfix: fixed department head arrival radio messages missing their job title
Time-Green, 00-Steven:
- rscadd: 'Adds Lost Crew as an orderable cargo package by medical! Fix and revive
them to bring new players back into the game and make some money for medical!
@@ -1200,9 +827,6 @@
admin:'
Vekter:
- bugfix: Changed the color of entertainment radio to be darker
- YakumoChen:
- - rscdel: Nanotrasen has removed the Galactic Minerals Market from their Moonstation
- branch due to repeated market crashing by crew.
carlarctg:
- bugfix: spray-on insulated gloves are chunky once more. does not affect regular
ones
@@ -1214,32 +838,13 @@
- sound: fan loop sounds have been improved
grungussuss and redemptionarc:
- sound: sigh sounds have been improved
- nikothedude:
- - balance: Synth blunt T3 now requires a T1 burn wound to mold
- - balance: Synth blunt T3 heating step now gives a T1 burn wound
- - balance: Synth blunt T3 heating now takes 3 secs
- - balance: Synth electrical damage is now much more treatable with wires
- - balance: Synth premium medkits no longer have a premium spray, instead having
- a plasmide spray.
- - balance: Plasmide now metabolizes slower
- - bugfix: Nagas no longer play human footsteps
- thegrb93:
- - image: Vox helmet sprites now using improved vox helmet sprites
tontyGH:
- bugfix: pointing at stuff on-top of plates, griddles, stoves and ovens will point
at the plate and no longer just do nothing
- xPokee:
- - bugfix: fixed the Big ears being removed, presumably by accident
- - rscadd: added a GAGSified miniskirt to the loadout menu
- xXPawnStarrXx:
- - qol: added two extra tools to the surgical toolset; Bloodfilter and bonesetter.
- - bugfix: added combitool to deforest's cargo orders, I forgot to before.
2024-10-28:
DATA-xPUNGED:
- bugfix: The parrot from the Corsair Cove will no longer be immediatelly shanked
by the pirates upon loading of the domain.
- Flvffi:
- - rscadd: 1 Haydee borg skin for the Research role
Pepsilawn:
- bugfix: You will now receive the advertised amount of credits for selling spacecash
bills through cargo
@@ -1260,9 +865,6 @@
necromanceranne:
- bugfix: Fixes a runtime when trying to remove someones scarred eyes. Now you can
remove them!
- sneksnek:
- - balance: Reverted the normal, large, and x-large beakers back to their original
- capacities of 50u, 100u, and 120u respectively.
2024-10-29:
Aliceee2ch:
- qol: replaced old engineer borg "tile stacker" on crippled RTD
@@ -1276,13 +878,6 @@
- bugfix: Throw impact sounds won't play if the item has been caught.
Jackal-boop:
- bugfix: fixes the toy larva hugger getting shredded
- LT3:
- - bugfix: Fixed meow and purr emotes playing the pet line instead of the emote line
- - qol: You can now see the tallies used to calculate map votes
- Shadow-Quill:
- - rscadd: Subtler Anti-Ghost's text box name is now "Subtler Anti-Ghost", to give
- it better distinction with the Subtle box.
- - bugfix: Other ghost roles now have free vendors.
r3dj4ck0424:
- bugfix: certain office chairs are now properly labelled
2024-10-30:
@@ -1295,12 +890,7 @@
- qol: Detailed examine descriptions are prettier now.
carlarctg:
- bugfix: The Traps won't spawn traps on walls anymore
- sippykot:
- - rscdel: beakers are 60u/120u again
- - balance: changes cryo beaker to 60u from 50u
2024-10-31:
- Arturlang:
- - bugfix: Hemophages are now set alight at 397.6 blood again
Ben10Omintrix:
- bugfix: penguins now correctly hunt for food
Ghommie:
@@ -1310,11 +900,6 @@
- bugfix: Fixed mushpeople caps not being colored red by default.
- rscadd: You can now dye most tails, podpeople hair, mushpeople caps etc. with
a hair dye spray.
- LT3:
- - bugfix: Windoors animate properly
- - bugfix: Crew monitor computer no longer alerts when unpowered
- Majkl-J:
- - rscadd: New annoying cat plush for Kurzaen, available in loadouts
OrionTheFox:
- qol: added fail feedback to xenobio Regenerative Metal/Bluespace Extracts
- bugfix: fixed Regenerative Metal Extract not checking for mob size when moving
@@ -1333,5 +918,3 @@
- code_imp: Introduces a INHALE method for reagent transfer. Cigarettes and smoke
reactions use this new method.
- balance: Nitrous oxide now brain damage if you inhale it. So don't do that.
- sippykot:
- - rscdel: XL beaker is 150u again
diff --git a/html/changelogs/archive/2024-11.yml b/html/changelogs/archive/2024-11.yml
index 29fea179253..571b5e59835 100644
--- a/html/changelogs/archive/2024-11.yml
+++ b/html/changelogs/archive/2024-11.yml
@@ -9,8 +9,6 @@
out
- bugfix: armor booster now applies slowdown removal per part instead of to the
control unit
- LT3:
- - qol: Hypovial dosage is now 5u by default
SmArtKar:
- bugfix: Fixed some guns runtiming when attempting to reload
- bugfix: Fixed HTML injections via pet tricks
@@ -24,8 +22,6 @@
- code_imp: added debug portal with all fish locations
- qol: Modsuit actions no longer go on cooldown when selected
- balance: microwave beam module is on a 4s cooldown not 10s
- xPokee:
- - bugfix: fixed cryogenic consoles being destroyable
2024-11-02:
00-Steven:
- bugfix: NTNRC muting actually works again.
@@ -46,8 +42,6 @@
- code_imp: removed two one letter variables
- admin: clearing the pod bay will not remove the light emitters.
- admin: doing a latejoin injection no longer causes a midround one as well
- Jinshee:
- - rscadd: New gecko tail!
Sealed101:
- bugfix: fixed pure inacusiate not giving you ungarbled whisper hearing at full
range
@@ -107,10 +101,6 @@
rather than ALL ELIGIBLE CREW.
Autisem:
- rscadd: A new cirucit component allows NFC communications
- Kingsley-95:
- - rscadd: Black-Backed Jackal tail
- LT3:
- - qol: Map vote results only include choices included in the vote
Melbert:
- rscadd: Eyecharts to Medbay
Sealed101:
@@ -126,9 +116,6 @@
- bugfix: HPLC computes lower & upper mass ranges & ETA for reagents correctly
- bugfix: gas analyzer won't scan the floor when placing it on a table
- bugfix: gas analyzer won't scan storage items when placing it inside them
- TealSeer:
- - config: Removed config entries for archived maps
- - bugfix: find_and_buy_event_from_track should no longer randomly fail.
Time-Green:
- bugfix: Fixes sec and command coms not working correctly
- rscadd: Added more causes of death to recovered crew
@@ -167,8 +154,6 @@
tontyGH:
- bugfix: thermal insulation tags are correctly formatted if they're only cold or
hot insulated
- xPokee:
- - qol: you can now toggle seeing end credits in preferences
2024-11-04:
Ghommie:
- balance: Some fish should be ever so slightly less rare to get from non-specific
@@ -202,20 +187,8 @@
- bugfix: Fixing transparency for materials, especially glass walls and their unwanted
opacity.
- bugfix: Custom material walls are no longer so dark.
- IgiariValkyr:
- - qol: The Interlink Administrative Office has had new equipment brought in and
- installed.
- - balance: Lizard Gas now has slightly better but still shoddy weaponry for its
- employee.
Jewelry-x:
- bugfix: fixed a rare runtime with lost crew having no organs
- LT3:
- - server: Removed Northstar, Wawastation, and Birdshot from map configuration cache
- - rscadd: Added a Skillsoft machine to the Ghost Cafe vending area
- Majkl-J:
- - bugfix: Hemophage organs no longer show up on analyzers
- StrangeWeirdKitten:
- - balance: Replaces the security cremator with a room of plushies.
carlarctg:
- qol: mining resonator clips to belt slot
carpotoxin:
@@ -226,10 +199,6 @@
grungussuss:
- sound: the volume that ship ambience, ambience, radio noise and announcements
play at can now be tweaked in preferences, check your preferences!
- sippykot:
- - balance: borg self un-tip time reduced to 3sec from 20sec
- xPokee:
- - qol: made it so you can examine what is inside of crates and lockers as an observer
zxaber:
- rscdel: SiliConnect, a tool meant for Roboticists, is no longer included by default
on borgs.
@@ -243,30 +212,15 @@
- balance: Alien operating tables now have a 20% surgery speed bonus.
- refactor: Refactored how table/bed surgery speed modifiers are calculated, so
it's hopefully more efficient now.
- Arturlang:
- - rscadd: You are now prevented from making a revenge vassal as a ventrue bloodsucker
- if you do not have any ghoul slots free to prevent softlocks
- - rscadd: Changes ghoulization used in bloodsuckers words to ghouling
- - bugfix: Ghoul antag panels now work again
Contrabang:
- code_imp: Removes S
- LT3:
- - bugfix: Fixed upgraded power cells always showing red/empty.
- - qol: LOOC can now be individually enabled/disabled on chat tabs
- Majkl-J:
- - bugfix: Fixed some hat related sprite hiding issues
Shadow-Quill:
- admin: When a secret note is applied, it'll now be logged as a secret note (instead
of appearing like a regular note).
SmArtKar:
- bugfix: Fixed MODsuit deactivation not disabling modules
- TealSeer:
- - bugfix: The game should no longer run ruin generation twice.
thegrb93:
- bugfix: Fix borg throwing not working
- xXPawnStarrXx:
- - spellcheck: made prisoner bounties list what you're after rather than "fruit"
- or "flowers"
2024-11-07:
Ghommie:
- bugfix: You can actually catch custom material fish with custom material fishing
@@ -276,25 +230,14 @@
fish plateaus even faster past that threshold).
Kiko:
- rscadd: Nebulastation, new station map
- Majkl-J:
- - bugfix: Standalone hood now shows ears
grungussuss:
- bugfix: duct tape will now properly make sounds
mc-oofert:
- rscadd: honkerative skin applier adds a waddling module
- bugfix: mod skin applier works now
- nevimer:
- - bugfix: vetted list now doesn't wipe the admin who added field on reload
oranges:
- balance: Nuclear disk no longer needs to be secured at sub 10 population
- thegrb93:
- - balance: Legwraps wrap your feet now and you won't fall on glass shards while
- wearing them
- xXPawnStarrXx:
- - rscadd: Added blanks to the limbgrower, for soul/brain transfer.
2024-11-08:
- Adrian16199:
- - bugfix: Made HFZ actualy be able to have digitigraded legs for real this time.
Archimus12:
- bugfix: Made the Research Director's Modsuit's Advanced Reagent Scanner scan reagents.
- spellcheck: Changes description of the Advanced Reagent Scanner to mention its
@@ -302,16 +245,8 @@
DaCoolBoss:
- spellcheck: Changed names in the description of dark matter singularities and
their toy version.
- Majkl-J:
- - rscadd: Suspicious protogen plushie
- - bugfix: Phystool and Physgun work correctly again
- - bugfix: Clockcult slabs can examine again
- - bugfix: Compostbin is now handled correctly
- - bugfix: Robohand checks for robohand again
Rengan:
- bugfix: fixes singularity eating containtment field
- ReturnToZender:
- - balance: Default Andy will spawn mundane events half as frequently.
SyncIt21:
- bugfix: RLD won't try to put lights on storage objects like bags & such
- bugfix: You can repair clothing that has storage with cloth again
@@ -323,9 +258,6 @@
- bugfix: destructive analyser accepts all items without interacting with them (no
planting c4 on the machine or radio jammer jamming the machine). Use combat
mode to get these default behaviour's instead
- TealSeer:
- - bugfix: Moonstation ore vents should no longer be barren.
- - bugfix: Window polarizers can be properly linked to windows again
carlarctg:
- bugfix: Fixed sect nullrod bonus component
mc-oofert:
@@ -348,9 +280,6 @@
- bugfix: The new message header you get when NTNRC runs in the background actually
works.
- bugfix: NtOS header actually updates if there are no program headers.
- CydiaButt13:
- - rscadd: Added sprite for blood_tea
- - rscadd: Added vending machine option for blood_tea
Fikou:
- bugfix: fixes borgs linking to ais in mechs cards and modsuits
Ghommie:
@@ -361,12 +290,6 @@
- bugfix: Living Limbs no longer try to grab things that are under the floor.
- spellcheck: Living Limb feedback messages now don't redundantly specify that they
are flesh arms.
- Majkl-J:
- - rscadd: Loadout renamed/redescribed items can be examined when worn.
- - rscadd: Sombreros return to clothes vendors and loadouts
- - qol: Sombreros no longer make you bald
- Midiwidi:
- - rscadd: Added science bag to SciDrobe
NoselessCanine:
- balance: Gas mask filters are now more effective, and their degradation is more
heavily influenced by what gasses they are filtering.
@@ -377,8 +300,6 @@
- bugfix: MK honk shoes now consume bananium & can clown again
- code_imp: material container objects end their attack chain early
- bugfix: status & newscaster frame won't drop extra glass sheets upon deconstruction
- TealSeer:
- - bugfix: Large Antlers should now have a north-facing sprite
necromanceranne:
- balance: Some mind altering effects of heretics (predominantly Path of the Moon
heretic abilities) are nullified using...a tinfoil hat. But awareness of the
@@ -408,8 +329,6 @@
- bugfix: chem master validates selected container in UI so no more href exploits
Xander3359:
- bugfix: fix blade ascension not giving you the ring of blades
- ceeetchell:
- - bugfix: Makes blind people able to actually use the health analyzer again.
grungussuss:
- qol: security helmet straps can be loosened to show hair
- sound: only insulated,nitrile, enhanced retrieval, latex, boxing, improvised gripper
@@ -424,40 +343,9 @@
- bugfix: Teleporting while buckled to something now works as expected
- bugfix: You can buckle to anything if you share the same tile (cause at that point
it doesn't matter if there's a wall, right?)
- xPokee:
- - image: replaced the outdated F13 mob sprites with their current F13 versions
2024-11-11:
- 00-Steven:
- - bugfix: Syringes can be put into cake/bread/cheese on right click again.
- - spellcheck: Biting into a hidden syringe no longer displays things like "a the
- syringe".
- - bugfix: Prosopagnosia actually accounts for hover screentips, showing humans as
- Unknown in those too.
- - rscadd: Reinforced tables may now be hooked up directly to the grid much like
- grilles, electrocuting people who attempt to disassemble it.
- Archemagus:
- - qol: Airlock_pump now dock with shuttles in more pleasant way
- Ben10Omintrix:
- - bugfix: fixes some mobs having their aggro appearance linger around after sentience
- Bisar:
- - rscadd: Clothing can now hide what you're wearing on your belt.
- BurgerBB:
- - rscadd: Adds a new snout option for lizards along with a horn option.
- Chubbygummibear:
- - bugfix: fixed multi-z weather overlays stacking and not hiding overlays above
- you
- DaCoolBoss:
- - bugfix: Donk Co. and S.E.L.F. crates now properly display their lock (or lack
- therof).
- - image: New sprites for unlocked Donk Co. crates and locked S.E.L.F. crates.
- - spellcheck: The names of syndicate-branded crates now use proper nouns.
- - spellcheck: Fixed a typo in the description for Donk Co. fridges.
- - balance: MI13 Fugitive Hunters can no longer spawn with machine trappers, instead
- they may now spawn with thermal goggles.
Dawnseer:
- spellcheck: changed throguh to through in a player facing description
- EnterTheJake:
- - bugfix: Heretic Carving Knife runes are no longer triggered by hovering projectiles.
Ghommie:
- bugfix: You can now use fish feed cans on aquariums while the control panel is
open.
@@ -468,84 +356,13 @@
will now periodically lay moonfish eggs.'
- map: The 'crashed pod' lavaland ruin now has a hot spring, and the cursed hotspring
on icemoon now has a plastic chair and a fishing toolbox.
- GremlinSeeker:
- - rscadd: Birdshot Cargo now has a lobby and is slightly more open overall.
- - rscadd: Re-added the DnD room to Birdshot
- - rscadd: re-added the skill station to the library.
- Jewelry-x:
- - qol: change floor button now interacts with ladder if it is in the current turf
- - spellcheck: capitalise cure_text for advanced slime mutation
- - bugfix: Security Officers (Engineering) can now open crucial doors in Engineering
- on Birdshot
- - bugfix: Corrected access inconsistencies for maintenance doors in the Engineering
- department on Birdshot
- - bugfix: Resolved naming inconsistency for the front doors of Engineering on Birdshot
- - bugfix: fixes stun not getting applied if you are riding a carp
- - bugfix: fixes exception during shuttle map rotation vote
- - bugfix: fixed not being able to stop looking up or down if unable to find something
- until you found something
- - qol: feedback for "Look Up" or "Look Down" verbs to reduce confusion caused by
- the verbs
- - qol: limited usage of "Look Up" and "Look Down" to cases where there is a turf
- above your or below you accordingly
- - qol: automatically stops you from looking up or down when there is no turf above
- or below you
- JohnFulpWillard:
- - balance: Human AIs spawn with a space suit on Wawastation.
- - balance: Human AIs no longer have slowdown and a ton of restrictions such as ladders
- when outside of the satellite.
- - qol: Spawning in with a space suit now has its thermal regulation on by default.
- LemonInTheDark:
- - map: added a map specific changelog entry
MTandi:
- qol: chem dispenser droplets in UI colored as their reagent
Majkl-J:
- bugfix: Losing malf no longer wipes nonmalf AI abilities
- Melbert:
- - rscdel: Having any wounds no longer gives you an alert in the top right
- - qol: Having any wounds now make the corresponding bodypart on your health doll
- (the lil dude on the right side of the screen) glow red.
- - refactor: Refactored how the hud's health doll shows up for humans. Report any
- oddities
- - qol: Runes, crayons, and similar decals no longer have shadows
- - bugfix: Blood and similar "mess" decals no longer have shadows (again)
- - bugfix: Fixed manual construction of hygiene bots
- - admin: Items now have a header in VV allowing for quicker editing of combat properties
- - refactor: Refactored footsteps for humans. Human footstep sound effects are now
- determined by your leg type. Report any oddities.
- - qol: Digitigrade legs now play claw footstep SFX. "plat plat" is dead, long live
- "tap tap".
- - qol: Unusable inventory slots (as according to your bodyparts or equipment) will
- now be dimmed (similarly to how unusable inventory slots are dimmed for certain
- species like Golems).
- OrionTheFox:
- - spellcheck: added a 's to Personal/Job lockers created with card readers, renamed
- 'Departmental' to 'Job' to prevent confusion, and made the description easier
- to read
- - rscadd: '3 new Space Ruins: two small Comms Buoys (fluff) and an NT Bluespace
- Comms Buoy. Employees are asked not to touch vital components when nearby this
- critical infrastructure.'
- Pickle-Coding:
- - balance: The supermatter accumulates zap energy and discharges a portion of it
- to use for zapping per atmos tick, no longer being bounded by machinery ticking.
- Sealed101:
- - bugfix: splashing a reagent holder with blood with a fluids-transmitted virus
- now properly creates an infective blood splatter
- - bugfix: fixed PANDEMIC not updating its UI when a beaker is removed via right-click
- - bugfix: fixed hand tele portals that have been deleted in the process of opening
- a new portal pair clogging up hand tele's portal pair list. If you try to create
- portals that would end up like this (i.e. on an active teleporter hub), the
- hand tele will indicate that.
- Shadow-Quill:
- - bugfix: Emergency Response 911 calls from the comms console now function again.
- Woo!
- ShadowLarkens:
- - bugfix: You can now eat cyborgs.
SmArtKar:
- refactor: Eye color effects are now controlled via a new overrides system, which
should prevent conflicts between different sources.
- Swiftfeather:
- - rscdel: Phasic strilka ammo is no longer printable.
SyncIt21:
- bugfix: mortar pedestal now grinds & juices items that previously could not be
processed
@@ -554,23 +371,6 @@
on github
- code_imp: improves code for recycling circuits in component printer
- bugfix: Super matter sliver dusts fishing hooks & cannot be picked up by them
- TheSmallBlue:
- - config: Both human authority settings were combined into a singular one, allowing
- for more flexibility
- Timberpoes:
- - bugfix: Fixes a bug where the game would assign multiple players to single-slot
- command roles.
- ViralMilk22:
- - map: Additional Icebox Ruin has been added "Hunters Lodge".
- Xackii:
- - rscadd: Showers now heals stamina when you washing. But not for you catgitls.
- Y0SH1M4S73R:
- - balance: The hatchlings on the Derelict Outpost are marginally less deadly, to
- the extent that fighting them is slightly more feasible.
- antropod:
- - rscadd: You can now link to multiple trapdoors with one remote
- - rscadd: Trapdoor will automatically close in 5 seconds (ctrl-clicking on a remote
- will toggle autoclose)
carlarctg:
- bugfix: fixed random dm modifiers & some life-like reagent reactions
carlarctg, Ghommie:
@@ -581,69 +381,26 @@
grungussuss:
- sound: evidence bags have more sounds now
- sound: writing something now produces sound
- grungussuss and redemptionarc:
- - sound: snoring now has sounds, snoring will happen more often while asleep
harryob:
- bugfix: you can no longer send newscaster messages to channels you don't have
permissions for
- imedial:
- - qol: puts silicon laws in the status panel
- iwishforducks:
- - image: Traitors now get the classic Revolver in their uplink. Nuclear Operatives
- still keep the red look for their revolvers.
- mc-oofert:
- - bugfix: you can now put more than 1 non-stack item relevant to the recipe in a
- manufacturing crafter
- - bugfix: manufacturing router does not bug out when handling stacks in some cases
- at the cost of being slower to do so
- - balance: you may wear gloves one armed
necromanceranne:
- bugfix: Abstract nullrod types can no longer be burned or melted with acid.
- bugfix: Monk staff now properly does not block projectiles, and uses the correct
force before being wielded.
- siliconOpossum:
- - bugfix: The preview for writing on paper updates in real-time again
- timothymtorres:
- - bugfix: Fix air alarms to work correctly while connected to a gas sensor
- - bugfix: Fix paired air alarms and sensors to be able to relink to other devices
- if turned off, reset, or destroyed.
- - admin: Organize admin verbs for shuttle events into shuttle category
- - rscadd: Add no escape final traitor objective that spawns a stage six (11x11)
- singularity shuttle event.
- - code_imp: Automatically link maps multi-z up/down traits
- - bugfix: Fix air alarm disabled setting to silence warnings
- vinylspiders:
- - qol: lets you continue to read paperwork after putting it into a folder
- xPokee:
- - bugfix: fixed the tactical Hawaiian outfits wrongly being adjustable
- - balance: nerfed the dragonslayer's stats when in pressurized environments
- - bugfix: fixed DNA Vault genes being able to be saved on a gene console
- - rscadd: added the colored glasses to the loadout
2024-11-12:
- Adrian16199:
- - balance: Self aware and skittish value were adjusted.
- - balance: Removes medkits from loadouts.
Djiq:
- refactor: Refactors heretic tree coode
EnterTheJake:
- balance: The Uplink cost of the energy sword has been lowered from 8 to 6 TC.
Ghommie:
- bugfix: AI-controlled mobs can now cross open space if they won't fall.
- Kingsley-95:
- - rscadd: Slipers, a new traitor item which can be bought from the uplink
Melbert:
- image: The animation for being dusted now takes into account your sprite, rather
than being a normal nude spaceman
- Shadow-Quill:
- - bugfix: Re-greased all pinwheel hats in the sector. Happy spinning!
- - image: Added animation sprites for the hat icon. Twice the spin!
grungussuss:
- qol: you can now mitigate motion sickness from screen shake by enabling "darken
screen shake" in preferences
- xPokee:
- - rscadd: added a bonk emote
- - sound: added the coconut hit 01 sound effect to the code
- - bugfix: fixed shoe slots being greyed out with digi legs
2024-11-13:
00-Steven:
- bugfix: Fixed auto-reel fishing line item catching logic.
@@ -670,9 +427,6 @@
- qol: You can now examine labelers to tell how many more labels it has.
Holoo-1:
- bugfix: fixed roundstart borgs not being synced to ai
- Mitryll:
- - balance: Made the Sec Hailer follow the same restrictions a standard headset would
- follow.
Neocloudy:
- bugfix: examine tags now use regex for checking if a tag has "and" in it
- spellcheck: the tooltip for the morbid examine tag doesn't try to use html anymore
@@ -748,13 +502,9 @@
vendors) now load icons in a more efficient manner.
- bugfix: Admin-deleting a mob now ghostizes it beforehand, preventing a runtime
error.
- Arturlang:
- - bugfix: Fixes the bokken having 16 damage when unwielded, and 8 when it is
Ben10Omintrix:
- bugfix: fixes seedling ai getting stuck when trying to refill water from emptied
water tanks
- Boviro:
- - rscadd: gives the warden a stamp
Dawnseer:
- bugfix: removes the gas mask check for if the gas mask mouth is covered. Now it
only checks for filters and other cigs
@@ -807,11 +557,6 @@
is now set to Nitrogen. Chemistry closet in pharmacy now contains extra chemicals
to compensate for not having a chemical storage. Atmos air for distro mixer
now mixes correctly
- sippykot:
- - balance: NT's bluespace technology doubles lunchbox storage from 4 to 8 items
- with special lining
- - rscadd: lunchboxes can also hold condiments and gum now... and cigarettes and
- lighters, at the insistence of our sponsors in the space tobacco industry
timothymtorres:
- balance: Lower the telecrystal price of the singularity beacon from 10 to 4 and
reduce the timer to 20 minutes before it can be purchased.
@@ -820,15 +565,6 @@
2024-11-16:
Hardly:
- bugfix: Fixes watchers not attacking their targets in melee range
- Majkl-J and Cepha:
- - rscadd: Ponytails (Berly) hair added
- - rscadd: Short (Side) hair added
- Middiwiddi, LT3:
- - rscadd: Added 'nyamagotchi', a tamagotchi clone that's cute and cat-themed. Interactive
- and able to attach on belt.
- - rscadd: Added nyamagotchi to toy vending machine and clothesdrobe
- - rscadd: Added nyamagotchi to 'pockets' loadout options.
- - rscadd: nyamagotchi works as a companion for monophobia.
TheRealSpriteMan1337:
- spellcheck: Fixed some of the typos in computers' build & repair tips, adjusted
wording
@@ -836,28 +572,18 @@
- bugfix: fix furious steel and blade ascension being jank
carlarctg:
- rscadd: Adds the Perceptomatrix Helm, a hallucination anomaly core item
- thegrb93:
- - bugfix: Fixes crafter machine not working
- - bugfix: Fix TEG help text saying to use multitool instead of wrench
- xPokee:
- - bugfix: fixed bacon and cloth cookies from cyborg snack dispensers not having
- a proper taste
zxaber:
- bugfix: Firelocks opened by a mech will correctly close when the mech moves out
of range.
2024-11-17:
- Deek-Za:
- - bugfix: Fixed some broken digi outfit variations
Fikou:
- bugfix: xeno princesses no longer lose their unique identifier
JagOfTroy:
- - bugfix: Fixed Automatic Announcement System bug with the Research Node Announcement
+ - bugfix: 'Fixed Automatic Announcement System bug with the Research Node Announcement
message not updating properly. It will now properly save and announce whatever
input the user desires!
- Majkl-J:
- - code_imp: Makes headshot and nsfw preference code handling more consistent with
- the rest. Savefiles are untouched by this
- - bugfix: Latex catsuit no longer hides some features
+
+ :cl:'
SmArtKar:
- rscdel: Removed N-Spect scanner's and scanner gate's ability to scan people for
contraband.
@@ -865,19 +591,8 @@
- bugfix: Fixed a mixup in ripley plate sprites
- bugfix: Fixed tethers being able to move immovable objects (and delete gravgens)
- bugfix: Fixed a missing arg in fish release code causing runtimes
- Sparex:
- - map: Added generic_maintenance_spawn points to fix the issue with the Nightmare
- not being able to spawn. They will now spawn as they should.
- - bugfix: Wall-Mounted Cryopods now fully work as intended, player will enter the
- wall-mounted cryopod. Enter stasis, able to ghost out and be processed to the
- cryogenic oversight console.
carlarctg:
- bugfix: '[no gbp] renmoves bartender skillchip from chipped quirk'
- projectkepler-ru:
- - bugfix: duplicate 12g technode that made flech an early game ammo
- sippykot:
- - balance: removes pressure check from the glucose medipen and changes its description
- - balance: meridine has 1u less ammoniated mercury
timothymtorres:
- bugfix: Fix radio jammer screentips
2024-11-18:
@@ -909,21 +624,11 @@
- balance: other previously fishing loot available in limited amount, such as adamantine
and runite from plasma rivers, regenerate over time.
- rscadd: Using the gibber on people with fish tails now yield some fish tail fillets.
- LT3:
- - bugfix: Medical should again be able to tell if your heart is missing, hopefully
OrionTheFox:
- code_imp: The Greytide event will now play bolt audio and update the icon when
toggling door bolts.
- RimiNosha:
- - rscdel: Heads no longer start with GAP punchers.
- - qol: Heads (anyone with command access) can now use their PDA to stamp GAP cards.
- - balance: Good Assistant Point cards now pay out 150cr per stamp.
Sothanforax:
- sound: Added sounds for the escape menu opening/closing/being open
- Sparex:
- - bugfix: When using the knife on a sausage, the choice pop-up wheel to cut into
- Salami or American Sausage has been fixed and you can now properly circumcise
- sausages again.
TheBoondock:
- sound: added ignition and roaring fire sound to plasma/tritium fire
Vekter:
@@ -957,55 +662,23 @@
timothymtorres:
- map: Fix missing CE Office Shutter Buttons on Icebox. Also removes a duplicate
keycard auth device.
- xPokee:
- - balance: the berserk ability can no longer be used in pressurised areas, such
- as on-station
- xXPawnStarrXx:
- - rscadd: Added new plants, starting from rockfruit mutations, allowing slow accumulation
- of ores.
2024-11-19:
- Arturlang:
- - bugfix: Quirks with whitelists should no longer randomly dissapear
- - bugfix: Sol weakness quirk should actually make your healing cheaper if you're
- in a coffin
- - rscadd: Sol weakness quirk will prevent hempohage healing working while Sol is
- active
- - bugfix: You can no longer use sign language while frenzying
Fikou:
- bugfix: Fixed chaplain divine archer outfit rolled down sprite
Jackal-boop:
- balance: syndicate GMO researchers have increased the effectiveness of their 'hot
potato'
- MajManatee:
- - bugfix: Railings now deconstructable again. (And racks)
- - image: New lizard frills, (Axolotyl based)
- Sparex:
- - bugfix: Replaced tg database pride pin sprites with flag versions that allowed
- more variety, effectively giving back the much demanded Man-Loving-Man pride
- pin.
carlarctg:
- qol: Improved fish lure descriptions to be easier to grok
fevryk:
- rscadd: Added new weapon carpenter hammer to black market uplink
- rscadd: Added killsound feature
- projectkepler-ru:
- - rscadd: CnC Maid Kit
- - bugfix: Shotgun not being access locked when it should
- thegrb93:
- - balance: Borgs can go into gateway now
tontyGH:
- bugfix: Haunted 8-balls are now usable again (FINALLY)
- bugfix: Haunted 8-ball UI now correctly displays your selected answer
- qol: Made the haunted 8-ball UI look a pinch better. Just a smidge.
- code_imp: Haunted 8-balls no longer use a duplicate answer list
- xPokee:
- - rscadd: 'added a new quirk: dusting sickness'
2024-11-20:
- Arturlang:
- - balance: Races without the MOB_ORGANIC biotype are no longer disallowed from being
- special ghouls
- - rscadd: Renames all mentions of the Solar Goverment/Federation to the Terran Goverment
- - rscadd: Skyrat xeno queen can no longer be KO'd, just like TG queens cannot.
Ben10Omintrix:
- refactor: floorbots have been refactored, please report any bugs
- rscadd: adds repairbots to the game!
@@ -1032,10 +705,6 @@
is immune to this effect via their skillchip.
- code_imp: A lot of code involving left and right hand handling has been cleaned
up, easier to read. Report any oddities, like left and rights being flipped
- StrangeWeirdKitten:
- - rscadd: Succumbing now alerts everyone that you gave up on life.
- TealSeer:
- - map: Fixed incorrect evac sign on Void Raptor
grungussuss:
- bugfix: mobs can no longer hear their own breathing while deaf
- bugfix: a bug regarding orderable items has been fixed
@@ -1045,8 +714,6 @@
larentoun:
- bugfix: 'Mafia: Psych''s reveal ability now correctly has a single use'
- bugfix: 'Mafia: Fugitive''s vest ability now correctly should have two uses'
- xPokee, LT3:
- - rscadd: added MKUltra, chemical enthrallment
2024-11-21:
Ghommie:
- refactor: refactored aquariums heavily. Please report any fishy bug.
@@ -1067,9 +734,6 @@
system, which should considerably improve client performance when encountering
a lot of burning/slimed entities.
- bugfix: Berets no longer make you go bald above your earline.
- StrangeWeirdKitten:
- - admin: Storyteller name changes will append it with the original story teller
- name.
SyncIt21:
- bugfix: plumbing pill press advertises the correct maximum volume of your selected
product instead of always 50u on the UI
@@ -1101,101 +765,29 @@
timothymtorres, MrMelbert:
- bugfix: Fix lustrous brain trauma not removing during polymorph
2024-11-22:
- Absolucy:
- - bugfix: Allow dot radio prefixes to also work with the tgui-say radio prefix display.
Acantharctia:
- balance: Numb quirk now stops you from screaming and seeing the damage overlay
when damaged. Better keep a close eye on your health.
Ben10Omintrix:
- bugfix: fixes monkey AI not being able to attack
- Cruix:
- - bugfix: Fixed chameleon clothing sometimes making you bald or hiding other parts
- of your sprite.
- DATA-xPUNGED:
- - bugfix: Xeno queens can once again promote Drones to Praetorians
- - bugfix: They can also once again do hand emotes
- - bugfix: Ghosts can now see the details of an ID from any distance
- - bugfix: Server Hopping should fade your screen into black, as it should.
Dawnseer:
- bugfix: Turns Cap (White) into a white cap in loadout
- EEASAS:
- - bugfix: adds plasma to wawastation's xenobio
- EnterTheJake:
- - bugfix: Dark matter singularity no longer gets stuck on other z levels when summoned.
- - bugfix: Space Phase now makes the Heretic Space proof.
- EuSouAFazer:
- - balance: '[TGC] Rebalances nearly every card in the game.'
- - balance: '[TGC] Several keywords had their effects modified.'
- - bugfix: '[TGC] Black Gaia is no longer an "Artifact", Fryer no longer mentions
- tapping it.'
- - spellcheck: '[TGC] Replaced "Tap this card:" with just "Tap:" alongside other
- wording improvements'
- - spellcheck: '[TGC] Mana has been replaced with Plasma. This is a completely cosmetic
- change.'
- - refactor: '[TGC] Merged many, many redudant card subtypes (the mechanic, not the
- byond code stuff) into more comprehensive ones.'
- FlufflesTheDog:
- - bugfix: Mops and similar work properly on multi-z stations
- Ghommie:
- - bugfix: Fish like slimefish, unmarine bonemass and deepfryer fish can now be used
- for DNA infusions.
- - rscadd: The fishing skillchip now grants an action that dispenses fishing tips.
- - rscadd: You can buy a fishing rod pre-equipped with a rescue hook from the mining
- order console.
- - balance: Paramedics can get a rescue fishing hook as a heirloom.
- - bugfix: fixed fish infusion. Whoopsies.
- - rscadd: Feeding fish certain reagents may have some effects. Mutagen for increased
- evolution probability. Growth serum for faster growth. Teslium for electrogenesis.
- - bugfix: The fishing portal generator (fish-porter 3000) now correctly links with
- lava turfs from lavaland.
- Hardly3D:
- - spellcheck: fixes a small error in text when adjusting kitsune masks
- Iajret:
- - bugfix: health analyzers will show if your heart is missing once again
- Jewelry-x:
- - bugfix: fixed reagents not being applied correctly by venomous mobs
- - bugfix: dead borgs no longer become invisible upon changing z level
- - bugfix: the ghost "t-ray view" no longer requires a double press to activate a
- second time.
- - qol: renamed "t-ray view" to "t-ray scan" for clarity.
- - bugfix: fixed mech step sound playing twice diagonally
- - bugfix: fixed turn sound playing every time you move diagonally, now only plays
- when the sprite turns
- KazooBard:
- - rscadd: More cardboard cutout icons (Pirate, ninja, changeling, heretic, abductor)
KikoWen0:
- map: Nebula Arrivals stairs are now easier to navigate
- map: Fixed unconnected wire in dormitories on Nebula
- map: Fixed engineers having free pass to cargo department on Nebula
- Mamaii:
- - rscadd: shower will give felinids negative mood effect
- - bugfix: fixed shower hater status effect alert not showing
Melbert:
- bugfix: Monkeys no longer ignore basic rules such as "you can't escape a passive
grab if you're cuffed or in crit"
- bugfix: Fixes some atmos and record related log messages
- Qwertytoforty:
- - bugfix: Anomalies no longer spawn in objects or mobs from the supermatter.
SmArtKar:
- bugfix: Reconnected Wawa's sci to atmos distro
- bugfix: Fixed incorrect coverage descriptions
- refactor: Converted most common particle sources to use our new pooling system.
- bugfix: Fixed all hoverboards having holyboard space slowdown effect
- bugfix: Fixed limping status effect harddels
- StrangeWeirdKitten:
- - admin: The Law Panel now properly logs and communicates law edits.
- Striders13:
- - balance: replaced gas mask fov with pepperspray applying tint to gas masks, making
- the wearer blind until washed off.
SyncIt21:
- bugfix: Labour stacker machine gives points for sheets again
- YakumoChen:
- - spellcheck: Proofreads some faxes sent during radioactive nebulae
- ZephyrTFA:
- - qol: map votes are now winner take all instead of weighted.
- Zydras, RimiNosha:
- - map: Biodome got a ton of fixes and tweaks, send feedback to RimiNosha so more
- can be done!
carlarctg:
- rscdel: Replaces UZI domain reward with ballistic chameleon gun
- rscadd: Also added a separate possible reward for an uzi bitrunning disk.
@@ -1205,8 +797,6 @@
played at
jlsnow301:
- bugfix: TGUI panel light mode should no longer be gross gray
- junkgle01:
- - image: resprited surplus limbs
mc-oofert:
- rscdel: removed quiet succumb which is pointless now that the bug got fixed
necromanceranne:
@@ -1232,17 +822,8 @@
anymore)
- bugfix: AI eyes no longer assign real names to themselves, fixing their orbit
name
- unit0016:
- - bugfix: Shuttles that land next to plasma turfs no longer ruin the mass hallucination
- that is Icebox having Plasma and not just super-deadly; spiky basalt deltas.
- You're welcome; unreality fans.
- vinylspiders:
- - bugfix: fixes a bunch of improper static list declarations
wallem:
- image: Updates slot machine sprites
- wonderinghost:
- - rscadd: Adds a few lights
- - bugfix: removes the darkspot in wawa med
2024-11-23:
EOBGames:
- rscadd: 'A new series of shipping containers have been added: keep an eye out
@@ -1254,13 +835,6 @@
- admin: default prefs are now to be deadminned as antag/head/sec/silicon
Ghommie:
- bugfix: Fixes ink spit not respecting its 21 seconds cooldown.
- GoreDem:
- - rscdel: removed burst mode action button from the bulldog
- MajManatee:
- - rscadd: Chemical press can now fill large bottles (100u)
- - rscadd: Adds large bottles
- - qol: Chemical press can now fill large hypos fully (100u)
- - qol: Chemical press can now dispense pills and patches at 1u
SmArtKar:
- balance: Armor now decreases the chances of getting your eye blown out by a rogue
bullet
@@ -1270,30 +844,13 @@
- bugfix: inducers can be inserted into storage objects again
- bugfix: fixes grown foods(like pineapples) getting deleted sometimes inside crates
and stuff
- pixelkitty286:
- - rscadd: Engineering grippers to engineering cyborgs and traitorous counterpart
- - image: 1 Icon in modular robot_items.dmi
- thegrb93:
- - bugfix: Shutter animations fixed
2024-11-24:
- Arturlang:
- - bugfix: the shockwave KPA can no longer be shot in a way that lets you stack all
- of it's shots in one tile
Ben10Omintrix:
- bugfix: fixes the chipped quirk displaying the skill chip's typepath rather than
its name
- bugfix: fixes chipped quirk's itchy effect not working
- bugfix: the chipped quirk's itchy effect now goes away when the skillchip is removed
- refactor: projectile dampeners have been refactored. please report any bugs
- LT3:
- - bugfix: Emote cooldowns work properly
- - rscdel: Removed Freerunning restriction on the flip emote
- MajManatee:
- - rscadd: LOOC now has runetext! (As an option)
- ReturnToZender:
- - rscadd: You can now put a damp rag in your lapel pocket protector.
- RimiNosha:
- - bugfix: Fixed assistant uniforms replacing loadout uniforms in certain conditions.
SmArtKar:
- qol: Projectiles now visually impact their targets instead of disappearing about
a tile short of it.
@@ -1316,8 +873,6 @@
- bugfix: Fix fireplace particles runtimes.
timothymtorres, SmArtKar:
- bugfix: Fix chewable bubblegum not metabolizing due to microdose
- xPokee:
- - rscadd: you can now pick up snakes and wear them as a scarf
2024-11-25:
Absolucy:
- refactor: Cleaned up code relating to heretic ascension announcements and traits.
@@ -1331,8 +886,6 @@
- bugfix: fixed some erronous spriting on the zippo
EnterTheJake:
- image: Heretic's Moon Blade has received a new sprite.
- Flvffi:
- - image: Modified 4 Haydee .dmi files
Ghommie:
- balance: Nerfed slipperiness from fish infusion. It no longer knockdowns but it
staggers and slides the user one or two tiles away.
@@ -1342,18 +895,16 @@
think) also dry living creatures hit by them.
GoblinBackwards:
- bugfix: fixed the fire effect not appearing on burning gasses
- LT3:
- - bugfix: Ghosts can use the flip emote again
Mifutus:
- rscadd: Added new moth customizations available in the character creation under
the name "Dipped"
- - image: added icons for the moth wings, antennae and markings
+ - image: 'added icons for the moth wings, antennae and markings
+
+ :cl:'
- bugfix: fixed the pulse rifle not spawning when won
- - code_imp: added get_turf to the pulserifle when the odds are beat.
- OrbisAnima (code for 1), ReturnToZender (code for 2):
- - bugfix: Fixes an exploit with Twitch, and the reagent forged spear's embedding.
- ReturnToZender:
- - rscdel: Replaces the NTC's captain fountain pen with a regular fountain pen
+ - code_imp: 'added get_turf to the pulserifle when the odds are beat.
+
+ :cl:'
SmArtKar:
- code_imp: Cleaned up organ code
- bugfix: Fixed meteors freezing in place if they continiously miss the station
@@ -1382,8 +933,6 @@
- bugfix: fixed some wiring on wawastation, added an additional distro/scrubbers
connection to sciences network
- bugfix: damage done by thrown objects to objects respects their demolition modifier
- thegrb93:
- - bugfix: Synths vomit nanites when flipping too many times
timothymtorres:
- bugfix: Fix weather effects ignoring certain areas like space.
- bugfix: Fix coffee maker items teleporting to AI/Cyborg locations
@@ -1403,67 +952,27 @@
Isratosh:
- balance: Time-gated traitor uplink gear is returned to being hard reputation locked
with a static price.
- KazooBard:
- - rscadd: "Ouija boards can be now ordered from cargo (S\xE9ance kit)"
- LT3:
- - bugfix: Health analyzers now let you know blessed lobotomy exists
- - image: A more festive supermatter for the holidays
OrionTheFox:
- qol: added an examine note to lighters showing their fuel
- ReturnToZender:
- - rscdel: Removes the Lanca and Sol LMG completely from cargo orders, leaves the
- Sakhno to the mosin order
- - rscdel: Re-removes the ion carbine from imports (it's in the goodies tab)
- - rscdel: Removes extra ammunition types for no longer used weapons from import
- order
- - rscadd: Removed company imports added to goodies and security orders
- - balance: adjusts prices on some company imports to not be essentially free, such
- as medical supplies and armor
SmArtKar:
- code_imp: Projectile impacts no longer fetch mobs' armor values thrice
- code_imp: Converted pills and patches into interact_with_atom
- bugfix: Fixed a non-player facing runtime in portable atmos machinery code.
- bugfix: Ensures that if your brain is removed you die
- bugfix: Fixed a (non-player facing) runtime in organ manipulation surgery
- StrangeWeirdKitten:
- - rscadd: Species name shows up in bold on the health analyzer.
- - rscdel: True species name will no longer show up when examining someone.
grungussuss:
- rscdel: The northstar arcship has been removed. :(
- nevimer:
- - refactor: public logging uses regex for cases of mechanics now.
- xPokee:
- - bugfix: fixed reskinning medical items so that you can now back out of reskinning
- them
- - image: added a korve sprite for the combitool
2024-11-27:
Boviro:
- qol: Atmos MODsuits can now hold extinguishers on their suit slot
- ChromeFoxxity:
- - rscadd: Gives the chef All-American Diner uniforms & alt title.
- Erol509:
- - rscadd: Added white sec beret to their clothing vendor.
Ghommie:
- bugfix: FIsh flops again.
- LT3:
- - rscadd: Light and dark medical jackets now available in the MediDrobe
- - rscadd: Dark medical jacket no longer donator ckey locked
- - qol: Light medical jacket can hold medical gear in the suit slot, same as medical
- winter jacket
- - bugfix: Freerunners are immune to flip and spin sickness
Melbert:
- balance: Morphine's sedative power has been halved. It now takes ~10 units to
guarantee sleep, up from ~5.
- balance: Morphine now causes mild disgust.
- balance: Morphine is now twice as addictive, causing addiction if you down over
~30 units without pause.
- OrbisAnima:
- - balance: '''Forged'' Bokken, the wooden sword that can be made on the workbench
- with no anvil or fuel, its now flammable, doesnt affect mobs, and does entirely
- stamina damage. It has 40 AP, in one hand it does 17 damage and has a block
- chance of 20, while wielded does 25.5 damage and has a 40 block chance. It no
- longer blocks proyectiles, it behaves like any other sword in the game albeit
- with a high block chance.'
SmArtKar:
- sound: Reduced volume of fire sounds
Time-Green:
@@ -1475,16 +984,6 @@
Absolucy:
- bugfix: ACTUALLY allow dot radio prefixes to also work with the tgui-say radio
prefix display.
- Bangle:
- - rscadd: Added new mechanics or gameplay changes - added Shaytan SMG conversion
- kit to Cargo. Added the BNGL Collared Vest to MultiSec - it has identical stats
- and I don't wanna lock it behind a donowall.
- - rscadd: Added more things - added Shaytan SMG conversion kit
- - image: added/modified/removed some icons or images - changed a bunch of the sprites,
- including my own Collared Vest
- - spellcheck: fixed a few typos - changed descriptions and renamed my Collared Vest.
- I think it's the BNGL Collared Vest now.
- - code_imp: changed some code - see above.
Ben10Omintrix:
- bugfix: repairbots no longer get flashed by their own welder
- bugfix: repairbots no longer break glass tables they step on
@@ -1492,10 +991,6 @@
- bugfix: fixes some runtimes when emagged repairbots try to deconstruct things
- bugfix: fixes sentient repairbots not being able to see or remove their material
counts
- Cerami:
- - rscadd: 'Adds a new negative quirk: permanent limp'
- ChromeFoxxity:
- - rscadd: Adds all Prisoner Uniforms to Loadout.
Melbert:
- bugfix: Frozen slimes can't latch on to you (but they can still attack you technically)
- bugfix: Maybe fixes some organ manipulation bugs
@@ -1504,8 +999,6 @@
Mothblocks:
- qol: IV drips now create a beam from their spout to your body, and will visually
pull you closer.
- PhazeJump:
- - rscadd: Adds the CentCom Synth Fox Plushie
SmArtKar:
- bugfix: Fixed colossus committing suicide on a regular basis
SyncIt21:
@@ -1515,26 +1008,11 @@
in hand
ValuedEmployee:
- rscadd: New purr and meow emotes for players with felinid tongues
- okithedoki:
- - rscadd: Akula now have a proper description and lore.
- projectkepler-ru:
- - bugfix: shotgun not access locked
- - spellcheck: Kayian M1911 updated description
- xPokee:
- - qol: all clothing can now be renamed with pens
2024-11-29:
- CydiaButt13:
- - rscadd: REAGENT_SYNTHETIC and REAGENT_ORGANIC to all horny chems, allowing synthetic
- carbons to use them
Ghommie:
- bugfix: Player-controlled lobstrosities, space dragons, space carps and penguins
can fish again.
- bugfix: Bombing someone during organ manipulation no longer summons new organs.
- LT3:
- - bugfix: The select species menu is back
- Majkl-J:
- - admin: New storyteller admin panel
- - admin: More logging to the storyteller panel actions and to it spawning things
Runi-c:
- rscadd: digitigrade lizards can wear certain shoes and suits
- image: added digitigrade shoes & oversuit templates
@@ -1580,33 +1058,6 @@
paganiy:
- rscadd: 'Add a new item to the chef traitor''s uplink: Molt''Obeso sauce. A sauce
that makes people want to eat too much.'
- shayoki:
- - map: Box Station's Brig layout has been revamped to support improvements for the
- department's Interrogation Room, Education Chamber, Holding Cells, Evidence
- Storage, Lawyer's Office, Detective's Office. The halls leading to the Brig
- has also been slightly expanded to accommodate for the repositioning of the
- Lawyer and Detective's Offices.
- - map: Box Station's Dorms has been expanded.
- - map: Box Station's Fore Starboard Maintenance has been improved to compensate
- for Dorm's expansion.
- - map: Box Station's Cargo now has a Warehouse. And Bitrunning has an exit to Aft
- Port Maintenance.
- - map: Box Station's mailing disposals properly work for the Lawyer and Detective
- office.
- - map: Box Station's MULE delivery drop-off is now at Medbay's Storage. The old
- spot was replaced with a west exit.
- - map: Box Station's Medbay now has a Synth Chute system at the Morgue.
- - map: Box Station's Science now has a Synth Retrieval system at Robotics.
- - map: Box Station's pool has been replaced with a sauna room at Dorms.
- - map: Box Station's Bridge has had their consoles re-ordered.
- - map: Box Station's EVA has been divided into two sections.
- - map: Box Station's Kitchen now has a table under its food processor. You are welcome
- waterpig.
- - map: Box Station's Departures has had its directional glass windows removed and
- replaced with hedges.
- - map: Box Station's fax machine inside of the Unisex restrooms in Service has been
- removed.
- - bugfix: Places a missing cable leading to the drone bay on Box Station
2024-11-30:
Absolucy:
- bugfix: Light Step now properly prevents your hands and clothes from getting covered
@@ -1625,12 +1076,6 @@
shanking the goldfish and guppy in prefilled aquariums with less than 5 fishes.
- qol: Added screentips to aquariums.
- rscadd: Icemoon lavaloops (now named plasmaloops) fish now look different.
- Majkl-J:
- - bugfix: fixed rations permanently setting your income to 0.5 instead of decreasing
- the modifier
- - bugfix: fixed life savings quirk not doing anything
- - code_imp: Improved the way paycheck bound quirks handle their code, making it
- run faster
Melbert:
- bugfix: You should be afflicted by the "Curse of Mundanity" far, far less
- bugfix: Fixed play local sound for admins
@@ -1640,7 +1085,3 @@
- bugfix: Fixed Nebula's robotics fabricators being obstructed roundstart
- bugfix: Fixed damage overlays hiding themselves or flickering when you get wounded.
- bugfix: Fixed projectile parrying
- fludd12:
- - balance: Cigarettes only have a heat of 410K. Joints will no longer boil out their
- own THC or turn space drugs to fentanyl.
- - bugfix: Grinding dried cannabis now makes hash as originally intended.
diff --git a/html/changelogs/archive/2024-12.yml b/html/changelogs/archive/2024-12.yml
index e1e47b8778e..1d9a421178b 100644
--- a/html/changelogs/archive/2024-12.yml
+++ b/html/changelogs/archive/2024-12.yml
@@ -1,17 +1,7 @@
2024-12-01:
- Arturlang:
- - balance: Can't kinetic crusher mark space dragons anymore
- BurgerBB:
- - bugfix: Moves Lizard Full Stub horns to beard because of overlay issues.
- Jinshee:
- - rscadd: Added new snout "Mandibles (Top)"
KingkumaArt:
- bugfix: Etherials no longer lose overcharge really slowly.
- bugfix: Etherial Wine/Telepole no longer overcharges etherials with one sip.
- LT3:
- - balance: Minor reduction to the strength of scrubber overflows
- Odairu:
- - bugfix: map vote respects current pop
OrionTheFox:
- image: resprited the (Analog) Wall Clock
SmArtKar:
@@ -19,8 +9,6 @@
- bugfix: Fixed plasmamen envirosuits being unrepairable
SmArtKar, Kapu:
- bugfix: Atmospheric tanks no longer fetch icons every tick
- TealSeer:
- - bugfix: Fixed a few disposal pipes on boxstation.
distributivgesetz:
- bugfix: The labor shuttle can no longer be cheesed by piggybacking a prisoner
who has completed their sentence.
@@ -29,14 +17,6 @@
"heavy"
- bugfix: Printed Moth X-Ray eyes are now correctly named, instead of being just
"robotic eyes"
- shellspeed1:
- - rscadd: The Persistence land crawler has been deployed to local mineral rich areas.
- sippykot:
- - balance: ration tickets capacity doubled
- - rscadd: added blood bag and glucose as options to the regular ration ticket
- - rscadd: added blood tea and soda + lemonade as drink option for luxury ration
- ticket
- - rscadd: added chewing gum as option for the luxury ration ticket
timothymtorres:
- rscadd: The revenant defile spell now affects showers by removing all water recyclers
and reagents that gets replaced with blood.
@@ -60,30 +40,14 @@
- code_imp: Refactored some expose_obj reagent code to support method types.
- code_imp: Improved mood typecasting for owner to allow checking of mob biotypes.
2024-12-02:
- Adrian16199:
- - rscadd: 'Added outfits into loadouts, those include: A pirate outfit, Bunny outfit,
- samurai outfit, wheely-heelies and replica of centcom turtleneck.'
- Arturlang:
- - balance: Auspex can now teleport through walls at level 6
- - bugfix: Auspex no longer tells you incorrrectly that it sleeps victims.
- - bugfix: Hemophage healing no longer tries to heal non-organic bodyparts
Ghommie:
- balance: brought fishing difficulty of all fishing spots a bit closer to their
original value following a small oopsie that made them unexpectingly easier
for more than two months.
- bugfix: Fixed fishing lures.
- IgiariValkyr:
- - bugfix: Small changes to the Interlink Office again based on community suggestions
- Odairu:
- - bugfix: Borgs no longer sync to AIs off station z when joining
- - balance: Borgs now sync to the AI with the least borgs
- OrbisAnima:
- - balance: Made the shotgun PKA two handed.
OrionTheFox:
- bugfix: fixed the "tactical combat/engineering uniform" allowing toggling with
no alt sprite
- RimiNosha:
- - qol: PAIs can now roam freely again.
SmArtKar:
- bugfix: Fixed lunar parade soundloop
- bugfix: You cannot have more than one MODtether (excluding manual connections)
@@ -92,13 +56,6 @@
- bugfix: You can no longer stick a butter on a stick on a stick
- qol: Mining drills are now active by default
- bugfix: Fixes mining drill displaying drilling messages while inactive
- StrangeWeirdKitten:
- - rscadd: Added the latex catsuit to the loadout
- - rscdel: Removes marked one from spawning on lavaland.
- TealSeer:
- - bugfix: fixes atmos goggles not showing the temperature of turfs.
- - map: fixes some disposal pipes on Biodome.
- - map: fixes mislabeled airlocks in Metastation arrivals.
githubuser4141:
- bugfix: fixes splinter cell pistols causing mechs to suddenly have all their flags
deleted
@@ -107,13 +64,9 @@
and vents there now look correctly (also fixed a rare visual bug)
- bugfix: it is now harder to bypass indestructible windows and grilles (those are
placed there for a reason, you know!)
- nikothedude:
- - rscadd: Dauntless now has exploitables
norsvenska:
- spellcheck: You are no longer faced with a typo after either not writing on paper,
or attempting to stamp a paper that's been stamped too many times.
- xPokee:
- - code_imp: moved a bunch of modular quirk files to the same folder
2024-12-03:
Absolucy:
- bugfix: Made the broadcast camera's sprite more consistent, it hopefully shouldn't
@@ -121,28 +74,12 @@
- bugfix: Abductor doohickeys (i.e abductor device circuit boards, mental interface
device, silencer, science tool, and omnitool) now properly unlock alien tech
via the experimentor.
- Arturlang:
- - balance: Space carp now have 50 health, up from 25
- - balance: Dragon's space carp now have 100 health, up from 50
- - balance: Mega carp now get extra 15-40 health
- - bugfix: Borer stun should no longer randomly fail to work
- - bugfix: Borer say no longer badly sanitizes your messages causing issues with
- what you say.
- - bugfix: Borer action buttons shouldn't stay "active".
- - bugfix: Borer Infest will no longer cooldown if you fail to enter a host.
EnterTheJake:
- balance: Wraith Module recloaking timer bumped from 5 to 20 seconds.
- balance: The Wraith Module's cloak now dissipates on ranged attacks and any type
of bump.
- balance: Wraith Module can no longer be installed In suits with the armor booster
module .
- LT3:
- - bugfix: Blessed lobotomy shows up on the operating computer
- Majkl-J:
- - code_imp: Frees a bit of memory by killing a shitty skyrat list
- Shadow-Quill:
- - bugfix: Entombed modsuits no longer cause stacking toxin loss if the entombed
- is dead.
SmArtKar:
- bugfix: Fixed Hilbert's rigged analyzer not being able to scan the hotel orb
- bugfix: Fixed all parried projectiles only going up or down
@@ -163,16 +100,10 @@
thegrb93:
- bugfix: Borg lights not turning off when flashed or empd
- bugfix: Air alarms stuck in warning state when area alarms are cleared
- xPokee:
- - bugfix: fixed hyper and super cells not being in mechfabs like the rest of the
- cells
2024-12-04:
Absolucy:
- bugfix: Fixed a runtime error related to the balloon alert from folding a paper
plane.
- AvianAviator & A.C.M.O:
- - rscadd: Added a music synthesizer action to Ethereal and Synthetic species. Ported
- from Novastation
Ghommie:
- bugfix: Aquarium safe mode is now safe.
- bugfix: Fish are no longer still hungry after being fed.
@@ -203,116 +134,39 @@
Ben10Omintrix:
- bugfix: repairbots now gain their destructive abilities when hacked by an AI
- bugfix: repairbot crafting recipes have been updated
- Boviro:
- - rscadd: reflavors Caligram gear to Blacktide
- - rscadd: adds alternate color sprites to the caligram gear
Majkl-J:
- bugfix: Ruins will now correctly spawn their tied ruins in
- bugfix: The map_logging test now runs proper
- code_imp: The stacked_lights test now screams with area names too.
- Odairu:
- - bugfix: fixes mapvote
SmArtKar:
- qol: Shifted the escape menu stat panel down a bit
- nikothedude:
- - bugfix: Records on examine now works properly
- - rscadd: Ghost roles now have exploitables
2024-12-06:
- Arturlang:
- - rscdel: Dragon no longer gets deleted if you don't do rifts, instead you are given
- dragon depression, which slows you down heavily.
- - balance: Dragon depression slowdown is now only 2.5, where it used to be 5.
Autisem:
- refactor: Nanotrasen has introducted new upgrades into the aging station shield
statalites, they require a but longer to toggle on however
- LT3:
- - bugfix: Tram spoilers correctly provide welder or multitool hints depending on
- their damage
- - bugfix: Malfunctioning tram controller flashes orange and can be preemptively
- fixed before it crashes
- LT3, tgstation:
- - rscadd: 'NebulaStation: a nice, new station map'
OrionTheFox:
- bugfix: fixed the Icebox Phonebooth air alarm being on the outside, thus triggering
because the planet is, indeed, cold. It is now inside and all-access so that
callers can turn it off when they decide the phone's more important than their
health and safety.
- ReturnToZender:
- - rscadd: Flavor text in the character creator is now bigger, and has a scroll wheel.
- RimiNosha:
- - bugfix: Cortial borers can be surgically removed again.
SmArtKar:
- bugfix: Fixed atrocinator not yeeting you up
- bugfix: Fixed a qdel loop in hypnosis brain trauma
imedial:
- bugfix: Map vote now cares about current player count
- sippykot:
- - rscadd: you can buy a civil defense symptom support kit from company imports
2024-12-07:
Ben10Omintrix:
- qol: u can now directly feed animals from ur hands, like raptors or cats, by clicking
on them with their preferred food.
- balance: u can now heal ur raptors mid or post battles by hand feeding them ores
- DATA-xPUNGED:
- - bugfix: ACTUALLY fixes server hop fade in
- EnterTheJake:
- - balance: Sundered Blades now require 1 Titanium or Silver bar to craft and their
- capacity has been reduced to 4.
- - balance: Realignment pulls you out of stuns a bit faster and grants baton resist
- while active.
- - balance: Blade Heretic dual wielding now let's you infuse Your Dark Blades with
- a weaker mansus grasp and grants an increase in demolition modifier.
- - bugfix: Malestrom of Silver grants the ring of protective blades once again.
- - balance: Mawed Crucible requires 3 organs to brew one potion, passively refills
- overtime and can be used to refill the Eldritch Flask
- - balance: Brew of Crucible soul effect bumped to 40 seconds and can be ended early.
- - balance: Brew Of Dusk and Dawn effect bumped to 3 minutes.
- - balance: Brew of the wounded soldier now offers a very minor passive heal and
- fully heals your wounds and limbs upon expiring.
- - balance: Cursed Curio shield now recharges faster.
- - balance: Lionhunter's rifle has been reworked, it now fits on the eldritch robes
- vest slots, it's cheaper to craft it and its ammunition and works as an initiation
- tool.
FlufflesTheDog:
- spellcheck: paywall firing pins no longer set the gun description to the pin's
description on removal
- Ghommie:
- - bugfix: Fixed gills not managing to breathe water vapor through internals.
- - bugfix: Fixed some inconsistencies with examining fishing spots with the appropriate
- level and fishing rod.
- GremlinSeeker:
- - map: New Icebox Ruin "Syndicate Biodome" added.
- Hatterhat:
- - bugfix: Portable SMESes should no longer turn invisible when unscrewed.
- - bugfix: Portable gravity generators no longer turn into a floating pair of status
- lights when screwdrivered open.
LT3:
- bugfix: Tram spoilers correctly provide welder or multitool hints depending on
their damage
- bugfix: Malfunctioning tram controller flashes orange and can be preemptively
fixed before it crashes
- Melbert:
- - balance: Cyborgs are now slowed down when hit with any melee weapons, rather than
- ONLY when they are hit by THROWN melee weapons. The stronger the weapon, the
- stronger the slowdown. Thrown weapons are still more effective at slowing than
- just hitting them directly, however.
- - spellcheck: Medical Kiosks no longer recommends improper treatments for hallucinations.
- Now recommends "anti-psychotics" and provides examples.
- - spellcheck: Health analyzers recommends example "anti-psychotics" for treating
- hallucinations, rather than forcing you to figure it out.
- - bugfix: Health analyzers don't report someone is hallucinating due to low sanity,
- and thus won't suggest patients are "double hallucinating".
- - bugfix: Fixed digitigrade pants sprite not updating in accordance to some leg
- updates
- Pickle-Coding:
- - bugfix: Fixes canisters and portable pumps from not considering decimals when
- transferring input to setting release pressure.
- RimiNosha:
- - qol: Synths can now join honorbound crusades.
- - bugfix: Loadout items can be edited again.
- - rscadd: Loadout presets! Make multiple loadouts, be able to switch between them
- in a couple of clicks!
- - qol: Replaced the defunct job checkbox on the loadout page with a working dropdown.
SmArtKar:
- qol: AI laws and tape recorders no longer cause radio blips
- balance: Removed organ "refreshing" from legion cores, magic wands and regenerative
@@ -330,8 +184,6 @@
SmArtKar, Kapu:
- code_imp: Implemented caching for icon sizes which should significantly improve
mob health performance due to HUDs constantly fetching icons
- Soupfgc:
- - bugfix: Springlock MOD module properly interacts with Water Vapor
SyncIt21:
- code_imp: improved code for machinery
- code_imp: slightly improved code for borg inducer
@@ -347,36 +199,11 @@
- balance: Anomalies give 20 extra seconds to defuse! Or 20 extra seconds for them
to reach havoc...
- balance: Material anomalies only teleport 1-4 times before detonating
- Xackii:
- - rscadd: Manipulator now shows what objects he is dragging.
- - rscadd: Manipulator now can take more then just items.
- - rscadd: 'Manipulator now have 3 modes to choice: drop/use/throw.'
- - rscadd: Manipulator now have priorities.
- - rscadd: Manipulator now can be emaged.
- Y0SH1M4S73R:
- - bugfix: Syndicate Sleeper Agents can once again forge custom objectives
carlarctg:
- bugfix: Recovered crew no longer show up on roundend report
- rscadd: Surgery trays now have a small chance to become medical toolboxes. Autopsy
trays can become coroner toolboxes.
- rscadd: Added a 1 in 1.000.000 chance for a toolbox to have four latches.
- grungussuss:
- - sound: added new scanning sound
- - sound: along with the shared emote cooldown, specific emote audio cooldown has
- returned.
- - code_imp: organized playsound code a bit
- hyperjll:
- - qol: The GLA Brand Mail Counterfeit Device's description has been updated by a
- native english speaker and has been made more descriptive.
- junkgle01:
- - bugfix: fixed up Metastation's cargo delivery office.
- - rscadd: the Honkmother has decided to bless Her children with a new form!
- - image: resprited the optional clown mask styles
- kittysmooch:
- - bugfix: fixed east facing female human heads having an extra neck pixel
- larentoun:
- - spellcheck: Correct message is shown when YOU get devoured by an alien
- - spellcheck: Fixed a few typos on some simple attack verbs being continuous
mc-oofert:
- balance: A mutation in gatfruit seeds has led to a drastic alteration in the observable
traits of the plant, which now fires hardened peas that deal less damage, but
@@ -391,16 +218,6 @@
may no longer craft anchored objects (broken check), and sends its crafted stuff
at once
- balance: changeling last resort works as a monkey or animal
- ninjanomnom:
- - bugfix: Byond membership lookup should now warn you when it fails due to a connection
- failure.
- r3dj4ck0424:
- - rscadd: Nanotrasen High Command is pleased to announce that retool kits, for giving
- your protokinetic crushers a fancy new look, are now available at the mining
- vendor! The company reminds staff that rumors of a similarly-functioning lavaland
- trinket are to be ignored.
- san7890:
- - admin: Logging of Bombanana Peel explosions should be far better now.
timothymtorres:
- bugfix: Fix drink labels for alcohol bottles
- rscadd: Add medical human organ crate emergency medical holodeck simulation
@@ -413,50 +230,21 @@
zxaber:
- bugfix: Mechs with crowbar-like tools can now hold adjacent firelocks open correctly.
2024-12-08:
- Arturlang:
- - balance: Bloodsuckers now only need 40% blood to level up.
- LT3:
- - bugfix: Map vote results should no longer randomly decide to ignore what choice
- won the vote
- Profakos:
- - bugfix: Benches no longer produce an Error overlay when buckled
- RimiNosha:
- - bugfix: Using the clear loadout button should no longer brick your loadout data.
- Woops.
- StrangeWeirdKitten:
- - balance: Increases the L6 Saw damage by around 30 percent
SyncIt21:
- refactor: improved attack chain code for rapid pipe dispenser
- code_imp: organized lists & global vars for rapid pipe dispenser into their own
respective files & improved a bunch of code
- VickiMorris:
- - rscadd: Adds Yinbi Derringer. Sakhno production 2-shot pistol chambered in .310
- Strilka. Available at cargo for 450 credits.
- - rscadd: Re-adds .310 Strilka Rubber ammo boxes to the company imports tab, available
- for 50 credits.
- - image: Adds sprite for Yinbi Derringer.
2024-12-09:
FlufflesTheDog:
- bugfix: Dimensional shifter relics work more reliably.
Ghommie:
- bugfix: You should be once again able to fish moonfish and other fish used in
lizard cuisine from tiziran water turfs.
- Majkl-J:
- - balance: MCR recharging brought back
- - balance: MCR techwebs now cost less, with basic MCR research spread across standard
- techs
Melbert:
- rscdel: Some crowbars on Wawa, Nebula, and Birdboat are significantly less heavy
SmArtKar:
- image: Added unique sprites for Endotherm wintercoats
- image: Wintercoat hoods now show a bit of your hair!
- StrangeWeirdKitten:
- - balance: Buffs cyborg health to 135
- YakumoChen:
- - bugfix: fixed the cargo categories again
- - balance: Berserker armour's upgrading capability greatly nerfed.
- - balance: Marked One armour is scaled back from its upgraded values to be much
- closer to its base berserker armour.
grungussuss:
- rscadd: pointing now has interactions with the amount of limbs/organs you have
- balance: you can now point while restrained
@@ -473,8 +261,6 @@
- rscadd: Added the mail sorting unit - working with mail has never been simpler!
- rscadd: Added two flatpack pre-defined subtypes for the flatpacker and the mail
sorter.
- shellspeed1:
- - bugfix: Various persistence bug fixes
timothymtorres:
- code_imp: Add better logging for ruins
tontyGH:
@@ -483,28 +269,8 @@
arguments have now been fixed
- bugfix: This means that turning into a Domain gondola shouldn't RR people anymore
2024-12-10:
- Cerami:
- - qol: HMS / Chronic Illness no longer has the very low chance of going all the
- way from stage 1 to stage 5 without any symptoms.
- Impish_Delights, Bangle:
- - bugfix: Romulus Carbine, and Romulus Battle-Rifle crafts no longer give free loaded
- magazines.
- - balance: All shotgun ammo boxes now hold 7 rounds. Honkshot is now 25cr from cargo,
- down from 100cr.
- - code_imp: Romulus Carbine, Romulus Battle-Rifle, and Romulus Shaytan kit now require
- gun to be empty, and locked open to craft.
- - spellcheck: Fixes description for Rengo rifle, Renoster shotgun, Stardust/AAR
- cartridge box, and Romulus Carbine and Battle-Rifle conversion kits.
- - spellcheck: Homogonizes description for Stardust/AAR ammo, and Beanbag slug ammo
- as "Less-Lethal"
- - spellcheck: Changes WT-550 rubber mag to be "Less-Lethal" instead of "Less-Than_Lethal"
- - spellcheck: Updates Shaytan SMG description, and conversion kit name and description
- in the security lathe.
- - spellcheck: Updates all shotgun ammo boxes to be accurate.
MelokGleb:
- qol: changes Chronic Illness quirk name, description and icon to match it's dangerousness
- Odairu:
- - rscadd: adds a new mod module
2024-12-11:
Ghommie:
- bugfix: Fixed feeding fish only increasing their size but not the weight.
@@ -514,12 +280,8 @@
LT3:
- bugfix: Map vote will no longer sometimes ignore the winning choice and pick a
cached, ineligible map
- Majkl-J:
- - bugfix: Captain and HoS locker now have the right amount of sabres and guns respectively
SmArtKar:
- bugfix: Removed rogue sand decals from Island Brawl domain walls
- TealSeer:
- - qol: '*huffs has been changed to *huff.'
WebcomicArtist:
- bugfix: Durand shield now uses proper amount of power upon taking damage
- bugfix: Mech plasma generator now produces the correct amount of charge, previously
@@ -534,20 +296,13 @@
- bugfix: fixed an error with slipping
- bugfix: fixed items not falling from a lattice after being deconstructed/destroyed
2024-12-12:
- IgiariValkyr:
- - rscadd: Adds different sprites to the CentCom uniforms, and clothing.
- - rscadd: Adds a CentCom Carapace, and CentCom Gloves that aren't Naval.
Kocma-san:
- admin: moves all admin requests in admin stuff section. Now they have type Prayers
- LT3:
- - map: Moon Station now has disposal bins
SmArtKar:
- bugfix: Made wendigo's bullet hell lag less, at cost of its visuals.
- bugfix: Toolboxes can now be placed onto tables/into crates
- bugfix: Fixed toolboxes automatically using the first item in them
2024-12-13:
- LT3:
- - bugfix: Fixed unconstructed solar panels on Nebulastation port aft solars
Majkl-J:
- bugfix: Fauna can no longer push necropolis gates
Melbert:
@@ -620,8 +375,6 @@
- bugfix: Fixed the displayed stats when examining fishing rods twice.
LT3:
- bugfix: Fixed unconstructed solar panels on Nebulastation port aft solars
- MajManatee:
- - bugfix: Research Skillcape Sprite Fix
Melbert:
- rscadd: Adds Syndol to the chemical kit, an addictive hallucinogen that applies
bonus effects when security officers, assistants, or clowns are exposed.
@@ -636,24 +389,12 @@
Paxilmaniac:
- bugfix: Fixes resin sprayers not working if the target is more than one tile away
from you
- Shroopy:
- - spellcheck: Added a missing period to the PDA typing message.
- - bugfix: Added a maint access requirement to the animal pen on kilo, so the animals
- won't wander out.
- - bugfix: Fixed the misconfigured package return belt in cargo on Kilo station.
necromanceranne:
- code_imp: Various mob attack procs are treated as unarmed attacks as a baseline
assumption, rather than melee attacks.
timothymtorres:
- code_imp: Improve looping sounds to allow nested and non-associative lists
2024-12-16:
- Adrian16199:
- - balance: Lone infiltrator has been given back their micro-bomb as the syndicate
- intended. Budget cuts happend but we good now.
- Arturlang:
- - bugfix: Sol quirk should properly use the when appropiate
- - balance: Nosferatu when examined disgust you doubly as much.
- - rscadd: Changes nosferatu examine to be more clear on what they are
JoshAdamPowell:
- map: In the new year's budget the syndicate have decided that chemists need beakers
to do their job properly.
@@ -661,10 +402,6 @@
- qol: Treatment message now better reflects what you're doing ("suturing", "applying",
etc)
- bugfix: Gauze is now stickier (and will actually apply to bodyparts)
- Odairu:
- - bugfix: AIs can no long control a host body and themself at the same time
- - bugfix: if the original wearer becomes the AI and cryo's, the original AI will
- no longer be stuck in limbo
OrionTheFox:
- bugfix: fixed the outdated N-Spect description falsely claiming it can scan people.
It can't. Nanotrasen denies all claims it ever broke sapient right to privacy
@@ -676,62 +413,28 @@
- bugfix: Turbine converts energy to power correctly & shows correct reading with
multitool
- refactor: turbine code has been overall improved. report bugs on github
- TealSeer:
- - bugfix: fixed SAD duplicating your round start implants.
- shayoki:
- - map: Box Station's apartment airlock bolt buttons now work for their respective
- airlocks.
- - map: Box Station's disposal pipe in Security Maintenance correctly connects with
- disposals.
- - map: Removed a soda vendor in Box Station's Security Maintenance.
- - map: Box Station's Atmospherics is given an additional reinforced wall to align
- itself properly with Maintenance next to it.
- shellspeed1:
- - bugfix: Persistence Fish based power is now 100% more Osha compliant
tontyGH:
- bugfix: Underlining your messages in loud mode shouldn't break anymore
2024-12-17:
- Arturlang:
- - bugfix: Primitive skill no longer makes you stam immune
- - balance: Mantis blades now do 20 damage, this is down from 25 force.
- - rscadd: changes the primitive skill status effect to work every 5 seconds, instead
- of 0.5 seconds for performance reasons.
- - bugfix: It is no longer possible to farm primitive skill using a plant bag on
- a wormfarm barrel.
- Majkl-J:
- - bugfix: ashie rituals now take only 1 from the stack
- - bugfix: Ashie area is no longer magically powered
Melbert:
- balance: Tasers are now more realistic
- rscdel: Electrodes are no longer in the hallucination projectile pool
OrionTheFox:
- image: resprited the Blood Cult Archives/Altar (the two summoning tables)
- RimiNosha:
- - bugfix: Fixed escape menu having overlapping entries.
- StrangeWeirdKitten:
- - balance: The research paper crafting recipe has been locked to the hermit.
SyncIt21:
- code_imp: improved code for RPED
- refactor: RPED attack chain has been refactored. Reports bugs on github
2024-12-18:
- Majkl-J:
- - bugfix: Chefs no longer show at the bottom of crew monitors
- - bugfix: Miniskirts no longer wipe off your breasts
SmArtKar:
- rscadd: Added new (purely visual) animations to sharp and pointy items.
- rscadd: Certain items, like knives and swords, now have a secondary stabbing attack.
- balance: Spears are now pointy and no longer act as oversized knives.
- balance: Structure damage is now affected by attacking item's AP.
- bugfix: You will now see the same attack verb in chat as everyone else.
- StrangeWeirdKitten:
- - rscdel: Ghost Cafe can no longer make opfors.
2024-12-19:
00-Steven:
- bugfix: Custom emotes done via the custom emote keybind default to both audible
and visible again.
- Arturlang:
- - rscadd: Lone Infiltrator syndicate suit now has all the normal nuclear modules
- plus their chameleon module
Darkened-Earth:
- bugfix: NanoTrasen has shown a xenobiology containment engineer for Delta class
stations a very important lesson between inlets and outlets
@@ -739,14 +442,6 @@
- qol: You can now pull singular trophies off kinetic crushers with RMB.
- qol: Kinetic crushers now have screentips informing people that they can remove
trophies via empty hand (RMB) or crowbar (LMB).
- LT3:
- - map: Nebulastation now has docks for the ERT shuttle and aux shuttles
- - balance: Xmas week has been extended to start at 18 December, get your jollymaxxing
- on
- Majkl-J:
- - bugfix: Fixed armycrawl chatspam when unable to crawl
- - bugfix: Fixed hidden borers unable to ventcrawl
- - spellcheck: Fixed double for long in well trained
Melbert:
- bugfix: Gibs get bulk cleaned if you clean the turf again
- refactor: Changed how things determine "I can be bulk cleaned if I clean the turf
@@ -769,12 +464,6 @@
- bugfix: /datum/gas_machine_connector will abstract_move() if their parent also
abstract_move()s, preventing a runtime
2024-12-20:
- Arturlang:
- - balance: Mesmerize no longer requires your victim to be facing the bloodsucker.
- LT3:
- - bugfix: Santa will now periodically visit the station
- Majkl-J:
- - bugfix: The ashie clothing vendor is no longer invisible and unpowered
Melbert:
- bugfix: Meshes should work better
- bugfix: Medical item usage is correctly blackbox logged
@@ -782,29 +471,12 @@
- bugfix: Poultice works on dead people
SmArtKar:
- bugfix: Fixed an airlock unlocking runtime
- StrangeWeirdKitten:
- - bugfix: Damage falloff across various projectiles should now subtract instead
- of add.
- xXPawnStarrXx:
- - bugfix: Made autodrobes dispense the right santahats.
2024-12-21:
- Arturlang:
- - bugfix: Bloodsuckers "should" no longer be forever bleeding
Deadgebert:
- balance: Synthflesh required for unhusking now between 60u and 100u depending
on purity.
- Doomtail:
- - rscadd: Adds three new variants of the hound borg sprite. Peacekeeper, service,
- and syndicate respectively.
- Majkl-J:
- - rscadd: Strong legs mutation, for leaping around
Melbert:
- bugfix: Lobby button sprites
- mcbalaam:
- - bugfix: The mail sorter no longer runtimes processing assistant mail
- - rscadd: Added the mail sorting unit - working with mail has never been simpler!
- - rscadd: Added two flatpack pre-defined subtypes for the flatpacker and the mail
- sorter.
2024-12-22:
Absolucy:
- rscadd: Added a notice for clients on BYOND 516 that 516 is still in beta, and
@@ -832,8 +504,6 @@
to appear on all admin faxes.
- bugfix: fix radio sound output when receiving a message
- sound: the sound of receiving your own messages over the radio is no longer played
- LT3:
- - bugfix: Mail sorter is now properly named in the CargoDrobe
Melbert:
- rscadd: Nitroglycerin now heals heart damage.
SmArtKar:
@@ -866,19 +536,11 @@
and not on a station area (turf)
mcbalaam:
- bugfix: The mail sorter no longer runtimes processing assistant mail
- nikothedude:
- - rscadd: Quadruped taurs can now wear saddles, which allow anyone to clickdrag
- themselves onto them to ride with free hands
- - rscadd: Saddlebags for quadruped taurs, which are one-handed saddles that allow
- anyone to access their storage by alt clicking the wearer
timothymtorres:
- spellcheck: Update teleporter machine desc to be accurate
- spellcheck: Fix holodeck emag message claiming to increase power
- rscadd: Add power efficiency when stasis bed stock parts are upgraded
2024-12-23:
- Arturlang:
- - rscadd: Dragons no longer permanently stuck unable to amke a portal if they loose
- one, now regaining the ability in 5 minutes
AyIong:
- bugfix: Fixed scrollbar colors and background position in TGUI on Byond 516
Ben10Omintrix:
@@ -889,9 +551,6 @@
- bugfix: fixes the fishing pet command not working
DATA-xPUNGED:
- map: removed the sec record computer from the Icemoon Listening Post.
- LT3:
- - bugfix: All the letters from Santa that have been horded at the postal service
- have been recovered and delivered
Melbert:
- balance: Carpenter hammer force 20 -> 17
- balance: Carpenter hammer throwforce 20 -> 14
@@ -908,21 +567,13 @@
Rhials:
- rscadd: Nukie uplinks now offer an OG-style nuke pinpointer in their Badassery
shop section.
- StrangeWeirdKitten:
- - config: You can set a default storyteller to bypass voting.
TealSeer:
- qol: The time until the server reboots is now visible in the status tab.
- admin: Added a cancel reboot verb to the server tab.
- aKromatopzia:
- - rscadd: Anesthetic and nitrogen tanks appear in relevant departmental lathes
grungussuss:
- code_imp: removed an extra proc override in digitigrade legs preference logic
code
2024-12-24:
- LT3:
- - map: Multisec vendors are consistently placed in various departmental guard offices
- Screampuff:
- - rscadd: Added Edgerunner hairstyle for us punks
SmArtKar:
- admin: Admins can now return the shuttle back to the station without ending the
round
@@ -930,9 +581,6 @@
- bugfix: Fixed showers not passively washing objects
SyncIt21:
- bugfix: rolling tables can be rolled up again
- TealSeer:
- - refactor: ripped out all the skyrat jukebox code in favor of tg's.
- - map: fixed kilostation's telecomms air alarm constantly being angry.
carlarctg:
- rscadd: Kissing while you have the ink infusion ability off cooldown gives you
an ink kiss
@@ -963,8 +611,6 @@
SyncIt21:
- bugfix: Big manipulator respects storage limits of storages when dropping stuff
into them
- TealSeer:
- - qol: gas miner delivery pods now delete themselves after landing.
araeotu:
- rscadd: slime processor now have usb port and circuit component
- code_imp: the process code of processor now separate from interact
@@ -975,15 +621,7 @@
- bugfix: computer laptops will not block projectiles
lovegreenstuff:
- rscadd: catalyst function for plumbing reaction chambers
- rintherat:
- - bugfix: Fixes comm consoles being able to change alert level during Delta+
- - rscadd: Adds a new plushie to the badass section in uplink.
- shayoki:
- - map: The Blueshield Quarters on Biodome is no longer free to access by anyone.
- It has also been expanded.
2024-12-26:
- LT3:
- - qol: Entertainment and newscaster broadcasts can be toggled in chat tabs
LordHookie:
- bugfix: The Syndicate Medical Space Suit is no longer labelled a 'green space
suit' despite being a noticeably non-green color.
@@ -994,8 +632,6 @@
active hand slot overlays
SyncIt21:
- bugfix: skull cookies are visible again
- TealSeer:
- - code_imp: cleaned up sauna oven item interaction code.
Wallem:
- rscadd: Rare collectors radios have been reported around Nanotrasen stations!
grungussuss:
@@ -1042,9 +678,6 @@
- balance: turbine now has higher max rpm & increased power output
- code_imp: further improved code for turbine
- code_imp: removes unused var from reagent code
- TealSeer:
- - map: Boxstation's bar jukebox is no longer access locked.
- - map: The kitchen cold room on Kilostation is actually cold now.
TheRealSpriteMan1337:
- spellcheck: Fixes some usages of its, clarifies wording on the syndie medbot,
changes span_warning to notice.
@@ -1058,15 +691,10 @@
Y0SH1M4S73R:
- bugfix: The "Move Up" and "Move Down" verbs properly respect multi-z connectivity
when operating a remote camera.
- cherdaq:
- - bugfix: replaced a redundant var with actual
- - map: tweaked SR/SH cargo shuttle
grungussuss:
- image: added hat masking for berets
- bugfix: fixed being unable to place rpeds on tables
- sound: added sounds for locking/unlocking closets
- intense-skies:
- - bugfix: Fixes a taur sprite issue
necromanceranne:
- balance: A new maint-kata has taken shape in the periphery of Spinward control.
Borrowing techniques from an ancient Martian martial artist, as well as an entire
@@ -1079,8 +707,6 @@
- balance: Breaking a chair against a target while attacking from behind or while
they're staggered will cause them to get knocked down. Chairs made of more sturdy
materials can even cause them to become vulnerable to shove stuns.
- shayoki:
- - map: Box Station's brig cells properly work for their respective cells.
timothymtorres:
- bugfix: Fix holoparasite using gas ability while not summoned
- bugfix: Fix kidnapping pod returning a player to unsafe location where air is
@@ -1091,12 +717,8 @@
2024-12-28:
00-Steven:
- bugfix: Lesser quiver actually has less slots as intended.
- IgiariValkyr:
- - bugfix: The updated arena for Demonic Frost Miner actually loads now
LT3:
- bugfix: Premade/vending machine flatpacks now display what board is inside
- Majkl-J:
- - image: Prettified the biodome leaves sprite
SmArtKar:
- bugfix: Fixed forcing open airlocks only working once and then never again
- balance: You can no longer check if budget insuls work via examine tags
@@ -1104,10 +726,6 @@
- bugfix: breaking out of a closet won't spam chat or shake like it's having a seizure
- code_imp: plumbing reaction chamber won't waste extra ticks for the pipeline when
sending out catalysts
- TealSeer:
- - bugfix: fixed the engineering plumbing constructor not appearing in protolathes.
- - map: fixed Kilostation engine room air alarm not giving readings from inside the
- chamber.
carlarctg:
- rscadd: Adds rift fishing to the game. Includes new wacky fish!
- rscadd: Drained and undrained influences can be fished in, the latter only by
@@ -1115,8 +733,6 @@
to other people, so don't be stupid!
- rscadd: influences cannot be bombed for fish.
- rscadd: Heretics can now infuse their fishing rod, and fish for knowledge.
- xXPawnStarrXx:
- - qol: System cleaner now sobers up synthetics.
2024-12-29:
00-Steven:
- spellcheck: Give alert 'examiante' > 'examine'.
@@ -1152,15 +768,10 @@
00-Steven:
- bugfix: Photocopying no longer removes the stamp overlays from the original paper,
and actually copies them to the copy.
- LT3:
- - map: NebulaStation aux ship dock now has a roof, leading to 99% less suffocation
- and freezing
Rhials:
- balance: When dominating a mech as a Malfunctioning AI, the core you shunted from
will disable your Doomsday Counterdown when destroyed. Make sure to protect
that core!
- TealSeer:
- - map: added a growing vat to Void Raptor's cytology pen.
grungussuss:
- rscadd: computers and airlocks are now leanable
- refactor: changed how density/collision of some objects is changed, report any
@@ -1168,19 +779,9 @@
mc-oofert:
- qol: you can adjust diagonal walls to be not diagonal walls with a wrench
2024-12-31:
- AXLFAN2000:
- - map: added Cytopro to Void Raptor's cytology.
- KazooBard:
- - qol: Selecting which spells to cast with hotkeys, and using them in general is
- faster.
Kylerace:
- bugfix: holodeck is slightly less likely to explode the server
SmArtKar:
- bugfix: Blood no longer gets colored with the item its attached to
- TealSeer:
- - bugfix: fixed mobs with anosmia still smelling pollution.
mc-oofert:
- rscadd: forensics spoofing kit for traitors/whoever with an uplink
- okithedoki:
- - bugfix: Fixed the Akula language description to be of consistent length with the
- rest of the languages, instead of the wordwall it was.
diff --git a/html/changelogs/archive/2025-01.yml b/html/changelogs/archive/2025-01.yml
index 36d0fc42f9b..6278e1a4be4 100644
--- a/html/changelogs/archive/2025-01.yml
+++ b/html/changelogs/archive/2025-01.yml
@@ -14,8 +14,6 @@
Arturlang:
- bugfix: The unique AI station trait will no longer be able to choose lawsets set
as default in the config.
- DimWhat (original sprites), ArrisFairburne (edited sprites):
- - rscadd: Added an alternate recolorable bunnysuit to the "suits" loadout screen.
LemonInTheDark:
- bugfix: Boulders will no longer randomly run free from smelting pipelines! We
have enslaved them once more.
@@ -28,32 +26,9 @@
- rscadd: You can wash your eyes when washing your face at a sink
- bugfix: You can color robotic limbs with left click (again)
- bugfix: Mice no longer can spawn in unsafe atmos from garbage spawners
- TealSeer:
- - map: Moonstation's bar jukebox is no longer access locked.
- Virryi:
- - image: Modified the NRI Flag icons.
- - code_imp: Renamed a bunch of NRI-related items.
- aKromatopzia:
- - image: smolraptors can curl up when resting; and miner lost its purple collar.
mc-oofert:
- bugfix: holodeck no longer explodes if the server lags while its loading a new
sim
- rintherat:
- - rscadd: Adds a new kweh emote
- shellspeed1:
- - bugfix: Anomalous power systems have had their anomalous properties corrected.
- - bugfix: Unfucked some minor disposals issues on the Icemoon version of persistence
- - bugfix: Potted plants now spawn on persistence like they should have previously.
- - bugfix: Scrubbers in persistence medical now work
- - qol: Redid persistence bitrunning so more than one prisoner can bitrun
- - qol: Moved exotic internals from persistence engineering to persistence medical,
- also added two plasmaman suits. (shit happens on icebox sometimes.)
- - qol: reworked persistence medical operating room to drain n2o if alarm is configured
- (druggy docs hate me everywhere)
- - qol: put persistence stethoscope outside medical in hall so more people notice
- it (previously in med)
- - qol: Persistence engineering APC is now wired outside so you can run wires willy
- nilly through the bay.
2025-01-02:
Ghommie:
- bugfix: Examining a trophy fish no longer shows the current day instead of when
@@ -66,8 +41,6 @@
SyncIt21:
- bugfix: dropping all the mobs' contents in some special admin cases won't gib
the player
- rintherat:
- - bugfix: fixes the cafeborg shakers
2025-01-03:
AyIong:
- admin: Ticket actions buttons in chat got a little bigger
@@ -75,8 +48,6 @@
Hatterhat:
- spellcheck: Removed an errant typo on the recharger's readout while recharging
the BR-38.
- LT3:
- - qol: Wearable HUDs can be toggled on and off
SmArtKar:
- spellcheck: Removed outdated examine line from spraycans
- refactor: Completely rewrote all item and projectile embedding code
@@ -102,8 +73,6 @@
- code_imp: Fixed up the return value of checkbox-input for tgui to behave consistently.
LT3:
- qol: Wearable HUDs can be toggled on and off
- ReturnToZender:
- - qol: Flowers no longer donator-only in the loadout
SmArtKar:
- bugfix: Fixed HUD implant message being reversed
SmArtKar, AnturK:
@@ -143,9 +112,6 @@
- qol: '"Destroy Blackbox" objective now tells you how to destroy something invulnerable
to conventional means of destruction.'
2025-01-06:
- Cepha:
- - rscadd: Cleavage marking
- - rscadd: Synth joints marking
carlarctg:
- image: Standarizes ammo band colors into defines, makes them brighter, and widens
battle rifle bands
@@ -158,9 +124,6 @@
- bugfix: fixed ambience sounds getting cut off mid play
- sound: addes fades for maintenance ambiences
- refactor: changed the way maintenance sounds are
- zeroisthebiggay:
- - rscadd: fringe hair gradient
- - image: fringe hair gradient
2025-01-07:
AyIong:
- qol: Sidebar has lost its bulging white lines. And top right buttons now flat
@@ -173,8 +136,6 @@
JohnFulpWillard:
- bugfix: The Curator's broadcast camera is now held up in the hand you're holding
it with.
- LT3:
- - map: Flipped some backwards elevator doors on Biodome
Melbert:
- rscadd: You can light matches on the heel of your boots - Just don't do it too
hard.
@@ -196,9 +157,6 @@
- sound: added sounds for buckling to shuttle seats and medical beds
jlsnow301:
- rscadd: TGUI icons are updated to latest FontAwesome version, v6.7.2.
- rintherat:
- - rscadd: Added prescription toolbox for making new prescription glasses, it can
- be bought from cargo
timothymtorres:
- code_imp: Add `SECONDS` defines to looping sounds time variables
warbluke:
@@ -223,17 +181,11 @@
Ben10Omintrix:
- bugfix: goliaths can now be tamed
- bugfix: fixes turtles rerolling strange seed chems
- Kajortoq:
- - rscadd: Added kepis to security outfitters
- Odairu:
- - balance: Heretics announce themselves when they are 1 off ascending
StrangeWeirdKitten:
- bugfix: Things that drop in random places are no longer statistically weighted
to drop in security.
SyncIt21:
- code_imp: improved ui data code for plumbing reaction chamber
- TealSeer:
- - map: fixes Biodome disposals issues.
Y0SH1M4S73R:
- bugfix: Replaced floor tiles on shuttles no longer get left behind when the shuttle
moves.
@@ -252,15 +204,10 @@
tontyGH:
- code_imp: AIs selecting holograms mid-round now select from the same list as prefs,
which should make things easier to keep consistent
- zeroisthebiggay:
- - rscadd: cyclops sclera marking
- - image: cyclops sclera marking
2025-01-09:
00-Steven:
- rscadd: Organ harvesting players is now more rewarding. Increased export value
of initial player organs.
- EvenInDeathIStillServe:
- - rscadd: Adds horseshoes to loadout
Exester509:
- balance: The tesla cannon now fires hitscan lightning bolts with buffed damage
to non-insulated targets.
@@ -271,9 +218,6 @@
ammunition and want to change magazine colors to be appropriate.
- qol: C-20r magazines and Stechkin APS magazines now have ammo band support.
- qol: Standardized some descriptions for AP, HP, and incendiary magazines.
- LT3:
- - map: Biodome SM waste pipe is properly connected to the vent
- - map: Biodome SM cabling is properly connected to the emitters
Melbert:
- qol: You can now look down ladders, both via the look down verb/hotkey and by
just looking with your eyes
@@ -297,44 +241,19 @@
- bugfix: The hand teleporter (and several other items) will now allow you to teleport
to and from valid locations and forbid you from teleporting to or from places
you can't teleport to or from, instead of the other way around.
- LT3:
- - map: Added missing cables outside Biodome grav gen
SmArtKar:
- rscadd: Spessmen now blink.
- rscadd: Added a new Fluoride Stare quirk, keep those eyeballs wet, lest they crack!
- image: Eyes now display their color on their organ sprite, instead of always being
displayed as blue.
- StrangeWeirdKitten:
- - balance: Slightly adjusts Moonstation's AI core to be more defendable for the
- AI.
- TealSeer:
- - bugfix: fixed Bubber-exclusive job icons not showing in observe menu.
high-speedspin-cycle:
- balance: Overdose thresholds now positively scale with high purity
- nevimer:
- - admin: Faxes now get sent to the database.
- shellspeed1:
- - bugfix: You can now escape the disposals belt on persistence.
- - bugfix: The Persistence Library APC now has power
- - bugfix: removed extra button left over from removing medical.
2025-01-11:
- BurgerBB:
- - bugfix: Fixes the RBMK creating too many radiation calls.
- - balance: The strength of the radiation received is also now based on the radius
- of the radiation. Higher radius radiation spikes equals stronger radiation penetrations.
- Caps the range of the RBMK's radiation from 20 to 10.
- Impish_Delights:
- - bugfix: Fixed all Security, HoP, CE, and Atmos Tech bunny tailcoats for digigrade
- leg users.
- - image: Fixed missing left-facing sprite for the black lawyer bunnysuit.
Y0SH1M4S73R:
- qol: Xenomorphs that have had their organs removed, or replaced with organs they
shouldn't normally have, keep those organs (or lack thereof) when evolving.
- bugfix: Xenomorphs that somehow get skillchips or brain traumas will keep them
when evolving.
- itsmeow (original), RimiNosha, Phoenix404 (port):
- - rscadd: Added TGUI-based color palette and replaced all usages of BYOND color
- palettes with it (TGUI input preferences are still respected).
lukevale:
- bugfix: Fixes the extra pixals the flooring decal line trim, and the striped version
has where it's not ment to.
@@ -362,8 +281,6 @@
Iamgoofball:
- sound: Adds an off-by-default config option to optionally disable TTS audio on
whispered speech.
- Impish_Delights:
- - rscadd: High-Functioning Zombies can now choose their eye color!
Jacquerel:
- bugfix: Due to improved counselling procedures, Ethereals are less likely to develop
crippling phobias following a near-death experience.
@@ -371,32 +288,6 @@
forms of mental instability following a near-death experience.
- spellcheck: Foam Force's brand management team require us to remove an erroneous
underscore which was in violation of their logo usage terms and conditions.
- LT3:
- - balance: Removed Skyrat surgery speed bonus
- - balance: Removed Skyrat negative mood events for surgery
- - balance: Removed operating tables automatically applying numbing
- - balance: Added surgery speed bonus for operating computers
- - balance: Added surgery speed bonus for anaesthetic/painkillers
- - balance: Added surgery speed bonus for sterilizine/cryostylane treatment
- - balance: Adjusted surgery speed penalty for stasis beds
- - balance: Removed speed penalty for tending wounds on dead bodies, replaced with
- penalty for husked body
- - balance: Increased tend wounds healed damage per cycle
- - balance: Increased functional duration of sterilizine
- - balance: N2O is now eligible for the analgesia surgery bonus
- - balance: Surgery and treatment room scrubbers filter N2O by default
- - qol: Bubble notification for surgery speed and damage healed
- - qol: Medical HUD, health analyzer, and operating computer provide tend wounds
- results
- - qol: Text log indicates what surgery bonuses are active, and which are available
- - rscadd: added lidocaine and sterilizine to surgery trays, NanoMed, and NanoDrug
- - image: anesthetic machine is now breath machine, usable with all gas types
- - qol: Miasma doesn't trigger air alarms until it's reached dangerous levels
- - bugfix: hot/cold/tox/pressure adapted lungs are now consistently better than standard
- lungs in their respective area
- - bugfix: fixed sometimes passing out due to CO2 with hot/cold adapted lungs
- SingingSpock:
- - bugfix: The Spare ID safe code should now go to the person designated in our SOP
SmArtKar:
- bugfix: Station traits no longer use clown and mime's human names (they're not
human)
@@ -405,32 +296,12 @@
- balance: Significatly tuned down SaturnX's visual filter's strength
- spellcheck: Improved mindbreaker toxin description
- admin: Admins can now filter observable mobs by ckey
- StrangeWeirdKitten:
- - rscadd: Uncaps subtler range. Now anyone can subtler anyone else in view.
- - bugfix: Lewd interactions broadcasting down the entire hall
- Zenitheevee:
- - rscadd: Added tarkon sprited backpacks
- - image: New sprites for tarkon backpacks and casual uniform
- - qol: Plasmemes and Vox get to live on tarkon without doing the closet dash
- - qol: tarkon get their preferenced backpack types
- aKromatopzia:
- - code_imp: '"Brain augment" and "Brain implant" selection in prefs'
- - rscadd: Added new brain type for humans. It's chrome, choom
- - rscadd: One new brain implant for civilian use, the empathic sensor.
- - balance: androids get a brain damage cap var (999); can't be EMP'd while already
- dead; alert texts when they're EMP'd
- - image: new sprite for vox brain
- - code_imp: vox (primalis) brain now a child of android brains
carlarctg:
- bugfix: ink kisses now delete the spawned projectile
hyperjll:
- bugfix: A single enthusiastic chemist hell-bent on selling chemicals to his co-workers
single-handedly solved a programming issue with our custom vendors. They'll
begin displaying custom names (such as those provided by labels) once more.
- sippykot:
- - rscadd: 911 responder budget increased; they now have PDAs, holoprojectors, an
- inducer, and... the marshal and SWAT teams no longer go in literally bare-handed
- (the government finally paid for their gloves).
timothymtorres:
- rscadd: Rat kings across the station tremble in fear since mousetraps have been
added to the cargo crate via service category.
@@ -445,29 +316,14 @@
- qol: Stack crafting UI got images
- qol: Search in stack crafting UI will not take control from you, feel free to
craft on walk
- Cephalopod222:
- - rscadd: Congratulations Homosexuals, Pride Scarves are now available to all crew!
JohnFulpWillard:
- bugfix: Fixed the ability to scroll for Ore silo's logging, personal crafting's
material section, telecomms monitors, and traitor uplinks for clients on 516.
- LT3:
- - rscdel: Pun Pun's suit sensors are off by default
- - sound: Subtle now has a sound notification alongside subtler
- - qol: Subtle/subtler now has a TG chat filter
- - qol: Subtle and subtler messages are brighter when using dark mode
MTandi:
- rscadd: Heretics can now get clues about objects around unused influences in their
dreams, with a 5 minute cooldown
- MosleyTheMalO:
- - bugfix: Makes condoms work
- - bugfix: fixes some lewd checks using the sex toy preference instead of the preference
- they should
- - bugfix: fixes all erp toggles resetting arousal.
- - bugfix: makes toggling off sex toys actually remove the sex toys from your inventory.
SmArtKar:
- image: Cult's blood barrage has received new sprites
- StrangeWeirdKitten:
- - bugfix: Subtler will now filter out clientless mobs
timothymtorres:
- bugfix: Fix emag not working on secure briefcases and safes
- image: Tweak secure briefcases sprite to have glowing red/green pixels for lock.
@@ -476,8 +332,6 @@
- bugfix: Fake Nuclear Disks and Obviously Fake Nuclear Disks no longer teleport
when changing Z-level outside of station.
2025-01-14:
- Arturlang:
- - rscdel: no more wizard armor in wizdrobe, sorry,
Darkened-Earth:
- bugfix: NanoTrasen telecomms technicians operating on Tram class stations have
been reminded not to charge their power tools directly from their TCOMMS SMES
@@ -492,13 +346,9 @@
EEASAS:
- qol: Gives cargo their APLU Big Bess on Ice Box Station
- map: Extended and revamped cargo's warehouse on Ice Box Station
- KazooBard:
- - qol: Heretic Synths also start with a living heart
Melbert:
- rscadd: '[Icebox] Reworked Tech Storage'
- rscadd: '[Icebox] Reworked Public Mining'
- MosleyTheMalO:
- - bugfix: makes the softcap config disableable again
Paxilmaniac:
- bugfix: fixes plasma stabilizer module not showing a visor on modsuits
- bugfix: makes the plasma stabilizer module actually visible
@@ -508,14 +358,9 @@
- bugfix: Fixed camouflage implant missing icon
- bugfix: Added a barboat seat projector to Wawa's bar
- map: Updated the Turreted Outpost space ruin
- StrangeWeirdKitten, Bangle:
- - rscadd: Adds another ambiance track to Icebox called Freezer, by Bangle.
TealSeer:
- map: fixed the lightswitch in Ice Box shared engineering storage being covered
by the APC.
- Tonadas:
- - rscadd: Added new Galactic Federation Jacket
- - rscadd: Added Galactic Federation Jacket to character creator.
Y0SH1M4S73R:
- rscadd: Adds circuit wirenet components, allowing data to be transmitted and received
over cable networks.
@@ -538,9 +383,6 @@
- bugfix: Xenobio autoinjectors, such as mending solution from industrial purple
crossbreed, cannot be deepfried and thus filled with custom reagents using saltshaker
anymore.
- Arturlang:
- - rscdel: Profound fishers without ckeys can no longer fish out juvenile lobsters,
- this is to prevent lobster armies
Ben10Omintrix:
- bugfix: Fixes the watcher trophy not working on basic mobs
Gaxeer:
@@ -587,7 +429,9 @@
- bugfix: Fix airlock authentication card not getting stored in containers
2025-01-16:
JoshAdamPowell:
- - admin: All admins will now see what is in a classified command report
+ - admin: 'All admins will now see what is in a classified command report
+
+ :cl:'
MTandi:
- qol: Added UI for plant analyzer
- rscdel: Plant analyzer no longer spams scan data into the chat (except, it still
@@ -660,41 +504,18 @@
it, you'll only be able to understand Space Carps unless you steal a fish tongue.
gleypi:
- spellcheck: fixed the tong clacking message
- zeroisthebiggay:
- - bugfix: you can't get Free Real Centcom Skirtlenecks from the loadout any more
2025-01-18:
EnterTheJake:
- image: Codex Cicatrix has received a new sprite
- MTandi:
- - image: yet another medkit resprite
- MajManatee and OrbisAnima:
- - rscadd: Most (tm) suit slot items can be alt clicked and worn around the neck!
- - balance: Fixes snowflake armor with two items that were stacking for protection
- ReturnToZender:
- - balance: The threshold for the Default has been increased by 600 seconds, or 10
- minutes, to try to mellow that storyteller out a little bit.
- - balance: The Clown is admin only, now.
- Tonadas:
- - rscadd: Added new Galactic Federation Cap to game, loadout selector, and Clothesmate.
- - rscadd: Added Galactic Federation Jacket to clothesmate
- Vanilla1040:
- - image: added new Engi, Med, Cargo, Service, Science and Peacekeeper borg varients/alts
2025-01-19:
Absolucy:
- qol: Small and tiny mobs no longer trigger squeaking objects when walking over
them.
- Arturlang:
- - rscdel: removes combat and adv hypo from medlathe
- - balance: adv hypo now is just as fast as normal hypo when injecting other people
AyIong:
- qol: SmartFridge got another redesign, and you can dispense all amount of product
in one click (RMB on product)
Chowder-McArthor:
- qol: Strange geysers now say in their name what they produce.
- CupOfMoths:
- - rscadd: Added pretty new hairstyle
- - rscadd: Added QoL alt of hairstyle
- - bugfix: Fixed a misaligned hair sprite
Jacquerel:
- rscadd: Eggs (and all other edible food) left in a hot place will fry.
MTandi:
@@ -705,24 +526,9 @@
- image: yet another medkit resprite
SmArtKar:
- bugfix: Fixed active turfs on the new Turreted Outpost ruin.
- nikothedude:
- - bugfix: Death degradation now has info for health analyzers
2025-01-20:
- KazooBard:
- - qol: All Mansus Worshippers can use the Relentless Heartbeat (Reroll targets)
- ritual earlier by two steps, so that they gain access alongside the ritual of
- knowledge.
- - qol: The mansus no longer demands harebells for the Relentless Heartbeat, however
- a heart is used in it's place.
- - bugfix: The Grail was very adamant on keeping people making love in their chambers
- out of the heretic's target list when it is made or rerolled.
- MajManatee:
- - bugfix: Tarkon mods no longer need masks
RengaN02:
- bugfix: Fixed Engine Diagnostic surgery
- SingingSpock:
- - bugfix: The ticking of clocks can no longer be heard through walls, filling the
- bridge with an incessant ticking noise like the Telltale heart's thumping.
SmArtKar:
- image: Resprited default and mirage grenades
- image: Made the unholy water flask darker
@@ -741,50 +547,19 @@
mc-oofert:
- refactor: mimics (bolt of animation, malf ai Machine Override, etc) are basicmobs
- bugfix: crate mimics may now be opened
- nikothedude:
- - bugfix: Death degradation no longer instantly downs you
2025-01-21:
- 00-Steven:
- - bugfix: Fixed cat ears not layering properly.
- - bugfix: Husked bodies show their blood with the right colours in photographs.
- Arturlang:
- - balance: Flesh ghouls now have 100 HP, while heretic mute ghouls have normal human
- HP, ie, 135, from 25 and 50
AyIong:
- qol: 'Vending machines got new design with 2 layouts: List and Grid (List by default)'
- BurgerBB:
- - rscdel: Updates Dracula Flow Brain Damage to be less weird.
- IgiariValkyr:
- - qol: Persistence is now in a persistent location on Lavaland, Moon, and Icebox.
- LT3:
- - map: Kilostation abandoned warehouse now starts unpowered
NamelessFairy:
- bugfix: Admin fired stray syndicate cargo pods will not rebel against admin whims
and launch themselves when cancelled.
- admin: Admins have new categories to fill syndicate cargo pods with.
- Odairu:
- - bugfix: pirates spawn again
- - bugfix: lone infil adds the chosen player to the spawned_mobs list
- - bugfix: company import bars were invisible in stacks
Pickle-Coding:
- bugfix: Fixes HFR moderator leaking not leaking properly when a part is cracked.
- Rathen Ivanov:
- - rscadd: You can now purchase your very own CE Screws Plushie from the LustWish
- Vendor.
- ReturnToZender:
- - balance: Reduces the weight of Bloodsuckers by 3, to make it notably different
- from traitors
- - balance: Raised the minimum number of players for a heretic to spawn.
Rhials:
- rscadd: You can now ctrl-click IDs to set your Honorific, which will change your
display name to reflect your TITLE as a WORKING MAN on SPACE STATION 13.
2025-01-22:
- Odairu:
- - bugfix: Lings/vampires will no longer revive as soulless bodies with DNR
- - bugfix: Borers can no longer revive hosts with DNR
- ReturnToZender:
- - rscadd: Updated descriptions to individual storytellers to compare them to each
- other.
SyncIt21:
- bugfix: pockets update their icons correctly when removing items that have storage
(e.g. box of bandages) from them
@@ -814,10 +589,6 @@
Jacquerel:
- refactor: NPC zombies found in ruins now use the basic mob framework. Please make
an issue report if they exhibit any unusual behaviour.
- MajManatee:
- - image: basic mob xenos now look fly as hell, like our real xenos.
- Majkl-J:
- - bugfix: Cobwebs no longer scream from appearing in space as long as they're nearstationed
Melbert:
- bugfix: Heads with brains no longer look debrained
SmArtKar:
@@ -827,23 +598,15 @@
- balance: melee mech armor has been increased to 20 from 15.
- balance: mech bullet and laser armor has both been increased to 15 from 10.
- balance: You can no longer stack the repair droid on mechs.
- Vanilla1040:
- - bugfix: fixed older code and moved to zubber
- - image: Added New Mining Borg Varient
Vekter:
- balance: The roundstart report will now display a more broad, less specific message
about threat levels when between 0 and 80 threat.
- nikothedude:
- - bugfix: Record links now only appear if there are records to view
2025-01-24:
Absolucy:
- qol: Removed the arbitrary limit of 10 maximum highlights.
- qol: Restyled the Who, Adminwho, and Show Server Revision verbs to be prettier.
- admin: Added a new function in Lua scripting, SS13.check_tick, to avoid causing
too much lag during loops and such.
- Cephalopod222:
- - bugfix: Fixed Security Battledress sprite
- - rscadd: Added Red Security Battledress and Head of Security Battledress
Exester509:
- bugfix: The Stargazer, a cosmic heretic's ascension, can be properly commanded
once more.
@@ -886,9 +649,6 @@
SyncIt21:
- bugfix: chemical reactions can now go all the way to their min required temp/ph
- code_imp: improved code for debug chem master.
- aKromatopzia:
- - bugfix: Shadekins with the fluffy ears had the fluff trimmed, allowing them to
- hear the hive mind again
carlarctg:
- rscadd: Added two new fish to heretic rift fishing.
- rscadd: You can now fish up arms, heads, and other items lost to heretic rifts!
@@ -915,9 +675,6 @@
`cameranet` datum
KingkumaArt:
- qol: Ethereals can now live off wine again.
- Vanilla1040:
- - image: Adds Digi Sprites for infiltrator and Interdyne MOD
- - bugfix: Also fixed the missing lights/eyes on the miner borg i made, whoops.
jlsnow301:
- bugfix: TGUI Say window has been tweaked slightly to look and run cleanly.
- bugfix: The character preferences menu has been greatly refactored, hopefully
@@ -930,19 +687,9 @@
penetration focused over damage.
- balance: The bulldog shotgun remains otherwise unchanged damage wise, but does
gain the above extra bonuses.
- nikothedude:
- - bugfix: Silver slimes can no longer produce fucking contagious changeling zombie
- virus
valzargaming:
- bugfix: Typo in path for cavesound3.ogg
2025-01-26:
- ArrisFairburne:
- - rscadd: Added a new hairstyle based off of goliath tentacles
- Cephalopod222:
- - rscadd: Short (Bob) Hair
- - rscadd: Long Smoothy Hair
- - bugfix: Tweaked Ponytails (Berly) to work with snouts
- - bugfix: Tweaks Synthetic Joints to display properly
Profakos:
- bugfix: IEDs can now also be crafted using pipes you have ripped up from the ground.
SmArtKar:
@@ -985,9 +732,6 @@
- bugfix: Using letter keys while focussing the list focusses the search bar again
Maximal08:
- rscadd: TRAIT_NOSOFTCRIT now blocks falling into a regenerative coma.
- Odairu:
- - balance: lone op moved from major -> moderate
- - bugfix: lone op weight ticks up properly
TiviPlus:
- bugfix: fixed a case that could make untoggling fullscreen make your window small
- code_imp: Cleaned up some fullscreen and status bar toggle code to function better
@@ -1018,8 +762,6 @@
results
- code_imp: removed excessive rounding of reagent volumes thus slightly improving
performance
- TealSeer:
- - bugfix: synths once again start with a charging arm implant
vinylspiders:
- bugfix: due to a number of complaints of fish explosions, chrystarfish will no
longer be chosen as the random starting fish for the fish mount.
@@ -1082,17 +824,10 @@
- bugfix: fixed shadows on 516
Jacquerel:
- rscadd: Adds a new random lawset where anything that can speak counts as human.
- Majkl-J:
- - balance: Shrink and Expand modules are now unlocked immediately
- - bugfix: The artistic module is now in the correct tab
- - spellcheck: fixed lowercase on the dominatrix module
Melbert:
- qol: Using items on cyborgs now use balloon alerts instead of chat messages.
- bugfix: You can flash cyborgs again
- refactor: Refactored item interaction on cyborgs.
- Mitryll:
- - balance: Made entombed not insulated, lowered its defences and is unable to be
- taken with Bad Back.
SmArtKar:
- bugfix: Fixed a missing area in the corner of icebox morgue
- rscadd: You can wear voidwalker's skull on your head now
diff --git a/html/changelogs/archive/2025-02.yml b/html/changelogs/archive/2025-02.yml
index 1da40fdae51..5d7023a705b 100644
--- a/html/changelogs/archive/2025-02.yml
+++ b/html/changelogs/archive/2025-02.yml
@@ -1,6 +1,4 @@
2025-02-01:
- ArrisFairburne:
- - map: added maintenance tunnel and bridge areas to the ghost cafe
AyIong:
- qol: 'You can choose in preferences what layout use into the Smartfridge or Vending
machines: Grid or List. Default TGUI Layout preference. In the future there
@@ -8,13 +6,6 @@
now use Grid layout by default.'
BobDABuilder9001:
- balance: solars now make 2.5kw each instead of 1.5kw
- Erol509:
- - qol: Vox and people with nitrogen breathing quirk, need less nitrogen to sustain
- themselfs.
- - balance: Changed nitrogen tank belt max capacity of 25l to 12l
- - bugfix: Aheal/S.A.D interaction doesnt remove nitrogen lungs on quirk holders.
- Both Aheal/Sad will return them, replacing the one inside you. This means, cybernetic
- lungs will be removed.
MTandi:
- qol: Added forensic scanner UI
- qol: Made forensic scanner report format cleaner
@@ -22,24 +13,6 @@
- bugfix: PENLITE defib mounts now actually charge the cell
SmArtKar:
- image: Premium Internals Boxes station trait now has unique box sprites
- StrangeWeirdKitten:
- - rscadd: TTS compatability with vocal barks
- UvvU:
- - bugfix: fixes darksabre
- Zenitheevee ,MajManatee:
- - rscadd: deployable magazine fed turrets
- - rscadd: target designators for mag fed turrets
- - rscadd: Tarkon faction
- - rscadd: Added turret assemblies to new turrets when found.
- - rscadd: Added a research node locked behind tarkon tech to print tarkon turrets.
- - image: added icons for mag fed turrets
- - image: added icons for target designators
- shayoki:
- - map: In Box Station, a couple more light fixtures in the main halls were added.
- - map: In Box Station, an APC in the hallway before the brig was added. It no longer
- has infinite power.
- - map: In Box Station, a maintenance entrance in the hallway before the brig was
- added. This slightly squishes the detective's office.
2025-02-02:
Arceniu:
- spellcheck: Replaced the words "Singularity Generation Disk" with "Supermatter
@@ -54,47 +27,16 @@
- image: Resprited reels and bobber
- bugfix: Fixed partially missing fishing UI
- bugfix: Fixed glowsticks not working
- StrangeWeirdKitten:
- - balance: Signifigantly changes flechett shotgun rounds. They are a close range
- ammo with reliable wounding and damage against unarmored with very shitty armor
- penitration. Damage drops off signifigantly with range.
- - bugfix: Beehive and Antitide shotgun ammo now properly subtracts damage dropoff
- instead of adding.
necromanceranne:
- rscdel: Mobile hollow bioscramblers no longer spawn from the anomaly research
ruin, sparing everyone from the inevitable unannounced arrival of a permanent
hollow bioscrambler aboard the station. You maybe still encounter immobile bioscramblers
in the ruin, however.
- pixelkitty286:
- - rscadd: Big cat borgs and kitty borgs
- - image: added kitty and cat borg images.
- shellspeed1:
- - qol: Persistence has been fitted with two new exterior hatches to facilitate working
- outside. Also botany has been enlarged to fit another row of trays if so desired.
- - bugfix: Disposal bins in persistence medical and persistence science now work,
- addressed a misplaced air alarm and an extra tiny fan capsule in persistence
- bluespace mining.
- - bugfix: Persistence recycler can now be escaped.
- - bugfix: stopped on of the persistence turrets from getting dunked in lava every
- shift.
zoomachina:
- bugfix: showers wash things under them when they're turned on again
2025-02-03:
Absolucy:
- bugfix: Random messages should no longer be dropped and not appear in chat.
- Arturlang:
- - balance: Eye blur from lasers is capped at maximum of 20 seconds.
- MosleyTheMalO:
- - config: Makes vore defines into configs
- - bugfix: makes the down button available again
- Rathen Ivanonv:
- - rscadd: Added more supplies/gear to Gas Station Attendant Ghost Role
- - rscadd: Added I.D/Bank Account to Gas Station Attendant Ghost Role
- - rscadd: Added an additional spawn to Gas Station Attendant Ghost Role
- - rscadd: Added a Regal Rat spawn to Lavaland/an additional one to Ice Moon
- - rscadd: Many more beneficial changes to the Gas Station Attendant Ghost Role
- - map: Overhauled Lavaland/Ice Moon Gas Station with three new areas
- - balance: Removed Laser Musket from Gas Station Ghost Role, replaced with PKA Pistols
SmArtKar:
- bugfix: Fixed an issue with persisting brimbeams
jlsnow301:
@@ -106,17 +48,10 @@
damage scaling.
siliconOpossum:
- bugfix: Lathes interfaces are no longer unscrollable on 516
- xXPawnStarrXx:
- - qol: made orefruits produce sheets as cores, instead of lame objects, letting
- them be inserted into a silo.
- - rscadd: Added two new pods; Xenoarch and triage
- - bugfix: fixed the robotic repair kit in the large medical pod from being empty.
2025-02-04:
necromanceranne:
- bugfix: Allows MOD holsters to once again activate while the modsuit is inactive
and undeployed.
- shellspeed1:
- - rscdel: Removed unused map file.
2025-02-05:
Melbert:
- qol: Map vote tallies explains how they work if you hover them
@@ -162,9 +97,6 @@
or as certain ghost roles, you will still return to your character's original
mind, just in case you can be resurrected by some means.
- bugfix: The basketball minigame now gives its players and referee temporary bodies.
- xXPawnStarrXx:
- - bugfix: fixed seed pathing so silver's weren't skipped with the rockfruit mutations.
- - rscadd: Added digilegs for shadekin.
2025-02-07:
Runi-c:
- balance: slips now make you eligible for being shove stunned
@@ -173,12 +105,7 @@
TiviPlus:
- server: An issue where more than 16 admin flags could not exist in the DB has
been corrected
- nevimer:
- - bugfix: fixed shadekin digi legs
2025-02-08:
- ABoxFaux:
- - balance: Slimepeople with the nitrogen breather quirk now no longer take toxin
- damage from breathing oxygen, instead taking an equal amount of brute damage.
Absolucy:
- bugfix: Fixed some mistakes I made while fixing the void cloak.
Holoo-1:
@@ -211,8 +138,6 @@
- qol: Added the resin mister module to the roundstart atmos MODsuit.
Melbert:
- rscadd: Adds two fantasy affixes
- Odairu:
- - image: filled in nullspace on shadekin tail BEHIND sprite
SmArtKar:
- rscadd: Hydrogen Peroxide and Eldritch Essence now can rust turfs, with latter
producing heretic instead of normal rust.
@@ -231,153 +156,542 @@
- code_imp: Add error message logs to screenshot CI test failure when screenshots
do not exist.
2025-02-10:
- StrangeWeirdKitten:
- - rscadd: Replaces The Clown with The House which sets weights to 1, but spawns
- stuff at a slower pace, and allows the adminbus to come.
- - bugfix: Voidwalker properly spawns on the ghostset now.
+ SmArtKar:
+ - bugfix: Fixed missing HTML encodes in comms console code
+ - bugfix: Examining walls no longer allows you to see items mounted on its other
+ side
+ TiviPlus:
+ - code_imp: updated hslify to correctly detect all hexcodes
+ necromanceranne:
+ - bugfix: The traitor guncase properly checks for condition changes before letting
+ a player activate the time bomb.
2025-02-11:
- ArrisFairburne, LT3:
- - rscadd: Added a new app to clock in and out from any NT OS-compatible device (Plexagon
- Punch Clock)
- - qol: Your job items are now locked into a box instead of warped to cryo, when
- clocking out
- Odairu:
- - balance: cult no longer gibs mindshields
- xPokee:
- - map: modified the jukebox in BoxStation's permabrig to be accessless
+ SmArtKar:
+ - bugfix: Fixed wooden rifle stock being uncraftable
+ - bugfix: Fixed exceptionally dark armrests on chairs
+ - bugfix: Fixed dress and gown rendering below gloves and shoes
+ Time-Green:
+ - rscdel: Reverts sneeze projectiles
2025-02-12:
- Sebastionate:
- - map: Added THREE new Infinite Dorms!
- - map: Added 'Cultist's Cavern' Infinite Dorm.
- - map: Added 'Winter Woods' Infinite Dorm.
- - map: Added 'Evacuated Station' Infinite Dorm.
+ FlufflesTheDog:
+ - bugfix: crafted medibots are more consistently corporeal
+ Kiromaka:
+ - balance: Helbital reaper is now 100x more likely.
+ Rengan:
+ - bugfix: When you cast examine to the disguised detective, its assignment will
+ now display correctly.
+ grungussuss:
+ - sound: new sounds for cloth items
+2025-02-13:
+ Jacquerel:
+ - admin: Added easier tooling for admins to add or change the AI controllers on
+ mobs
+ JohnFulpWillard:
+ - admin: Reload Configuration can be cancelled via the alert it gives you.
+ - admin: Check antagonists & del/law/dna/fingerprint/radio log panels use browsers
+ which means they have darkmode. Also the tram panel will cancel out if you click
+ cancel.
+ Melbert:
+ - bugfix: Fixed grab offsets not showing for anything but passive grab
+ - bugfix: Fix jank with mob offsets when riding things
+ - refactor: Refactored riding component, particularly how it selects layer and offsets.
+ Report any oddities
+ - refactor: Refactored pixel offsets of mobs. Report any oddities
+ RusselNotSCP:
+ - qol: Andromeda Bitters bottle now only dispenses in 1-5u increments
+ SmArtKar:
+ - admin: Admins can now make vendors free without too much hassle
+ - bugfix: Fixed duplicated comsigs/text and HARS head deletion from prosthetic replacement
+ - bugfix: Barroaches no longer disappear when worn on your head
+ - image: Barroaches now have new worn sprites
+ - bugfix: Fixed perceptomatrix not applying any of its traits
+ TiviPlus:
+ - code_imp: deleted all remaining code referencing TGS3
2025-02-14:
- EliteRiceFarmer:
- - bugfix: Plasteel barricade delay. Now it's close properly.
- Vanilla1040:
- - rscadd: Readds the Large Hypobox being Printable in the Medical Lathe
- - rscadd: Adds Advanced Hypospray into imports
- - map: Added new Hotel room
- - bugfix: Fixed the other hotel rooms not showing up from a different PR
+ Absolucy:
+ - bugfix: Syndicate encryption keys properly protect against AoE radio jamming again.
+ Melbert:
+ - rscdel: Honorific "full name" setting no longer cares about mononyms, meaning
+ Lizards and people with similarly hyphenated names will no longer get their
+ name butchered.
+ MelokGleb:
+ - image: broken radio is now not flat and old
+ SmArtKar:
+ - bugfix: Makes glowstick fluid respect chosen RLD color
+ - bugfix: Chef's love and french kissing no longer can stop laser projectiles of
+ syndiekissers.
+ - code_imp: Unified two parts of kiss code.
+ TealSeer:
+ - qol: The limb grower can now be unwrenched and rotated
+ Time-Green, Donglesplonge, SmartKar:
+ - rscadd: Adds the flesh reshaper to genetics and the Gene Engineering techweb!
+ Restyle all those visual organs! Don't like your moth coworkers' wings? Restyle
+ them to your liking!
+ TiviPlus:
+ - bugfix: Fixed stat panel turf list menu clicks only working on the text
+ hyperjll:
+ - qol: The Syndicate Tome's uplink description has been changed to mention it's
+ functionality.
+ - balance: Haloperidol's self-purge is drastically reduced while the host is stamina
+ crit, as a result of permanent stamina crit no longer being a thing to worry
+ about.
+ timothymtorres:
+ - code_imp: Optimize Nyctophobia quirk to not process while certain traits present
+ - code_imp: Convert weather duration to use time defines
2025-02-15:
- Vanilla1040:
- - rscadd: Adds the Borg mat to Synth's *Turf
- nevimer:
- - bugfix: crew monitor alarm logic is updated to work with planetary z's
+ Ghommie:
+ - rscadd: Added three tips to the fishing tips text file.
+ Jacquerel:
+ - admin: Gives admins the ability to make mobs say/emote things from a list at random
+ intervals for the rest of their lives.
+ - rscdel: Misplaced or stolen traitor uplinks can no longer be recreated using a
+ radio code and special device, guard yours carefully or buy a backup implant.
+ - rscdel: Roundstart traitors can no longer take on additional objectives in order
+ to earn additional Telecrystals and fast-forward any unlock timers on items.
+ They also cannot earn the ability to complete a Final Objective.
+ - balance: Roundstart traitors can now buy the Contractor Kit from their traitor
+ uplink, rather than only midround traitors.
+ - rscadd: Traitors can buy Romerol for 25 TC, after 30 minutes of time has passed
+ in a round.
+ - image: Watchers won't display an animated cog at the same time as using their
+ gaze attack.
+ Melbert:
+ - bugfix: Spy uplink scans on RMB as intended
+ davethwave:
+ - rscdel: Removed the weighting of viro symptoms
+ grungussuss:
+ - sound: sutures got some sounds
2025-02-16:
- ABoxFaux:
- - rscadd: Adds pet space snacks - treats available from cargo that makes your pet
- immune to the void of space.
- LT3:
- - balance: Event diseases are no longer hidden from health analyzers during incubation
- periods
- - bugfix: Masks and head slot items actually provide protection from airborne disease
- spread
- - bugfix: People other than the original airborne hosts spread diseases via respiration
- - balance: Reduced infection chance for contact/airborne diseases from current 95%+
- on all diseases to values 15%-40% based on the transmissibility strength
- - code_imp: Airborne disease spread is rolled per target, not source
- - balance: Disease outbreak won't spawn during rounds with less than 3 medical staff
- - balance: Disease outbreak begins with 2-3 original hosts but lower spread speed
- - bugfix: Disease cure won't request both antihol and alcohol mixed together
- UvvU:
- - bugfix: fixes darksabre
- YakumoChen:
- - balance: Removed "sidearm beacons" from spawning SecOff and HoS inventories. Complimentary
- glocks are still available in security officer lockers.
- - balance: Gave the HoS's silver glock to the Warden. The Head of Security only
- has three guns at roundstart now! How will he ever recover??
- shayoki:
- - bugfix: Allows blood filters to fit in the medical technician bag.
- - rscadd: Allows hypospray kits to fit in the first responder surgical kit and orange
- satchel medical kit.
- zeroisthebiggay:
- - bugfix: changes The House's welcome text "The House now runs the show..." to "The
- House always wins." because it simply makes More Sense
+ 00-Steven:
+ - bugfix: Emotion mask reskinning works properly
+ GwynCodes:
+ - rscadd: Added a button in the "Secrets" menu to alter the department console order
+ delay.
+ - qol: Button makes it easier to find cargo related bugs.
+ - code_imp: Changed code in department_order.dm to allow for overriding the order
+ cooldown duration.
+ - admin: Created an admin button in the "Secrets" panel.
+ larentoun:
+ - bugfix: Changeling egg burst now correctly gives "monkey (123)" name for the changeling-monkey
+ instead of getting a random human name.
+ leaKsi:
+ - bugfix: Fixed a few sanitization issues.
+ necromanceranne:
+ - bugfix: Pellet clouds now can cause bleeds and punctures if the projectile is
+ sharp.
+ - bugfix: Cryogelidia can no longer put you into stasis longer than the lifespan
+ of the cube prison it kept you in.
2025-02-17:
- JustMeTheIInd:
- - map: changed the bedsheet bin in InfiDorm apartment map to a towel bin.
- - map: added a bedsheet bin in InfiDorm apartment map bedroom.
- Majkl-J:
- - image: Digitigrade variation for Captain, Security department, and Engineering
- department bunnysuits
- - bugfix: Lizard gas digitigrade actually works now
- MosleyTheMalO:
- - bugfix: fixes the issue where characters would reset after a round or on switching
- character slots
- ReturnToZender:
- - qol: Adds most of the Security cosmetics to the loadout
- - spellcheck: Removes some spaces and spellchecks some things in the multisec vendor
- - rscadd: Adds a corrections tab to the multisec vendor so being a corrections officer
- is not inherently illegal
- - rscadd: Holobadges are accessories rather than neck items now
- urfrenthespessmen:
- - rscadd: Croptops in loadout
- yooriss (Code), ReturnToZender (port):
- - qol: 'The telepathy genetics mutation has had significant usability improvements:
- it is now point-targeting based, and right-clicking the power allows for quick
- resending to the same target, a feature mirrored by the new *treply emote. Telepathy
- now also shows runechat messages.'
- - rscadd: The Telepathic quirk has been added, allowing characters to start with
- an unremovable (or activated) telepathy mutation.
+ 00-Steven:
+ - bugfix: Jumpsuit sensors context tips actually show when you are holding the jumpsuit.
+ - qol: You may right click to change jumpsuit sensors when it's in your active hand,
+ instead of having to swap to an empty hand or drop it to do so.
+ Absolucy:
+ - admin: Certain UI-based tools (plane debugger, filter editor, etc) that were given
+ to admins with only +VAREDIT or +DEBUG, but refused to open without +ADMIN,
+ now actually work for admins that have the needed permission.
+ Archemagus:
+ - code_imp: Shuttles with walls painted via color var shouldn't lose their walls
+ in transit
+ Archie700:
+ - qol: Gives a confirmation box describing the mayhem in a bottle's effect when
+ a player tries to break the bottle. Player must confirm before bottle takes
+ effect.
+ Ghommie:
+ - bugfix: Space dragons' eyes, teeths and claws (and shark form's underside) are
+ once again of a different color than the rest of the body.
+ - bugfix: Trying to fish on an adjacent spot won't end up hitting other things on
+ the same turf (provided you actually click the fishing spot and not other things).
+ - bugfix: Fixing the icon state for the "fritterish" fish variants.
+ Jacquerel:
+ - rscadd: Adjusted what things you can hallucinate people being accused of doing
+ or being over the radio
+ - bugfix: Prisoners will no longer spawn on Tram with an item which allows them
+ to immediately exit the jail.
+ - balance: Prisoners also don't get bonus goodies in their internals box when the
+ station trait rolls, because we're mean.
+ - bugfix: Traitor reputation (which is now basically just a number representing
+ how many seconds were in the round) is no longer displayed on the roundend screen.
+ Melbert:
+ - bugfix: Fixed offset during vehicle traversal over boxes and tables, as well as
+ while floating
+ Rengan:
+ - sound: the volume that vox, admin sound, insturments play at can now be tweaked
+ in preferences, check your preferences!
+ - sound: Elevator now uses ambience volume preference, jukeboxes uses instrument
+ volume preference and end of round musics uses admin music volume preference.
+ SmArtKar:
+ - qol: SiliConnect now informs you that you're successfully downloading logs
+ - bugfix: Fixes SiliConnect not being able to download logs
+ - bugfix: Fixed broken layering on some vehicles
+ - bugfix: You can no longer stuff abstract concepts of kisses and slaps into someone's
+ chest cavity
+ - bugfix: Fixed map votes not refreshing the amount of possible choices
+ - rscadd: Added a new 3D printable gun "The Liberator", you can find the gun itself
+ or its design disc in maintenance tunnels.
+ SyncIt21:
+ - bugfix: multiplying reagents in cases like fishing & chem splash will yield accurate
+ results. New amounts differ from present values
+ - bugfix: converting reagents actually yields correct ph again
+ - code_imp: improved performance of reagent logging
+ - code_imp: copying reagents won't return false negatives for values lesser than
+ 0.01
+ TealSeer:
+ - qol: The medipen refiller can now be rotated when unanchored with alt-click
+ TiviPlus:
+ - code_imp: Made it easier to set custom orders for stat panel tabs in code
+ - bugfix: fixed some filters (e.g displacement) in filteriffic bluescreening the
+ UI
+ - bugfix: fixed tgui alerts sometimes having a lot of empty space in their layout
+ distributivgesetz:
+ - config: Added support for multiple chat channel configs for channel announcements.
+ norsvenska:
+ - map: The NTSS Independence has, once again, been upgraded. Now featuring a proper
+ ballroom, an expanded infirmary, a security office, and much more available
+ seating.
+ - bugfix: Doctor Rumack, the NTSS Independence's resident medibot, is no longer
+ invisible.
+ subject217:
+ - sound: The ghost poll sound is quieter.
+ timothymtorres:
+ - bugfix: Fix runtime when simple mobs are exposed to reagents
2025-02-18:
- aKromatopzia:
- - rscadd: syndie and ninja smolraptors
- pixelkitty286:
- - rscadd: Syndicats, Super cats, Super cat ears, and Super Syndicat ears
- - balance: Cat night vision
- - image: Syndicat sprites, and Super cat ear icon
- - code_imp: Added a shape shifting caster variable for keeping the caster's name
+ Absolucy:
+ - bugfix: SecurEye now properly follows moving cameras.
+ Archemagus:
+ - rscadd: 'Many things now handles via AAS: Bounty Cubes, Request Consoles, Brig
+ Cells, Vending Machines and Orion Trails alerts, Weather Reports, Cargo Order
+ Console'
+ - code_imp: Now anyone can make their own entry for AAS
+ - refactor: AAS internals, also cleanup
+ EnterTheJake:
+ - rscadd: New Heretic starting Side-Knowdge Warren King's Welcome
+ - rscadd: New Heretic T1 Side knowledge, Phylactery Of Damnation.
+ - rscadd: New Heretic T2 Side knowledge, Ether Of The Newborn.
+ - rscadd: New Heretic T3 Side knowledge, Codex Morbus.
+ - rscadd: New Heretic T2 Side knowledge, Rust Sower grenade.
+ - rscadd: New Heretic T3 Side knowledge, Greaves Of The Prophet.
+ - rscadd: New Blade Path Spell, Wolves Among Sheep.
+ - balance: Heretic curses have been removed from the tree and bundled in the new
+ Knowledge, Codex Morbus.
+ - balance: Blade Path tree has been shuffled a bit, all spells have been moved up
+ by one tier to make space for the new spell.
+ Jacquerel:
+ - balance: The reputation "time locks" on various items in the Traitor uplink have
+ been reduced or removed. Effected items include the holoparasite kit, energy
+ sword, power fist, gloves of the northstar, pizza bomb, bag of x4, combat bakery
+ kit, reverse revolver, kinetic accelerator modkit, laser arm implant, concealed
+ weapon bay, chemical dart gun, and stationwide APC check.
+ - balance: The centcom inspector costume is now more expensive.
+ - rscdel: Several previously nukie-only wardrobe options in the traitor uplink are
+ now once more only available to nuclear operatives.
+ - rscdel: Spies can no longer receive an elite nuclear operative suit.
+ LT3:
+ - bugfix: Revert next map command actually reverts the map vote
+ - admin: Admins now have a verb to revert the map vote
+ SmArtKar:
+ - bugfix: Fixed scars not being examine-able if you wore a mask
+ - bugfix: Fixed uniform sensors being examine-able even when worn under a spacesuit.
+ - map: Moved Birdshot's tech storage to be between bridge and engineering, with
+ a brand old abandoned brewery in its former place.
+ - bugfix: Fixed mapvotes spontaneously failing
+ - bugfix: Fixed pyroclastic slime RRing ghosts
+ - balance: Space helmets and bio/bomb/rad hoods have lost their slowdown/FOV respectively,
+ but now can have their visor covered by spraypaint or pepper spray.
+ - balance: Driscoll mask no longer protects your eyes, unlike welding gas mask which
+ received said protection.
+ Xackii:
+ - rscadd: Big Manipulator now has use mode once again. You need buckle monkey to
+ unlock this future.
+ - rscadd: Big Manipulator now has wires.
+ - bugfix: Big Manipualtor now sees objects that appeared on the tile using spawn
+ or any other means in which the object is not considered to have moved
2025-02-19:
- TealSeer:
- - bugfix: fixed the utility cyborg upgrades node missing stuff
- sippykot:
- - rscadd: Syringes have been fatfinger-proofed, letting you inject in 1u and 2u
- increments
+ Holoo-1:
+ - bugfix: fixed circuit connections not being drawn outside initial screen on 516
+ Jacquerel:
+ - rscadd: Players who choose to be evil via the quirk menu will be reminded at roundstart
+ that this doesn't exempt them from server rules.
+ SmArtKar:
+ - qol: Cybernetic arm implants now automatically change insertion zones without
+ the need to screwdriver them.
+ necromanceranne:
+ - balance: Having a strongarm implant installed into each arm now allows you to
+ pry open doors.
2025-02-20:
- JustMeTheIInd:
- - map: Added "Corporate Office" Infidorm map
- - map: Added "Recovery Wing" Infidorm map
- - map: Added "Grotto" Infidorm map
- - map: Added "Grotto (night)" Infidorm map
- TealSeer:
- - bugfix: the winter woods dorm no longer kills you immediately
- pixelkitty286:
- - balance: forbids cats having storage implants
- - bugfix: Super cats being able to bring things in hand in vents
+ Aniantan:
+ - bugfix: Can of fishing bait no longer evaporates its bait when used on an active
+ fishing rod
+ - bugfix: Can of fishing bait's quick refill can be used with the fishing rod's
+ UI too
+ Ez-Briz:
+ - bugfix: fixed bluescreen in Access Checker interface
+ LePiromano:
+ - balance: nerfed Icebox's "The Thing" boss
+ - bugfix: fixed "The Thing" 's spike walls destroying items on the floor when summoned
+ MrMelbert, Time-Green:
+ - rscadd: Adds an organ tree as a mutation of shrubs (from the exotic seeds crate)!
+ Spare organs have never been so green!
+ OrionTheFox:
+ - map: Tramstation Evidence Storage now has secure lockers, a security records filing
+ cabinet, and number labels on unsecure lockers
+ necromanceranne:
+ - bugfix: Prevents Cryogelidia from putting you into a permanent stasis until someone
+ injects you with the reagent.
+ timothymtorres:
+ - bugfix: Fix deprecated mob robot path from basketball stadium map
+ - bugfix: Revert Midi2Piano fix (#85967) that broke the the midi converter tool.
2025-02-21:
+ Aniantan:
+ - bugfix: You can no longer "use" can of bait on non-bait slots in fishing rod
+ Melbert:
+ - sound: Snowstorms now have sounds associated.
+ Singul0:
+ - rscadd: After some light bit of restructuring, the local TV station, serving SPACE
+ SECTOR 13 has opened up again!
+ TiviPlus:
+ - code_imp: optimized some icon code
+ necromanceranne:
+ - image: Changes Sakhno rifles from olive drab to a wooden finish.
+2025-02-22:
+ Absolucy:
+ - bugfix: Being a team antagonist will no longer hide all of your other antagonist
+ roles from the roundend report, i.e a BB+traitor will properly show as both
+ a BB and a traitor in the roundend report.
+ - refactor: Refactored some code relating to how entertainment monitors are notified
+ of active feeds.
+ Jackraxxus:
+ - admin: Added a new config to force admins to deadmin when readying up or latejoining
+ the round.
+ Jacquerel:
+ - spellcheck: Makes some VV input prompts clearer to read and use
+ Jacquerel, Dawnseer, & Carlarc:
+ - rscadd: Added a variety of shoes to the loadout system
+ - rscadd: Added another pair of pairs of glasses to the loadout system
+ - rscadd: Added a variety of pocket items to the loadout system
+ - rscdel: Removed the Colourist quirk, as you can now get the exact same item via
+ the loadout system
+ Melbert:
+ - rscadd: EVA doors become all access on Red Alert
+ - rscadd: First Aid Supplies (the compartments in Medbay Storage which hold medkits)
+ become all access on Red Alert (already present on Icebox). Medbay Storage itself
+ does NOT become all access.
+ Melbert, Wallem:
+ - rscadd: Adds recording setups to the Captain's office on all maps, allowing them
+ to project their face to all status displays on the station
+ - rscadd: Centcom now has a soundstage for broadcasting to the station. It's besides
+ the Thunderdome.
+ SmArtKar:
+ - bugfix: Fixed ChemMaster incorrectly lableling produced items
+ necromanceranne:
+ - rscadd: Replaces the 10mm semi-automatic surplus rifle with the Sakhno SKS semi-automatic
+ rifle.
+ - rscadd: You can acquire a SKS parts kit from the black market.
+2025-02-23:
+ EnterTheJake:
+ - spellcheck: Updated the description on a few heretic knowledges to display the
+ crafting requirements.
+ Ghommie:
+ - bugfix: Fixed lobstrosities being able to fish other lobstrosities (and chests)
+ yet again.
+ Jacquerel:
+ - balance: Traitor reputation now advances at a fixed rate, not dependent on current
+ server population.
+ - balance: The dual esword, sleeping carp scroll, spider extract, and romerol vial
+ cannot be purchased if fewer than 20 players have joined the game.
+ Melbert:
+ - bugfix: Mirror reflections should be more accurate now
+ - bugfix: Becoming a Vampire while standing in front of a mirror correctly vanishes
+ you (rather than waiting to exit and enter the mirror's view)
+ - admin: Adds the Policy Panel verb, which shows you all the policy the server has
+ set.
+ SmArtKar:
+ - bugfix: Added a flatpacker flatpack to birdshot
+ - bugfix: Fixed scar overlays on eyes going out of sprite bounds
+ - bugfix: Fixes borgs not accepting encryption keys
+ - qol: Borg encryption key interactions now use balloon alerts, and popping out
+ a key puts it in your hands instead of dropping it on the ground.
+ - balance: Crusher marks now can be instantly detonated, but firing one puts you
+ on an attack cooldown again
+ - spellcheck: Added slightly more descriptive spellbook descriptions to Mjolnir
+ and Singulo Hammer
+ - bugfix: White canes need to be extended in order to allow you to examine faster
+ with them
+ - admin: Added better feedback to localhost Start Now button
+ - bugfix: AI uplink brain can no longer give you free ghost from which you can return
+ to your AI core
+ - bugfix: You can no longer dupe reagents or swap types mid-print with chemmaster
+ - bugfix: Spawn Debug Full Crew no longer runtimes
+ - admin: Spawn Debug Full Crew now explicitly warns you a second time if you're
+ attempting to use it as a non-localhost user.
+ - bugfix: Added BZ back to birdshot's xenobio
+ - balance: Gave space suits back half of their missing slowdown due to an oversight
+ in a prior change.
TealSeer:
- - bugfix: fixed cryoing with a storage implant dumping the contents of said implant
- onto the floor
+ - qol: air alarm wires are now labeled if you have the engineering skillchip
+ Xander3359:
+ - rscadd: Living heart can now track lost eldritch blades
+ jlsnow301:
+ - bugfix: Tgui menu component is fixed following tgui core v1.8.1
+ subject217:
+ - bugfix: Tramstation disposals now allow you to send mail to R&D.
+ timothymtorres:
+ - rscadd: Add irradiation to radioactive reagents uranium, radium, and polonium.
+ - balance: Radioactive reagents uranium, radium, and polonium now cause irradiate
+ effects when they come into contact with mobs or objects. This can be via several
+ means, ingestion, touch, or vapors. The more radioactive the reagent, the more
+ likely it is to irradiate. Polonium is the most radioactive with a x3 multiplier,
+ radium is next with a x2 multiplier, and uranium is the weakest with just a
+ x1 multiplier.
+ - balance: Polonium no longer guarantees instant irradiation when the reagent is
+ inside a mob.
2025-02-24:
- Arturlang:
- - bugfix: 'Fixed some bugs in the malf ai screen: one bluescreen, an extra
-
- colon, modules view'
- KazooBard:
- - rscadd: Chisels can be crafted [1 wood, 1 iron, screwdriver]
- ReturnToZender:
- - rscadd: Nurse costume suit now in loadout and medical vendor
- SpooksAnno:
- - rscadd: The ability to grab parts and cells as a borg.
+ DaCoolBoss:
+ - map: '[Birdshot] Deleted some badly-placed resin tiles in eastern maints.'
+ - map: '[Birdshot] Shuffled the items inside the Gold Standard Law Firm room to
+ look better.'
+ Ghommie:
+ - bugfix: cult slurring/stuttering now removed before the april fools punch line
+ upon conversion, thus untarnishing the Rick and Morty reference.
+ - bugfix: Fixing loaded trophy fishes possibly not having materials.
+ Hatterhat:
+ - rscadd: Glaive retool kits for proto-kinetic crushers are now in mining vendors'
+ ordering lists.
+ - code_imp: Proto-kinetic crusher retool kits now have support for alternate inhand
+ icon files with alternate dimensions.
+ K4rlox:
+ - rscadd: Human plushie has been added to the game, Obtainable thru Cargo, Loadouts
+ and Spawners.
+ Likteer:
+ - rscadd: Grown grass can be dryed (rack/dehumidifier) to make hay tiles.
+ SmArtKar:
+ - bugfix: Hitscan projectiles like emitter beams should look less weird during extreme
+ lag spikes
+ - bugfix: Moon amulet now properly turns insane people into converts and drains
+ sanity of sane people, instead of doing the inverse
+ StrangeWeirdKitten:
+ - bugfix: You can no longer be immune to megafauna with a polybelt as a mining mob.
+ Time-Green:
+ - rscadd: Taking plant or shadow limbs will now behave as expected! Take a plant
+ arm, and it will heal in light! Or take plant and shadow limbs and be in constant
+ agony as you realize this world was not made for you
+ - refactor: Refactors how we handle photosynthesis/nyxosynthesis by moving it into
+ a new status_effect framework controlled by podyparts
+ Y0SH1_M4S73R (with special thanks to Vect0r, whose original PR inspired the implementation of these changes):
+ - rscadd: Shuttle blueprints, the tool used to construct and modify custom shuttles.
+ Print a set at a science, engineering, or cargo techfab after researching Shuttle
+ Engineering, or craft a crude set from the crafting menu.
+ - rscadd: Shuttle blueprint database upgrade for engineering cyborgs, printable
+ from the Exosuit Fabricator after researching Shuttle Engineering. A version
+ of shuttle blueprints designed for use by cyborgs.
+ - rscadd: Shuttle frame rods, usable to construct custom shuttles. Hand-craft by
+ using 5 rods on 1 titanium sheet, or by printing them at a science, engineering,
+ or cargo techfab after researching Shuttle Engineering.
+ - rscadd: Custom shuttle flight control and navigation boards, printable from a
+ science, engineering, or cargo techfab after researching Shuttle Engineering.
+ - rscadd: Shuttle engine boards can be printed from a science, engineering, or cargo
+ techfab after researching shuttle engineering.
+ - rscadd: The shuttle engine supply pack is no longer locked behind the purchase
+ of the Build Your Own Shuttle kit.
+ - rscadd: Shuttle Construction Starter Kit goodie pack, containing a set of shuttle
+ blueprints, flight control and navigation console boards, and two engine boards,
+ can be purchased from cargo for 1200 credits. Requires aux base access to purchase.
+ - refactor: Shuttles now keep track of what areas are underneath each of their individual
+ turfs, so that the areas left behind on movement are consistent with what they
+ were beforehand.
+ - refactor: Shuttle ceilings now place themselves down as baseturfs, instead of
+ only appearing if the turf above is open space.
+ grungussuss:
+ - qol: ghost poll sound can now be disabled
+ - qol: ghost poll sound volume can now be tweaked
+ - sound: added new ghost poll sound.
+ - sound: normalised volume of ghost poll sounds
2025-02-25:
- ABoxFaux:
- - code_imp: Teshari and Vox primalis can now use size collars in dorms/interlink
- areas.
- Alecksohs:
- - code_imp: Vendors are now aware of sprite refits and will inform you if any are
- available.
- StrangeWeirdKitten:
- - rscadd: Seamless heels quirk
- - rscadd: Nameless Quirk
- xPokee:
- - rscadd: added the intern ghoul plushie to both in game and the loadouts
+ EOBGames:
+ - rscadd: 'No longer content to speak purely in Galactic Common, the Space Russians
+ have begun to use their own language: Spinwarder Russian. Best of luck in understanding
+ them; we sure don''t!'
+ Jacquerel:
+ - balance: Foam now passes through tables, grilles, computers, and several other
+ dense structures. You can still escape foam by mantling onto tables and such.
+ - balance: MODSuit parts now slow you only when deployed, regardless of whether
+ they are sealed.
+ - balance: MODSuit parts no longer slow you when they aren't deployed.
+ Melbert, Absolucy:
+ - qol: Touches up the language menu
+ SmArtKar:
+ - image: Resprited advanced robotic limbs
+ SmArtKar, PiotrTheTchaikowsky:
+ - image: Resprited boxing gloves
+ combustor:
+ - map: Added an air alarm to birdshot's engine room
2025-02-26:
- StrangeWeirdKitten:
- - rscadd: Hypnotic Quirk
- nikothedude:
- - rscadd: Quirk; venemous bite. Allows you to bite people and inject them with a
- venom, or medicine, of your choosing.
-2025-02-27:
+ Dmeto:
+ - bugfix: Nebulastation Supermatter is no longer hotwired roundstart.
+ Jacquerel:
+ - balance: The part of a MODsuit that the other parts deploy from always counts
+ as deployed for the purposes of speed calculation.
+ KingkumaArt:
+ - image: Cooked bacon resprited to be more visually clear that it's cooked
+ Melbert:
+ - rscadd: The Kitchen Coldroom, RND Server Room, Xenobio Kill Room, and Telecomms
+ on all maps now come equipped with walkable, transparent airtight plastic flaps.
+ - rscadd: Medbay Coldrooms are now consistently cold across all maps that has one.
+ They, too, now have plastic flaps.
+ - rscadd: Plastic flaps will now melt in hot environments / active fires. Cargo
+ flaps are more resilient to fire than kitchen flaps.
+ - qol: Open doors no longer layer beneath plastic flaps, in other words you can
+ actually click on them to shut them.
+ - qol: Plastic flaps may be less irritating to traverse for things which can already
+ pass through glass
+ - sound: Walking out of plastic flaps now has sfx. Crawling out is still silent.
+ SmArtKar:
+ - image: Resprited tinkerer gloves
+ - rscadd: You can use tables as makeshift lava bridges
+ - bugfix: Fixed crusher retool kits turning crushers invisible
+ SmArtKar, CoiledLamb:
+ - image: Resprited the handheld crew monitor
TealSeer:
- - bugfix: fixed the SAD deleting wounds
+ - qol: The RCD examine text now lists any upgrades it has installed.
+ TiviPlus:
+ - code_imp: The Discord Announcer for PRs is back
+ necromanceranne:
+ - balance: Mech PKA low-pressure damage has been reduced to 50, from 80. Increased
+ the attack cooldown to match the standard PKA.
+ - balance: Mech PKA AOE blast does not mine turfs, and only does 30% of the main
+ projectiles damage to mining mobs in the AOE effect.
+ - bugfix: The mech PKA AOE blast visual effect now properly appears when hitting
+ a mob directly.
+ - code_imp: MOB_MINING and MOB_CRUSTACEAN are now defined biotypes.
+ - code_imp: Audits some mining mob biotypes to make more sense based on what kind
+ of creature they are and to include MOB_MINING in their defines.
+ possiblepossibility:
+ - bugfix: fixes slaughter demon roundend report
+ - bugfix: Fixes (most) emergency access on maintenance airlocks on WawaStation
+ - bugfix: wizard statues are gray
+2025-02-27:
+ DaCoolBoss:
+ - balance: Trash items now contain small amounts of material.
+ Hatterhat:
+ - code_imp: Guns now have burst delay and fire delay variables instead of fire delay
+ affecting both. If a weapon's burst feels off, please submit an issue report.
+ Majkl-J:
+ - bugfix: The charging defib mount no longer runtimes when there's no defib
+ SmArtKar:
+ - bugfix: Fixed flesh reshaper not being placeable on table
+ - bugfix: Sphere transform module no longer makes you spin permanently
+ - bugfix: You can now lean on falsewalls
+ - bugfix: You can no longer activate anomalock heart's voltaic overdrive/tenacity
+ trauma by pulling off some surgery shenanigans
+ - bugfix: You no longer lose tenacity trauma gained via lobotomy after losing voltaic
+ override
+2025-02-28:
+ Profakos:
+ - bugfix: Request consoles once again enter emergency mode when you hit an emergency
+ button
+ SmArtKar:
+ - image: Resprited GPSs
+ - bugfix: You can no longer try to occupy an AI uplink brain already occupied by
+ another AI
+ - bugfix: Armsy (aka Lord Of The Night (aka flesh snek (aka heretic ascention)))
+ no longer affects itself with its own spells
diff --git a/html/changelogs/archive/2025-03.yml b/html/changelogs/archive/2025-03.yml
index e860683af1e..10331dc3089 100644
--- a/html/changelogs/archive/2025-03.yml
+++ b/html/changelogs/archive/2025-03.yml
@@ -1,504 +1,31 @@
-2025-03-02:
- Alecksohs:
- - rscadd: Added a omni-species Kiryu-esque outfit to the Outfit Vendor.
-2025-03-03:
- StrangeWeirdKitten:
- - rscdel: Clientless mobs should no longer flash CI.
- - admin: ghosted admins who LOOC now show by their ckey
-2025-03-04:
- liz-lavenza:
- - bugfix: fixed cryopods dropping prosthetic bodyparts of despawned mobs
-2025-03-05:
- BurgerBB:
- - rscdel: Reduces the weight of round-start malf ai from 10 to 2.
+2025-03-01:
+ SmArtKar:
+ - bugfix: Cyborg pre-screening dogtags should once again be given to crew with the
+ quirk of the same name.
+ TiviPlus:
+ - code_imp: cleaned up some mass var edit code
necromanceranne:
- - bugfix: The traitor guncase properly checks for condition changes before letting
- a player activate the time bomb.
-2025-03-06:
- Arturlang:
- - bugfix: fix color picket problems introduced by the upstream, specifically the
- blooper and mutantparts color picker
- LT3:
- - bugfix: Examine boxes no longer restricted in width
- - bugfix: Fixed missing light mode text classes
- Majkl-J:
- - image: New icon for sec hailers' backup call
- - bugfix: Sec hailers no longer broadcast comms
- - bugfix: Positive Quirks math correctly again
- - bugfix: LOOC and Whisper are no longer dark and evil
- Odairu:
- - balance: malf ai weight from 2 to 6
- TealSeer:
- - bugfix: fixed the missing buttons in the communication console
- - bugfix: fixed company imports tab missing in cargo console
- xPokee:
- - bugfix: shadekin no longer blink
-2025-03-07:
- Majkl-J:
- - bugfix: Quirks actually only add/remove 1x the points, not twice
- - bugfix: Fixed depguard batons missing sprites
-2025-03-08:
- Alecksohs:
- - image: Resprites Wood Walls, adds new Wood Flooring.
- - map: updated the Biodome Bar area.
- Bangle, StrangeWeirdKitten:
- - sound: Lavaland has new ambiance.
- LT3:
- - rscadd: Added disease outbreak incident display
- - bugfix: Purr consistently purrs the correct emote
- Majkl-J:
- - bugfix: Digi shoes render correctly
- SarmentiCampbell:
- - rscadd: Persistence cyborgs are now a thing.
- - map: added 2 persistence borg spawner in persistence
- TealSeer:
- - bugfix: fixed various projectiles having inverted speeds
- iskawhiskers, shayoki:
- - rscadd: 'new sprite accessories: floppy (ears), big legs with pegfeet (taur legs),
- porcine and porcine + tusks (snout)'
- nikothedude:
- - rscadd: Wheelchair now in the inhand section of loadout
- xPokee:
- - bugfix: fixed xenos lacking their abilities
-2025-03-10:
- Odairu:
- - code_imp: adds handling for borg skins to have their own unique item sprites for
- item sprites other borgs may not have
- - image: adds new borg sprites
- nikothedude:
- - bugfix: Taur clothing rendering is mostly functional
-2025-03-12:
- Majkl-J:
- - bugfix: Having digi legs is now baked into your bodypart_overrides, speeding up
- replace_body, and fixing a bug with slime legs
- Odairu:
- - bugfix: emissives for sci dragon borg will show up now when sitting
- TealSeer:
- - bugfix: fixed 9x25mm magazines being invisible
- - bugfix: fixed hemophages missing their blood meter
-2025-03-13:
- Ghommie:
- - bugfix: You no longer jitter when crawling under tables and the likes as a borer
- or from of army crawling.
- Majkl-J:
- - bugfix: Akula hair now layers correctly
-2025-03-14:
- Majkl-J:
- - bugfix: You no longer get randomly whitewashed when spawning with a different
- species and planti legs
-2025-03-16:
- 00-Steven:
- - bugfix: Harvesting botany plants actually uses the right drop location. Botany
- plants harvested by monkey hardworkers on big manipulators harvesting using
- a full plant bag no longer puts the resulting items inside of the big manipulator.
- - qol: Added screentips to the big manipulator.
- - bugfix: You can actually open the big manipulator's wires UI while holding an
- assembly.
- - bugfix: Jumpsuit sensors context tips actually show when you are holding the jumpsuit.
- - qol: You may right click to change jumpsuit sensors when it's in your active hand,
- instead of having to swap to an empty hand or drop it to do so.
- - bugfix: Emotion mask reskinning works properly
- Absolucy:
- - admin: Certain UI-based tools (plane debugger, filter editor, etc) that were given
- to admins with only +VAREDIT or +DEBUG, but refused to open without +ADMIN,
- now actually work for admins that have the needed permission.
- - bugfix: SecurEye now properly follows moving cameras.
- - bugfix: Syndicate encryption keys properly protect against AoE radio jamming again.
- - refactor: Refactored some code relating to how entertainment monitors are notified
- of active feeds.
- - bugfix: Fixed more advanced regex-based chat highlights not working.
- - bugfix: Being a team antagonist will no longer hide all of your other antagonist
- roles from the roundend report, i.e a BB+traitor will properly show as both
- a BB and a traitor in the roundend report.
- - qol: Messages from blood cult communion, abductor telepathy, xeno hivemind, golem
- resonator, blob telepathy, changeling hivemind, and binary chat are now considered
- "radio" messages by the chat, so they can properly be sorted via chat tabs.
- - qol: Your own messages in blood cult communion, abductor/xenomorph/changeling
- hivemind, or golem telepathy will no longer be highlighted in chat (to prevent
- highlight spam whenever you talk if you highlight your own name, mainly)
- - bugfix: Fixed some hearing sensitive objects hearing the same thing multiple times,
- such as the broadcast camera sending everything to the entertainment channel
- twice.
- - qol: Changed the civilian bounty console's cooldown message to a balloon alert,
- and it now says like "1 minute and 30 seconds" instead of "1.5 minutes"
- - code_imp: Minor improvements to civilian bounty console code.
- - code_imp: Removed a random unused var on space turfs.
- Aniantan:
- - bugfix: Can of fishing bait no longer evaporates its bait when used on an active
- fishing rod
- - bugfix: Can of fishing bait's quick refill can be used with the fishing rod's
- UI too
- - bugfix: You can no longer "use" can of bait on non-bait slots in fishing rod
- Archemagus:
- - code_imp: Shuttles with walls painted via color var shouldn't lose their walls
- in transit
- - rscadd: 'Many things now handles via AAS: Bounty Cubes, Request Consoles, Brig
- Cells, Vending Machines and Orion Trails alerts, Weather Reports, Cargo Order
- Console'
- - code_imp: Now anyone can make their own entry for AAS
- - refactor: AAS internals, also cleanup
- Archie700:
- - qol: Gives a confirmation box describing the mayhem in a bottle's effect when
- a player tries to break the bottle. Player must confirm before bottle takes
- effect.
- AyIong:
- - bugfix: Fixed random chat BSOD on Byond 516
- Ben10Omintrix:
- - qol: the raptor minigame now no longer opens up a new window
- - rscadd: the raptor minigame has been reworked
- DaCoolBoss:
- - balance: Trash items now contain small amounts of material.
- - map: '[Birdshot] Deleted some badly-placed resin tiles in eastern maints.'
- - map: '[Birdshot] Shuffled the items inside the Gold Standard Law Firm room to
- look better.'
- Dmeto:
- - bugfix: Nebulastation Supermatter is no longer hotwired roundstart.
- EOBGames:
- - rscadd: 'No longer content to speak purely in Galactic Common, the Space Russians
- have begun to use their own language: Spinwarder Russian. Best of luck in understanding
- them; we sure don''t!'
- EnterTheJake:
- - spellcheck: Updated the description on a few heretic knowledges to display the
- crafting requirements.
- - balance: '"Wolves Among Sheep" cooldown increased from 2 to 5 minutes.'
- - rscadd: New Heretic starting Side-Knowdge Warren King's Welcome
- - rscadd: New Heretic T1 Side knowledge, Phylactery Of Damnation.
- - rscadd: New Heretic T2 Side knowledge, Ether Of The Newborn.
- - rscadd: New Heretic T3 Side knowledge, Codex Morbus.
- - rscadd: New Heretic T2 Side knowledge, Rust Sower grenade.
- - rscadd: New Heretic T3 Side knowledge, Greaves Of The Prophet.
- - rscadd: New Blade Path Spell, Wolves Among Sheep.
- - balance: Heretic curses have been removed from the tree and bundled in the new
- Knowledge, Codex Morbus.
- - balance: Blade Path tree has been shuffled a bit, all spells have been moved up
- by one tier to make space for the new spell.
- Ez-Briz:
- - bugfix: fixed bluescreen in Access Checker interface
- FlufflesTheDog:
- - bugfix: crafted medibots are more consistently corporeal
- Ghommie:
- - bugfix: Space dragons' eyes, teeths and claws (and shark form's underside) are
- once again of a different color than the rest of the body.
- - balance: objects made out of meat are no longer classified as gross food on top
- of being raw and meaty, and actually contain protein and fat instead of standard
- nutriment and oil.
- - balance: the pizza material stacks, crafted with margherita pizza and rollig pin
- mind you, no longer magically contain pepperoni.
- - bugfix: cult slurring/stuttering now removed before the april fools punch line
- upon conversion, thus untarnishing the Rick and Morty reference.
- - bugfix: Trying to fish on an adjacent spot won't end up hitting other things on
- the same turf (provided you actually click the fishing spot and not other things).
- - bugfix: Fixing the icon state for the "fritterish" fish variants.
- - balance: It's now possible to take trophy fish from previous shifts off their
- mounts without turning them into dust based on a probability revolving around
- the size and weight of the fish against your fishing skill.
- - rscadd: Added three tips to the fishing tips text file.
- - bugfix: Fixed lobstrosities being able to fish other lobstrosities (and chests)
- yet again.
- - bugfix: Follower hoodies can now be crafted.
- - bugfix: Fixing loaded trophy fishes possibly not having materials.
- GwynCodes:
- - rscadd: Added a button in the "Secrets" menu to alter the department console order
- delay.
- - qol: Button makes it easier to find cargo related bugs.
- - code_imp: Changed code in department_order.dm to allow for overriding the order
- cooldown duration.
- - admin: Created an admin button in the "Secrets" panel.
- Hatterhat:
- - rscadd: Glaive retool kits for proto-kinetic crushers are now in mining vendors'
- ordering lists.
- - code_imp: Proto-kinetic crusher retool kits now have support for alternate inhand
- icon files with alternate dimensions.
- - balance: Spacemen (e.g. you, the reader) grappling a target now prioritize using
- their bare hands to beat their target to death if they're grappled, instead
- of contorting in weird ways to kick them (also, presumably, to death).
- - balance: Spacemen have learned to Punch Good(er) against grappled targets, leading
- to kick-tier damage against standing grappled targets - even if they're not
- doing the grappling.
- - balance: Strong-Arm implant users also benefit from the training of punching grappled
- people as well - as a treat, horizontal targets slam into the ground and break
- tiling for no additional damage, but a very visible sign of "oh god someone
- got pasted here".
- - code_imp: Guns now have burst delay and fire delay variables instead of fire delay
- affecting both. If a weapon's burst feels off, please submit an issue report.
- - qol: Holosigns (engineering holobarriers, janitor holosigns, PENLITE holobarriers,
- etc.) can now be projected onto doors.
- - qol: Holofans from ATMOS holoprojectors can now be projected onto doors, windows,
- and grilles.
- - bugfix: The Sakhno SKS no longer ejects its entire internal magazine upon interaction.
- To facilitate this, it now requires the bolt to be open like its bolt-action
- contemporaries in order to load ammunition.
- - bugfix: You can no longer force ammunition into Sakhno precision rifles and other
- bolt-action-likes through a closed bolt.
- Holoo-1:
- - qol: cult spells no longer overlap with second row of inventory
- - bugfix: fixed circuit connections not being drawn outside initial screen on 516
+ - code_imp: Cleans up a bit of human punch code.
+ - bugfix: Stagger combos occur at the correct threshold, and properly utilize armor
+ or a threshold minimum, adjusted for puncher limb accuracy.
+2025-03-02:
Jackraxxus:
- bugfix: AI will no longer deathloop after being revived with 0 backup power.
- - admin: Added a new config to force admins to deadmin when readying up or latejoining
- the round.
Jacquerel:
- - rscadd: Players who choose to be evil via the quirk menu will be reminded at roundstart
- that this doesn't exempt them from server rules.
- - spellcheck: Makes some VV input prompts clearer to read and use
- - bugfix: Prisoners will no longer spawn on Tram with an item which allows them
- to immediately exit the jail.
- - balance: Prisoners also don't get bonus goodies in their internals box when the
- station trait rolls, because we're mean.
- rscadd: You can transplant xenomorph tails onto people.
- - admin: Gives admins the ability to make mobs say/emote things from a list at random
- intervals for the rest of their lives.
- - admin: Added easier tooling for admins to add or change the AI controllers on
- mobs
- - balance: MODSuit parts now slow you only when deployed, regardless of whether
- they are sealed.
- - balance: MODSuit parts no longer slow you when they aren't deployed.
- - rscdel: Misplaced or stolen traitor uplinks can no longer be recreated using a
- radio code and special device, guard yours carefully or buy a backup implant.
- - rscdel: Roundstart traitors can no longer take on additional objectives in order
- to earn additional Telecrystals and fast-forward any unlock timers on items.
- They also cannot earn the ability to complete a Final Objective.
- - balance: Roundstart traitors can now buy the Contractor Kit from their traitor
- uplink, rather than only midround traitors.
- - rscadd: Traitors can buy Romerol for 25 TC, after 30 minutes of time has passed
- in a round.
- - balance: The reputation "time locks" on various items in the Traitor uplink have
- been reduced or removed. Effected items include the holoparasite kit, energy
- sword, power fist, gloves of the northstar, pizza bomb, bag of x4, combat bakery
- kit, reverse revolver, kinetic accelerator modkit, laser arm implant, concealed
- weapon bay, chemical dart gun, and stationwide APC check.
- - balance: The centcom inspector costume is now more expensive.
- - rscdel: Several previously nukie-only wardrobe options in the traitor uplink are
- now once more only available to nuclear operatives.
- - rscdel: Spies can no longer receive an elite nuclear operative suit.
- - balance: Foam now passes through tables, grilles, computers, and several other
- dense structures. You can still escape foam by mantling onto tables and such.
- - image: Watchers won't display an animated cog at the same time as using their
- gaze attack.
- - balance: The part of a MODsuit that the other parts deploy from always counts
- as deployed for the purposes of speed calculation.
- - rscadd: Adjusted what things you can hallucinate people being accused of doing
- or being over the radio
- bugfix: The Warp Cube will now fail if it tries to teleport you to nowhere, instead
of turning you blue and then failing
- - rscadd: Apples now react appropriately if they impact doctors or scientists under
- the expected circumstances.
- - bugfix: Traitor reputation (which is now basically just a number representing
- how many seconds were in the round) is no longer displayed on the roundend screen.
- - balance: Traitor reputation now advances at a fixed rate, not dependent on current
- server population.
- - balance: The dual esword, sleeping carp scroll, spider extract, and romerol vial
- cannot be purchased if fewer than 20 players have joined the game.
- Jacquerel, Dawnseer, & Carlarc:
- - rscadd: Added a variety of shoes to the loadout system
- - rscadd: Added another pair of pairs of glasses to the loadout system
- - rscadd: Added a variety of pocket items to the loadout system
- - rscdel: Removed the Colourist quirk, as you can now get the exact same item via
- the loadout system
- JohnFulpWillard:
- - admin: Check antagonists & del/law/dna/fingerprint/radio log panels use browsers
- which means they have darkmode. Also the tram panel will cancel out if you click
- cancel.
- - admin: Reload Configuration can be cancelled via the alert it gives you.
- K4rlox:
- - rscadd: Human plushie has been added to the game, Obtainable thru Cargo, Loadouts
- and Spawners.
- Kashargul:
- - bugfix: TG chat can no longer initialize before the settings loading was called
- - qol: chat settings can be exported and imported
- - bugfix: tgui say 516 will no longer change channels when the button is used to
- drag it
- - bugfix: tgui say 516 will no longer leak radio messages into the wrong channel
- - bugfix: runechat flickering when faded up messages fade out
- KingkumaArt:
- - image: Cooked bacon resprited to be more visually clear that it's cooked
- Kiromaka:
- - balance: Helbital reaper is now 100x more likely.
- Kocma-san:
- - qol: ERT leaders now have a headset with high-volume mode
- - bugfix: Deathsquad Officer will now have proper outfit
- LT3:
- - bugfix: Revert next map command actually reverts the map vote
- - admin: Admins now have a verb to revert the map vote
- LePiromano:
- - balance: nerfed Icebox's "The Thing" boss
- - bugfix: fixed "The Thing" 's spike walls destroying items on the floor when summoned
- LemonInTheDark:
- - config: the config loader now supports relatively pathed imports (importing a
- file inside a subfolder now acts as if you were IN that subfolder)
- LikeLakers2:
- - bugfix: Fixes a potential runtime with the radioactivity mutation.
- Likteer:
- - rscadd: Grown grass can be dryed (rack/dehumidifier) to make hay tiles.
- Majkl-J:
- - bugfix: The charging defib mount no longer runtimes when there's no defib
Melbert:
- - qol: '[Icebox] Botany''s Holofirelocks are now walkable plastic flaps'
- bugfix: Ion Storms should be far far far less likely to purge ais and far far
far more likely to replace the ai's lawset with a new set
- - bugfix: Fixed offset during vehicle traversal over boxes and tables, as well as
- while floating
- - bugfix: Spy uplink scans on RMB as intended
- - qol: When reaching the wizard grand finale, you no longer get locked into finale
- effects that cannot yet be invoked.
- - rscadd: The Kitchen Coldroom, RND Server Room, Xenobio Kill Room, and Telecomms
- on all maps now come equipped with walkable, transparent airtight plastic flaps.
- - rscadd: Medbay Coldrooms are now consistently cold across all maps that has one.
- They, too, now have plastic flaps.
- - rscadd: Plastic flaps will now melt in hot environments / active fires. Cargo
- flaps are more resilient to fire than kitchen flaps.
- - qol: Open doors no longer layer beneath plastic flaps, in other words you can
- actually click on them to shut them.
- - qol: Plastic flaps may be less irritating to traverse for things which can already
- pass through glass
- - sound: Walking out of plastic flaps now has sfx. Crawling out is still silent.
- - bugfix: Preference dummy now properly updates when changing some species features
- - qol: If you have the bald quirk selected, the wig shows up on the preference dummy
- - qol: If you have the bald quirk selected, and your role starts with a hat, the
- hat will start attached to your wig
+ - rscadd: Battle arcades get funny names again
- bugfix: Roundend title music will play at half volume again
- bugfix: April Fools lobby music will correctly always be clown music
- bugfix: Lobby Music will repeat across sequential rounds less often
- - balance: Reworks Changeling's Darkness Adaptation. It's strength now scales with
- how dark your environment is, rather than being static transparency.
- - bugfix: Fixes Digital Camo's examine message
- - rscadd: If you are sufficiently drunk, you can resist your phobias and social
- anxiety.
- - bugfix: Wigs no longer color their hats
- - bugfix: Mirror reflections should be more accurate now
- - bugfix: Becoming a Vampire while standing in front of a mirror correctly vanishes
- you (rather than waiting to exit and enter the mirror's view)
- - bugfix: Fixed grab offsets not showing for anything but passive grab
- - bugfix: Fix jank with mob offsets when riding things
- - refactor: Refactored riding component, particularly how it selects layer and offsets.
- Report any oddities
- - refactor: Refactored pixel offsets of mobs. Report any oddities
- - bugfix: '[Delta] Rearranges / adds some missing wallmounts'
- - rscdel: Honorific "full name" setting no longer cares about mononyms, meaning
- Lizards and people with similarly hyphenated names will no longer get their
- name butchered.
- - bugfix: You can hear looping computer sounds again
- - sound: Snowstorms now have sounds associated.
- - admin: Adds the Policy Panel verb, which shows you all the policy the server has
- set.
- - rscadd: Battle arcades get funny names again
- - rscadd: Your mood will increase further the more drunk you are. Until you crash
- out.
- - bugfix: Fixed random names always giving male names
- - rscadd: EVA doors become all access on Red Alert
- - rscadd: First Aid Supplies (the compartments in Medbay Storage which hold medkits)
- become all access on Red Alert (already present on Icebox). Medbay Storage itself
- does NOT become all access.
- Melbert, Absolucy:
- - qol: Touches up the language menu
- Melbert, Wallem:
- - rscadd: Adds recording setups to the Captain's office on all maps, allowing them
- to project their face to all status displays on the station
- - rscadd: Centcom now has a soundstage for broadcasting to the station. It's besides
- the Thunderdome.
- MelokGleb:
- - image: broken radio is now not flat and old
- MichiRecRoom:
- - bugfix: The component printer now shows icons for the items in its UI.
- - bugfix: Nukes will now always be deleted upon exploding, no matter if they have
- a valid cutscene to play.
- - bugfix: The cleaning AI behavior (generally used by cleanbots) will no longer
- return early if the list of emagged phrases is empty.
- MrMelbert, Time-Green:
- - rscadd: Adds an organ tree as a mutation of shrubs (from the exotic seeds crate)!
- Spare organs have never been so green!
OrionTheFox:
- - map: Tramstation Evidence Storage now has secure lockers, a security records filing
- cabinet, and number labels on unsecure lockers
- qol: Mirrors now have context tips, and can now be unmounted from walls with a
Wrench. (Magic ones can't be removed though. Because magic.)
- Paxilmaniac:
- - balance: The syndie smartgun has 2 tile aimbot now
- Profakos:
- - bugfix: Request consoles once again enter emergency mode when you hit an emergency
- button
- Rengan:
- - sound: the volume that vox, admin sound, insturments play at can now be tweaked
- in preferences, check your preferences!
- - sound: Elevator now uses ambience volume preference, jukeboxes uses instrument
- volume preference and end of round musics uses admin music volume preference.
- - bugfix: When you cast examine to the disguised detective, its assignment will
- now display correctly.
- Rhials:
- - spellcheck: Fixes grammar in autosurgeon use message.
- RusselNotSCP:
- - qol: Andromeda Bitters bottle now only dispenses in 1-5u increments
- Sadboysuss:
- - sound: regenerative meshes now make sounds when healing and have new drop/pickup
- sounds
- Singul0:
- - rscadd: After some light bit of restructuring, the local TV station, serving SPACE
- SECTOR 13 has opened up again!
- - balance: Buffs the energy cells borg factory-spawned cyborgs spawn with (They
- are now T2 cells)
- - bugfix: fixes unwalkable tiles in the film studio bar
SmArtKar:
- - bugfix: 'Fixed pre-filled fish stasis cases breaking fish inside of them
-
- /:cl'
- - bugfix: Cyborg pre-screening dogtags should once again be given to crew with the
- quirk of the same name.
- - bugfix: Fixed missing distro pipe in CE's office, and missing cable in tech storage
- - bugfix: Added a flatpacker flatpack to birdshot
- - bugfix: Removed a rogue fire alarm from DeltaStation's freezer
- - bugfix: Immortal pyro anomalies no longer (unsuccessfully) attempt to spawn pyro
- slimes
- - bugfix: Fixed inconsistent crusher trophy droprates
- - bugfix: Fixed exceptionally dark armrests on chairs
- - bugfix: Fixes borgs not accepting encryption keys
- - qol: Borg encryption key interactions now use balloon alerts, and popping out
- a key puts it in your hands instead of dropping it on the ground.
- - code_imp: Split and cleaned up mining loot's code
- - refactor: Refactored the hierophant club.
- - bugfix: Hierophant club's beacon no longer can go missing (until you try using
- it)
- - bugfix: Fixed external organs not being colored by colorful reagent
- - bugfix: You can no longer stuff abstract concepts of kisses and slaps into someone's
- chest cavity
- - bugfix: You no longer get set ablaze by a person you're fireman carrying through
- lava while riding a raptor
- - map: Moved Birdshot's tech storage to be between bridge and engineering, with
- a brand old abandoned brewery in its former place.
- - bugfix: Added BZ back to birdshot's xenobio
- - rscadd: You can use tables as makeshift lava bridges
- - bugfix: Armsy (aka Lord Of The Night (aka flesh snek (aka heretic ascention)))
- no longer affects itself with its own spells
- - bugfix: Fixed map votes not refreshing the amount of possible choices
- - bugfix: Fixed fake airlock bolts being examineable
- - bugfix: Fixed most mining mobs being unaffected by additional damage against them
- - bugfix: You can no longer activate anomalock heart's voltaic overdrive/tenacity
- trauma by pulling off some surgery shenanigans
- - bugfix: You no longer lose tenacity trauma gained via lobotomy after losing voltaic
- override
- - bugfix: Examining walls no longer allows you to see items mounted on its other
- side
- - admin: Added better feedback to localhost Start Now button
- - bugfix: Connected Birdshot dorms to distro
- - bugfix: Fixed scars not being examine-able if you wore a mask
- - bugfix: Fixed uniform sensors being examine-able even when worn under a spacesuit.
- - image: Resprited the hierophant arena
- - balance: Crusher marks now can be instantly detonated, but firing one puts you
- on an attack cooldown again
- - bugfix: Moon amulet now properly turns insane people into converts and drains
- sanity of sane people, instead of doing the inverse
- - bugfix: You can no longer dupe reagents or swap types mid-print with chemmaster
- - spellcheck: Added slightly more descriptive spellbook descriptions to Mjolnir
- and Singulo Hammer
- - bugfix: Sphere transform module no longer makes you spin permanently
- - qol: Cybernetic arm implants now automatically change insertion zones without
- the need to screwdriver them.
- - bugfix: Fixed broken layering on some vehicles
- - bugfix: Fixed hat stabilizers not detaching clothing traits, turning any helmet
- with a pacifism bud attached into one.
- - qol: SiliConnect now informs you that you're successfully downloading logs
- - bugfix: Fixes SiliConnect not being able to download logs
- - bugfix: Fixed mapvotes spontaneously failing
- - bugfix: Fixed balloon alert positioning on wide mobs
- rscadd: Foam darts now stick to people when they have their cap on, riot foam
darts also can passively deal a bit of stamina damage when you move with one.
- rscadd: Syringes can be inserted into foam darts, making them embed and slowly
@@ -508,190 +35,79 @@
embed and slowly leak their contents.
- bugfix: Fixed projectiles sometimes not embedding when they should've
- code_imp: Cleaned embedding code up
- - bugfix: AI uplink brain can no longer give you free ghost from which you can return
- to your AI core
- - bugfix: Fixed flesh reshaper not being placeable on table
- - bugfix: Fixed certain hallucinations displaying below floors/decals/items
- - bugfix: Fixed missing HTML encodes in comms console code
- - bugfix: Fixed a missing wire under Wawa's Coldroom APC
- - bugfix: Going through lava while buckled to an object no longer explodes the server
- - bugfix: Fixed scar overlays on eyes going out of sprite bounds
- - image: Resprited all eyes and gave cybernetic eyes unique sprites
- - bugfix: Cult spells no longer play attack animation when clicking on an invalid
- target
- - image: Resprited tinkerer gloves
+ - bugfix: You no longer get set ablaze by a person you're fireman carrying through
+ lava while riding a raptor
- refactor: Refactored item action handling
- bugfix: You should no longer be able to get med/sec/diag HUDs by toggling a hud
in your pocket, or use jump boots from your hands.
- qol: Welding/breathing masks, hardhats and other glasses/helmets no longer show
their actions in your top bar while you're holding them in your hands.
- - bugfix: Getting a carp infusion or committing a certain holofish suicide no longer
- gets rid of your voidwalker overlay.
- - image: Resprited advanced robotic limbs
- - bugfix: You can no longer try to occupy an AI uplink brain already occupied by
- another AI
- - bugfix: Spawn Debug Full Crew no longer runtimes
- - admin: Spawn Debug Full Crew now explicitly warns you a second time if you're
- attempting to use it as a non-localhost user.
- - bugfix: Fixed prototype egun's electrodes instantly detaching
- - bugfix: Fixed night shifts removing coloring from lights
- - bugfix: Barroaches no longer disappear when worn on your head
- - image: Barroaches now have new worn sprites
- - bugfix: Objects on tables no longer get burnt by lava
- - bugfix: Stacking machines can now pick up bluespace crystals
- - bugfix: White canes need to be extended in order to allow you to examine faster
- with them
- - rscadd: Added a new 3D printable gun "The Liberator", you can find the gun itself
- or its design disc in maintenance tunnels.
- - bugfix: Hitscan projectiles like emitter beams should look less weird during extreme
- lag spikes
- - bugfix: Makes glowstick fluid respect chosen RLD color
- - image: Resprited GPSs
- - bugfix: Fixed pyroclastic slime RRing ghosts
- - bugfix: Fixed ChemMaster incorrectly lableling produced items
- - bugfix: Chef's love and french kissing no longer can stop laser projectiles of
- syndiekissers.
- - code_imp: Unified two parts of kiss code.
- - bugfix: You can now lean on falsewalls
- - bugfix: Fixed constant hotspot runtimes
- - bugfix: Hotspots should properly play their SFX when created by sources other
- than plasmafires.
- - bugfix: Fixes rideable mob layering
- - bugfix: Fixed dress and gown rendering below gloves and shoes
- - balance: Space helmets and bio/bomb/rad hoods have lost their slowdown/FOV respectively,
- but now can have their visor covered by spraypaint or pepper spray.
- - balance: Driscoll mask no longer protects your eyes, unlike welding gas mask which
- received said protection.
- - bugfix: Fixed duplicated comsigs/text and HARS head deletion from prosthetic replacement
- - admin: Admins can now make vendors free without too much hassle
- - bugfix: Fixes black vision for dextrous mobs using 516 version of BYOND
- - bugfix: Fixed perceptomatrix not applying any of its traits
- - balance: Gave space suits back half of their missing slowdown due to an oversight
- in a prior change.
- - bugfix: Fixed wooden rifle stock being uncraftable
- - bugfix: Fixed crusher retool kits turning crushers invisible
- SmArtKar, CoiledLamb:
- - image: Resprited the handheld crew monitor
- SmArtKar, PiotrTheTchaikowsky:
- - image: Resprited boxing gloves
- StrangeWeirdKitten:
- - bugfix: Character creator preview being miniature
- - bugfix: Design disks now have a cooldown when uploading to no longer crash the
- server.
- - bugfix: You can no longer be immune to megafauna with a polybelt as a mining mob.
- - bugfix: Megafauna should no longer attack eachother.
- - code_imp: Readds return_turf_delta_p() and is_nearby_planetary_atmos() as turf
- helpers.
- SyncIt21:
- - bugfix: multiplying reagents in cases like fishing & chem splash will yield accurate
- results. New amounts differ from present values
- - bugfix: converting reagents actually yields correct ph again
- - code_imp: improved performance of reagent logging
- - code_imp: copying reagents won't return false negatives for values lesser than
- 0.01
- TJatPBnJ:
- - balance: French fries are now immune to the effects of the floor. I miss floor
- fries
- TealSeer:
- - qol: The RCD examine text now lists any upgrades it has installed.
- - qol: The limb grower can now be unwrenched and rotated
- - qol: air alarm wires are now labeled if you have the engineering skillchip
- - qol: The medipen refiller can now be rotated when unanchored with alt-click
- - rscadd: the janitor's belt can now hold a trash bag. just one
+ mc-oofert:
+ - bugfix: The Thing (Outpost 31) will aggro if shot from outside aggro range, has
+ achievement
+ - balance: the loot room in outpost 31 now contains a freezer with a set of T2 robotic
+ organs, and a set of advanced medical tools. Also The Thing returns to its spawn
+ location if not aggroed
+ timothymtorres:
+ - bugfix: Fix illiterate people writing messages with crayons and spraycans.
+2025-03-03:
+ 00-Steven:
+ - bugfix: Harvesting botany plants actually uses the right drop location. Botany
+ plants harvested by monkey hardworkers on big manipulators harvesting using
+ a full plant bag no longer puts the resulting items inside of the big manipulator.
+ Ghommie:
+ - balance: objects made out of meat are no longer classified as gross food on top
+ of being raw and meaty, and actually contain protein and fat instead of standard
+ nutriment and oil.
+ - balance: the pizza material stacks, crafted with margherita pizza and rollig pin
+ mind you, no longer magically contain pepperoni.
+ Melbert:
+ - qol: '[Icebox] Botany''s Holofirelocks are now walkable plastic flaps'
+ SmArtKar:
+ - code_imp: Split and cleaned up mining loot's code
+ - refactor: Refactored the hierophant club.
+ - bugfix: Hierophant club's beacon no longer can go missing (until you try using
+ it)
+ - image: Resprited the hierophant arena
TheRyeGuyWhoWillNowDie:
- balance: wildcard limits have been removed from Agent ID cards
- balance: the specops crate gets a variation of the agent ID card which can only
hold limited access (same as it is now)
- - bugfix: chameleon IDs actually prevent AI tracking now
- Time-Green:
- - rscdel: Reverts sneeze projectiles
- - rscadd: Taking plant or shadow limbs will now behave as expected! Take a plant
- arm, and it will heal in light! Or take plant and shadow limbs and be in constant
- agony as you realize this world was not made for you
- - refactor: Refactors how we handle photosynthesis/nyxosynthesis by moving it into
- a new status_effect framework controlled by podyparts
- Time-Green, Donglesplonge, SmartKar:
- - rscadd: Adds the flesh reshaper to genetics and the Gene Engineering techweb!
- Restyle all those visual organs! Don't like your moth coworkers' wings? Restyle
- them to your liking!
TiviPlus:
- - code_imp: Made it easier to set custom orders for stat panel tabs in code
- code_imp: previously silent failures due to empty sounds or too low volumes will
now create a runtime in the runtime log
- bugfix: some footstep sounds like robotic or slimes are no longer silent
- - bugfix: fixed some filters (e.g displacement) in filteriffic bluescreening the
- UI
- - code_imp: deleted all remaining code referencing TGS3
- - code_imp: cleaned up some mass var edit code
- - bugfix: Fixed stat panel turf list menu clicks only working on the text
- - bugfix: fixed tgui alerts sometimes having a lot of empty space in their layout
- - code_imp: updated hslify to correctly detect all hexcodes
- - code_imp: optimized some icon code
- - code_imp: The Discord Announcer for PRs is back
- Vallat:
- - bugfix: fixed "Save chat log" verb
- Wallem:
- - qol: some tgui lists that use the same simple function--Navigation menu, Fulton
- navbeacon selection, Ghost teleportation, etc.--have been given a candystripe.
- Xackii:
- - rscadd: Big Manipulator now has use mode once again. You need buckle monkey to
- unlock this future.
- - rscadd: Big Manipulator now has wires.
- - bugfix: Big Manipualtor now sees objects that appeared on the tile using spawn
- or any other means in which the object is not considered to have moved
- Xander3359:
- - rscadd: Living heart can now track lost eldritch blades
- Y0SH1_M4S73R (with special thanks to Vect0r, whose original PR inspired the implementation of these changes):
- - rscadd: Shuttle blueprints, the tool used to construct and modify custom shuttles.
- Print a set at a science, engineering, or cargo techfab after researching Shuttle
- Engineering, or craft a crude set from the crafting menu.
- - rscadd: Shuttle blueprint database upgrade for engineering cyborgs, printable
- from the Exosuit Fabricator after researching Shuttle Engineering. A version
- of shuttle blueprints designed for use by cyborgs.
- - rscadd: Shuttle frame rods, usable to construct custom shuttles. Hand-craft by
- using 5 rods on 1 titanium sheet, or by printing them at a science, engineering,
- or cargo techfab after researching Shuttle Engineering.
- - rscadd: Custom shuttle flight control and navigation boards, printable from a
- science, engineering, or cargo techfab after researching Shuttle Engineering.
- - rscadd: Shuttle engine boards can be printed from a science, engineering, or cargo
- techfab after researching shuttle engineering.
- - rscadd: The shuttle engine supply pack is no longer locked behind the purchase
- of the Build Your Own Shuttle kit.
- - rscadd: Shuttle Construction Starter Kit goodie pack, containing a set of shuttle
- blueprints, flight control and navigation console boards, and two engine boards,
- can be purchased from cargo for 1200 credits. Requires aux base access to purchase.
- - refactor: Shuttles now keep track of what areas are underneath each of their individual
- turfs, so that the areas left behind on movement are consistent with what they
- were beforehand.
- - refactor: Shuttle ceilings now place themselves down as baseturfs, instead of
- only appearing if the turf above is open space.
+ subject217:
+ - balance: Contractor Kit is no longer available in lowpop.
+2025-03-04:
+ 00-Steven:
+ - qol: Added screentips to the big manipulator.
+ - bugfix: You can actually open the big manipulator's wires UI while holding an
+ assembly.
+ Absolucy:
+ - bugfix: Fixed more advanced regex-based chat highlights not working.
+ AyIong:
+ - bugfix: Fixed random chat BSOD on Byond 516
+ Holoo-1:
+ - qol: cult spells no longer overlap with second row of inventory
+ Kashargul:
+ - bugfix: tgui say 516 will no longer change channels when the button is used to
+ drag it
+ - bugfix: tgui say 516 will no longer leak radio messages into the wrong channel
+ - bugfix: runechat flickering when faded up messages fade out
+ MichiRecRoom:
+ - bugfix: The component printer now shows icons for the items in its UI.
+ - bugfix: Nukes will now always be deleted upon exploding, no matter if they have
+ a valid cutscene to play.
+ - bugfix: The cleaning AI behavior (generally used by cleanbots) will no longer
+ return early if the list of emagged phrases is empty.
+ Rhials:
+ - spellcheck: Fixes grammar in autosurgeon use message.
+ SmArtKar:
+ - bugfix: Fixed external organs not being colored by colorful reagent
+ - bugfix: Fixed inconsistent crusher trophy droprates
adamsong:
- rscadd: Added the ability for borgs to pathfind into and through restricted areas.
- combustor:
- - map: Added an air alarm to birdshot's engine room
- - map: Removed cameras from most break rooms and cargo warehouses.
- - qol: Added and moved a bunch of cameras to remove silly blind-spots and added
- cams to rooms where there should've been cams.
- - map: Added EVA shutter buttons to birdshot
- davethwave:
- - rscdel: Removed the weighting of viro symptoms
- distributivgesetz:
- - config: Added support for multiple chat channel configs for channel announcements.
- grungussuss:
- - sound: sutures got some sounds
- - qol: ghost poll sound can now be disabled
- - qol: ghost poll sound volume can now be tweaked
- - sound: added new ghost poll sound.
- - sound: normalised volume of ghost poll sounds
- - sound: new sounds for cloth items
- hry-gh:
- - bugfix: the admin music player works again on 516
- hyperjll:
- - qol: The Syndicate Tome's uplink description has been changed to mention it's
- functionality.
- - balance: Haloperidol's self-purge is drastically reduced while the host is stamina
- crit, as a result of permanent stamina crit no longer being a thing to worry
- about.
itsmeow:
- bugfix: Fixed lizard body markings and ethereal feature previews in the preference
menu missing some overlays.
@@ -702,235 +118,308 @@
It is persistent and suitable for use on local, with automatic invalidation.
- rscadd: Added admin verbs - Debug -> Clear Smart/Legacy Asset Cache for spritesheets.
- bugfix: Fixed R&D console icons breaking on WebView2/516
- jlsnow301:
- - bugfix: Tgui menu component is fixed following tgui core v1.8.1
- larentoun:
- - bugfix: Changeling egg burst now correctly gives "monkey (123)" name for the changeling-monkey
- instead of getting a random human name.
- leaKsi:
- - bugfix: Fixed a few sanitization issues.
mc-oofert:
- bugfix: prevents stripping in caretakers last refuge
- - bugfix: The Thing (Outpost 31) will aggro if shot from outside aggro range, has
- achievement
- - balance: the loot room in outpost 31 now contains a freezer with a set of T2 robotic
- organs, and a set of advanced medical tools. Also The Thing returns to its spawn
- location if not aggroed
- bugfix: the eldritch id (Lock path) now preserves the ID used.
+ timothymtorres:
+ - bugfix: Fix hauntinum reagent to work when it is exposed to item objects.
+2025-03-05:
+ Jacquerel:
+ - rscadd: Apples now react appropriately if they impact doctors or scientists under
+ the expected circumstances.
+ StrangeWeirdKitten:
+ - bugfix: Megafauna should no longer attack eachother.
+ TJatPBnJ:
+ - balance: French fries are now immune to the effects of the floor. I miss floor
+ fries
+2025-03-06:
+ Absolucy:
+ - qol: Messages from blood cult communion, abductor telepathy, xeno hivemind, golem
+ resonator, blob telepathy, changeling hivemind, and binary chat are now considered
+ "radio" messages by the chat, so they can properly be sorted via chat tabs.
+ - qol: Your own messages in blood cult communion, abductor/xenomorph/changeling
+ hivemind, or golem telepathy will no longer be highlighted in chat (to prevent
+ highlight spam whenever you talk if you highlight your own name, mainly)
+ Ghommie:
+ - bugfix: Follower hoodies can now be crafted.
+ Kashargul:
+ - bugfix: TG chat can no longer initialize before the settings loading was called
+ - qol: chat settings can be exported and imported
+ LemonInTheDark:
+ - config: the config loader now supports relatively pathed imports (importing a
+ file inside a subfolder now acts as if you were IN that subfolder)
+ Melbert:
+ - bugfix: Fixed random names always giving male names
+ Singul0:
+ - balance: Buffs the energy cells borg factory-spawned cyborgs spawn with (They
+ are now T2 cells)
+ TheRyeGuyWhoWillNowDie:
+ - bugfix: chameleon IDs actually prevent AI tracking now
+ hry-gh:
+ - bugfix: the admin music player works again on 516
+2025-03-07:
+ Ben10Omintrix:
+ - qol: the raptor minigame now no longer opens up a new window
+ - rscadd: the raptor minigame has been reworked
+ Kocma-san:
+ - qol: ERT leaders now have a headset with high-volume mode
+ - bugfix: Deathsquad Officer will now have proper outfit
+ Melbert:
+ - bugfix: Wigs no longer color their hats
+ - bugfix: You can hear looping computer sounds again
+ StrangeWeirdKitten:
+ - bugfix: Design disks now have a cooldown when uploading to no longer crash the
+ server.
+ necromanceranne:
+ - balance: Last resort is no longer an innate changeling ability. Changeling on
+ changeling violence is back on the menu. (literally)
+ possiblepossibility:
+ - rscadd: you may now take out individual slices of pizza
+2025-03-08:
+ Ghommie:
+ - balance: It's now possible to take trophy fish from previous shifts off their
+ mounts without turning them into dust based on a probability revolving around
+ the size and weight of the fish against your fishing skill.
+ Hatterhat:
+ - bugfix: The Sakhno SKS no longer ejects its entire internal magazine upon interaction.
+ To facilitate this, it now requires the bolt to be open like its bolt-action
+ contemporaries in order to load ammunition.
+ - bugfix: You can no longer force ammunition into Sakhno precision rifles and other
+ bolt-action-likes through a closed bolt.
+ Melbert:
+ - rscadd: If you are sufficiently drunk, you can resist your phobias and social
+ anxiety.
+ - rscadd: Your mood will increase further the more drunk you are. Until you crash
+ out.
+ SmArtKar:
+ - image: Resprited all eyes and gave cybernetic eyes unique sprites
necromanceranne:
- - image: Changes Sakhno rifles from olive drab to a wooden finish.
- bugfix: Touch protection actually respects the TOUCH exposure method.
- bugfix: You cannot Fry-Fu someone through bio protective clothing using three
drops of essential oils heated to the temperature of the sun.
+2025-03-09:
+ Absolucy:
+ - bugfix: Fixed some hearing sensitive objects hearing the same thing multiple times,
+ such as the broadcast camera sending everything to the entertainment channel
+ twice.
+ - qol: Changed the civilian bounty console's cooldown message to a balloon alert,
+ and it now says like "1 minute and 30 seconds" instead of "1.5 minutes"
+ - code_imp: Minor improvements to civilian bounty console code.
+ - code_imp: Removed a random unused var on space turfs.
+ Hatterhat:
+ - balance: Spacemen (e.g. you, the reader) grappling a target now prioritize using
+ their bare hands to beat their target to death if they're grappled, instead
+ of contorting in weird ways to kick them (also, presumably, to death).
+ - balance: Spacemen have learned to Punch Good(er) against grappled targets, leading
+ to kick-tier damage against standing grappled targets - even if they're not
+ doing the grappling.
+ - balance: Strong-Arm implant users also benefit from the training of punching grappled
+ people as well - as a treat, horizontal targets slam into the ground and break
+ tiling for no additional damage, but a very visible sign of "oh god someone
+ got pasted here".
+ - qol: Holosigns (engineering holobarriers, janitor holosigns, PENLITE holobarriers,
+ etc.) can now be projected onto doors.
+ - qol: Holofans from ATMOS holoprojectors can now be projected onto doors, windows,
+ and grilles.
+ LikeLakers2:
+ - bugfix: Fixes a potential runtime with the radioactivity mutation.
+ SmArtKar:
+ - bugfix: Removed a rogue fire alarm from DeltaStation's freezer
+ - bugfix: Fixed fake airlock bolts being examineable
+ - bugfix: Fixed most mining mobs being unaffected by additional damage against them
+ - bugfix: Fixed hat stabilizers not detaching clothing traits, turning any helmet
+ with a pacifism bud attached into one.
+ - bugfix: Fixed certain hallucinations displaying below floors/decals/items
+ - bugfix: Cult spells no longer play attack animation when clicking on an invalid
+ target
+ - bugfix: Fixed prototype egun's electrodes instantly detaching
+ - bugfix: Fixed night shifts removing coloring from lights
+ - bugfix: Objects on tables no longer get burnt by lava
+ - bugfix: Stacking machines can now pick up bluespace crystals
+ necromanceranne:
- bugfix: Makes absolutely sure we're removing Cyrogelidia's status effects if the
reagent is out of our mobs system.
- bugfix: The strongarm set bonus no longer requires a specific biotype to function.
You can now get the set bonus as an android.
- - balance: Having a strongarm implant installed into each arm now allows you to
- pry open doors.
- - bugfix: Prevents Cryogelidia from putting you into a permanent stasis until someone
- injects you with the reagent.
- - balance: Last resort is no longer an innate changeling ability. Changeling on
- changeling violence is back on the menu. (literally)
- - bugfix: Cryogelidia can no longer put you into stasis longer than the lifespan
- of the cube prison it kept you in.
- - code_imp: Cleans up a bit of human punch code.
- - bugfix: Stagger combos occur at the correct threshold, and properly utilize armor
- or a threshold minimum, adjusted for puncher limb accuracy.
- - rscadd: Replaces the 10mm semi-automatic surplus rifle with the Sakhno SKS semi-automatic
- rifle.
- - rscadd: You can acquire a SKS parts kit from the black market.
- - bugfix: Pellet clouds now can cause bleeds and punctures if the projectile is
- sharp.
- - balance: Mech PKA low-pressure damage has been reduced to 50, from 80. Increased
- the attack cooldown to match the standard PKA.
- - balance: Mech PKA AOE blast does not mine turfs, and only does 30% of the main
- projectiles damage to mining mobs in the AOE effect.
- - bugfix: The mech PKA AOE blast visual effect now properly appears when hitting
- a mob directly.
- - code_imp: MOB_MINING and MOB_CRUSTACEAN are now defined biotypes.
- - code_imp: Audits some mining mob biotypes to make more sense based on what kind
- of creature they are and to include MOB_MINING in their defines.
- norsvenska:
- - map: The NTSS Independence has, once again, been upgraded. Now featuring a proper
- ballroom, an expanded infirmary, a security office, and much more available
- seating.
- - bugfix: Doctor Rumack, the NTSS Independence's resident medibot, is no longer
- invisible.
- possiblepossibility:
- - rscadd: you may now take out individual slices of pizza
- - bugfix: wizard statues are gray
- - bugfix: Fixes (most) emergency access on maintenance airlocks on WawaStation
- - bugfix: fixes slaughter demon roundend report
+2025-03-10:
+ EnterTheJake:
+ - balance: '"Wolves Among Sheep" cooldown increased from 2 to 5 minutes.'
+ Paxilmaniac:
+ - balance: The syndie smartgun has 2 tile aimbot now
+ SmArtKar:
+ - bugfix: 'Fixed pre-filled fish stasis cases breaking fish inside of them
+
+ /:cl'
+ - bugfix: Immortal pyro anomalies no longer (unsuccessfully) attempt to spawn pyro
+ slimes
+ - bugfix: Fixed balloon alert positioning on wide mobs
+ - bugfix: Fixed constant hotspot runtimes
+ - bugfix: Hotspots should properly play their SFX when created by sources other
+ than plasmafires.
+ - bugfix: Fixes rideable mob layering
+ StrangeWeirdKitten:
+ - code_imp: Readds return_turf_delta_p() and is_nearby_planetary_atmos() as turf
+ helpers.
+2025-03-11:
+ Sadboysuss:
+ - sound: regenerative meshes now make sounds when healing and have new drop/pickup
+ sounds
+ SmArtKar:
+ - bugfix: Fixed missing distro pipe in CE's office, and missing cable in tech storage
+ Vallat:
+ - bugfix: fixed "Save chat log" verb
+ Wallem:
+ - qol: some tgui lists that use the same simple function--Navigation menu, Fulton
+ navbeacon selection, Ghost teleportation, etc.--have been given a candystripe.
+ combustor:
+ - map: Removed cameras from most break rooms and cargo warehouses.
+ - qol: Added and moved a bunch of cameras to remove silly blind-spots and added
+ cams to rooms where there should've been cams.
+ - map: Added EVA shutter buttons to birdshot
+2025-03-12:
+ Melbert:
+ - qol: When reaching the wizard grand finale, you no longer get locked into finale
+ effects that cannot yet be invoked.
+ - bugfix: Preference dummy now properly updates when changing some species features
+ - qol: If you have the bald quirk selected, the wig shows up on the preference dummy
+ - qol: If you have the bald quirk selected, and your role starts with a hat, the
+ hat will start attached to your wig
+ - balance: Reworks Changeling's Darkness Adaptation. It's strength now scales with
+ how dark your environment is, rather than being static transparency.
+ - bugfix: Fixes Digital Camo's examine message
+ - bugfix: '[Delta] Rearranges / adds some missing wallmounts'
+ Singul0:
+ - bugfix: fixes unwalkable tiles in the film studio bar
+ SmArtKar:
+ - bugfix: Connected Birdshot dorms to distro
+ - bugfix: Fixed a missing wire under Wawa's Coldroom APC
+ - bugfix: Going through lava while buckled to an object no longer explodes the server
+ - bugfix: Getting a carp infusion or committing a certain holofish suicide no longer
+ gets rid of your voidwalker overlay.
+ StrangeWeirdKitten:
+ - bugfix: Character creator preview being miniature
subject217:
- bugfix: Updated the description of insulated gloves to reflect their lack of chunky
fingers.
- - sound: The ghost poll sound is quieter.
- - bugfix: Tramstation disposals now allow you to send mail to R&D.
- - balance: Contractor Kit is no longer available in lowpop.
- timothymtorres:
- - code_imp: Convert weather duration to use time defines
- - rscadd: Add irradiation to radioactive reagents uranium, radium, and polonium.
- - balance: Radioactive reagents uranium, radium, and polonium now cause irradiate
- effects when they come into contact with mobs or objects. This can be via several
- means, ingestion, touch, or vapors. The more radioactive the reagent, the more
- likely it is to irradiate. Polonium is the most radioactive with a x3 multiplier,
- radium is next with a x2 multiplier, and uranium is the weakest with just a
- x1 multiplier.
- - balance: Polonium no longer guarantees instant irradiation when the reagent is
- inside a mob.
- - bugfix: Revert Midi2Piano fix (#85967) that broke the the midi converter tool.
- - bugfix: Fix runtime when simple mobs are exposed to reagents
- - bugfix: Fix deprecated mob robot path from basketball stadium map
- - bugfix: Fix illiterate people writing messages with crayons and spraycans.
- - bugfix: Fix hauntinum reagent to work when it is exposed to item objects.
- - code_imp: Optimize Nyctophobia quirk to not process while certain traits present
-2025-03-17:
- CydiaButt13:
- - rscadd: Third eye marking
- IgiariValkyr:
- - rscadd: Dullahans now have a Security Module.
- KazooBard:
- - rscadd: Eldritch Essence (heretic's heal juice) now works on synths, the mansus
- disregards it's worshippers equally.
- TealSeer:
- - bugfix: fixed character prefs bluescreening for certain species
- kiwedespars:
- - qol: last resort is no longer innate, instead just a free ability like DNA sting
- and defib grasp.
- nikothedude:
- - rscadd: Venom milkers - siphon venom from people with the venom quirk
- xPokee:
- - balance: oversized characters can no longer use growth serum outside of dorms
- - balance: growth serum is now capped at the same size as you would be if you took
- the oversized quirk unless in dorms
- xPokee, RimiNosha:
- - rscadd: Added the ability to change the character creator background via the character
- visuals tab.
- - bugfix: Fixed oversized characters and larger characters not being fully visible
- in the character creator
- - image: Added additional background icons for the character creator.
-2025-03-18:
- Arturlang:
- - bugfix: Character setup panel is now slightly bigger
- - bugfix: Character setup panel's add loadout button now works again
-2025-03-19:
- Iamgoofball and ChildrenOfTheSun:
- - rscadd: Adds the Psionic Holding cosmetic quirk for roleplaying species with light
- psionic abilities
- Mitryll:
- - rscadd: Adds Beo plushie to the loadout (sprite by Cepha)
-2025-03-20:
- BurgerBB:
- - rscadd: Events no longer run if the shuttle is moving towards the station in a
- no-recall state.
- - rscadd: Fixes several moonstation bugs/issues/whatever.
- Jinshee:
- - rscadd: Added 2 new shadekin ears
- Majkl-J:
- - rscdel: Removes the martyr and hijack objs from traitor and spy
- StrangeWeirdKitten:
- - qol: Adds the ability to put a reference picture on the examine panel.
-2025-03-22:
- Arturlang:
- - bugfix: Hologram mobs no longer have blood
- BurgerBB:
- - rscadd: Buffs security jackboots slightly.
- Jinshee:
- - rscadd: 'Added Horns: Simple (New), Broken (New), Ram (New), Lightning, and Brimstone'
- - rscadd: 'Added Frills: Droopy, Frillhawk, Neck Frills (New), Neck Frills (Fuller
- New)'
- - rscadd: 'Added Markings: Dome'
- - rscadd: 'Added Snouts: Extra Sharp'
- - rscadd: Added Splotches markings
- - rscadd: Added Chitin markings
- - rscadd: Added Pinioned Wings, Masked Wing Snout, Headwing Ears, and Winged Messenger
- Horns
- Majkl-J:
- - bugfix: Exploitables no longer show up when you examine an antag, exposing them
- - bugfix: Exploitables now check the variables of the correct mob
- ReturnToZender:
- - balance: Cargo-ordered weapons no longer come in gun cases. Gun cases are now
- bulky, and cannot fit in backpacks.
- - rscdel: Armadyne corporate security no longer come with Wespe cases on top of
- their issued guns
- - rscdel: DS-2 Mining Officer (not the Persistence, DS-2) no longer has a Makarov.
- SarmentiCampbell:
- - rscadd: Borgo can put on hats by rightclicking.
-2025-03-23:
- LT3:
- - rscadd: Miniskirt now available in the clothesmate
-2025-03-24:
- LT3:
- - bugfix: Fixed fitting of black and colorable flannel shirts
- TealSeer:
- - bugfix: fixed larger sprite size mobs being unable to pixel shift properly
- nikothedude:
- - rscdel: Romerol is once again nukie only
- shellspeed1:
- - rscadd: Persistence now has cybersun comms (It's literally just renamed persistence
- comms)
- - rscadd: Persistence can now produce interdyne comms in an emergency using an interdyne
- comms chips
- - bugfix: Persistence no longer has 4 safes on one tile
- - bugfix: Persistence no longer has a turret that shoots out a window in the prison
- - bugfix: Persistence no longer has a null telecomms server, also atmos works
- - bugfix: Renamed syndicate_exofab to syndicate exofab in the circuit printer
- - bugfix: Renamed cybersun channel no longer outputs to the uplink channel
- - bugfix: Reverts automapper placement of persistence on icemoon and returns to
- - map: slightly revamped the Persistence kitchen.
- - map: condensed the utility area of persistence and added a cycling airlock plus
- one more 3x3 construction area.
- - map: toned down some of the roundstart persistence equipment that can be acquired
- through other relatively easy means such as cargo.
-2025-03-25:
- Swiftfeather:
- - rscadd: Added a round removal opt-in preference.
- TealSeer:
- - bugfix: fixed synth chassis taking their color from the head
- xPokee:
- - rscadd: akula tongues now have the fish chat bubble effect tied to them
-2025-03-27:
- StrangeWeirdKitten:
- - config: Storyteller default configs now exist and should work again
- Vanilla1040:
- - rscadd: Added new barsign called "Heavens Hallow"
- YakumoChen:
- - qol: Mood is now buffed in certain ghost areas or off-station areas primarily
- used for enterprise resource planning to make hunger less of an issue.
- shayoki:
- - map: Box Station now has the Captain's cast and green screen.
- - map: Fixed the Mix to SM pipe in Box Station's Atmos never being connected.
- - map: On Box Station, a few more walls in the brig are now reinforced walls.
-2025-03-28:
- Bombermansam:
- - rscadd: New option in character creation for a vox laugh
- - sound: Added vox_laugh.ogg from ss14
- StrangeWeirdKitten:
- - bugfix: Modsuits no longer delete the seamless heels quirk.
-2025-03-29:
- Decinomics:
- - rscadd: Added a plushie to the Lust Wish vendor, the Sinister Vox Plushie
-2025-03-30:
- Arturlang:
- - rscadd: Re-adds nanites
- Jinshee:
- - rscadd: Added Stone Cauldron, a new primitive cooking structure with a microwave
- function.
- - map: Added sparring area, prison cell, dining area, revamped kitchen, animal pens,
- revamped forge area, armory, revamped doctor's hut, and a spare room to a new
- Ashwalker Nest map.
- JustMeTheIInd:
- - map: Re-did Ghost Cafe Bridge and Captain office, swapped holopads for not working
- versions, removed cap locker.
- Majkl-J, Nevimer:
- - rscadd: blood pooling effect for blood splatters
- aKromatopzia:
- - image: more clothes are innately teshari-compatible
- nevimer:
- - rscadd: Added the Jerk Quirk
-2025-03-31:
- Bombermansam:
- - rscadd: Adds Marish, Chitinclick and Carptongue to Silicon's Known languages
- Odairu:
- - rscadd: adds a new station trait - HoS AI
+2025-03-13:
+ Absolucy:
+ - code_imp: Spawning the debug "sheet snatcher" box will no longer try to do ~400
+ stack merges.
+ Hatterhat:
+ - qol: Genetics data disks are now infinitely recolorable/reskinnable via alt-click.
+ Holoo-1:
+ - bugfix: fixed offstation humans being able to be cult target
+ Kocma-san:
+ - code_imp: The damage multiplier of xenomorph bodypart has been relocated
+ Melbert:
+ - bugfix: You can make eye charts out of blank signs
+ SmArtKar:
+ - bugfix: Fixed spiderwebs, alien weeds, kudzu, and other stuff layering below catwalks
+ and glass floors
+ - bugfix: Polymorph belts no longer can consume unlimited amounts of cores
+ - balance: Delusions now override your examine and tooltip names, similarly to prosopagnosia.
+ - bugfix: Delusions no longer turn you into shadowy blobs when moving between z-levels
+ - rscadd: Newspapers now give you inversed FOV, but you can negate this by poking
+ out holes in them with a sharp or pointy tool. They also prevent people from
+ seeing you whisper.
+ - balance: Empaths can now "feel" people whispering even if they can't see their
+ mouth.
+ - code_imp: Cleaned up newspaper code.
+ - bugfix: Nooatrium can no longer revive suicided mobs
+ - bugfix: Fixes black vision for dextrous mobs using 516 version of BYOND
+ Thunder12345:
+ - bugfix: Alien pistols do damage again
+ Wallem:
+ - rscadd: Some aliens have recently been discovered to be green.
+ - image: The circuit drone has had its icons updated
+ itsmeow:
+ - bugfix: Fixed TGUI assets and icons sometimes not showing up until you refreshed
+ the page on 516 clients
+2025-03-14:
+ ArcaneMusic:
+ - bugfix: To prevent infinite sales issues, security helmets, armors, and batons
+ packs now all cost 600 credits, up from 400.
+ - bugfix: Candle packs now cost 400 credits, up from 300, and candles now sell for
+ 12.25 cr each.
+ ArrisFairburne:
+ - qol: Added a widget to the main menu of the modular computer screen, which will
+ tell the user what the current alert level is and if they are needed to fix
+ the problem.
+ Ben10Omintrix:
+ - rscadd: tweaks the raptor taming minigame to be fairer
+ - rscadd: the taming minigame's difficulty now relies on the raptor's personality
+ as well as the rider's quirks
+ DATA-xPUNGED:
+ - rscadd: 'Added a new smite: Retcon'
+ - refactor: Refactored the component temporary_atom into an atom level fade_into_nothing
+ proc
+ Ghommie:
+ - rscadd: You can now craft multi-dimensional payloads with dimensional anomalies.
+ - qol: Food types are now passed down when cooking from recipes. For example, a
+ plate of corned "beef" made from giant killer tomato slabs no longer counts
+ as meat but only vegetables now.
+ - bugfix: Fixed a metric ton of inconsistencies with food types and recipes.
+ - bugfix: Dank-pockets (the weed variant) can now be microwaved.
+ Hatterhat:
+ - bugfix: Burst-firing weapons now respect their fire delay, in the event that their
+ fire delay is longer than click cooldown. If your local burst-fire weapon starts
+ to feel weird because of this, please submit an issue report.
+ Maximal08:
+ - qol: Now you can turn the conveyor belt counterclockwise using the right mouse
+ button with the wrench in your hand.
+ Melbert:
+ - qol: Wallet loadout item comes pre-equipped
+ - qol: Lipstick loadout item comes pre-applied
+ - qol: You can choose your lipstick color from any color now. You can also choose
+ what layer it defaults to.
+ - rscadd: If you exhale a cloud of smoke from a cigarette while face to face with
+ someone, you'll blow it right in their face.
+ - rscadd: Syndicate Cigarettes will blind (for a very short time) if you blow their
+ smoke in someone's face.
+ - balance: Syndicate bombs get harder to defuse the longer its timer is set, up
+ to 9 minutes.
+ - bugfix: Training bombs won't message admins when they're "detonated" or defused.
+ SmArtKar:
+ - bugfix: Fixed animated circuit tiles missing CS:S when powered off
+ - rscadd: Instead of dissolving instantly, pills now activate after 4 seconds. This
+ timer can be increased by using a dropper filled with sugar on them, 1s added
+ per 1u dropped.
+ - rscadd: Patches now stick to you and slowly bleed their reagents, instead of being
+ strictly inferior to both pills and sprays.
+ - rscadd: Items that you accidentally swallow now go into your stomach contents.
+ - refactor: Patches are no longer considered pills by the game
+ - refactor: All stomachs now have contents, instead of it being exclusive to aliens.
+ You can cut open a stomach to empty it with a scalpel, and mend an existing
+ incision with a cautery.
+ Twaticus:
+ - bugfix: the station may appear dusty again!
+ Y0SH1M4S73R:
+ - rscadd: The station blueprints can be used to toggle whether custom shuttles can
+ be built/expanded/docked within station areas.
+ - qol: Custom areas do not have to be completely contained within shuttle frames,
+ as long as the APC isn't attached to the frame.
+ - rscadd: Custom shuttles with functioning engines will fly off into the sunset
+ when the emergency shuttle leaves.
+ - rscadd: Custom shuttle navigation computers can view space levels adjacent to
+ the one the shuttle is currently docked at.
+ - bugfix: Constructed shuttle engines no longer contribute twice as much engine
+ power to shuttles, nor can they be used to add unlimited shuttle power.
+ - bugfix: Constructed shuttle engines now connect to shuttles when build, rather
+ than needing to be unachored and then reanchored.
+2025-03-15:
+ ArcaneMusic:
+ - balance: Sheets of material and stock blocks are now subject to elastic price
+ changes. AKA, if you sell materials, their price will go down after sale and
+ will return after some time.
+ - bugfix: Stock blocks can no longer be made with no value or with a quantity of
+ zero material.
+ - bugfix: The GMM Machine can now no longer create stock blocks when unpowered.
+ - qol: The GMM machine now lights up when powered.
+ Holoo-1:
+ - bugfix: fixed white space when observing in auto observe mode
+ Melbert:
+ - bugfix: Plaslamen can see prefs again
+ SmArtKar:
+ - bugfix: Fixed basic mobs not idling due to nearby ghosts
+ hry-gh:
+ - bugfix: icons generate properly for janicarts
diff --git a/html/changelogs/archive/2025-04.yml b/html/changelogs/archive/2025-04.yml
index 89aa5a77a87..dcda709be81 100644
--- a/html/changelogs/archive/2025-04.yml
+++ b/html/changelogs/archive/2025-04.yml
@@ -1,59 +1,12 @@
-2025-04-01:
- BurgerBB:
- - rscdel: Disabler boots have a 5% chance (per locker) to spawn in a locker during
- april fools.
- - rscadd: Adds a new storyteller, "The Enemy Within".
-2025-04-02:
- LT3:
- - rscadd: 'Added new carp variant: carpmospheric technician'
- StrangeWeirdKitten:
- - rscdel: Removes the handheld crew monitor from the medical lathes.
- - rscdel: Disaboots have been removed from apirl fools.
- plsleavemealon:
- - bugfix: fixed ethereals powercell back to bubbers values
-2025-04-03:
- Jinshee:
- - rscadd: 'Added new ear type: Shadekin Gradient'
- - bugfix: fixed wagging state for all shadekin tails and ring tail (long)
- - rscadd: 10 new wings, 3 new horns, 9 new IPC screens, 13 new tails, and 6 new
- ears
- LT3:
- - bugfix: Lobotomy/blessed lobotomy should correctly remove all surgery based traumas
- - balance: Lobotomy/blessed lobotomy now provides a predictable status effect instead
- of a trauma RNG roll
- StrangeWeirdKitten:
- - balance: Cyborgs now auto link in a priority system. Malf > AI cores > Suit AIs
- / Cards
-2025-04-04:
- Bombermansam:
- - rscadd: Makes Nugget Boxes and Food packs small
2025-04-05:
- Bombermansam:
- - rscadd: '*skweh emote to be sad'
- - bugfix: Silicons can now yip.
Jacquerel:
- rscadd: Handcuffed people can now be tied to the tram rails
- balance: tram rails will no longer electrocute you if they're not powered
- Jinshee:
- - sound: Slug Scream sound added to *scream choices
LT3:
- bugfix: Tram information plate and other signs mount correctly on tram walls
- Odairu:
- - rscadd: several vulpkanin species buffs/debuffs
- - balance: shadekin empathy is better/worse based on mood
2025-04-06:
LT3:
- bugfix: Jukebox volume preference applies to currently playing music
- bugfix: Jukebox volume no longer resets to 100% when adjusted from the object
- bugfix: Sound prefs that went missing post-516 are restored
- rscadd: Jukebox volume slider in game preferences
- Odairu:
- - balance: shadekin nv buffed from 4.5/100 to 15/100
- - balance: shadekin move a bit slower in the light
- Swiftfeather:
- - balance: Cat ears no longer provide a tackle bonus
- TealSeer:
- - bugfix: fixed persistence medbots speaking on wrong radio frequency
- - bugfix: fixed sechud nv goggles being invisible when off
- pixelkitty286:
- - balance: Super cat ear cool downs are longer and removed the freedom implant function.
diff --git a/html/changelogs/bubber_archive/2023-11.yml b/html/changelogs/bubber_archive/2023-11.yml
new file mode 100644
index 00000000000..753f3be55c0
--- /dev/null
+++ b/html/changelogs/bubber_archive/2023-11.yml
@@ -0,0 +1,49 @@
+2023-11-21:
+ BurgerBB:
+ - bugfix: Fixes weak tackles bugging out your movespeed.
+ Cyprex:
+ - code_imp: Another test of the changelog bot!
+ Majkl-J:
+ - bugfix: Fixes an exploit with synth computers
+2023-11-22:
+ Majkl-J:
+ - rscadd: Rockfruit, the new awesome fruit that's literally just a plant growing
+ a granite shell
+ - image: Rockfruit seeds, plant, fruit, and rocks
+ - rscadd: Salt in biogenerator
+ - bugfix: Lime juice is no longer orange juice in biogens
+ - rscadd: Synths can now be printed in exofabs
+ ReturnToZender:
+ - rscadd: Pref check on autopunctuation
+ The-Sun-In-Splendour:
+ - balance: emp mold mosquitoes no longer shock you all the time until you have a
+ stroke irl over the annoyance
+ pixelkitty286:
+ - rscadd: 'emotes: mrrp, fpurr, gecker, and prbt'
+ - sound: mrrp.ogg, prbt.ogg, fox_purr.ogg, and foxgecker.ogg
+2023-11-23:
+ Runi-c:
+ - bugfix: non-moths can digest moth milk
+ The Sharkening:
+ - bugfix: removes skyrat rules from the antag TGUI
+ larentoun:
+ - code_imp: Now if ONLY modular content was modified, build recompiles dme correctly
+2023-11-25:
+ Majkl-J:
+ - rscadd: Ghosting or going DNR makes you appear slightly transparent
+ - rscadd: 'New quirk: Waddle'
+2023-11-26:
+ The Sharkening:
+ - balance: Nerfs the blueshield modsuit and gives it back
+ - balance: "Security modsuit buffed (\tmelee = 40, bullet = 30, laser = 30, energy\
+ \ = 40, bomb = 50, bio = 100, fire = 100, acid = 100, wound = 10"
+2023-11-27:
+ Majkl-J:
+ - image: 'New borg sprites: Raptor'
+ - refactor: Moved most if not all bubber borg code into one modular folder
+2023-11-28:
+ The Sharkening:
+ - balance: The brainwashing surgery disk is no longer obfuscated
+2023-11-29:
+ ReturnToZender:
+ - rscadd: Mice waddle
diff --git a/html/changelogs/bubber_archive/2023-12.yml b/html/changelogs/bubber_archive/2023-12.yml
new file mode 100644
index 00000000000..1a8a3cb6b2f
--- /dev/null
+++ b/html/changelogs/bubber_archive/2023-12.yml
@@ -0,0 +1,187 @@
+2023-12-02:
+ BurgerBB:
+ - balance: Explosive lemon detonation time changed from 1 to 6 seconds to 4 to 12
+ seconds.
+ Cursor, as dictated by George Washington & Martin Van Buren,:
+ - rscadd: The Freedom Crate is now available to sovereign citizens who refuse to
+ respect Cargo's laws.
+2023-12-03:
+ BurgerBB:
+ - balance: Rebalances maintenance loot.
+ - balance: Getting EMP'd now affects your suit sensors differently.
+ Cursour, dictated by the Joker (Jack Nicholson and Jared Leto versions) and Pogo.:
+ - rscadd: One may now directly fax Clown Planet. Mime Planet too if you hate trees.
+ ReturnToZender:
+ - rscadd: QM permit sunglasses
+ SarmentiCampbell:
+ - rscadd: 'Added a new quirk : Dead Inside'
+2023-12-04:
+ BurgerBB:
+ - balance: Nerfs Miasma
+ Majkl-J:
+ - sound: Subtler now has a sound cue
+ - refactor: Hungry is no longer an item_quirk
+ - rscadd: Christmas stuff for the SM!
+ - image: SM christmas lights and hat
+ Odairu:
+ - rscadd: Birthday Cakes are now able to be lit and emit light
+ ReturnToZender:
+ - rscdel: comments out the LustWish remote signaller
+ nevimer:
+ - balance: vent pumps are unlimited again, as the forefathers intended.
+2023-12-05:
+ LT3:
+ - code_imp: Announcement CSS is reverted to TG default
+ Majkl-J:
+ - rscdel: Santa claus no longer makes claustrophobes die
+ - bugfix: Lima now has an arrival shuttle console
+2023-12-06:
+ BurgerBB:
+ - rscadd: Adds "Merged" and "Closed" stamps. They can be found in the research director's
+ locker.
+ - bugfix: Fixes fire overlays. Possibly. Hopefully. Probably not.
+ Erol509:
+ - rscadd: Tesla zaps now make power
+ IgiariValkyr:
+ - rscadd: Sol Defense has reclaimed selling rights in cargo!
+ - balance: Sol Defense bullets cause wounds far less now.
+ - balance: Sol Defense bullets now seem to have less powder in the casings and cause
+ less damage.
+ ReturnToZender:
+ - rscadd: Reverie to fax machine list
+ - rscadd: Prisoners can't spawn with razor claws
+ - rscadd: The flavor text requirements now show when you are rejected due to not
+ having enough
+ The Sharkening:
+ - balance: Silver ID's no longer have infinite access. There are 5 access wildcards
+ for basic IDs and 10 for silver IDs
+ - balance: Agent ID cards have AA
+ - rscadd: Readds the ability to buy metal and glass
+ - rscdel: Removes the GMM from cargo due to infinite money.
+2023-12-07:
+ Majkl-J:
+ - bugfix: The roundstart SM now also gets smissmass lights
+2023-12-12:
+ BurgerBB:
+ - balance: Bulletproof armor and helmets can no longer be found in maintenance.
+ Exceptions apply to the justice/siren helmet.
+2023-12-13:
+ theselfish:
+ - rscadd: Neko is now the default language of Felinids again.
+ - rscadd: Pirate has been restored to be Piratespeak.
+2023-12-14:
+ BurgerBB:
+ - balance: Removes the 100% reflect energy chance from Marked One armor and the
+ 25% block chance from the Marked One sword.
+ Majkl-J:
+ - rscadd: Sylveon bodyparts
+ - image: Sylveon bodypart sprites. Credit to Splurtstation
+2023-12-15:
+ LT3:
+ - code_imp: Loading and title splash are now modularized
+ ReturnToZender, LT3, Waterpig, Nevimer:
+ - rscadd: Character directory from SPLURT, originally, I think?
+ ReturnToZender, Shadow_Quill:
+ - rscadd: Adjusted statpanel with game time, active and observing players
+ projectkepler-ru:
+ - balance: Removes His Grace from the uplink
+2023-12-16:
+ Arturlang:
+ - code_imp: /obj/machinery/rbmk2_sniffer/process() no longer checks private variable
+ atom_jntegrity, instead it uses the function get_integrity. No functional changes
+ except removing the error this caused.
+ Deek-Za:
+ - qol: Red sec options added to existing reskinnable security equipment.
+ Majkl-J:
+ - qol: 'Kilo: Layer adaptors in atmos'
+ - balance: Disallows siphoning credits outside of station
+ theselfish:
+ - rscadd: Clown slots are re-openable by royal decree. The incident between Nanotrasen
+ and King Honkington has been resolved.
+ yorii:
+ - rscadd: Added Plant DNA Manipulator circuit board to techweb node.
+2023-12-17:
+ The-Sun-In-Splendour:
+ - rscadd: you can now kill people with a rock
+ - balance: Horror ling cannot ventcrawl anymore
+ YakumoChen:
+ - image: cameras are back to the classic sprites from tg
+2023-12-18:
+ ReturnToZender, Waterpig, Shadow-Quill:
+ - rscadd: Job estimation statpanel from Daedalus Dock
+ projectkepler-ru:
+ - balance: Readds the traitor bluespace launchpad.
+2023-12-19:
+ Majkl-J:
+ - refactor: Refactors modularity significantly
+2023-12-20:
+ BurgerBB:
+ - qol: Reduces the frequency of miasma notifications/coughing.
+ ReturnToZender, The Sharkening:
+ - rscadd: Department ordered SolFed guns
+ - rscadd: Sol-Fed Firearms now require a weapons permit to order
+ - bugfix: Adjusted Sol weapon balance to be more fair
+2023-12-21:
+ ReturnToZender:
+ - bugfix: job estimation actually works again
+ - bugfix: Runtime on obscurity examine prefs when the mob in question lacks a client
+2023-12-23:
+ StrangeWeirdKitten:
+ - bugfix: Shadekin is fixed
+2023-12-25:
+ aKromatopzia:
+ - rscadd: Added tesshvali cybernetics, under the company name Ceremi Cybernetics.
+ - image: added teshvali cybernetic sprites. quite WIP
+ - server: client prefs got changed. good luck that it doesnt break anything. which
+ it doesnt
+2023-12-26:
+ LT3:
+ - bugfix: The missing cold drink vending machines have been found in storage
+ MefAnneFeminene:
+ - rscadd: 1 new flag
+ - image: added 4 new sprites, modified 4 sprites
+ - code_imp: 2 flags changed (name and description)
+ zeroisthebiggay:
+ - rscdel: random map vote chances
+ - rscdel: random transfer vote chances
+ - server: the map vote no longer has a modifier that makes it inconsistent
+2023-12-27:
+ YakumoChen:
+ - balance: You can no longer purchase armour booster modules for MODsuits from emagged
+ cargo console imports
+ aKromatopzia:
+ - bugfix: ACTUALLY enables teshvali cybernetics
+ - rscadd: advanced raptoral cybernetics
+ - bugfix: some vars that were added in the downstream are now correctly implemented.
+2023-12-28:
+ Kraseo:
+ - rscadd: Gives Shadekin their own eyes. Functionally they are the same as human
+ eyes.
+ - image: Added Shadekin eye sprites.
+ aKromatopzia:
+ - code_imp: banned_species var, which is an inverse of restricted_species in purpose.
+ - code_imp: you can't join certain ghost roles with ashwalker or icedwellers anymore.
+ nevimer:
+ - bugfix: ntr gets locker access again
+2023-12-29:
+ MefAnneFeminene:
+ - rscadd: Galactic Common language
+ - rscadd: Interslavic Language
+ - rscdel: Pan-Slavic Language
+ - rscdel: Sol Common language
+ - bugfix: Loadout name for Sol Flag
+ StrangeWeirdKitten:
+ - balance: Nerfs Horror Form
+2023-12-30:
+ Majkl-J:
+ - rscdel: Removes Opposing force button from the screen, use the verb in the OOC
+ tab
+ - rscdel: Removes Hide/Show Mutant parts button from modsuits, use the verb in the
+ IC tab
+2023-12-31:
+ MefAnneFeminene:
+ - rscadd: New Russian Flag sprite
+ - code_imp: description of Russian flag changed
+ lilBlovy:
+ - rscadd: Taurs_Types.dms folder
+ - rscadd: NagaFat Sprites
diff --git a/html/changelogs/bubber_archive/2024-01.yml b/html/changelogs/bubber_archive/2024-01.yml
new file mode 100644
index 00000000000..418c31f2655
--- /dev/null
+++ b/html/changelogs/bubber_archive/2024-01.yml
@@ -0,0 +1,164 @@
+2024-01-03:
+ Majkl-J:
+ - qol: Synth computers now show the current charge of the synth
+ - qol: Synth power cord now charges you more than before
+ - balance: Synth computer capacity is now back to 64, from Skyrat 32
+2024-01-04:
+ Majkl-J:
+ - rscdel: Removes broken stealthmerge change
+ - bugfix: Biodome now has the bitrunner vendor
+ Sylphet:
+ - bugfix: added cmo turtleneck/skirtleneck to garment bag
+2024-01-05:
+ Arturlang:
+ - bugfix: Observing works again.
+2024-01-06:
+ LT3:
+ - image: Colorable jean skirt is now adjustable
+ - bugfix: Morgue trays and freezing temperatures will no longer husk bodies
+ - bugfix: Organs outside bodies will properly receive cold damage
+ Majkl-J:
+ - qol: Subtler sound can now be toggled in game prefs
+ - rscadd: The syndicate access override on the Dauntless now includes the radio
+ key
+ - rscadd: Windows on Dauntless robotics
+ ReturnToZender:
+ - rscadd: role restriction to the tactical boots
+ - rscadd: two more goobers to the pinwheel list
+ - rscdel: restricted_roles on the mech suit, so anyone can wear it
+ - bugfix: /datum/armor/none added to the colorable arm wraps in loadout
+ - rscdel: redundant mech suit
+ StrangeWeirdKitten:
+ - bugfix: You can no longer dodge nose boops if you have a sensitive snout
+ nevimer:
+ - bugfix: dnr behavior is consistent again
+2024-01-07:
+ LT3:
+ - bugfix: Character directory will show all fields without resizing
+2024-01-09:
+ LT3:
+ - config: Adjusted population thresholds for certain random events
+ Majkl-J:
+ - rscdel: The mask FOV is gone
+2024-01-11:
+ Huskil & Orion:
+ - rscadd: Added cowprint bra and underwear
+ LT3:
+ - rscadd: Runechat message colour is now a character preference
+ theselfish:
+ - rscadd: ACTUALLY REALLY Lets Clown and Mime slots be opened again.
+2024-01-13:
+ Deek-Za:
+ - rscadd: Added redsec armor and belt reskin option
+ - bugfix: Adjusted redsec boots sprite to be more in-line with peacekeeper style
+ - image: Added new sprite for redsec gloves in peacekeeper style
+ Kyogon:
+ - rscadd: The new MultiSec vendor, containing all the Security clothing in one.
+ - rscadd: A new custom sprite for the MultiSec vendor.
+ - rscdel: Insertion file for Civil Protection suits, moving them into native vendor
+ lists.
+ SarmentiCampbell:
+ - balance: removed abductor's wounds immunity and delimbs.
+ - balance: Normal Zombies, not infectious types are no longer immune to pressure.
+2024-01-14:
+ BurgerBB:
+ - rscdel: Removes/rewords some Gimmick objectives, and adds some new ones.
+ ReturnToZender, LT3, Waterpig:
+ - rscadd: NSFW flavor text (for players and silicons)
+ - rscadd: New examine panel with slightly bigger font, easier to read, also integrates
+ most of the new preferences
+ - rscadd: Flavor text requirements now respect silicon flavor text, thanks to @lessthnthree
+ StrangeWeirdKitten:
+ - balance: gives medical borgs back their crew monitors
+2024-01-16:
+ IgiariValkyr:
+ - rscadd: Centcom Administration has moved to the Interlink
+ YakumoChen:
+ - rscadd: Security, HoS, Captain, Blueshield, and Centcom roles have had armour
+ booster modules built into their modsuits. Most do not reduce the slowdown of
+ your suit (except the HoS one)
+ - balance: Armour values in said modsuits have been halved across the board, with
+ the lost values moved to the armour boosters.
+ - balance: Effectively, armour in EVA combat is severely nerfed for everyone except
+ the syndicate who already had armour boosters.
+2024-01-17:
+ Arturlang:
+ - rscadd: Add bloodsuckers, a new reason to fear maintenance and the dark. Don't
+ go out there alone, or you might wake up pale and fainting.
+ BurgerBB:
+ - balance: Blob Fake Announcements are now followed by a clarification 60 to 180
+ seconds later.
+ StrangeWeirdKitten:
+ - code_imp: Switches the emergancy shuttle to Centcom instead of the Interlink
+ thegrb93:
+ - rscadd: Borg dominatrix module to lustwish that gives them some dominatrix toys
+2024-01-18:
+ Majkl-J:
+ - qol: Crew monitor consoles receive a new firmware update to address recent complaints,
+ removing the low health alarm on DNR and low sensor settings
+ - code_imp: Introduced get_dnr() proc
+ nevimer:
+ - rscadd: Shortcuts to internet relays are now on the top menu bar.
+2024-01-19:
+ BurgerBB:
+ - balance: Balances or outright removes some wizard spells.
+ - balance: Reworks or removes some wizard events so they're more roleplay friendly.
+2024-01-22:
+ Thlumyn, Arta/Maxi for the sprites:
+ - rscadd: Added peacock tails
+2024-01-23:
+ ReturnToZender, SpaceManJim (sprites):
+ - rscadd: Animated raptorborg sprites
+ YakumoChen:
+ - rscdel: After the introduction of the Multisec Vendor, stations are no longer
+ shipped with an additional Redsec vendor.
+2024-01-24:
+ BurgerBB:
+ - rscdel: Removes Slaughter Demons from the wizard spellbook.
+ - balance: Laughter Demons cost 2 points (instead of 1), and are limited to 1 purchase
+ per wizard.
+ pixelkitty286:
+ - rscadd: F3-LINE
+ - image: added felibot_all.dmi
+ - code_imp: modular robot_model.dm
+2024-01-25:
+ BurgerBB:
+ - rscadd: Adds Moon Station
+ - rscdel: Removes Burgerstation
+ TealSeer:
+ - bugfix: Dropdown options for quirks should now function properly
+ - bugfix: Randomize button in character prefs should look normal
+2024-01-27:
+ BurgerBB:
+ - rscadd: Replaces the Oh Hi Daniel shuttle with a similar shuttle.
+ Sylphet:
+ - rscadd: added vertical variants of the pride flags used in biodome
+ - image: resprited horizontal pride flags used in biodome
+ aKromatopzia:
+ - rscadd: digitigrade cybernetic legs, and the ability to select them in preferences
+2024-01-28:
+ Kepteyn:
+ - rscadd: Added a xenomorph plushie.
+ - rscadd: 'Added a xenomorph maid plushie.
+
+ :cl:'
+2024-01-29:
+ BurgerBB:
+ - bugfix: Fixes some Moonstation things (Fixes mining shuttle not having power,
+ Honkbot in clown's room starts unconstructed, Fixes missing Bar lighting, Fixes
+ missing emergency atmos in maint, Fixes missing robodrobe)
+ Cyprex:
+ - server: We've added a new relay, located in the city of Singapore!
+ pixelkitty286:
+ - sound: Add synth_scary.ogg synth_error.ogg synth_startup.ogg synth_shutdown.ogg
+ - code_imp: modular synth_emotes.dm
+2024-01-30:
+ AtoriBirb:
+ - image: added white/black sprites for worn/in hand.
+ - code_imp: added variant code to krav maga sec gloves
+ Majkl-J:
+ - image: Sexy snoodle plushie inhand sprite
+ ReturnToZender, Gax (Sprites):
+ - rscadd: Vale clownborg sprites are now available!
+ - bugfix: Fancy raptors have had their hat bounce fixed, Syndicate raptors have
+ their headlamp overlays properly implemented.
diff --git a/html/changelogs/bubber_archive/2024-02.yml b/html/changelogs/bubber_archive/2024-02.yml
new file mode 100644
index 00000000000..f5802f0abb9
--- /dev/null
+++ b/html/changelogs/bubber_archive/2024-02.yml
@@ -0,0 +1,218 @@
+2024-02-02:
+ BurgerBB:
+ - rscdel: ' Removes the ability for Seedlings to have multiple harvests.'
+ - balance: Sets Evil Seedling TC cost to 2 (From 8),
+ - rscadd: Organs that rot now create miasma. Note that miasma emissions will stop
+ once the organ is fully decayed.
+ - balance: The Crab17 uplink item cannot spawn in surplus crates, nor can it be
+ discounted.
+ LT3 (code):
+ - server: Makes relay text display properly
+ Majkl-J:
+ - rscadd: Secmed huds are now available for security medics
+ - rscadd: Secmed headset upgraded into a bowman
+ - image: Icons for secmed huds and secmed headset
+ NithaIsTired:
+ - rscadd: Synths now scream in agony when they die.
+ ReturnToZender:
+ - server: cleans up some relay names
+ Swiftfeather:
+ - rscdel: Door sounds from Citrp
+ - qol: better door sounds
+ - sound: changed sound back to better original airlock sound
+ - code_imp: re enables skyrat's door sound override
+ nevimer:
+ - rscadd: Malf AI Doomsday now makes a tidal wave of explosions from APC's.
+ nikothedude:
+ - spellcheck: The nobility dresscoat has been reflavored to not be nobility
+ pixelkitty286:
+ - rscadd: Door sounds from Citrp
+ - qol: Better door sounds
+ - sound: added door sound files in modular sounds folder
+ - code_imp: Disabled skyrat's door sound over rides in airlock.dm
+ theselfish:
+ - rscadd: Donator item.
+ - rscadd: Donator stamp.
+ xXPawnStarrXx:
+ - rscadd: Added new bounties for inmates.
+2024-02-03:
+ AtoriBirb:
+ - image: Security Beanie
+2024-02-04:
+ ReturnToZender:
+ - bugfix: Readying up without proper flavor text now reports the correct flavor
+ text source instead of saying you need silicon flavor.
+2024-02-05:
+ Majkl-J:
+ - image: Mouth worn sprites for rubber ducky and dog bones
+2024-02-07:
+ ReturnToZender, GenericDM (Original Version):
+ - rscadd: Cargo shelves are now craftable using metal! They store up to 3 crates
+ per shelf.
+ - bugfix: Skyrat modular shelves (such as gun racks and tall shelves) are now buildable
+ using metal.
+2024-02-09:
+ Majkl-J:
+ - rscadd: Ghosts without clients get sent back into the menu after a while.
+2024-02-11:
+ IgiariValkyr:
+ - config: Relocked some donator items from Skyrat on request
+ Majkl-J:
+ - image: New rockfruit sprites
+ - code_imp: Modularized hydroponics
+ Vynzill:
+ - rscadd: Added more perfumes to loadout.
+2024-02-12:
+ Sylphet:
+ - balance: scrubbers do not overflow with carpet and rainbow stuff anymore
+2024-02-14:
+ BurgerBB:
+ - rscadd: Makes Moon Station actually a moon now because people made fun of me.
+ - bugfix: Fixes early runtime issue with loadouts.
+2024-02-15:
+ BurgerBB:
+ - bugfix: Hopefully fixes the error handler throwing errors too early.
+ - bugfix: Fixes fake lattice linters when they spawn on lava
+ xXPawnStarrXx:
+ - code_imp: removed donator requirement from loadout flowers.
+2024-02-16:
+ BurgerBB:
+ - rscadd: Adds REAL banhammers send people to the void temporarily (similar to immortality
+ talisman or void genetic power) on hit. Hitting someone on combat mode with
+ it sends them to permabrig instead, if they're not already in the permabrig.
+ - rscdel: Replaces the High Frequency Blade the wizard gets with a REAL banhammer,
+ and reduces the spell cost from 3 to 2.
+ - bugfix: Sandstorms on Moon Station are less annoying in terms of notifications
+ and sound. Adds missing miner GPSs to lockers + table. Fixes typo in Moon Station
+ plaque. External airlocks to public areas no longer have access.
+ Majkl-J:
+ - bugfix: 'lathes now use moderate power for printing operations /:cl:'
+ - code_imp: Bubber modular greyscale files permitted
+ aKromatopzia:
+ - bugfix: icecats and ashliz can spawn on the ghost cafe.
+ destrucktoid:
+ - bugfix: Syndicate/Ninja Borg Restorative Nanites now heal Slimepeople just as
+ well as they do other people.
+ pixelkitty286:
+ - rscadd: Added night vision and cold resistance to tajara with their respective
+ debuffs and gave them sensitive hearing. tajara own meat type and cat animal
+ hide when gibed. Cat like grace to tajara.
+ - rscadd: Added modular tajaran.dm, siikmaas.dm, and meatslab.dmi
+ - qol: The Tajara DLC.
+ - balance: rebalanced how the Tajaran species works.
+ - image: added a Tajaran ass picture. Added adhomian_meat (Credit goes to Aurora.3
+ on the sprite)
+ - spellcheck: Corrected siik'tajr to be siik'maas.
+ - code_imp: modular code for tajaran species changes.
+ - refactor: Does refactoring Tajara as a species count?
+ xXPawnStarrXx:
+ - image: added GAGS versions of command stripper outfits.
+2024-02-17:
+ IgiariValkyr:
+ - config: Relocks another skyrat donor item per request.
+2024-02-18:
+ BurgerBB:
+ - balance: Adds Sex holographic barriers to warn people that there is sex in the
+ next room. It doesn't block air or movement, but it does warn people, and knowing
+ is half the battle. They can be purchased in the LustWish under the premium
+ section.
+ - balance: Heads can only be dismembered if they have a critical-tier (Compound)
+ fracture. If a head was supposed to be dismembered from a blow, a compound fracture
+ will be applied.
+2024-02-19:
+ LT3:
+ - qol: Airlocks don't flash constantly on engineering override, override/overlay
+ added for fire alarm
+ - bugfix: Airlock lighting should no longer render on top of player characters
+ - bugfix: Airlock emissives no longer overlap firedoors
+ - bugfix: Fixed missing overlays on various airlock types
+ - bugfix: Fixed status display for epsilon alert
+ - bugfix: Fixed fire alarm for epsilon alert
+ Shayoki:
+ - rscadd: Players can now choose a voice for their characters.
+ - sound: Added a lot of 'borrowed' sounds to use as voices.
+ - admin: Admins can globally disable Bloopers
+ nevimer:
+ - balance: you now hug and pat lightgeists
+2024-02-20:
+ BurgerBB:
+ - bugfix: Remaps Moon Station's robotics. Fixes some misplaced objects.
+ - rscdel: Disables Lance Shuttle on Moon Station because it caused the crew to get
+ stuck on station for 5 hours once.
+ aKromatopzia:
+ - rscadd: Unamored versions of the syndicate utility uniforms & half-mask
+2024-02-21:
+ BurgerBB:
+ - balance: The RBMK can now handle more power generation before going into meltdown
+ with upgraded parts, and also generates less power with upgraded parts.
+ - bugfix: Fixes the RBMK having an infinite meltdown state when safeties trigger
+ at the same time as a meltdown.
+ - bugfix: Fixes planetary atmos getting created when turfs inside the station are
+ destroyed.
+2024-02-22:
+ BurgerB:
+ - bugfix: Fixes Moonstation Ministation not counting blob tiles.
+2024-02-23:
+ Arturlang:
+ - rscadd: Adds backup ways for the book of kindred to spawn, either spawning on
+ a curator or on the codex gigas
+ BurgerBB:
+ - rscdel: Removes Ash Storms from Moon Station Lavaland
+2024-02-24:
+ Azarak:
+ - admin: administrators can now toggle job playtime exemption by job basis for players
+ BurgerBB:
+ - rscdel: Removes some over the top abductor victim objectives and adds some new
+ ones.
+ Erol509:
+ - rscadd: RB-MK2 now has its own tgui panel.
+ Majkl-J:
+ - bugfix: NSFW Headshots no longer override regular ones
+ Spicelet:
+ - rscadd: new dogborg shirt
+ StrangeWeirdKitten:
+ - rscdel: Removes the blast cannon from the traitor scientist uplink
+ destrucktoid:
+ - rscadd: Borers back in uplink
+2024-02-25:
+ aKromatopzia:
+ - image: icon was wrongly offset for cybernetic digitigrade right legs
+ destrucktoid:
+ - bugfix: Slimeperson Clockwork Cultists now heal toxins from the prosperity prism
+ properly.
+2024-02-26:
+ Majkl-J:
+ - bugfix: you can now rightclick to flag in minesweeper
+ ReturnToZender:
+ - balance: NTR's ACCESS_CREMATORIUM replaced with ACCESS_SERVICE
+ - rscadd: Assistants on-station may be pleased to hear that they can now wear Head
+ of Staff pet collars again. ...Again.
+ - rscadd: Nanotrasen has deemed it fit to order an upgrade to all Consultant offices
+ on stations in the Spinward Sector. Check them out!
+2024-02-27:
+ Arturlang:
+ - bugfix: Borers no longer get wasted by ash storms while inside a host
+ Majkl-J:
+ - bugfix: Void raptor now has the secmed locker
+ nikothedude:
+ - bugfix: Death degradation properly DNRs
+ - bugfix: DNR icon has been restored
+2024-02-28:
+ BurgerBB:
+ - rscdel: Replaces the Meteor Shuttle with THE CUBE. It's an emag only emergency
+ shuttle that is literally just a 16x16 cube with some engines on it.
+ Majkl-J:
+ - rscadd: Zombie can now have hair
+2024-02-29:
+ BurgerBB:
+ - bugfix: Fixes Moonstation radstorms affecting some places it's not supposed to.
+ ReturnToZender (code):
+ - bugfix: Character Directory sorting now works on all variables.
+ - bugfix: autopunctuation respects prefs again
+ - qol: Advert settings have been moved to a new category, ADVERT.
+ - rscadd: Character directory now has a search function on the name var.
+ - rscadd: Character directory now shows on the Main Menu under the Crew Manifest.
+ - rscadd: Character directory now has a randomizer, which will open a random player's
+ flavor text when clicked. Click if you dare.
+ Swiftfeather:
+ - rscdel: Removed gun safeties.
diff --git a/html/changelogs/bubber_archive/2024-03.yml b/html/changelogs/bubber_archive/2024-03.yml
new file mode 100644
index 00000000000..c1b3e512616
--- /dev/null
+++ b/html/changelogs/bubber_archive/2024-03.yml
@@ -0,0 +1,250 @@
+2024-03-01:
+ LT3:
+ - bugfix: Fixed ineligible airlocks from receiving engineering override when activated
+ from the communications console
+ - bugfix: Various airlock/firelock overlay fixes
+ nikothedude:
+ - rscadd: Robos now have a pamphlet in their bag that tells them tips and tricks
+ on how treat synth wounds
+2024-03-02:
+ Erol509:
+ - rscadd: Added the icewalker areas to the radstorm protected areas.
+ Majkl-J:
+ - bugfix: Secmeds no longer limit a few items to themselves only
+ Sylphet:
+ - rscadd: adds lunchboxes that hold food and drinks to the loadout
+ - image: added lunchbox sprites
+2024-03-03:
+ BurgerBB:
+ - balance: After 3 Lichdom resurrections, announcements will be made about your
+ general phylactery location (the area) when you die. Phylactery binding now
+ requires the object to be at least bulky in size, and it cannot be fireproof,
+ lava proof, or indestructible.
+ - bugfix: Fixes some Moon Station bugs, such as the funny engineering bridge access
+ bug and a lack of cigarette/coffee vendors.
+ - rscdel: Limits Powersinks + Crab-17 purchases to once each per traitor per round.
+ - rscdel: Removes Xeno Organs from Roundstart Xenomorph Hybrids. They no longer
+ have plasma vessels, resin spinners, or hive nodes.
+ ReturnToZender (code):
+ - rscadd: F-list headshots are now accepted
+ Swiftfeather:
+ - admin: Will no longer receive supermatter ate a pipe spam in the log.
+2024-03-04:
+ BurgerBB:
+ - rscadd: Adds Ashwalkers to Moonstation
+2024-03-07:
+ Arturlang:
+ - rscadd: Decapacitated bloodsuckers can now talk!
+ - rscadd: The stat bar will show you the threshold for exiting frenzy now too when
+ you are frenzying.
+ - rscadd: Bloodsucker abilities now will show their level when you hover over them.
+ Trust me, this was really neccessary.
+ - rscadd: Tremere now also get informed of how much blood they need to pay for level
+ ups.
+ - rscadd: At level 3, haste will now remove stuns and do a non-stunning dash
+ - rscadd: Bloodsucker blood display now always updates when a bloodsucker's blood
+ level is changed
+ - rscadd: Bloodsuckers can now examine hearts to see if they are valid for the heart
+ thief objective
+ - rscadd: Bloodsucker vassals now clean up any traits gained from their tenure as
+ a vampire's minion.
+ - rscadd: Favorite vassals now properly clean up their effects once the antag datum
+ is lost.
+ - rscadd: Bloodsucker synths will be able to heal their prosthetic limbs, but normal
+ bloodsuckers still cannot.
+ - rscadd: When you exiit torpor as a bloodsucker, you will completely heal any toxin
+ and oxygen damage, as you should already be immune to it. This is a safety feature.
+ - rscadd: Entering a coffin will normalize your temperature and extinguish you if
+ you're on fire, if you are a bloodsucker.
+ - bugfix: bloodsucker vampire bats will no longer /list you when attacking
+ - bugfix: Hopefully fixes some torpor loops related to frenzy
+ - bugfix: Hopefully fixes bloodsuckers cryoing not removing vassal datums
+ - bugfix: Bloodsuckers can no longer use veil of many faces while unconcious
+ - bugfix: lizard bloodsuckers will no longer suffer from heat for a long time
+ - bugfix: The ventrue objective now properly succeeds if you have sired a vampire
+ - bugfix: Livers are no longer required for bloodsuckers to live, as it caused them
+ toxin damage which overrode the trait that made them immune to toxins.
+ - bugfix: Entering torpor now accounts for all damage types, even when you should
+ be immune to them. This is to ensure you enter torpor to heal those damage types
+ in the case of odd behaviour.
+ - balance: coffins should now set your temperature to normal and extinguish you.
+ - balance: bloodsucker level up cost is now 15% of max blood, down from 20%
+ - balance: Caps humantiy loss at 50 humanity/500 blood to frenzy, and makes it remove
+ your masquerade ability.
+ - balance: Bloodsucker bats now have human runspeed
+ - balance: Blood cost for vassalizing was almost completely removed, now only taking
+ tiny amounts of blood to do so.
+ - balance: Fortitude now gives you burn resistance, just 20% less than brute resistance
+ - balance: Can no longer gut bloodsuckers
+ - balance: Bloodsuckers loosing their heart will make the vampire unable to use
+ their abilities or even regenerateor revive via torpor, you can however regain
+ your heart if you sleep in a coffin with a heart.
+ - balance: Stakes now have different properties, the normal stake is fast to stick
+ in someone, but can fall out on it's own, the burnt one takes longer to be put
+ in, but doesn't fall out, the silver stake is the slowest to be stuffed in someone's
+ heart, and is the only stake to be able to cause a Final Death to a sleeping
+ or dead bloodsucker
+ - rscdel: Dullahans can't be bloodsuckers since... their head isn't attached
+ - admin: Bloodsuckers and vassals can now be banned like other antags.
+ BurgerBB:
+ - bugfix: Fixes traitor announcer double-sanitizing.
+ - bugfix: Fixes missing telecomms wire in Moonstation
+ LT3:
+ - image: Added Moonstation specific tram sprites
+ - bugfix: Fixed Moonstation references to Tramstation's tram
+ ReturnToZender:
+ - rscdel: Donors' graceful trenchcoat
+ - rscadd: NTC offices have had their carpet changed out to something less over-the-top.
+ The windows have been expanded as well.
+ nevimer:
+ - balance: contractor and ninja modsuits have DNA locked microbombs
+2024-03-08:
+ EspeciallyStrange:
+ - bugfix: IDMA donor clothing being improperly offsetted and not correctly
+2024-03-10:
+ pixelkitty286:
+ - rscadd: +Peacekeeper cat borg sprites, Spider clan cat borg sprites, Engineer
+ cat borg refreshed sprites
+ - bugfix: Cat cyborg panels not working
+ - image: +Peacekeeper cat borg sprites, Spider clan cat borg sprites, Engineer cat
+ borg refreshed sprites
+ - code_imp: -Duplicate code
+2024-03-11:
+ Majkl-J:
+ - bugfix: Dauntless frames are no longer broken
+2024-03-12:
+ Arturlang:
+ - bugfix: Ventrue sired bloodsuckers will no longer have a copy of their abilities
+ - rscadd: Bloodsuckers that start out with no heart will be able to regain one,
+ but it now properly checks if they have one or not, and disables their abiltiies
+ accordingly, go into a coffin with a heart if you want to gain one.
+ BurgerBB:
+ - bugfix: Fixes an atmos oversight with the Voxbox on Moonstation that can lead
+ to superheated distro.
+ IgiariValkyr:
+ - rscadd: New Traitor Item (10TC) - Portable Listening Advanced Post
+ Kegdo:
+ - rscadd: 'more markings: Chestplate, hip, elbow, shoulder, glove, sleeve, sock,
+ longsock, vertical stripe, fangs, lips, facemask, facedisc.'
+ Majkl-J:
+ - bugfix: False walls appear again
+ Tupina:
+ - balance: Energy weapons can now fire roughly 1.3x more lasers per charge across
+ the board.
+ iskawhiskers:
+ - image: added monster2_head, monster3_head, weight2_chest_m, weight2_chest_f
+2024-03-13:
+ Boviro:
+ - rscadd: Added butler as assistant title
+ ReturnToZender (Writing), LT3, Waterpig (Code assistance):
+ - bugfix: If you have no custom species set, it will now show your default description.
+2024-03-14:
+ VrazzleDazzle:
+ - rscadd: Scrying Lens Disks are now available in the loadout.
+2024-03-15:
+ ReturnToZender (quirk code), TeshariEnjoer (original PR):
+ - rscadd: New positive trait, featherweight. Allows you to be picked up instead
+ of fireman's carried. This dipshit yours?
+ Yanziko:
+ - balance: pet owner is free
+2024-03-16:
+ BurgerBB:
+ - bugfix: Fixes various Moon Station issues.
+ StrangeWeirdKitten:
+ - rscdel: Removes the Dauntless cameras
+ projectkepler-ru:
+ - rscadd: Marketable IDMA Plushie, selectable as ironmoon tajaran plushie
+2024-03-17:
+ BurgerBB:
+ - rscadd: Assigns a bunch of code levels for ERT that didn't have it or I thought
+ should have a different one. The changes itself can be seen in the file.
+ - bugfix: The default code for any ERT is now "Green" so it will no longer show
+ a missing word when calling ERT.
+ xXPawnStarrXx:
+ - qol: made DeForest medipens refillable.
+2024-03-20:
+ xXPawnStarrXx:
+ - rscadd: Blood filtering now restores toxins.
+2024-03-21:
+ Arturlang:
+ - rscadd: Adds the hemophage-only quirk, Sol weakness
+ - code_imp: Refactors the sol subsystem so that itself decides if it should run
+ or not based on if anyone is using it.
+ - code_imp: Refactors bloodsucker UI elements so that they can function fine outside
+ a bloodsucker antag datum
+ - code_imp: bloodsucker_blood_volume, humanity_lost, bloodsucker_level and bloodsucker_level_unspent
+ are now private variables due to them being used for UI updates, if you need
+ to change them, use the procs that are written in the autodoc
+ - code_imp: Quirk species whitelists no longer use bitflags, but use the species
+ ID's. Easily allowing you to add new whitelists without having to mess around
+ with making a new bitfield
+ nikothedude:
+ - rscadd: Roboticists now spawn with synthetic medkits to make their jobs a bit
+ easier
+ - rscadd: New cargo packs for synthetic medkits
+ - balance: Roboticists now spawn with diag huds, welding helmets, and black gloves
+ - balance: Synthetic burn kits now have extra bottles
+2024-03-22:
+ StrangeWeirdKitten:
+ - rscdel: Removes Dauntless self destruct and dense rock surrounding the base
+ - balance: Dauntless exterior turrets shoot fauna, not people
+2024-03-23:
+ Iamgoofball:
+ - rscadd: Re-enables the Galactic Materials Market as it's been fixed upstream.
+2024-03-25:
+ LT3:
+ - code_imp: Parts of firelock code updated to parity with TG
+ StrangeWeirdKitten:
+ - config: Removes Akula Lore protection (Allows edit to species)
+2024-03-26:
+ Jinshee:
+ - rscadd: Added rattlesnake tail
+2024-03-27:
+ Arturlang:
+ - rscadd: Lunge can now take out any organ out of a dead corpse, based on where
+ you are aiming in the targeting doll, it will still prioritize a heart if aimed
+ at chest
+ - bugfix: bloodsucker sol quirk removal is now silent
+ - bugfix: You can no longer unwrench lair coffins
+ - bugfix: gohome will no longer render you stuck in a coffin if it cannot close
+ - bugfix: Malkavians should now spout nonsense less often if you've not lost humantiy
+ yet
+ - bugfix: 'Lunge can now actually stun people if you lunge at them from behind.
+
+ fix; You can no longer spam drink from blood bags.'
+ - code_imp: clan_life now has seconds_per_tick and times_fired
+ YakumoChen:
+ - balance: Xeno Hybrids take normal heat damage, again.
+ nikothedude:
+ - rscadd: You can now set your characters height
+2024-03-28:
+ Erol509:
+ - bugfix: Bloodsucker braincheck was missing a null check causing runetimes, its
+ been fixed.
+ Odairu:
+ - config: changes law 2 wording
+2024-03-29:
+ BurgerBB:
+ - bugfix: Fixes a few moonstation bugs.
+ Majkl-J:
+ - bugfix: Minesweeper now properly gives moodlets
+ - bugfix: teshvali no longer have you wear human sprites
+ ReturnToZender (code):
+ - rscadd: Kiboko 25mm to Armory tab
+ - rscadd: Mini E-Gun to goodies and armory
+ - balance: Reduces the cost of the d'Elite rifle as it is more of a side-grade now
+ VrazzleDazzle:
+ - rscdel: Death bolts no longer dust you on death.
+ destrucktoid:
+ - balance: Ventrue cannot benefit from bloodbags if their blood exceeds BLOOD_VOLUME_NORMAL
+ - refactor: Changed reac_volume to use AddBloodVolume() for consistency reasons
+2024-03-30:
+ Majkl-J:
+ - balance: Bodyless ghosts and ghostroles can no longer transfervote
+ - refactor: Added support for vote mob conditions
+ StrangeWeirdKitten:
+ - bugfix: Humanoid and Hemophage sprites no longer have base skin tone issues. Added
+ human greyscale sprites.
+2024-03-31:
+ LT3:
+ - qol: Catbox and Imgbox are now supported hosting services for headshots
diff --git a/html/changelogs/bubber_archive/2024-04.yml b/html/changelogs/bubber_archive/2024-04.yml
new file mode 100644
index 00000000000..d1bc9c35ba1
--- /dev/null
+++ b/html/changelogs/bubber_archive/2024-04.yml
@@ -0,0 +1,169 @@
+2024-04-01:
+ VrazzleDazzle:
+ - qol: The ashwalkers' ashen necklaces are now fireproof.
+2024-04-03:
+ Majkl-J:
+ - balance: Reagent weapons now get damaged upon reagent transfer
+ - balance: Imbuing once again needs actual skill
+2024-04-04:
+ '@Crumpaloo, @Majkl-J':
+ - image: New foxtrot peacekeeper borg model, sprites by Crumpaloo
+ - code_imp: Moved around cyborg dmi defines to give the precompiler a break
+ - config: Development config now has both sec and peace cyborg modules enabled
+ BurgerBB:
+ - bugfix: Atmos optimization.
+ Erol509:
+ - rscadd: Added back TEG to techwebs and engineering protolathe
+ - image: Changed TEG sprites from YogStation. Credits to original author.
+ LT3:
+ - balance: Rebalanced alcohol intoxication effects. A unit of alcohol will now produce
+ the same intoxication regardless if you chug it all at once or sip it over a
+ few minutes
+ Makeshift-coder:
+ - rscadd: adds an unpacked colony fabricator
+ - rscadd: replaces the four bluespace beakers on a table with a bluespace beaker
+ box for ease of access
+ - rscdel: Removed a single sink to put the unpacked fabricator on it
+ StrangeWeirdKitten:
+ - bugfix: Colossus will properly deaggro when you lose
+ - balance: But colossus bolts will gut you as a consiquence
+ - image: Removes the east and west sprite on the Lips bodymarking
+ tmyqlfpir:
+ - qol: Tweak layout of Dauntless kitchen, dorms and medbay
+2024-04-05:
+ Arturlang:
+ - bugfix: Book of kindred display cases should now spawn properly on TG maps.
+ - bugfix: Duplicate books of kindred won't spawn on new curators
+2024-04-06:
+ BurgerBB:
+ - bugfix: Oh Hi Daniel shuttle no longer throws.
+ - balance: Reworks the Gifted quirk and just gives everyone 6 free quirk points.
+ StrangeWeirdKitten:
+ - rscadd: Sauna survival pods. Found in mining vendor and occasionally maintenance
+ nevimer:
+ - admin: added public log folder, and logging.
+ projectkepler-ru:
+ - rscadd: Contract from Colt has been secured with NT and now we can buy m1911
+ - image: icon updated for the reshi revolver
+2024-04-07:
+ projectkepler-ru:
+ - balance: Colt reevaluated their contract, the M1911 is cheaper now
+ tmyqlfpir:
+ - rscadd: Adds cargo ordering functionality for dauntless base
+ - rscadd: Add bitden to dauntless brig area
+2024-04-08:
+ tmyqlfpir:
+ - rscadd: Add door lock to dauntless restroom, and various map tweaks
+2024-04-11:
+ BurgerBB:
+ - qol: Allows Ashwalkers to Breathe on Station
+ - balance: Xenos can only devour mobs that have a ventcrawler trait (Monkeys, most
+ Simplemobs), assuming all other checks have passed.
+ VrazzleDazzle:
+ - rscdel: Prybars are no longer available in the Rapid Construction Fabricator.
+ tmyqlfpir:
+ - rscadd: Slapping glass tables have a 15% chance (cursed 30%) of breaking on 3rd
+ slap
+2024-04-13:
+ Shayoki:
+ - rscadd: Adds Boxstation
+2024-04-14:
+ xXPawnStarrXx:
+ - qol: made endurogrow boost lifespan.
+2024-04-16:
+ LT3:
+ - qol: 'New moodlet: Status if you''re still processing alcohol you''ve drank previously
+ (and getting more drunk)'
+ - qol: 'New moodlet: Current drunk level'
+ - bugfix: Light drinker quirk should no longer floor you near instantly
+ VrazzleDazzle:
+ - rscadd: Six new PKA variants, now in a mining vendor near you.
+2024-04-17:
+ PhazeJump:
+ - rscadd: Added Harpy (large) wings
+2024-04-18:
+ BurgerBB:
+ - bugfix: Fixes Moonstation Xenobiology Shield Walls
+ - rscdel: Disables Station Blackout and Random Machine Languages Station Traits
+ xXPawnStarrXx:
+ - bugfix: korve skinned advanced tools being invisible.
+2024-04-19:
+ tmyqlfpir:
+ - rscadd: Dauntless - Add exterior cameras to dauntless, removed many interior ones
+ - bugfix: Dauntless - Removed incorrectly placed decals under hull objects and tweaked
+ brig/dorms
+ - balance: Interdyne powerator is now maxcapped to 1MW
+ - rscadd: Dauntless - Added new bounty pad and bounty console
+ - rscadd: Dauntless - Added new produce order console
+2024-04-20:
+ BurgerBB:
+ - rscadd: Adds Moonstation public mining.
+ - bugfix: Fixes various Moonstation bugs.
+2024-04-21:
+ Swiftfeather:
+ - rscadd: Blind crew are no longer barred from being heads of staff (except HoS).
+ VrazzleDazzle:
+ - image: Added a new UI theme, Blue-98!
+2024-04-22:
+ kaylexis:
+ - rscadd: Adds Plant Gene disk to biogen
+2024-04-23:
+ BurgerBB:
+ - rscadd: Moonstation Upstream Merge and Bonuses
+ Iamgoofball:
+ - balance: Takes the ashwalker translation necklace out of the loadout; ashwalker
+ translation is supposed to be rare/craftable with resource/Curator, not a roundstart
+ thing any crewmember can have.
+ StrangeWeirdKitten:
+ - balance: Abductor sleep is 30 seconds instead of 2 minutes
+2024-04-24:
+ Majkl-J:
+ - bugfix: Fixes horrendous ui design
+ PhazeJump:
+ - rscadd: 'wings: Moth (Bluespace)'
+ - rscadd: 'wings: Moth (Strawberry)'
+ - rscadd: 'wings: Moth (Clockwork)'
+2024-04-25:
+ BurgerBB:
+ - bugfix: Fixes assistants always spawning at the Interlink roundstart.
+ VrazzleDazzle:
+ - rscdel: The PKA variants have been temporarily pruned due to a licensing issue
+ with Kahraman Industries.
+2024-04-26:
+ BurgerBB:
+ - rscadd: Improves Moonstation Disposals + Fixes missing wires for Medical Storage
+ and NTRep office.
+ IgiariValkyr:
+ - rscadd: Latex Heels to loadout
+ - qol: Filing cabinets in the Interlink office are now actually stacked together
+ - bugfix: PLAP capsule now has the colors actually described in the description
+ Swiftfeather:
+ - code_imp: The way mobs idle has been refactored, please report any issues with
+ non-reactive mobs
+2024-04-27:
+ Swiftfeather:
+ - balance: Makes bluespace crystal teleportation take time.
+ destrucktoid:
+ - balance: Bloodsuckers can no longer kill or hurt people by drinking from them
+ without at least a passive grab.
+ pixelkitty286:
+ - rscadd: The PKA variants.
+ tmyqlfpir:
+ - qol: Various tweaks to Dauntless service and medical
+ - rscadd: Add new camera kill switches to the Dauntless
+ - rscadd: Add (non-spawned) space version of Dauntless
+ - rscadd: Add new storage room to Dauntless
+ - balance: Dauntless cyborgs will have their cameras automatically removed
+ - balance: Interdyne Powerator has 2x efficiency
+ - rscadd: Created Interdyne injectors to assign non-spawned crew as Syndicate faction
+2024-04-29:
+ ReturnToZender:
+ - bugfix: NTC office bugs have received some minor fixes
+ - rscadd: It is now free to exit the NTC office, even if the outer access is not
+ free
+2024-04-30:
+ BurgerBB:
+ - rscadd: Adds the DOTA suit and various extras to research.
+ destrucktoid:
+ - rscadd: Added new healing systems for bloodsuckers
+ - refactor: Made the code use AddBloodVolume() exclusively for blood costs as bloodsucker.
diff --git a/html/changelogs/bubber_archive/2024-05.yml b/html/changelogs/bubber_archive/2024-05.yml
new file mode 100644
index 00000000000..c426968996b
--- /dev/null
+++ b/html/changelogs/bubber_archive/2024-05.yml
@@ -0,0 +1,169 @@
+2024-05-03:
+ BurgerBB:
+ - rscadd: Adds the Wizard Die of Fate, plus the random event that spawns it. Roll
+ a 20, and become a wizard. Roll a 1, and fucking die.
+ Odairu:
+ - rscadd: Added shadekin Mar emote (its not shadekin exclusive though)
+ legumesan:
+ - rscadd: 3 new hairstyles! Bedhead (+hairline) that fixes the hairline of Bedhead,
+ an alt color version of Spicy and a brand new, short horse mane.
+ - rscadd: A colorable version of the Citheronia wings from Sojourn Station, also
+ with the front part trimmed so the legs and torso can show a little.
+ xXPawnStarrXx:
+ - bugfix: fixed command access to slutty outfits.
+2024-05-04:
+ BurgerBB:
+ - balance: Overhauls Moonstation weather damage. It is now much more complex. EVA
+ storage was changed as a result. Fixes some Moonstation lights as well.
+ tmyqlfpir:
+ - balance: Restore the original TEG efficiency
+2024-05-05:
+ VrazzleDazzle, yooriss:
+ - rscadd: Added the Entombed quirk from Nova Sector
+2024-05-06:
+ Majkl-J:
+ - bugfix: Command members no longer have to install CS:S mid erp because they altclicked
+ their stripper outfit
+ Swiftfeather:
+ - rscdel: Blueshields no longer get a taser gun in their choice beacon.
+2024-05-08:
+ Majkl-J:
+ - bugfix: Bloodsucking no longer shows a cog above your head
+2024-05-09:
+ Odairu:
+ - qol: its now easier to tell what ERT is being spawned
+ axietheaxolotl/viro:
+ - image: brand new medkit sprites
+2024-05-10:
+ Paxilmaniac:
+ - rscadd: A pair of new energy weapons has been added. Coming in both long and short
+ versions, these persona-enabled weapons have many different modes they can rapidly
+ reconfigure themselves between to fit whatever the operator's preferences may
+ be.
+ StrangeWeirdKitten:
+ - balance: doubles SMES input / output
+2024-05-12:
+ VrazzleDazzle:
+ - image: Added one shiny new dress to the loadout.
+2024-05-14:
+ ReturnToZender:
+ - bugfix: Science is no longer disconnected from Distro on MoonStation
+ - bugfix: The manual valves in MoonStation's atmos have been replaced with digital
+ ones. Borg plasmaflooders rejoice.,
+ - balance: The Moonstation NTC's office now has a perfectly adequate carpet
+2024-05-15:
+ nevimer:
+ - rscadd: Round end credits
+2024-05-16:
+ BurgerBB:
+ - rscadd: Makes Ashwalker/Lizard names use a special name generator
+ tmyqlfpir:
+ - rscadd: Restore classic Interdyne base for Ice Moon
+ - bugfix: Department display screen no longer calls itself recursively
+ - bugfix: Fixes vents in Dauntless bridge
+ - qol: Adds new battle attack arcade machine in Dauntless prison
+ - bugfix: Changed Dauntless brig radio freq
+ - rscadd: Add R&D servers to Dauntless/Interdyne ruins
+ - qol: Only allow machines located within Syndie areas to connect to Syndie R&D
+ servers (and vice versa)
+2024-05-17:
+ kaylexis:
+ - rscadd: Added more stuff to the seed vault.
+ tmyqlfpir:
+ - bugfix: Interdyne brig closets can be accessed by regular crew
+2024-05-18:
+ BurgerLUA:
+ - bugfix: Moonstation Fixes and Balance Changes
+2024-05-19:
+ BurgerB:
+ - balance: Buffs RBMK2 base power generation + Buffs RBMK2 cooling efficiency
+2024-05-20:
+ Erol509:
+ - rscadd: Added leash line between user and your "pet".
+ - bugfix: Fixed the fact that you can put a leash on your belt, doing some wonky
+ stuff with resisting from that.
+ Shayoki:
+ - qol: General Box Station improvements.
+ pixelkitty286:
+ - rscdel: unused ass pics
+ - balance: Tajaran body temps and flash sensitivities
+2024-05-21:
+ BurgerBB:
+ - balance: Changes Ninja's energy sword recharge rate from 350 to 200.
+2024-05-22:
+ Arturlang:
+ - bugfix: Bitrunner glitches should now spawn properly more often
+ - balance: Reduced nightmare's burn weakness to 1.2, from 1.5.
+ BurgerBB:
+ - rscadd: Adds Big Fat Security Glocks
+ - bugfix: Fixes some WT-551 ammo errors.
+ - balance: Rebalances the overweight quirk, and adds a new obese quirk.
+ - rscadd: Destroying floor tiles on the Moonstation upper level can lead to a chasm
+ that drops you down to the middle cave level. Note that you can't get dropped
+ down to lavaland.
+ Majkl-J:
+ - rscadd: Cooking pots can now be worn on your head
+ ReturnToZender:
+ - bugfix: Fixed some indentation issues in tajaran.dm, adjusted some lines of examine
+ code to prevent runtimes, borg names show up on the examine panel now instead
+ of nothing
+ - refactor: applies AddElementTrait to the waddling quirk, and mouse waddling
+ VrazzleDazzle:
+ - image: Added one new alt skin to the mining MODsuit
+ - rscadd: Advancements in mining R&D have introduced four new crusher variants to
+ the mining vendor, courtesy of Monkestation
+2024-05-23:
+ ReturnToZender:
+ - balance: The stun time on the tippable component for borgs has been reduced to
+ 20 seconds, from 60 seconds.
+ projectkepler-ru:
+ - bugfix: idma co donor item being flammable and fixes the ammo reloading pouch
+ for the hos revolver being flamable
+2024-05-24:
+ Kyogon:
+ - rscadd: Adds Kyo's true horns, named Biter's Horns.
+ Tera:
+ - rscadd: Added new leash item to borg dom module
+2024-05-26:
+ aKromatopzia:
+ - rscadd: new silicon model (smolraptor). non-syndie, sorry; for now
+2024-05-27:
+ BurgerBB:
+ - rscadd: Adds Legion to Moonstation + Raptor Farm outside Mining
+ ReturnToZender:
+ - balance: Borgs now take 2 seconds to emag. Cover lock functionality unchanged.
+ - balance: Extends the Spy bounty handler by 2x to match our longer rounds.
+ - balance: Releases two new genders, Transmasc and Transfem, for use in the Character
+ Directory.
+ pixelkitty286:
+ - bugfix: Moved images
+ - code_imp: Defines for cat cyborgs
+ - bugfix: Central Command small raptors from not showing up
+2024-05-28:
+ BurgerBB:
+ - balance: The maintenance loot scarcity station trait now only spawns very rare
+ loot
+ - qol: Adds a module that allows engineering cyborgs (and some saboteur cyborgs)
+ to carry handheld tanks.
+ - balance: Nerfs electrocution damage because I died to it once
+ - bugfix: Fixes a missing moonstation disposals pipe.
+ - bugfix: Fixes Moonstation SM pipes from Atmos
+ delingar:
+ - qol: Relentless Heartbeat costs 0 knowledge
+2024-05-29:
+ Iamgoofball:
+ - balance: ' removes the antag-spawning trumpet from the maintenance pool because
+ this is not supposed to be spawned'
+ KathrinBailey:
+ - bugfix: Blue jumpskirts should not be in the vendor's red clothing section.
+ - bugfix: Red jumpskirts should be available in the game again.
+2024-05-30:
+ RadiantFlash7:
+ - balance: gave tajarans better tackles to compensate for weak ears
+2024-05-31:
+ Boviro:
+ - rscadd: Adds the Bobr shotgun revolver to cargo as a goody.
+ BurgerBB:
+ - bugfix: Fixes maint loot being absurd.
+ Erol509:
+ - bugfix: Fixes the leash beam randomly dissapering
diff --git a/html/changelogs/bubber_archive/2024-06.yml b/html/changelogs/bubber_archive/2024-06.yml
new file mode 100644
index 00000000000..0960e4eddac
--- /dev/null
+++ b/html/changelogs/bubber_archive/2024-06.yml
@@ -0,0 +1,185 @@
+2024-06-01:
+ BurgerBB:
+ - qol: Map voting shows total map counts for each map
+ Colfer1:
+ - bugfix: Entombed trait reskin feature works now
+2024-06-03:
+ Arturlang:
+ - qol: Becoming a special vassal will now ask the vassal in question if they wish
+ to become it, and only go through if you accept it.
+ Majkl-J:
+ - rscadd: Adds prefloading to bitrunning
+ Nevimer, Majkl-J, BurgerBB, Azarak:
+ - rscadd: Ported the storyteller event system from horizon
+ Shayoki, Crumpaloo, Keila, Wolf751, bitsynapse.:
+ - rscadd: Donator toys and clothes have arrived.
+ aKromatopzia:
+ - rscdel: Removed duplicate raptoral cybernetic defines in preferences, research
+ web nodes and fabricators
+ projectkepler-ru:
+ - bugfix: Due to a genetic sequencing error, hydrophilic slime people have once
+ again been spotted on the station
+ theselfish:
+ - rscadd: Added various clown clothing into the autodrobe.
+ - rscadd: Clown Cryto is back.
+ - code_imp: Modular Vending code from Skyrat, but for us.
+ tmyqlfpir:
+ - bugfix: Dauntless space ruin bitrunner server no longer announces cool down over
+ NT supply comms
+ - bugfix: Dauntless and Interdyne are now immune to rad storms
+ - rscadd: Added Syndie borg access cards to Interdyne
+ - qol: Replaced the polarized windows in the Interdyne sauna area with blast door
+ shutters
+ - rscadd: Added experi-scanners to Interdyne/Dauntless R&D
+ - bugfix: Interdyne never spawns on top Z level
+ - qol: Interdyne dorm rooms now have crowbars in closets
+ - qol: Interdyne deck officer does not leave empty sleeper on ghost role spawn
+2024-06-04:
+ BurgerBB:
+ - balance: Adds a damage threshold + RNG requirement for EMPs affecting heads and
+ torsos, as well as organs inside those two.
+ theselfish:
+ - rscadd: A Halo is a new 'horn' option for angel characters.
+2024-06-07:
+ shayoki:
+ - bugfix: fixed a few donator items.
+2024-06-08:
+ theselfish:
+ - rscdel: Tiny loadout folder is now annexed into the bigger one.
+ - qol: Drill hats are clickable and are in the command vendor. (Thanks to F13 for
+ the OBJ sprite.)
+2024-06-09:
+ Majkl-J:
+ - qol: Makes the vote requirements code not terrible by allowing anyone with some
+ effect on the round to use it
+ theselfish:
+ - spellcheck: Removed a reference to Skyrat, and a spelling mistake in the Credits.
+2024-06-10:
+ BurgerBB:
+ - balance: Increases the chances of the Wizard Die of Fate event running.
+ pixelkitty286:
+ - rscadd: Research cyborgs
+ - rscadd: ability to pry cyborg cells out
+ - rscdel: ~~disabled malf cyborg factory~~
+ - qol: made an alt method removing cells
+ - balance: rebalanced cyborg making
+ - image: Sprites for research cyborgs
+ - code_imp: what ever needed to get the cyborgs working
+ theselfish:
+ - bugfix: Drill Hats ACTUALLY work.
+2024-06-11:
+ theselfish:
+ - rscadd: Marge has breached containment.
+2024-06-12:
+ BurgerBB:
+ - balance: Makes the exterior of Moonstation more enclosed.
+ Majkl-J:
+ - code_imp: The storyteller failed to pick events runtime now includes more information
+ theselfish:
+ - bugfix: MASSIVE File Structure clean-up.
+2024-06-13:
+ BurgerBB:
+ - bugfix: Fixes the second layer of moonstation creating space turfs.
+ pixelkitty286:
+ - bugfix: engineering borg BRPED upgrade re-added
+2024-06-14:
+ BurgerBB:
+ - rscdel: Malfunctioning AIs can no longer purchase the "Nuke Station" module.
+2024-06-15:
+ ChromeFoxxity:
+ - rscadd: Adds Security High-Vis Jacket Red and Blue variant.
+ - image: Added icons of both variants.
+ - code_imp: Added code for both variants.
+ theselfish:
+ - rscadd: Crewimov related modules are printable now.
+2024-06-16:
+ pixelkitty286:
+ - rscadd: holding code for cyborgs
+ - rscdel: Old 32x32 F3-LINE sprites
+ - image: 32x32 F3-LINE sprites and a cargo variant
+ - code_imp: preventive flags to indicate when held
+ - admin: Two robot traits added to the trait list
+2024-06-17:
+ Majkl-J:
+ - bugfix: Fixes atmos dying
+2024-06-20:
+ nevimer:
+ - qol: allows the ghost to be voted for at any pop
+2024-06-21:
+ theselfish:
+ - bugfix: Sex Barrier is now back. Scene? Scene? Scene? Scene? Scene?
+2024-06-22:
+ 'Sprites: axietheaxolotl Code: VioletN':
+ - image: Added three new selectable "rat queen" skins to the royal rat.
+2024-06-23:
+ Icarus-The-Sun:
+ - bugfix: Prevents Departmental Guards from rolling antagonist roles.
+ Rathen Ivanov:
+ - rscadd: Added Employee Of The Month Special "Chief Screws Plush" for your use
+ and carrying!
+2024-06-24:
+ theselfish:
+ - rscadd: Added some unused clothing items to the MultiSec Vendor. Perhaps you can
+ find them if you're savvy enough with a Multitool.
+ - bugfix: Fixed a few missing items not being in the MultiSec Vendor. Also removed
+ a duplicate item.
+ - image: New Multisec Vendor sprite. Two-Face edition.
+ - rscadd: The Outlast items are no longer stuck in Loadout hell, yay!
+2024-06-25:
+ Shroopy:
+ - bugfix: fixed a copy-paste error in character_directory.dm
+ codehonky:
+ - rscadd: Added new bluespace experi-scanner.
+ - image: Added a simple reskin of the experi-scanner for the bluespace variant.
+ theselfish:
+ - rscadd: The Rat Monarch gender reveal party has been cancelled.
+2024-06-27:
+ BurgerBB:
+ - rscdel: Removes the hardcoded 5 second emote delay for all emotes. Most emotes
+ now have a cooldown of 0.8 seconds, with some being increased based on what
+ /tg/ set.
+ - rscadd: Fixes some Moonstation bugs and expands maintenance a little.
+ StrangeWeirdKitten:
+ - rscadd: 'Adds two new quirks: Dominant Aura and Well-Trained'
+ nevimer:
+ - bugfix: Storyteller should only take two minutes instead of five to spawn events.
+ projectkepler-ru:
+ - rscadd: Maint area somewhat expanded, blueshield has an office, QM has a bedroom.
+ Bitrunning den their own area
+ - bugfix: Paddy not being present on this map
+ xXPawnStarrXx:
+ - rscadd: Added new survival capsules themed for medical trauma and geyser harvesting.
+2024-06-28:
+ Majkl-J:
+ - bugfix: Captain office access can't magically grant you AA anymore
+ pixelkitty286:
+ - rscdel: dogborgs (they are quadrupeds now)
+ - bugfix: Verbs not being available to both tall and dog borgs to rest
+ - code_imp: See refactor. Removed dogborg procs(commented them out)
+ - refactor: small quadrupeds, large quadrupeds, and Tall cyborgs resting verb and
+ how it populates
+2024-06-29:
+ BurgerBB:
+ - bugfix: Fixes incorrect Moonstation Dorms directions.
+ LT3:
+ - rscadd: New DeForest heavy medical kit, technician satchel
+ - rscadd: Security medic can now order a single heavy medical kit using departmental
+ order
+ - bugfix: Hyposprays that are supposed to have a starting vial now actually start
+ with the vial
+ - bugfix: Combat hypospray correctly has the combat cooldown
+ - bugfix: Hypospray switches vials as expected
+ - bugfix: Piercing hypospray now has inject/spray delay
+2024-06-30:
+ BurgerBB:
+ - balance: Significantly nerfs all arrows across the board.
+ GoreDem:
+ - rscadd: buffed bulldog back to a usable state
+ YakumoChen:
+ - balance: Reverts buff to the TEG making it output up to 20MW, now outputs 10x
+ less with a decent setup
+ theselfish:
+ - rscadd: Someone finally repaired the damn pocket watches (may need to check your
+ loadouts)
+ - spellcheck: Made a few loadout item names headline consistent.
+ - code_imp: Moved ckey locked loadout items to their own folder.
diff --git a/html/changelogs/bubber_archive/2024-07.yml b/html/changelogs/bubber_archive/2024-07.yml
new file mode 100644
index 00000000000..ae0e2ca53c7
--- /dev/null
+++ b/html/changelogs/bubber_archive/2024-07.yml
@@ -0,0 +1,196 @@
+2024-07-01:
+ BurgerBB:
+ - bugfix: Fixes the Moonstation Shuttle failing to dock properly
+ SciDragon:
+ - rscadd: Telecomms Specialist job, with a niche carved out of an underutilized
+ engineering department.
+ nikothedude:
+ - spellcheck: Fixed a typo in systemic fault's examine text
+ - balance: Synthetic electrical damage can no longer worsen if its currently being
+ repaired
+2024-07-04:
+ BurgerB:
+ - rscadd: Overhauls the design of Moonstation Engineering
+ BurgerBB:
+ - balance: You only get 1 corrupt organ when sacrificed, instead of 2 to 4.
+ - qol: Removes some corruption options because they are extremely annoying / don't
+ even work properly.
+ - rscadd: Adds Big Bertha, a unique one-of-a-kind two-handed shield for security
+ that blocks literally everything. It spawns in the Armory.
+ - rscadd: Overhauls loot that can spawn in abandoned crates, maintenance, and trash
+ piles.
+ - qol: Map Voting Occurs when the shuttle is called and cannot be recalled.
+ - balance: Only melee weapons can disembowel/dismember via damage via wounds. This
+ does not affect other sources of disembowel/dismember.
+ LT3:
+ - bugfix: Hypospray right click works again
+ - qol: Crew monitor now has sort options and a search box
+ Majkl-J:
+ - bugfix: Fixes maps failing unit tests
+ thegrb93:
+ - bugfix: Tajaran photocopier booty sprite fixed
+2024-07-05:
+ BurgerBB:
+ - rscadd: Adds Changeling Zombies to the game. This is meant to replace RNA zombies
+ and Tumor Zombies as a balanced, updated, and functional alternative.
+ - rscadd: Being husked/absorbed from a regular Changeling turns you into an unaligned/unaffiliated
+ changeling zombie. Note that this also cures your husk infection once turned.
+ - balance: Wearing the tinfoil hat no longer gives you a phobia of conspiracy theories.
+ Tinfoil hat is no longer single use and will work indefinitely until removed.
+ - balance: Adds Monkeydone, a chemical that transforms monkeys into humans. It can
+ be made by mixing 10u Unstable Mutagen + 10u Mutadone + 1u Salt to make 1u Monkeydone.
+ Cecily-C-Catherine:
+ - rscadd: Added new sprites and code to allow the choosing of sprites
+ YakumoChen:
+ - bugfix: Fixes guns being in imports again due to code reversion
+2024-07-06:
+ LT3:
+ - bugfix: Fixed certain jobs being categorized as unknown on the crew monitor
+ projectkepler-ru:
+ - bugfix: TEG Research cost not being accomodated
+2024-07-07:
+ StrangeWeirdKitten:
+ - bugfix: Dead well-trained quirk holders will no longer respond to snaps
+2024-07-09:
+ BurgerBB:
+ - rscdel: You can no longer vote for a map if it was the last 2 maps played, or
+ the current map.
+2024-07-10:
+ BurgerBB:
+ - bugfix: Fixes moonstation having space turfs on turf destruction on the upper
+ level. Fixes weirdly placed camera monitors due to upstream changes. Fixes a
+ few randomly placed doors in some areas.
+ theselfish:
+ - rscadd: Non-locked Donator have been added to vendors. Collect them all!
+2024-07-11:
+ theselfish:
+ - rscadd: A bunch of stuff is now on box. Minor, but it's there!
+ - bugfix: Weird vendors no longer spawn in front of Security on Box.
+ - bugfix: Lima and Box now compile.
+2024-07-12:
+ Icarus-The-Sun:
+ - rscadd: Added C4 Moth as a C4 reskin
+2024-07-14:
+ BurgerBB:
+ - rscadd: Adds Antag Tickets, a new currency that determines who gets antagonist
+ roles.
+ MonkeStation (sprites) TheSelfish (Port):
+ - rscadd: Multiple new Bunny Outfits are in the vendors now!
+ theselfish:
+ - rscadd: Clown Hair! Woo! Markings too!
+ xXPawnStarrXx:
+ - rscadd: Added new pods!
+2024-07-15:
+ BurgerB:
+ - bugfix: Fixes Arcade Loot not properly spawning
+ Odairu:
+ - server: ghost only votable up to 40 pop
+ nevimer:
+ - balance: chest dismember only removes one organ per occurance
+ nikothedude:
+ - bugfix: Nagas off-station or restored with the SAD should now properly have their
+ footstep sound
+ - bugfix: Losing your naga lower body now tries to restore normal footsteps
+ - bugfix: Naga footstep sounds now work properly
+ plsleavemealon:
+ - rscadd: 'New Quirk: Masquerade, exclusive to hemophages'
+2024-07-16:
+ BurgerBB:
+ - balance: Your blob strain on start will always be Distributed Neurons, instead
+ of a random strain. The cost to reroll for the first time is still free.
+ - balance: Changing to Networked Fibers will instantly alert the crew that you exist
+ (With a level 5 blob biohazard announcement), regardless of how many tiles you
+ have.
+ Majkl-J:
+ - rscdel: Removed damage emp protection as the current strength of the emp does
+ not justify it.
+ - bugfix: Loadouts in bitrunning work again
+ - bugfix: Names in bitrunning work again
+ Odairu:
+ - rscadd: DomAura quirk to dom borg module, and adds it to the tech tree
+ - spellcheck: Untility Cyborg Upgrades -> Utility Cyborg Upgrades
+ StrangeWeirdKitten:
+ - bugfix: Borg Pinpointers and synthshells are now printable once more.
+ shayoki:
+ - rscadd: Added more telescreens to BoxStation.
+ - bugfix: Fixed BoxStation broken Telescreens.
+2024-07-17:
+ BurgerBB:
+ - rscadd: Adds Quote of the Round, an entirely cosmetic way of showing off a random
+ ass message said on Common Radio. This does not ping people. By default, it
+ is posted in the same channel as roundstart announcements.
+ Doomtail:
+ - image: added new beard icons
+ Majkl-J:
+ - balance: Weight 8 for BS, Ling, Heretic
+ - balance: Weight 10 for malf
+ - balance: Weight 8 for spy and traitor
+ - bugfix: Fixes runtime in get_antag_cap()
+2024-07-18:
+ BurgerBB:
+ - rscadd: Improves Moonstation Janitorial by adding missing items found on other
+ maps.
+ Majkl-J:
+ - balance: The ninja bomb objective is now available from 30 pop
+ - bugfix: Ninja no longer spawns with quirks, making you not to randomly die and
+ have a fighting chance
+ theselfish:
+ - rscadd: New cloak to the loadout. Caw.
+2024-07-19:
+ xXPawnStarrXx:
+ - qol: made it once again possible to print parts from autolathes! You just need
+ the disk <3
+2024-07-20:
+ theselfish:
+ - rscadd: Some redsec strays have been added to the ComDrobe and SecVend. Stay tuned.
+ - code_imp: Moved the SecVend to be with the rest of the vending overrides.
+2024-07-21:
+ LT3:
+ - qol: Improved alarm function on medbay's crew monitor console
+ Majkl-J:
+ - bugfix: Blue 98 UI Style fixes
+ Shroopy:
+ - rscadd: Added a GPS tracking collar to the LustWish
+ StrangeWeirdKitten:
+ - balance: Emote delay has been set to 1 second
+2024-07-22:
+ DimWhat for spriting, SigmaPredator for helping me with organizing this, and my (theselfish) poor keyboard.:
+ - rscadd: Nearly every job has a Bunny outfit. I am not joking. Check your vendors.
+2024-07-23:
+ Arturlang:
+ - balance: Bloodsuckers can only reach 560 max blood via drinking blood bags or
+ the blood reagent, and bloodsuckers above level 4 will get 30% less blood and
+ be disgusted by it.
+ nikothedude:
+ - rscadd: Mothroaches can now be milked for moth milk
+2024-07-24:
+ TheSelfish (code) CannibalHunter of MonkeStation (sprites):
+ - rscadd: Traitors may goon. Gooning is also in the clothes mate and the vendor.
+ - rscadd: Oh and the rabbit pendant is in the loadout, the rest of the bunny stuff
+ won't be added, but this isn't especially out there.
+2024-07-26:
+ BurgerBB:
+ - balance: Adds a strict limit for how many antagonists of the same type can be
+ added in the round. This affects both midrounds and roundstarts.
+2024-07-28:
+ LT3:
+ - bugfix: Blood filter toxin removal feature now starts correctly
+ MosleyTheMalO:
+ - config: adds a config for the vetted system
+ thegrb93:
+ - bugfix: Quadruped borg hat graphics work now
+2024-07-29:
+ KathrinBailey:
+ - sound: Adds meow1 emote!
+ - sound: Adds mrowl emote!
+ Shadow-Quill:
+ - bugfix: A holy water container on Moonstation now actually contains holy water.
+ snailomi:
+ - code_imp: updated donator_personal.dm
+2024-07-30:
+ Lutowski:
+ - qol: Moon Station Pharmacy and Chemistry Lab is renovated.
+ theselfish:
+ - bugfix: Coroner Bunny stuff got fixed.
+ - bugfix: Digi tailcoats should work. They make look a bit weird.
+ - rscdel: Clown Dogborg is gone thank fuck.
diff --git a/html/changelogs/bubber_archive/2024-08.yml b/html/changelogs/bubber_archive/2024-08.yml
new file mode 100644
index 00000000000..4dbde4372ff
--- /dev/null
+++ b/html/changelogs/bubber_archive/2024-08.yml
@@ -0,0 +1,166 @@
+2024-08-01:
+ BurgerBB:
+ - bugfix: Fixes some moonstation issues.
+ LT3:
+ - code_imp: Holy Water lobotomies are now a standalone surgery operation named Blessed
+ Lobotomy
+ plsleavemealon:
+ - rscdel: Removed the agender trait from ethereals.
+ theselfish:
+ - rscdel: Duplicate Butler title is gone.
+2024-08-02:
+ Szyszkrzyneczka:
+ - code_imp: lore updates + species lore is now a list of strings instead of a string
+ plsleavemealon:
+ - balance: lessened ethereal revive penalty
+ theselfish:
+ - rscdel: Deleted duplicate Language files.
+2024-08-03:
+ Nerev4r (Code), ReturnToZender (port):
+ - rscadd: Moths now get a dash at the cost of stamina. You can use at most 3 dashes
+ before entering stamcrit.
+ - rscadd: Flutter emote for moths
+ ReturnToZender (code), APWill (Sprites):
+ - rscadd: Deer snout to the character creator
+ plsleavemealon:
+ - rscadd: Add new argument to cyborg rechargers, allowing an optional limit to be
+ placed upon amount charged.
+ - rscadd: Add new entry within ethereal stomach taking advantage of the new argument
+2024-08-04:
+ plsleavemealon:
+ - balance: rebalanced (buffed) ethereal's interior power cell
+ - balance: rebalanced entombed modsuit starting storage
+ shellspeed1:
+ - bugfix: Made interdyne exofab circuit board actually work and made the exofab
+ drop the right board
+2024-08-05:
+ BurgerBB:
+ - bugfix: Fixes some Moonstation bugs.
+2024-08-07:
+ BurgerBB:
+ - bugfix: Fixes even more moonstation issues.
+ Odairu:
+ - refactor: modularizes a few things
+2024-08-08:
+ Odairu:
+ - code_imp: changed basic sec hud into a trait
+ StrangeWeirdKitten:
+ - balance: Emagging a borg will now scramble its codes plus opening the cover has
+ a delay
+2024-08-09:
+ BurgerBB:
+ - bugfix: Fixes Moonstation Lighting being too dark.
+ KeRSedChaplain:
+ - rscadd: Ports the Divine Lightblade nullrod from citadel
+ Odairu:
+ - rscadd: antag names
+2024-08-10:
+ Krypandenej:
+ - rscadd: Added Leary's Delight cigs, a xeno action figure, and a pale zippo to
+ loadout
+ Odairu:
+ - bugfix: fixed abductors in deathmatch talking to station abductors
+2024-08-11:
+ BurgerBB:
+ - bugfix: Fixes the bug where there are no possible maps to be voted for because
+ all the lowpop maps have already been played recently.
+ Odairu:
+ - bugfix: bows properly apply damage as ashwalker/icecat
+ - bugfix: Lima AI sat
+ - bugfix: maps choosing themselves
+2024-08-12:
+ Majkl-J:
+ - balance: Sec no longer spawn in with fully loaded belts as it was an old undocumented
+ change that introduced a bug
+ Odairu:
+ - rscadd: Adds sec hailer
+ ReturnToZender (code):
+ - rscadd: Anime eye sprites
+2024-08-13:
+ Majkl-J:
+ - code_imp: Makes the empty synth body spawn logic run faster
+ Odairu:
+ - bugfix: custom species lore properly displays
+2024-08-14:
+ BurgerBB:
+ - balance: Significantly Boosts the chances of the Wizardly Die of Fate event triggering.
+ The event now has a 20% chance not to announce the existence of a Wizardly Die
+ of Fate
+2024-08-16:
+ Azarak (code), ReturnToZender (bugfixing):
+ - rscadd: New players to a department now show properly as interns.
+ pixelkitty286:
+ - rscadd: cat like grace to lightweight chassis and small quad borg walking sounds
+ - image: catborg death sprites
+ - code_imp: changed how cyborgs get their walking sounds.
+2024-08-18:
+ ShadowLarkens:
+ - rscadd: Mechanical Vore
+ Shroopy:
+ - bugfix: Added a missing period to law 2 of the NT OS Safeguard V1.0 lawset.
+2024-08-19:
+ Odairu:
+ - rscadd: Darkness regen, nightvision, nobreath, flash vulnerability, movespeed
+ decrease in light, no stamina regen in light
+2024-08-21:
+ BurgerBB:
+ - balance: Changeling Zombie Toxins are capped when it reaches the curable stage.
+ - balance: Changeling Zombie patients will deal damage to the cryotube if placed
+ inside it while activated.
+ - balance: Spaceacillin can be used to negate Changeling Zombie toxins damage, and
+ half the cure threshold of curing changeling zombies. Note that using Spaceacillin
+ too early in a patient, or too often, can result in the virus gaining an immunity
+ to it.
+ Majkl-J:
+ - rscdel: Removed broken unmaintained crusher code
+ - bugfix: Harpy wings now display correctly
+ Odairu:
+ - bugfix: AP mod has digisprites now and applies them properly.
+2024-08-22:
+ LT3:
+ - bugfix: Feline traits will give purr speech modifier
+ - code_imp: Tajaran tongue moved from Feline Traits quirk to augments menu
+ Odairu:
+ - image: filled in the nullspace for shadekin tail BEHIND icons
+2024-08-23:
+ Swiftfeather:
+ - balance: Halves the time for bluespace crystal use
+ projectkepler-ru:
+ - rscadd: woodstock shotgun now buyable
+ - bugfix: any remaining import gun being buyable
+ - balance: riot shotgun now fire faster
+ - balance: renoster now hold 9 + 1 shot
+ - balance: casing pouch bumped to hold 14 shot
+ - code_imp: moved the infanteria rifle crate down to emag contraband
+2024-08-24:
+ BurgerBB:
+ - balance: As a living creature, it is no longer possible to go 2 times faster than
+ base movement speed. Base movement speed is the default running speed of mobs,
+ without any buffs.
+ Majkl-J:
+ - bugfix: Basic Medipens can be refilled again.
+ ShadowLarkens:
+ - bugfix: Claustrophobia no longer triggers inside vore bellies.
+ shayoki:
+ - rscadd: Five more new antler types.
+2024-08-26:
+ KazooBard:
+ - rscadd: The blueshield now can select "Henchman" as their title
+ LT3:
+ - bugfix: Fixed telecoms specialist HUD icon
+ projectkepler-ru:
+ - code_imp: removed unnecessary override as changes were patched upstream
+2024-08-27:
+ Odairu:
+ - qol: ghosts can vote on transfers 2 - infinity
+2024-08-28:
+ Swiftfeather:
+ - admin: Red Alert ERT no longer has pulse weapons.
+2024-08-30:
+ BurgerBB:
+ - balance: Reworks (mostly) and renames all the storytellers and improves the code.
+ projectkepler-ru:
+ - rscadd: disabler smg to sec medic
+2024-08-31:
+ Majkl-J:
+ - rscadd: Syndicate maid kit, a kit containing armored syndicate maid clothing
diff --git a/html/changelogs/bubber_archive/2024-09.yml b/html/changelogs/bubber_archive/2024-09.yml
new file mode 100644
index 00000000000..1e0796fb6d6
--- /dev/null
+++ b/html/changelogs/bubber_archive/2024-09.yml
@@ -0,0 +1,199 @@
+2024-09-01:
+ Doomtail:
+ - rscadd: Added twisted, twisted long, wicked, and inari hairstyles.
+ - rscadd: Added cervine snout.
+ - rscadd: Added naja hood frill.
+ Majkl-J:
+ - bugfix: Cargo shelves now drop crates upon being destroyed
+ Odairu:
+ - balance: removed slipstick from uplink
+2024-09-04:
+ BurgerBB:
+ - rscdel: Disables "The Bomb" storyteller from being votable because engineering
+ cryos every time it's voted.
+ - bugfix: Fixes a typo in map voting code that prevented the fallback "no maps to
+ vote for" code to work.
+ StrangeWeirdKitten:
+ - qol: Divides Jukebox volume by 2
+ plsleavemealon:
+ - bugfix: lets zombies be gendered
+2024-09-05:
+ BurgerBB:
+ - rscadd: Predictable Chaos now has 50% more antagonists.
+ Majkl-J:
+ - bugfix: Moth climb works again
+ Odairu:
+ - rscadd: hypno lipstick
+2024-09-07:
+ BurgerBB:
+ - rscadd: People who sign up roundstart get triple the starting cash compared to
+ latejoiners.
+ Swiftfeather:
+ - bugfix: Can no longer rapid fire kisses, you boykisser.
+ plsleavemealon:
+ - rscadd: Makes the numb quirk actually numb you
+2024-09-09:
+ LT3:
+ - code_imp: Modularised and updated scrubber overflow event
+2024-09-10:
+ LT3:
+ - code_imp: Boykissers resume boy kissing! Kiss emote no longer causes a progress
+ bar after using
+ - balance: Syndie/death kiss projectiles have a 1.6 second cooldown
+ Majkl-J:
+ - rscadd: Added Lone infiltrator ghost midround
+ - rscadd: Added Malf AI midround
+ - rscdel: Removes predictable chaos as all tellers now use its main gimmick as a
+ baseline
+ - qol: Storyteller votes now prevent a constant voting streak of the same type of
+ tellers
+ - balance: All storytellers now roll antags more often, but in smaller numbers per
+ roll
+ - balance: Clown storyteller no longer cares about event weights and just does whatever
+ rng decides
+ - balance: Meteors can no longer run repeatedly in a single round
+ - balance: Makes ghost roles actually roll somewhat frequently
+ - bugfix: Fixed a few bugs with storytellers, namely the tracks sometimes going
+ into negatives, and voidwalker running on planet maps
+ - refactor: Refactored how storytellers handle tracks to be easier to code with
+2024-09-13:
+ Odairu:
+ - bugfix: neck gaiter no longer has sec radio
+2024-09-14:
+ BurgerBB:
+ - bugfix: Fixes Moonstation Library Wiring and Disposal Pipe
+ nikothedude:
+ - rscadd: '*esigh, for exasperated sighing'
+2024-09-15:
+ Swiftfeather:
+ - balance: Reduced heretic weighting.
+ shellspeed1:
+ - rscadd: Cargo Companies are now available to offstation factions
+ - rscadd: Tarkon now has a cargo setup available to them
+2024-09-16:
+ Majkl-J:
+ - bugfix: Storyteller now actually rolls stuff correctly and in respect to the antag
+ cap
+ theselfish:
+ - rscadd: Adds unused Red Pauldrons to Sec Vendor, as well as the Sec Med beret
+ and Armadyne belts.
+2024-09-17:
+ BurgerBB:
+ - balance: Reduces RBMK2 temperature gain based on matter bin tier
+ - rscdel: The mold event can no longer be triggered by events except by admin intervention.
+ Odairu:
+ - balance: nerfs heretics ability to ascend
+ ShadowLarkens:
+ - bugfix: Delete button on belly messages no longer has a rendering error.
+2024-09-18:
+ KathrinBailey:
+ - rscadd: Loincloths from Sandstorm.
+ - bugfix: Jean shorts/skirt no longer covers legs and chest.
+ Majkl-J:
+ - qol: The tank manipulator now gives feedback about what's in it
+ shayoki:
+ - rscadd: Added fitness equipment to Box Station's Fitness Room.
+2024-09-20:
+ Arturlang:
+ - refactor: Heavily refactors how bloodsucker powers function.
+ - refactor: Tremere powers no longer have subtypes for each level.
+ - rscadd: Completely redoes how bloodsucker ability descriptions, both the longer
+ antag panel and the action button hover over, they will actually tell you actual
+ values that the game itself uses for damage, cooldowns, and effect durations
+ - balance: Tremere powers can now level up as far as you want.
+ - balance: Mesmerize is heavily reworked, now it no longer forces both parties to
+ stand still for it to work, but it is obvious to the victim when used, however
+ the victim is muted for the duration of the spool up, and will stun and mute
+ normally if the do_after completes.
+ - rscadd: 'Mesmerize now has a secondary that allows you to mute and confuse your
+ victim that happens on a right-click,
+
+ dominate, the tremere''s version instead knockdowns.'
+ - rscadd: Tremere's dominate now has a visual timer for temporary vassals, visible
+ only to the master's vassals and the master themselves.
+ - balance: Tremere's dominate now only requires level 2 to create temporary vassals,
+ but the duration now scales with the level. It now requires the potential vassal
+ to have more than 336 blood, and will use it all up once the duration ends,
+ effectively making it only usable once per person.
+ - balance: All tremere powers can now level up past level 4
+ - balance: Thaumaturgy is heavily reworked, it now has a charge system, and while
+ the projectile deal less damage, you can shoot a lot more of them, and the projectiles
+ will seek towards any non-vassal mob near where you cast it.
+ - refactor: Separates bloodsucker ability bitfields and action bitfields to avoid
+ overriding eachother
+ - balance: Bloodsuckers going into torpor outside of coffins will always die, but
+ will wake out of torpor at 20% maxhealth(not counting critical health)
+ - balance: A coffin being opened during sol will wake you up, given you are LITERALL
+ BURNING UN-ALIVE.
+ - balance: Bloodsuckers are no longer highly wound resistant, but their coffins
+ will now heal all wounds
+ - bugfix: Should fix the issue with bloodsucker bleeding staying active forever
+ BurgerBB:
+ - balance: Overhauls requirements for Anomaly Refinement, and removes some limits
+ and implements some more.
+ - balance: Makes Space Dragons immune to toxin + oxy damage because I saw a Space
+ Dragon die to simplemobs on Moonstation Once
+2024-09-21:
+ Arturlang:
+ - balance: The range of haste is now 5 tiles.
+2024-09-22:
+ Redrover1760:
+ - balance: Reverts 9x25mm and 9x25mm AP skyrat nerf to tg values.
+ Shadow-Quill:
+ - spellcheck: Fixed a typo in the message that appeared when someone with the Well-Trained
+ perk examined someone with the Dominant Aura trait.
+ theselfish:
+ - bugfix: The Neck Gaiter no longer hides glasses.
+2024-09-23:
+ nevimer:
+ - bugfix: airbags are no longer haunted
+2024-09-24:
+ LT3:
+ - image: Added a moth to your taskbar
+2024-09-25:
+ LT3:
+ - qol: New vote reminder notification, enabled for storyteller votes
+ ReturnToZender:
+ - balance: NTC no longer gets Stardust shells, they get only their laser.
+2024-09-26:
+ BurgerBB:
+ - bugfix: Fixes missing Moon Station wire that caused Engineering (just the area
+ outside the SM) to not be connected to the grid.
+ Shadow-Quill:
+ - balance: Oppressive Force Relocation Medicells no longer require bluespace extracts
+ to become functional.
+ theselfish:
+ - rscadd: Recent events have caused an insane amount of plastic medals to flood
+ the market.
+2024-09-27:
+ Swiftfeather:
+ - rscdel: Removed hostile pitbull crates.
+2024-09-28:
+ BurgerBB:
+ - rscdel: Removes the Mannequin in Moonstation engineering because a shaft miner
+ died to it 5 times.
+2024-09-29:
+ BurgerBB:
+ - balance: Buffs Xeno Weed temperature survivability in hotter environments. It
+ was increased from 300K to 350K, which is only slightly higher than Moon Station's
+ external temperature of 347.65K.
+ FlufflesTheDog (code), ReturnToZender (port):
+ - bugfix: A restraining order has been placed on medibots on behalf of synthetic
+ crew members due to reports of harassment.
+2024-09-30:
+ BurgerBB:
+ - balance: Heretic Transmutation Runes can no longer have Fingerprints.
+ LT3:
+ - admin: Storyteller backend updates
+ - rscdel: Disabled sandstorm random event
+ - rscdel: No more eigenstate in scrubber overflows
+ ReturnToZender:
+ - balance: Re-orders character directory sorting based on what really matters.
+ ReturnToZender (code):
+ - rscadd: The futuristic security helmet is now properly added to the multisec vendor,
+ and the loadout along with the patrol cap.
+ StrangeWeirdKitten:
+ - rscadd: Holofans and Pipescrubbers to Moon and Box's ordnance
+ - rscadd: Unbolted doors to the ordnance freeze chambers
+ - bugfix: Missing power wire to QM's office on Box
+ - rscdel: Smart Organ storage in the middle of Box' medbay
diff --git a/html/changelogs/bubber_archive/2024-10.yml b/html/changelogs/bubber_archive/2024-10.yml
new file mode 100644
index 00000000000..819f03082c5
--- /dev/null
+++ b/html/changelogs/bubber_archive/2024-10.yml
@@ -0,0 +1,217 @@
+2024-10-01:
+ Arturlang:
+ - balance: brawn costs 10 blood instead of 8, and has a cooldown of 12 seconds,
+ instead of 9
+ - balance: fortitude now has a cooldown of 20 seconds, from 8, also you will not
+ be able to heal any brute or burn damage while it is active, the scaling of
+ the damage resist is also halved, no longer is maximum resistance of 0.3 for
+ brute, 0.5 for burn achieved at level 4, now it is reached at level 8, changing
+ by 0.05 per ability level
+ - balance: haste costs 9 blood instead of 6, and has a cooldown of 15 seconds from
+ 12
+ - balance: The candelabrum is no longer as tough
+ - bugfix: candelabrum now turns off when unsecured
+ - balance: Bloodsucker no longer level from sol when they reach level 4
+ - balance: Ventrue now can only use blood drunk from sentients to level up vassals
+ if they wish to level themselves up.
+ - refactor: Refactors how ventrue vassalizing is handled, no longer copying most
+ of level up code for it.
+ - balance: Silver stakes no longer gib/dust sleepy bloodsuckers, instead they remove
+ hearts, which leaves bloodsuckers power-less
+ Odairu:
+ - bugfix: TK no longer teleports to stripper pole
+ ReturnToZender:
+ - rscadd: You can now control what your name is, when you spawn as an ERT.
+ pixelkitty286:
+ - rscadd: cut down omitool a small upgrade for the scanner
+ - qol: made research borgs actually able to revive and work on synths
+ - balance: research cyborg grippers
+ - bugfix: research cyborgs not being able to repair synths. research cyborgs being
+ able to pick up the nuke disk (oops lol).
+ shellspeed1:
+ - rscadd: Thanks to the effort of syndicate engineers, you can now reproduce the
+ interdyne cargo equipment as well as firing pins and headsets complete with
+ comms key! Don't let it get stolen by NT!
+ theselfish:
+ - rscdel: Removed storage from (nearly) all the Bunny Suits
+2024-10-03:
+ KazooBard:
+ - rscadd: Added the card reader to the autolathe's designs
+ shayoki:
+ - rscadd: Added a basic megacell in Boxstation's EVA Storage room inside the inducer
+ storage.
+ - rscadd: Added two secure lockers in Boxstation's Brig evidence room.
+ - rscdel: Removed Borg Burger in Boxstation's robotics.
+ - bugfix: Realigned the airlock and windows for Boxstation's Blueshield office to
+ match the Vacant Office nearby it.
+ - bugfix: Fixed an open wall connecting to Boxstation's Garden and maints.
+ - spellcheck: fixed a crate's name in Boxstation's test firing range.
+2024-10-04:
+ Arturlang:
+ - bugfix: Malkavians will now actually get a notification and a objective once a
+ bloodsucker breaks the masquarade
+ ReturnToZender:
+ - rscdel: The Lungbuster now no longer calls forth hell's sirens.
+ nevimer:
+ - refactor: Vetted system is now using SQL and improved.
+2024-10-06:
+ LT3:
+ - code_imp: Radiation storm warning only sent to players who are in an area without
+ radiation protection
+ - balance: Occupied dorms are protected from radiation storms and scrubbers
+2024-10-07:
+ thegrb93:
+ - bugfix: Fix runtimes and bugs with using lewd toys on cyborgs
+2024-10-08:
+ Mitryll:
+ - balance: Set Heretic sacrifice target amount to 5-6.
+ nevimer:
+ - rscadd: Centralsmith Donor Item
+2024-10-09:
+ Aroliacue:
+ - balance: Increased Shadekin bodypart burn damage received from 10% to 20%
+ - spellcheck: Fixed some desc typos in shadekin.dm
+ - bugfix: Removed doubleup eyes organ in shadekin.dm
+ Odairu:
+ - qol: AIs can open doors without looking
+2024-10-10:
+ Adrian16199:
+ - rscadd: HFZ can have digitigrade legs now.
+ LT3:
+ - qol: Gravity generator failures/power restores are now less announcement and sound
+ spammy
+ LT3, vinylspiders, LordVoidron:
+ - rscadd: Private (subtle) PDA messaging by adding "#" to start of message
+ - qol: Added button to NTOS messenger TGUI to toggle private messaging
+ - admin: Public logging for non-subtle PDA messages
+ Mitryll:
+ - rscadd: Added *squeal emote
+ - rscadd: Added *tailthump emote
+ - sound: Added sounds for *squeal and *tailthump
+ Swiftfeather:
+ - balance: Reduced wound chance multiplication when injured.
+ theselfish:
+ - spellcheck: Various Bloodsucker things have been renamed after the Inconnu paid
+ a visit.
+2024-10-11:
+ IgiariValkyr:
+ - rscadd: Lizard Gas can actually be staffed now!
+2024-10-12:
+ Boviro:
+ - rscadd: Re-adds gun safeties
+ - rscadd: Guns with enabled safeties will disable their safeties if you attempt
+ to fire with it on.
+ LT3:
+ - code_imp: Bubber medsecHUD replaced with TG version
+ - rscadd: Medic labcoat/vest added to Orderly garment bag
+ - balance: Morgue surgery tray now comes with an autopsy scanner
+ Odairu:
+ - rscadd: adds silicon manager pda app
+ sippykot:
+ - rscadd: you can buy the surgical medkit in cargo now
+2024-10-15:
+ Bangle:
+ - spellcheck: Added some alt titles
+2024-10-17:
+ Arturlang:
+ - balance: Drinking from ghouls/vassals as a bloodsucker is no longer is 1/4th less
+ effective than drinking from non ghouls/vassals
+ TealSeer:
+ - rscdel: Remove air alarm in Space from BoxStation.
+2024-10-18:
+ Arturlang:
+ - bugfix: Bloodsuckers now get blood thickening points
+2024-10-21:
+ ChromeFoxxity:
+ - rscadd: Added the Vortex-Class Luxury Evacuation Shuttle.
+ LT3:
+ - balance: Balanced company imports DeForest Medical section
+ Shadow-Quill:
+ - bugfix: Headpats show a feedback message again.
+ StrangeWeirdKitten:
+ - rscdel: Removes blueshift entirely from the code.
+ - rscdel: Removes Limastation
+ nikothedude:
+ - balance: Synth premium medkits no longer have a premium spray, instead having
+ a plasmide spray.
+ - balance: Plasmide now metabolizes slower
+ thegrb93:
+ - image: Vox helmet sprites now using improved vox helmet sprites
+ xPokee:
+ - bugfix: fixed the Big ears being removed, presumably by accident
+ xXPawnStarrXx:
+ - qol: added two extra tools to the surgical toolset; Bloodfilter and bonesetter.
+ - bugfix: added combitool to deforest's cargo orders, I forgot to before.
+2024-10-22:
+ StrangeWeirdKitten:
+ - rscadd: Radiation Storms will now irradiate the station again if you don't set
+ the shields up.
+ TealSeer:
+ - bugfix: fixed department head arrival radio messages missing their job title
+2024-10-23:
+ Iamgoofball:
+ - rscadd: Adds 20 more slots for free players and up to 100 slots for BYOND members
+2024-10-25:
+ LT3:
+ - rscadd: Halloween candy meteors
+ - bugfix: Halloween, Easter, and Valentines Day events correctly trigger at roundstart
+ - image: More Halloween holiday tile patterns
+ - sound: Reduced length of meteor alert warning sound
+ - balance: Adjusted warning time for meteor waves depending on intensity
+ - qol: Received subtle PDA messages are labelled subtle in the text log
+ ReturnToZender:
+ - balance: Changeling shrieks now have a 10 second cooldown.
+ nikothedude:
+ - balance: Synth blunt T3 now requires a T1 burn wound to mold
+ - balance: Synth blunt T3 heating step now gives a T1 burn wound
+ - balance: Synth blunt T3 heating now takes 3 secs
+ - balance: Synth electrical damage is now much more treatable with wires
+ - bugfix: Nagas no longer play human footsteps
+2024-10-26:
+ '@Majkl-J, @Wolf-751':
+ - bugfix: Brings back the red berserker suit digi sprites, originally by Erol509
+ - image: Adds digi sprites to marked one's berserker suit (By Wolf-751)
+ CydiaButt13:
+ - rscadd: '*yip'
+ - rscadd: '*yipyip'
+ LT3:
+ - image: Fixed icon state for upgraded power cell
+ - bugfix: APCs again trigger lighting channel before equipment channel
+ Shadow-Quill:
+ - bugfix: Dauntless vendors no longer require money to use, as before.
+ - bugfix: SSD timer now visible once more.
+ YakumoChen:
+ - rscdel: Nanotrasen has removed the Galactic Minerals Market from their Moonstation
+ branch due to repeated market crashing by crew.
+ xPokee:
+ - rscadd: added a GAGSified miniskirt to the loadout menu
+2024-10-27:
+ Flvffi:
+ - rscadd: 1 Haydee borg skin for the Research role
+ sneksnek:
+ - balance: Reverted the normal, large, and x-large beakers back to their original
+ capacities of 50u, 100u, and 120u respectively.
+2024-10-28:
+ LT3:
+ - bugfix: Fixed meow and purr emotes playing the pet line instead of the emote line
+ - qol: You can now see the tallies used to calculate map votes
+ Shadow-Quill:
+ - bugfix: Other ghost roles now have free vendors.
+ - rscadd: Subtler Anti-Ghost's text box name is now "Subtler Anti-Ghost", to give
+ it better distinction with the Subtle box.
+2024-10-30:
+ Arturlang:
+ - bugfix: Hemophages are now set alight at 397.6 blood again
+ LT3:
+ - bugfix: Crew monitor computer no longer alerts when unpowered
+ Majkl-J:
+ - rscadd: New annoying cat plush for Kurzaen, available in loadouts
+ sippykot:
+ - rscdel: beakers are 60u/120u again
+ - balance: changes cryo beaker to 60u from 50u
+ - rscdel: XL beaker is 150u again
+2024-10-31:
+ LT3:
+ - bugfix: Windoors animate properly
+ xPokee:
+ - bugfix: fixed cryogenic consoles being destroyable
diff --git a/html/changelogs/bubber_archive/2024-11.yml b/html/changelogs/bubber_archive/2024-11.yml
new file mode 100644
index 00000000000..fb24bd35094
--- /dev/null
+++ b/html/changelogs/bubber_archive/2024-11.yml
@@ -0,0 +1,435 @@
+2024-11-01:
+ Jinshee:
+ - rscadd: New gecko tail!
+ LT3:
+ - qol: Hypovial dosage is now 5u by default
+ TealSeer:
+ - bugfix: The fax machine in Port Tarkon should no longer give a TGUI error.
+2024-11-02:
+ Kingsley-95:
+ - rscadd: Black-Backed Jackal tail
+ TealSeer:
+ - config: Removed config entries for archived maps
+ - bugfix: find_and_buy_event_from_track should no longer randomly fail.
+ xPokee:
+ - qol: you can now toggle seeing end credits in preferences
+2024-11-03:
+ LT3:
+ - qol: Map vote results only include choices included in the vote
+2024-11-04:
+ IgiariValkyr:
+ - qol: The Interlink Administrative Office has had new equipment brought in and
+ installed.
+ - balance: Lizard Gas now has slightly better but still shoddy weaponry for its
+ employee.
+ LT3:
+ - rscadd: Added a Skillsoft machine to the Ghost Cafe vending area
+ - server: Removed Northstar, Wawastation, and Birdshot from map configuration cache
+ Majkl-J:
+ - bugfix: Hemophage organs no longer show up on analyzers
+ StrangeWeirdKitten:
+ - balance: Replaces the security cremator with a room of plushies.
+ sippykot:
+ - balance: borg self un-tip time reduced to 3sec from 20sec
+ xPokee:
+ - qol: made it so you can examine what is inside of crates and lockers as an observer
+2024-11-05:
+ Arturlang:
+ - rscadd: You are now prevented from making a revenge vassal as a ventrue bloodsucker
+ if you do not have any ghoul slots free to prevent softlocks
+ - rscadd: Changes ghoulization used in bloodsuckers words to ghouling
+ - bugfix: Ghoul antag panels now work again
+ LT3:
+ - qol: LOOC can now be individually enabled/disabled on chat tabs
+ - bugfix: Fixed upgraded power cells always showing red/empty.
+ Majkl-J:
+ - bugfix: Fixed some hat related sprite hiding issues
+ TealSeer:
+ - bugfix: The game should no longer run ruin generation twice.
+ xXPawnStarrXx:
+ - spellcheck: made prisoner bounties list what you're after rather than "fruit"
+ or "flowers"
+2024-11-06:
+ Majkl-J:
+ - bugfix: Standalone hood now shows ears
+ nevimer:
+ - bugfix: vetted list now doesn't wipe the admin who added field on reload
+ xXPawnStarrXx:
+ - rscadd: Added blanks to the limbgrower, for soul/brain transfer.
+2024-11-07:
+ Adrian16199:
+ - bugfix: Made HFZ actualy be able to have digitigraded legs for real this time.
+ Majkl-J:
+ - bugfix: Phystool and Physgun work correctly again
+ - bugfix: Clockcult slabs can examine again
+ - bugfix: Compostbin is now handled correctly
+ - bugfix: Robohand checks for robohand again
+ ReturnToZender:
+ - balance: Default Andy will spawn mundane events half as frequently.
+ thegrb93:
+ - balance: Legwraps wrap your feet now and you won't fall on glass shards while
+ wearing them
+2024-11-08:
+ CydiaButt13:
+ - rscadd: Added sprite for blood_tea
+ - rscadd: Added vending machine option for blood_tea
+ Majkl-J:
+ - rscadd: Loadout renamed/redescribed items can be examined when worn.
+ - rscadd: Suspicious protogen plushie
+ - rscadd: Sombreros return to clothes vendors and loadouts
+ - qol: Sombreros no longer make you bald
+ Midiwidi:
+ - rscadd: 'Added science bag to SciDrobe
+
+ :cl:
+
+
+
+
+
+ '
+ TealSeer:
+ - bugfix: Window polarizers can be properly linked to windows again
+ - bugfix: Moonstation ore vents should no longer be barren.
+ - bugfix: Large Antlers should now have a north-facing sprite
+2024-11-09:
+ Majkl-J:
+ - balance: AI RCD explosion ability can no longer take out nonstation RCDs
+ xPokee:
+ - image: replaced the outdated F13 mob sprites with their current F13 versions
+2024-11-10:
+ BurgerBB:
+ - rscadd: Adds a new snout option for lizards along with a horn option.
+ Majkl-J:
+ - balance: Xeno queen scream no longer deafens for ages, stun times kept same
+ Shadow-Quill:
+ - bugfix: Emergency Response 911 calls from the comms console now function again.
+ Woo!
+ ShadowLarkens:
+ - bugfix: You can now eat cyborgs.
+ Swiftfeather:
+ - rscdel: Phasic strilka ammo is no longer printable.
+ ceeetchell:
+ - bugfix: Makes blind people able to actually use the health analyzer again.
+ xPokee:
+ - bugfix: fixed the tactical Hawaiian outfits wrongly being adjustable
+ - rscadd: added the colored glasses to the loadout
+ - bugfix: fixed DNA Vault genes being able to be saved on a gene console
+ - balance: nerfed the dragonslayer's stats when in pressurized environments
+2024-11-12:
+ Adrian16199:
+ - balance: Self aware and skittish value were adjusted.
+ - balance: Removes medkits from loadouts.
+ Kingsley-95:
+ - rscadd: Slipers, a new traitor item which can be bought from the uplink
+ Shadow-Quill:
+ - bugfix: Re-greased all pinwheel hats in the sector. Happy spinning!
+ - image: Added animation sprites for the hat icon. Twice the spin!
+ xPokee:
+ - rscadd: added a bonk emote
+ - sound: added the coconut hit 01 sound effect to the code
+ - bugfix: fixed shoe slots being greyed out with digi legs
+2024-11-13:
+ Mitryll:
+ - balance: Made the Sec Hailer follow the same restrictions a standard headset would
+ follow.
+2024-11-14:
+ Boviro:
+ - rscadd: gives the warden a stamp
+ LT3:
+ - bugfix: Alternate meow and purr emotes work again
+2024-11-15:
+ Arturlang:
+ - bugfix: Fixes the bokken having 16 damage when unwielded, and 8 when it is
+ sippykot:
+ - balance: NT's bluespace technology doubles lunchbox storage from 4 to 8 items
+ with special lining
+ - rscadd: lunchboxes can also hold condiments and gum now... and cigarettes and
+ lighters, at the insistence of our sponsors in the space tobacco industry
+2024-11-16:
+ Majkl-J and Cepha:
+ - rscadd: Ponytails (Berly) hair added
+ - rscadd: Short (Side) hair added
+ Middiwiddi, LT3:
+ - rscadd: Added 'nyamagotchi', a tamagotchi clone that's cute and cat-themed. Interactive
+ and able to attach on belt.
+ - rscadd: Added nyamagotchi to toy vending machine and clothesdrobe
+ - rscadd: Added nyamagotchi to 'pockets' loadout options.
+ - rscadd: 'nyamagotchi works as a companion for monophobia.
+
+ :cl:
+
+
+
+
+
+ '
+ thegrb93:
+ - bugfix: Fixes crafter machine not working
+ - bugfix: Fix TEG help text saying to use multitool instead of wrench
+ xPokee:
+ - bugfix: fixed bacon and cloth cookies from cyborg snack dispensers not having
+ a proper taste
+2024-11-17:
+ Deek-Za:
+ - bugfix: Fixed some broken digi outfit variations
+ Majkl-J:
+ - bugfix: Latex catsuit no longer hides some features
+ - code_imp: Makes headshot and nsfw preference code handling more consistent with
+ the rest. Savefiles are untouched by this
+ Sparex:
+ - bugfix: 'Wall-Mounted Cryopods now fully work as intended, player will enter the
+ wall-mounted cryopod. Enter stasis, able to ghost out and be processed to the
+ cryogenic oversight console.
+
+ :cl:'
+ - map: 'Added generic_maintenance_spawn points to fix the issue with the Nightmare
+ not being able to spawn. They will now spawn as they should.
+
+ :cl:'
+ - bugfix: 'When using the knife on a sausage, the choice pop-up wheel to cut into
+ Salami or American Sausage has been fixed and you can now properly circumcise
+ sausages again.
+
+ :cl:'
+ projectkepler-ru:
+ - bugfix: duplicate 12g technode that made flech an early game ammo
+ sippykot:
+ - balance: meridine has 1u less ammoniated mercury
+ - balance: removes pressure check from the glucose medipen and changes its description
+ xPokee:
+ - balance: the berserk ability can no longer be used in pressurised areas, such
+ as on-station
+2024-11-18:
+ Arturlang:
+ - bugfix: You can no longer use sign language while frenzying
+ MajManatee:
+ - bugfix: Railings now deconstructable again. (And racks)
+ RimiNosha:
+ - rscdel: Heads no longer start with GAP punchers.
+ - qol: Heads (anyone with command access) can now use their PDA to stamp GAP cards.
+ - balance: Good Assistant Point cards now pay out 150cr per stamp.
+ xXPawnStarrXx:
+ - rscadd: Added new plants, starting from rockfruit mutations, allowing slow accumulation
+ of ores.
+2024-11-19:
+ Arturlang:
+ - rscadd: Renames all mentions of the Solar Goverment/Federation to the Terran Goverment
+ - bugfix: Quirks with whitelists should no longer randomly dissapear
+ - bugfix: Sol weakness quirk should actually make your healing cheaper if you're
+ in a coffin
+ - rscadd: Sol weakness quirk will prevent hempohage healing working while Sol is
+ active
+ - balance: Races without the MOB_ORGANIC biotype are no longer disallowed from being
+ special ghouls
+ MajManatee:
+ - image: New lizard frills, (Axolotyl based)
+ Sparex:
+ - bugfix: Replaced tg database pride pin sprites with flag versions that allowed
+ more variety, effectively giving back the much demanded Man-Loving-Man pride
+ pin.
+ projectkepler-ru:
+ - rscadd: CnC Maid Kit
+ - bugfix: Shotgun not being access locked when it should
+ thegrb93:
+ - balance: Borgs can go into gateway now
+ xPokee:
+ - rscadd: 'added a new quirk: dusting sickness'
+2024-11-20:
+ Arturlang:
+ - rscadd: Skyrat xeno queen can no longer be KO'd, just like TG queens cannot.
+ StrangeWeirdKitten:
+ - rscadd: Succumbing now alerts everyone that you gave up on life.
+ TealSeer:
+ - map: Fixed incorrect evac sign on Void Raptor
+ xPokee, LT3:
+ - rscadd: added MKUltra, chemical enthrallment
+2024-11-21:
+ StrangeWeirdKitten:
+ - admin: Storyteller name changes will append it with the original story teller
+ name.
+2024-11-22:
+ Zydras, RimiNosha:
+ - map: Biodome got a ton of fixes and tweaks, send feedback to RimiNosha so more
+ can be done!
+2024-11-23:
+ GoreDem:
+ - rscdel: removed burst mode action button from the bulldog
+ MajManatee:
+ - rscadd: Chemical press can now fill large bottles (100u)
+ - rscadd: Adds large bottles
+ - qol: Chemical press can now fill large hypos fully (100u)
+ - qol: Chemical press can now dispense pills and patches at 1u
+ pixelkitty286:
+ - rscadd: Engineering grippers to engineering cyborgs and traitorous counterpart
+ - image: 1 Icon in modular robot_items.dmi
+ thegrb93:
+ - bugfix: Shutter animations fixed
+2024-11-24:
+ Arturlang:
+ - bugfix: the shockwave KPA can no longer be shot in a way that lets you stack all
+ of it's shots in one tile
+ LT3:
+ - bugfix: Emote cooldowns work properly
+ - rscdel: Removed Freerunning restriction on the flip emote
+ - bugfix: Ghosts can use the flip emote again
+ MajManatee:
+ - rscadd: LOOC now has runetext! (As an option)
+ OrbisAnima (code for 1), ReturnToZender (code for 2):
+ - bugfix: Fixes an exploit with Twitch, and the reagent forged spear's embedding.
+ ReturnToZender:
+ - rscadd: You can now put a damp rag in your lapel pocket protector.
+ RimiNosha:
+ - bugfix: Fixed assistant uniforms replacing loadout uniforms in certain conditions.
+ xPokee:
+ - rscadd: you can now pick up snakes and wear them as a scarf
+2024-11-25:
+ Flvffi:
+ - image: Modified 4 Haydee .dmi files
+ LT3:
+ - bugfix: Health analyzers now let you know blessed lobotomy exists
+ ReturnToZender:
+ - rscdel: Replaces the NTC's captain fountain pen with a regular fountain pen
+ nevimer:
+ - refactor: public logging uses regex for cases of mechanics now.
+ thegrb93:
+ - bugfix: Synths vomit nanites when flipping too many times
+2024-11-26:
+ KazooBard:
+ - rscadd: "Ouija boards can be now ordered from cargo (S\xE9ance kit)"
+ LT3:
+ - image: A more festive supermatter for the holidays
+ ReturnToZender:
+ - rscdel: Removes the Lanca and Sol LMG completely from cargo orders, leaves the
+ Sakhno to the mosin order
+ - rscdel: Re-removes the ion carbine from imports (it's in the goodies tab)
+ - rscdel: Removes extra ammunition types for no longer used weapons from import
+ order
+ - rscadd: Removed company imports added to goodies and security orders
+ - balance: adjusts prices on some company imports to not be essentially free, such
+ as medical supplies and armor
+ StrangeWeirdKitten:
+ - rscadd: Species name shows up in bold on the health analyzer.
+ - rscdel: True species name will no longer show up when examining someone.
+ xPokee:
+ - bugfix: fixed reskinning medical items so that you can now back out of reskinning
+ them
+ - image: added a korve sprite for the combitool
+2024-11-27:
+ ChromeFoxxity:
+ - rscadd: Adds all Prisoner Uniforms to Loadout.
+ - rscadd: Gives the chef All-American Diner uniforms & alt title.
+ Erol509:
+ - rscadd: Added white sec beret to their clothing vendor.
+ LT3:
+ - bugfix: Freerunners are immune to flip and spin sickness
+ - rscadd: Light and dark medical jackets now available in the MediDrobe
+ - rscadd: Dark medical jacket no longer donator ckey locked
+ - qol: Light medical jacket can hold medical gear in the suit slot, same as medical
+ winter jacket
+ OrbisAnima:
+ - balance: '''Forged'' Bokken, the wooden sword that can be made on the workbench
+ with no anvil or fuel, its now flammable, doesnt affect mobs, and does entirely
+ stamina damage. It has 40 AP, in one hand it does 17 damage and has a block
+ chance of 20, while wielded does 25.5 damage and has a 40 block chance. It no
+ longer blocks proyectiles, it behaves like any other sword in the game albeit
+ with a high block chance.'
+ SmArtKar:
+ - image: Carp infusion now changes how your skin looks to reflect your fishy nature
+ xPokee:
+ - qol: all clothing can now be renamed with pens
+2024-11-28:
+ Bangle:
+ - rscadd: Added new mechanics or gameplay changes - added Shaytan SMG conversion
+ kit to Cargo. Added the BNGL Collared Vest to MultiSec - it has identical stats
+ and I don't wanna lock it behind a donowall.
+ - rscadd: Added more things - added Shaytan SMG conversion kit
+ - image: added/modified/removed some icons or images - changed a bunch of the sprites,
+ including my own Collared Vest
+ - spellcheck: fixed a few typos - changed descriptions and renamed my Collared Vest.
+ I think it's the BNGL Collared Vest now.
+ - code_imp: changed some code - see above.
+ Cerami:
+ - rscadd: 'Adds a new negative quirk: permanent limp'
+ PhazeJump:
+ - rscadd: Adds the CentCom Synth Fox Plushie
+ okithedoki:
+ - rscadd: Akula now have a proper description and lore.
+ projectkepler-ru:
+ - bugfix: shotgun not access locked
+ - spellcheck: Kayian M1911 updated description
+2024-11-29:
+ CydiaButt13:
+ - rscadd: 'REAGENT_SYNTHETIC and REAGENT_ORGANIC to all horny chems, allowing synthetic
+ carbons to use them
+
+ :cl:'
+ LT3:
+ - bugfix: The select species menu is back
+ Majkl-J:
+ - admin: New storyteller admin panel
+ - admin: More logging to the storyteller panel actions and to it spawning things
+ shayoki:
+ - map: Box Station's Brig layout has been revamped to support improvements for the
+ department's Interrogation Room, Education Chamber, Holding Cells, Evidence
+ Storage, Lawyer's Office, Detective's Office. The halls leading to the Brig
+ has also been slightly expanded to accommodate for the repositioning of the
+ Lawyer and Detective's Offices.
+ - map: Box Station's Dorms has been expanded.
+ - map: Box Station's Fore Starboard Maintenance has been improved to compensate
+ for Dorm's expansion.
+ - map: Box Station's Cargo now has a Warehouse. And Bitrunning has an exit to Aft
+ Port Maintenance.
+ - map: Box Station's mailing disposals properly work for the Lawyer and Detective
+ office.
+ - map: Box Station's MULE delivery drop-off is now at Medbay's Storage. The old
+ spot was replaced with a west exit.
+ - map: Box Station's Medbay now has a Synth Chute system at the Morgue.
+ - map: Box Station's Science now has a Synth Retrieval system at Robotics.
+ - map: Box Station's pool has been replaced with a sauna room at Dorms.
+ - map: Box Station's Bridge has had their consoles re-ordered.
+ - map: Box Station's EVA has been divided into two sections.
+ - map: Box Station's Kitchen now has a table under its food processor. You are welcome
+ waterpig.
+ - map: Box Station's Departures has had its directional glass windows removed and
+ replaced with hedges.
+ - map: Box Station's fax machine inside of the Unisex restrooms in Service has been
+ removed.
+ - bugfix: Places a missing cable leading to the drone bay on Box Station
+2024-11-30:
+ BurgerBB:
+ - bugfix: Moves Lizard Full Stub horns to beard because of overlay issues.
+ LT3:
+ - balance: Minor reduction to the strength of scrubber overflows
+ Majkl-J:
+ - bugfix: fixed rations permanently setting your income to 0.5 instead of decreasing
+ the modifier
+ - bugfix: fixed life savings quirk not doing anything
+ - code_imp: Improved the way paycheck bound quirks handle their code, making it
+ run faster
+ TealSeer:
+ - bugfix: Fixed a few disposal pipes on boxstation.
+ fludd12:
+ - balance: Cigarettes only have a heat of 410K. Joints will no longer boil out their
+ own THC or turn space drugs to fentanyl.
+ - bugfix: Grinding dried cannabis now makes hash as originally intended.
+ shellspeed1:
+ - rscadd: The Persistence land crawler has been deployed to local mineral rich areas.
+ sippykot:
+ - balance: ration tickets capacity doubled
+ - rscadd: added blood bag and glucose as options to the regular ration ticket
+ - rscadd: added blood tea and soda + lemonade as drink option for luxury ration
+ ticket
+ - rscadd: added chewing gum as option for the luxury ration ticket
diff --git a/html/changelogs/bubber_archive/2024-12.yml b/html/changelogs/bubber_archive/2024-12.yml
new file mode 100644
index 00000000000..05c54b70eaf
--- /dev/null
+++ b/html/changelogs/bubber_archive/2024-12.yml
@@ -0,0 +1,334 @@
+2024-12-01:
+ Arturlang:
+ - balance: Can't kinetic crusher mark space dragons anymore
+ Jinshee:
+ - rscadd: Added new snout "Mandibles (Top)"
+ Odairu:
+ - bugfix: map vote respects current pop
+2024-12-02:
+ Adrian16199:
+ - rscadd: 'Added outfits into loadouts, those include: A pirate outfit, Bunny outfit,
+ samurai outfit, wheely-heelies and replica of centcom turtleneck.'
+ Arturlang:
+ - balance: Auspex can now teleport through walls at level 6
+ - bugfix: Auspex no longer tells you incorrrectly that it sleeps victims.
+ - bugfix: Hemophage healing no longer tries to heal non-organic bodyparts
+ IgiariValkyr:
+ - bugfix: Small changes to the Interlink Office again based on community suggestions
+ Odairu:
+ - bugfix: Borgs no longer sync to AIs off station z when joining
+ - balance: Borgs now sync to the AI with the least borgs
+ OrbisAnima:
+ - balance: Made the shotgun PKA two handed.
+ RimiNosha:
+ - qol: PAIs can now roam freely again.
+ StrangeWeirdKitten:
+ - rscdel: Removes marked one from spawning on lavaland.
+ - rscadd: Added the latex catsuit to the loadout
+ TealSeer:
+ - bugfix: fixes atmos goggles not showing the temperature of turfs.
+ - map: fixes some disposal pipes on Biodome.
+ - map: fixes mislabeled airlocks in Metastation arrivals.
+ nikothedude:
+ - rscadd: Dauntless now has exploitables
+ xPokee:
+ - code_imp: moved a bunch of modular quirk files to the same folder
+2024-12-03:
+ Arturlang:
+ - balance: Space carp now have 50 health, up from 25
+ - balance: Dragon's space carp now have 100 health, up from 50
+ - balance: Mega carp now get extra 15-40 health
+ - bugfix: Borer stun should no longer randomly fail to work
+ - bugfix: Borer say no longer badly sanitizes your messages causing issues with
+ what you say.
+ - bugfix: Borer action buttons shouldn't stay "active".
+ - bugfix: Borer Infest will no longer cooldown if you fail to enter a host.
+ LT3:
+ - bugfix: Blessed lobotomy shows up on the operating computer
+ Majkl-J:
+ - code_imp: Frees a bit of memory by killing a shitty skyrat list
+ Shadow-Quill:
+ - bugfix: Entombed modsuits no longer cause stacking toxin loss if the entombed
+ is dead.
+ xPokee:
+ - bugfix: fixed hyper and super cells not being in mechfabs like the rest of the
+ cells
+2024-12-04:
+ AvianAviator & A.C.M.O:
+ - rscadd: Added a music synthesizer action to Ethereal and Synthetic species. Ported
+ from Novastation
+ Odairu:
+ - bugfix: fixes mapvote
+2024-12-05:
+ Boviro:
+ - rscadd: reflavors Caligram gear to Blacktide
+ - rscadd: adds alternate color sprites to the caligram gear
+ nikothedude:
+ - bugfix: Records on examine now works properly
+ - rscadd: Ghost roles now have exploitables
+2024-12-06:
+ Arturlang:
+ - balance: Dragon depression slowdown is now only 2.5, where it used to be 5.
+ - rscdel: Dragon no longer gets deleted if you don't do rifts, instead you are given
+ dragon depression, which slows you down heavily.
+ LT3, tgstation:
+ - rscadd: 'NebulaStation: a nice, new station map'
+ ReturnToZender:
+ - rscadd: Flavor text in the character creator is now bigger, and has a scroll wheel.
+ RimiNosha:
+ - bugfix: Cortial borers can be surgically removed again.
+ sippykot:
+ - rscadd: you can buy a civil defense symptom support kit from company imports
+2024-12-07:
+ RimiNosha:
+ - rscadd: Loadout presets! Make multiple loadouts, be able to switch between them
+ in a couple of clicks!
+ - qol: Replaced the defunct job checkbox on the loadout page with a working dropdown.
+ - qol: Synths can now join honorbound crusades.
+ - bugfix: Loadout items can be edited again.
+2024-12-08:
+ Arturlang:
+ - balance: Bloodsuckers now only need 40% blood to level up.
+ LT3:
+ - bugfix: Map vote results should no longer randomly decide to ignore what choice
+ won the vote
+ Profakos:
+ - bugfix: Benches no longer produce an Error overlay when buckled
+ RimiNosha:
+ - bugfix: Using the clear loadout button should no longer brick your loadout data.
+ Woops.
+ StrangeWeirdKitten:
+ - balance: Increases the L6 Saw damage by around 30 percent
+ VickiMorris:
+ - rscadd: Adds Yinbi Derringer. Sakhno production 2-shot pistol chambered in .310
+ Strilka. Available at cargo for 450 credits.
+ - rscadd: Re-adds .310 Strilka Rubber ammo boxes to the company imports tab, available
+ for 50 credits.
+ - image: Adds sprite for Yinbi Derringer.
+2024-12-09:
+ Majkl-J:
+ - balance: MCR recharging brought back
+ - balance: MCR techwebs now cost less, with basic MCR research spread across standard
+ techs
+ StrangeWeirdKitten:
+ - balance: Buffs cyborg health to 135
+ YakumoChen:
+ - bugfix: fixed the cargo categories again
+ - balance: Berserker armour's upgrading capability greatly nerfed.
+ - balance: Marked One armour is scaled back from its upgraded values to be much
+ closer to its base berserker armour.
+ shellspeed1:
+ - bugfix: Various persistence bug fixes
+2024-12-10:
+ Cerami:
+ - qol: HMS / Chronic Illness no longer has the very low chance of going all the
+ way from stage 1 to stage 5 without any symptoms.
+ Impish_Delights, Bangle:
+ - bugfix: Romulus Carbine, and Romulus Battle-Rifle crafts no longer give free loaded
+ magazines.
+ - balance: All shotgun ammo boxes now hold 7 rounds. Honkshot is now 25cr from cargo,
+ down from 100cr.
+ - code_imp: Romulus Carbine, Romulus Battle-Rifle, and Romulus Shaytan kit now require
+ gun to be empty, and locked open to craft.
+ - spellcheck: Fixes description for Rengo rifle, Renoster shotgun, Stardust/AAR
+ cartridge box, and Romulus Carbine and Battle-Rifle conversion kits.
+ - spellcheck: Homogonizes description for Stardust/AAR ammo, and Beanbag slug ammo
+ as "Less-Lethal"
+ - spellcheck: Changes WT-550 rubber mag to be "Less-Lethal" instead of "Less-Than_Lethal"
+ - spellcheck: Updates Shaytan SMG description, and conversion kit name and description
+ in the security lathe.
+ - spellcheck: Updates all shotgun ammo boxes to be accurate.
+ Odairu:
+ - rscadd: adds a new mod module
+2024-12-11:
+ Majkl-J:
+ - bugfix: Captain and HoS locker now have the right amount of sabres and guns respectively
+ TealSeer:
+ - qol: '*huffs has been changed to *huff.'
+2024-12-12:
+ IgiariValkyr:
+ - rscadd: Adds different sprites to the CentCom uniforms, and clothing.
+ - rscadd: Adds a CentCom Carapace, and CentCom Gloves that aren't Naval.
+ LT3:
+ - map: Moon Station now has disposal bins
+2024-12-13:
+ LT3:
+ - bugfix: Fixed unconstructed solar panels on Nebulastation port aft solars
+2024-12-14:
+ MajManatee:
+ - bugfix: Research Skillcape Sprite Fix
+2024-12-15:
+ Shroopy:
+ - spellcheck: Added a missing period to the PDA typing message.
+ - bugfix: Added a maint access requirement to the animal pen on kilo, so the animals
+ won't wander out.
+ - bugfix: Fixed the misconfigured package return belt in cargo on Kilo station.
+2024-12-16:
+ Adrian16199:
+ - balance: Lone infiltrator has been given back their micro-bomb as the syndicate
+ intended. Budget cuts happend but we good now.
+ Arturlang:
+ - bugfix: Sol quirk should properly use the when appropiate
+ - balance: Nosferatu when examined disgust you doubly as much.
+ - rscadd: Changes nosferatu examine to be more clear on what they are
+ Odairu:
+ - bugfix: AIs can no long control a host body and themself at the same time
+ - bugfix: if the original wearer becomes the AI and cryo's, the original AI will
+ no longer be stuck in limbo
+ TealSeer:
+ - bugfix: fixed SAD duplicating your round start implants.
+ shayoki:
+ - map: Box Station's apartment airlock bolt buttons now work for their respective
+ airlocks.
+ - map: Box Station's disposal pipe in Security Maintenance correctly connects with
+ disposals.
+ - map: Removed a soda vendor in Box Station's Security Maintenance.
+ - map: Box Station's Atmospherics is given an additional reinforced wall to align
+ itself properly with Maintenance next to it.
+ shellspeed1:
+ - bugfix: Persistence Fish based power is now 100% more Osha compliant
+2024-12-17:
+ Arturlang:
+ - balance: Mantis blades now do 20 damage, this is down from 25 force.
+ - bugfix: Primitive skill no longer makes you stam immune
+ - rscadd: changes the primitive skill status effect to work every 5 seconds, instead
+ of 0.5 seconds for performance reasons.
+ - bugfix: It is no longer possible to farm primitive skill using a plant bag on
+ a wormfarm barrel.
+ Majkl-J:
+ - bugfix: ashie rituals now take only 1 from the stack
+ - bugfix: Ashie area is no longer magically powered
+ RimiNosha:
+ - bugfix: Fixed escape menu having overlapping entries.
+ StrangeWeirdKitten:
+ - balance: The research paper crafting recipe has been locked to the hermit.
+2024-12-18:
+ Majkl-J:
+ - bugfix: Miniskirts no longer wipe off your breasts
+ - bugfix: Chefs no longer show at the bottom of crew monitors
+ StrangeWeirdKitten:
+ - rscdel: Ghost Cafe can no longer make opfors.
+2024-12-19:
+ Arturlang:
+ - balance: Mesmerize no longer requires your victim to be facing the bloodsucker.
+ - rscadd: Lone Infiltrator syndicate suit now has all the normal nuclear modules
+ plus their chameleon module
+ LT3:
+ - map: Nebulastation now has docks for the ERT shuttle and aux shuttles
+ - balance: Xmas week has been extended to start at 18 December, get your jollymaxxing
+ on
+ Majkl-J:
+ - bugfix: Fixed armycrawl chatspam when unable to crawl
+ - bugfix: Fixed hidden borers unable to ventcrawl
+ - spellcheck: Fixed double for long in well trained
+2024-12-20:
+ Arturlang:
+ - bugfix: Bloodsuckers "should" no longer be forever bleeding
+ LT3:
+ - bugfix: Santa will now periodically visit the station
+ Majkl-J:
+ - bugfix: The ashie clothing vendor is no longer invisible and unpowered
+ StrangeWeirdKitten:
+ - bugfix: Damage falloff across various projectiles should now subtract instead
+ of add.
+ xXPawnStarrXx:
+ - bugfix: Made autodrobes dispense the right santahats.
+2024-12-21:
+ Doomtail:
+ - rscadd: Adds three new variants of the hound borg sprite. Peacekeeper, service,
+ and syndicate respectively.
+ Majkl-J:
+ - rscadd: Strong legs mutation, for leaping around
+ StrangeWeirdKitten:
+ - balance: Signifigantly changes flechett shotgun rounds. They are a close range
+ ammo with reliable wounding and damage against unarmored with very shitty armor
+ penitration. Damage drops off signifigantly with range.
+ - bugfix: Beehive and Antitide shotgun ammo now properly subtracts damage dropoff
+ instead of adding.
+2024-12-22:
+ Arturlang:
+ - rscadd: Dragons no longer permanently stuck unable to amke a portal if they loose
+ one, now regaining the ability in 5 minutes
+ LT3:
+ - bugfix: Mail sorter is now properly named in the CargoDrobe
+ nikothedude:
+ - rscadd: Quadruped taurs can now wear saddles, which allow anyone to clickdrag
+ themselves onto them to ride with free hands
+ - rscadd: Saddlebags for quadruped taurs, which are one-handed saddles that allow
+ anyone to access their storage by alt clicking the wearer
+2024-12-23:
+ LT3:
+ - bugfix: All the letters from Santa that have been horded at the postal service
+ have been recovered and delivered
+ StrangeWeirdKitten:
+ - config: You can set a default storyteller to bypass voting.
+ aKromatopzia:
+ - rscadd: Anesthetic and nitrogen tanks appear in relevant departmental lathes
+2024-12-24:
+ LT3:
+ - map: Multisec vendors are consistently placed in various departmental guard offices
+ Screampuff:
+ - rscadd: Added Edgerunner hairstyle for us punks
+ TealSeer:
+ - refactor: ripped out all the skyrat jukebox code in favor of tg's.
+ - map: fixed kilostation's telecomms air alarm constantly being angry.
+2024-12-25:
+ LT3:
+ - map: Moonstation's escaped security vendors have been returned to where they belong
+ TealSeer:
+ - qol: gas miner delivery pods now delete themselves after landing.
+ rintherat:
+ - rscadd: Adds a new plushie to the badass section in uplink.
+ - bugfix: Fixes comm consoles being able to change alert level during Delta+
+ shayoki:
+ - map: The Blueshield Quarters on Biodome is no longer free to access by anyone.
+ It has also been expanded.
+2024-12-26:
+ TealSeer:
+ - code_imp: cleaned up sauna oven item interaction code.
+2024-12-27:
+ LT3:
+ - rscadd: Mail sorter is now available in the CargoDrobe instead of sitting on the
+ office floor
+ - rscadd: Bounty cube export gate is now available in the CargoDrobe instead of
+ sitting on the warehouse floor
+ TealSeer:
+ - map: Boxstation's bar jukebox is no longer access locked.
+ - map: The kitchen cold room on Kilostation is actually cold now.
+ cherdaq:
+ - bugfix: replaced a redundant var with actual
+ - map: tweaked SR/SH cargo shuttle
+ intense-skies:
+ - bugfix: Fixes a taur sprite issue
+ shayoki:
+ - map: Box Station's brig cells properly work for their respective cells.
+2024-12-28:
+ IgiariValkyr:
+ - bugfix: The updated arena for Demonic Frost Miner actually loads now
+ Majkl-J:
+ - image: Prettified the biodome leaves sprite
+ TealSeer:
+ - bugfix: fixed the engineering plumbing constructor not appearing in protolathes.
+ - map: fixed Kilostation engine room air alarm not giving readings from inside the
+ chamber.
+ xXPawnStarrXx:
+ - qol: System cleaner now sobers up synthetics.
+2024-12-29:
+ LT3:
+ - map: NebulaStation aux ship dock now has a roof, leading to 99% less suffocation
+ and freezing
+ TealSeer:
+ - map: added a growing vat to Void Raptor's cytology pen.
+2024-12-31:
+ AXLFAN2000:
+ - map: added Cytopro to Void Raptor's cytology.
+ KazooBard:
+ - qol: Selecting which spells to cast with hotkeys, and using them in general is
+ faster.
+ TealSeer:
+ - bugfix: fixed mobs with anosmia still smelling pollution.
+ okithedoki:
+ - bugfix: Fixed the Akula language description to be of consistent length with the
+ rest of the languages, instead of the wordwall it was.
+ rintherat:
+ - rscadd: Adds a new kweh emote
diff --git a/html/changelogs/bubber_archive/2025-01.yml b/html/changelogs/bubber_archive/2025-01.yml
new file mode 100644
index 00000000000..59483c34246
--- /dev/null
+++ b/html/changelogs/bubber_archive/2025-01.yml
@@ -0,0 +1,297 @@
+2025-01-01:
+ Arturlang:
+ - balance: Roundstart slimepeople no longer get 50% burn damage type resist on limbs
+ DimWhat (original sprites), ArrisFairburne (edited sprites):
+ - rscadd: Added an alternate recolorable bunnysuit to the "suits" loadout screen.
+ TealSeer:
+ - map: Moonstation's bar jukebox is no longer access locked.
+ Virryi:
+ - image: Modified the NRI Flag icons.
+ - code_imp: Renamed a bunch of NRI-related items.
+ aKromatopzia:
+ - image: smolraptors can curl up when resting; and miner lost its purple collar.
+ shellspeed1:
+ - bugfix: Anomalous power systems have had their anomalous properties corrected.
+ - bugfix: Unfucked some minor disposals issues on the Icemoon version of persistence
+ - bugfix: Potted plants now spawn on persistence like they should have previously.
+ - bugfix: Scrubbers in persistence medical now work
+ - qol: Redid persistence bitrunning so more than one prisoner can bitrun
+ - qol: Moved exotic internals from persistence engineering to persistence medical,
+ also added two plasmaman suits. (shit happens on icebox sometimes.)
+ - qol: reworked persistence medical operating room to drain n2o if alarm is configured
+ (druggy docs hate me everywhere)
+ - qol: put persistence stethoscope outside medical in hall so more people notice
+ it (previously in med)
+ - qol: Persistence engineering APC is now wired outside so you can run wires willy
+ nilly through the bay.
+2025-01-02:
+ rintherat:
+ - bugfix: fixes the cafeborg shakers
+2025-01-04:
+ ReturnToZender:
+ - qol: Flowers no longer donator-only in the loadout
+2025-01-06:
+ Cepha:
+ - rscadd: Cleavage marking
+ - rscadd: Synth joints marking
+ zeroisthebiggay:
+ - rscadd: fringe hair gradient
+ - image: fringe hair gradient
+2025-01-07:
+ LT3:
+ - map: Flipped some backwards elevator doors on Biodome
+ rintherat:
+ - rscadd: Added prescription toolbox for making new prescription glasses, it can
+ be bought from cargo
+2025-01-08:
+ Kajortoq:
+ - rscadd: Added kepis to security outfitters
+ LT3:
+ - map: Biodome SM waste pipe is properly connected to the vent
+ - map: Biodome SM cabling is properly connected to the emitters
+ Odairu:
+ - balance: Heretics announce themselves when they are 1 off ascending
+ StrangeWeirdKitten:
+ - rscdel: Removes broken light flickering.
+ - rscadd: Quality Improvements to the Moonstation Sauna
+ TealSeer:
+ - map: fixes Biodome disposals issues.
+ zeroisthebiggay:
+ - rscadd: cyclops sclera marking
+ - image: cyclops sclera marking
+2025-01-09:
+ EvenInDeathIStillServe:
+ - rscadd: Adds horseshoes to loadout
+ LT3:
+ - map: Added missing cables outside Biodome grav gen
+ shellspeed1:
+ - bugfix: You can now escape the disposals belt on persistence.
+ - bugfix: The Persistence Library APC now has power
+ - bugfix: removed extra button left over from removing medical.
+2025-01-10:
+ BurgerBB:
+ - bugfix: Fixes the RBMK creating too many radiation calls.
+ - balance: The strength of the radiation received is also now based on the radius
+ of the radiation. Higher radius radiation spikes equals stronger radiation penetrations.
+ Caps the range of the RBMK's radiation from 20 to 10.
+ StrangeWeirdKitten:
+ - balance: Slightly adjusts Moonstation's AI core to be more defendable for the
+ AI.
+ TealSeer:
+ - bugfix: fixed Bubber-exclusive job icons not showing in observe menu.
+ nevimer:
+ - admin: Faxes now get sent to the database.
+2025-01-11:
+ Impish_Delights:
+ - bugfix: Fixed all Security, HoP, CE, and Atmos Tech bunny tailcoats for digigrade
+ leg users.
+ - image: Fixed missing left-facing sprite for the black lawyer bunnysuit.
+ SingingSpock:
+ - bugfix: The Spare ID safe code should now go to the person designated in our SOP
+ StrangeWeirdKitten:
+ - rscadd: Uncaps subtler range. Now anyone can subtler anyone else in view.
+ itsmeow (original), RimiNosha, Phoenix404 (port):
+ - rscadd: Added TGUI-based color palette and replaced all usages of BYOND color
+ palettes with it (TGUI input preferences are still respected).
+2025-01-12:
+ Impish_Delights:
+ - rscadd: High-Functioning Zombies can now choose their eye color!
+ LT3:
+ - balance: Removed Skyrat surgery speed bonus
+ - balance: Removed Skyrat negative mood events for surgery
+ - balance: Removed operating tables automatically applying numbing
+ - balance: Added surgery speed bonus for operating computers
+ - balance: Added surgery speed bonus for anaesthetic/painkillers
+ - balance: Added surgery speed bonus for sterilizine/cryostylane treatment
+ - balance: Adjusted surgery speed penalty for stasis beds
+ - balance: Removed speed penalty for tending wounds on dead bodies, replaced with
+ penalty for husked body
+ - balance: Increased tend wounds healed damage per cycle
+ - balance: Increased functional duration of sterilizine
+ - balance: N2O is now eligible for the analgesia surgery bonus
+ - balance: Surgery and treatment room scrubbers filter N2O by default
+ - qol: Bubble notification for surgery speed and damage healed
+ - qol: Medical HUD, health analyzer, and operating computer provide tend wounds
+ results
+ - qol: Text log indicates what surgery bonuses are active, and which are available
+ - rscadd: added lidocaine and sterilizine to surgery trays, NanoMed, and NanoDrug
+ - image: anesthetic machine is now breath machine, usable with all gas types
+ - qol: Miasma doesn't trigger air alarms until it's reached dangerous levels
+ - bugfix: hot/cold/tox/pressure adapted lungs are now consistently better than standard
+ lungs in their respective area
+ - bugfix: fixed sometimes passing out due to CO2 with hot/cold adapted lungs
+ - sound: Subtle now has a sound notification alongside subtler
+ - qol: Subtle/subtler now has a TG chat filter
+ - rscdel: Pun Pun's suit sensors are off by default
+ StrangeWeirdKitten:
+ - bugfix: Lewd interactions broadcasting down the entire hall
+ - bugfix: Subtler will now filter out clientless mobs
+ Zenitheevee:
+ - rscadd: Added tarkon sprited backpacks
+ - image: New sprites for tarkon backpacks and casual uniform
+ - qol: Plasmemes and Vox get to live on tarkon without doing the closet dash
+ - qol: tarkon get their preferenced backpack types
+ aKromatopzia:
+ - code_imp: '"Brain augment" and "Brain implant" selection in prefs'
+ - rscadd: Added new brain type for humans. It's chrome, choom
+ - rscadd: One new brain implant for civilian use, the empathic sensor.
+ - balance: androids get a brain damage cap var (999); can't be EMP'd while already
+ dead; alert texts when they're EMP'd
+ - image: new sprite for vox brain
+ - code_imp: vox (primalis) brain now a child of android brains
+ sippykot:
+ - rscadd: 911 responder budget increased; they now have PDAs, holoprojectors, an
+ inducer, and... the marshal and SWAT teams no longer go in literally bare-handed
+ (the government finally paid for their gloves).
+2025-01-13:
+ Cephalopod222:
+ - rscadd: Congratulations Homosexuals, Pride Scarves are now available to all crew!
+ LT3:
+ - qol: Subtle and subtler messages are brighter when using dark mode
+ MosleyTheMalO:
+ - bugfix: Makes condoms work
+ - bugfix: fixes some lewd checks using the sex toy preference instead of the preference
+ they should
+ - bugfix: fixes all erp toggles resetting arousal.
+ - bugfix: makes toggling off sex toys actually remove the sex toys from your inventory.
+ StrangeWeirdKitten, Bangle:
+ - rscadd: Adds another ambiance track to Icebox called Freezer, by Bangle.
+2025-01-14:
+ Arturlang:
+ - rscdel: no more wizard armor in wizdrobe, sorry,
+ - rscdel: Profound fishers without ckeys can no longer fish out juvenile lobsters,
+ this is to prevent lobster armies
+ KazooBard:
+ - qol: Heretic Synths also start with a living heart
+ MosleyTheMalO:
+ - bugfix: makes the softcap config disableable again
+ Tonadas:
+ - rscadd: Added new Galactic Federation Jacket
+ - rscadd: Added Galactic Federation Jacket to character creator.
+2025-01-17:
+ MajManatee and OrbisAnima:
+ - rscadd: Most (tm) suit slot items can be alt clicked and worn around the neck!
+ - balance: Fixes snowflake armor with two items that were stacking for protection
+ zeroisthebiggay:
+ - bugfix: you can't get Free Real Centcom Skirtlenecks from the loadout any more
+2025-01-18:
+ Arturlang:
+ - rscdel: removes combat and deluxe hypo from medlathe
+ - rscadd: adds combat hypo to deforest company imports
+ CupOfMoths:
+ - rscadd: Added pretty new hairstyle
+ - rscadd: Added QoL alt of hairstyle
+ - bugfix: Fixed a misaligned hair sprite
+ ReturnToZender:
+ - balance: The Clown is admin only, now.
+ - balance: The threshold for the Default has been increased by 600 seconds, or 10
+ minutes, to try to mellow that storyteller out a little bit.
+ Tonadas:
+ - rscadd: Added new Galactic Federation Cap to game, loadout selector, and Clothesmate.
+ - rscadd: Added Galactic Federation Jacket to clothesmate
+ Vanilla1040:
+ - image: added new Engi, Med, Cargo, Service, Science and Peacekeeper borg varients/alts
+2025-01-19:
+ nikothedude:
+ - bugfix: Death degradation now has info for health analyzers
+2025-01-20:
+ IgiariValkyr:
+ - qol: Persistence is now in a persistent location on Lavaland, Moon, and Icebox.
+ KazooBard:
+ - qol: All Mansus Worshippers can use the Relentless Heartbeat (Reroll targets)
+ ritual earlier by two steps, so that they gain access alongside the ritual of
+ knowledge.
+ - qol: The mansus no longer demands harebells for the Relentless Heartbeat, however
+ a heart is used in it's place.
+ - bugfix: The Grail was very adamant on keeping people making love in their chambers
+ out of the heretic's target list when it is made or rerolled.
+ MajManatee:
+ - bugfix: Tarkon mods no longer need masks
+ SingingSpock:
+ - bugfix: The ticking of clocks can no longer be heard through walls, filling the
+ bridge with an incessant ticking noise like the Telltale heart's thumping.
+ nikothedude:
+ - bugfix: Death degradation no longer instantly downs you
+2025-01-21:
+ Arturlang:
+ - balance: Flesh ghouls now have 100 HP, while heretic mute ghouls have normal human
+ HP, ie, 135, from 25 and 50
+ BurgerBB:
+ - rscdel: Updates Dracula Flow Brain Damage to be less weird.
+ LT3:
+ - map: Kilostation abandoned warehouse now starts unpowered
+ Odairu:
+ - bugfix: company import bars were invisible in stacks
+ - bugfix: pirates spawn again
+ - bugfix: lone infil adds the chosen player to the spawned_mobs list
+ Rathen Ivanov:
+ - rscadd: You can now purchase your very own CE Screws Plushie from the LustWish
+ Vendor.
+ ReturnToZender:
+ - balance: Raised the minimum number of players for a heretic to spawn.
+ - balance: Reduces the weight of Bloodsuckers by 3, to make it notably different
+ from traitors
+2025-01-22:
+ Odairu:
+ - bugfix: Lings/vampires will no longer revive as soulless bodies with DNR
+ - bugfix: Borers can no longer revive hosts with DNR
+ ReturnToZender:
+ - rscadd: Updated descriptions to individual storytellers to compare them to each
+ other.
+2025-01-23:
+ MajManatee:
+ - image: basic mob xenos now look fly as hell, like our real xenos.
+ Majkl-J:
+ - bugfix: Cobwebs no longer scream from appearing in space as long as they're nearstationed
+ Vanilla1040:
+ - bugfix: fixed older code and moved to zubber
+ - image: Added New Mining Borg Varient
+ nikothedude:
+ - bugfix: Record links now only appear if there are records to view
+2025-01-24:
+ Cephalopod222:
+ - bugfix: Fixed Security Battledress sprite
+ - rscadd: Added Red Security Battledress and Head of Security Battledress
+ aKromatopzia:
+ - bugfix: Shadekins with the fluffy ears had the fluff trimmed, allowing them to
+ hear the hive mind again
+2025-01-25:
+ Vanilla1040:
+ - image: Adds Digi Sprites for infiltrator and Interdyne MOD
+ - bugfix: Also fixed the missing lights/eyes on the miner borg i made, whoops.
+ nikothedude:
+ - bugfix: Silver slimes can no longer produce fucking contagious changeling zombie
+ virus
+2025-01-26:
+ ArrisFairburne:
+ - rscadd: Added a new hairstyle based off of goliath tentacles
+ Cephalopod222:
+ - rscadd: Short (Bob) Hair
+ - rscadd: Long Smoothy Hair
+ - bugfix: Tweaked Ponytails (Berly) to work with snouts
+ - bugfix: Tweaks Synthetic Joints to display properly
+2025-01-28:
+ Odairu:
+ - balance: lone op moved from major -> moderate
+ - bugfix: lone op weight ticks up properly
+2025-01-29:
+ TealSeer:
+ - bugfix: synths once again start with a charging arm implant
+2025-01-31:
+ Majkl-J:
+ - balance: Shrink and Expand modules are now unlocked immediately
+ - bugfix: The artistic module is now in the correct tab
+ - spellcheck: fixed lowercase on the dominatrix module
+ Mitryll:
+ - balance: Made entombed not insulated, lowered its defences and is unable to be
+ taken with Bad Back.
+ UvvU:
+ - bugfix: fixes darksabre
+ Zenitheevee ,MajManatee:
+ - rscadd: deployable magazine fed turrets
+ - rscadd: target designators for mag fed turrets
+ - rscadd: Tarkon faction
+ - rscadd: Added turret assemblies to new turrets when found.
+ - rscadd: Added a research node locked behind tarkon tech to print tarkon turrets.
+ - image: added icons for mag fed turrets
+ - image: added icons for target designators
diff --git a/html/changelogs/bubber_archive/2025-02.yml b/html/changelogs/bubber_archive/2025-02.yml
new file mode 100644
index 00000000000..32d4ff598dc
--- /dev/null
+++ b/html/changelogs/bubber_archive/2025-02.yml
@@ -0,0 +1,220 @@
+2025-02-01:
+ ArrisFairburne:
+ - map: added maintenance tunnel and bridge areas to the ghost cafe
+ Erol509:
+ - qol: Vox and people with nitrogen breathing quirk, need less nitrogen to sustain
+ themselfs.
+ - balance: Changed nitrogen tank belt max capacity of 25l to 12l
+ - bugfix: Aheal/S.A.D interaction doesnt remove nitrogen lungs on quirk holders.
+ Both Aheal/Sad will return them, replacing the one inside you. This means, cybernetic
+ lungs will be removed.
+ StrangeWeirdKitten:
+ - rscadd: TTS compatability with vocal barks
+ pixelkitty286:
+ - rscadd: Big cat borgs and kitty borgs
+ - image: added kitty and cat borg images.
+ shayoki:
+ - map: In Box Station, a couple more light fixtures in the main halls were added.
+ - map: In Box Station, an APC in the hallway before the brig was added. It no longer
+ has infinite power.
+ - map: In Box Station, a maintenance entrance in the hallway before the brig was
+ added. This slightly squishes the detective's office.
+ shellspeed1:
+ - qol: Persistence has been fitted with two new exterior hatches to facilitate working
+ outside. Also botany has been enlarged to fit another row of trays if so desired.
+ - bugfix: Disposal bins in persistence medical and persistence science now work,
+ addressed a misplaced air alarm and an extra tiny fan capsule in persistence
+ bluespace mining.
+ - bugfix: Persistence recycler can now be escaped.
+ - bugfix: stopped on of the persistence turrets from getting dunked in lava every
+ shift.
+2025-02-02:
+ Rathen Ivanonv:
+ - rscadd: Added more supplies/gear to Gas Station Attendant Ghost Role
+ - rscadd: Added I.D/Bank Account to Gas Station Attendant Ghost Role
+ - rscadd: Added an additional spawn to Gas Station Attendant Ghost Role
+ - rscadd: Added a Regal Rat spawn to Lavaland/an additional one to Ice Moon
+ - rscadd: Many more beneficial changes to the Gas Station Attendant Ghost Role
+ - map: Overhauled Lavaland/Ice Moon Gas Station with three new areas
+ - balance: Removed Laser Musket from Gas Station Ghost Role, replaced with PKA Pistols
+ StrangeWeirdKitten:
+ - balance: Signifigantly changes flechett shotgun rounds. They are a close range
+ ammo with reliable wounding and damage against unarmored with very shitty armor
+ penitration. Damage drops off signifigantly with range.
+ - bugfix: Beehive and Antitide shotgun ammo now properly subtracts damage dropoff
+ instead of adding.
+2025-02-03:
+ Arturlang:
+ - balance: Eye blur from lasers is capped at maximum of 20 seconds.
+ MosleyTheMalO:
+ - config: Makes vore defines into configs
+ - bugfix: makes the down button available again
+ shellspeed1:
+ - rscdel: Removed unused map file.
+ xXPawnStarrXx:
+ - qol: made orefruits produce sheets as cores, instead of lame objects, letting
+ them be inserted into a silo.
+ - rscadd: Added two new pods; Xenoarch and triage
+ - bugfix: fixed the robotic repair kit in the large medical pod from being empty.
+2025-02-05:
+ xXPawnStarrXx:
+ - bugfix: fixed seed pathing so silver's weren't skipped with the rockfruit mutations.
+2025-02-06:
+ nevimer:
+ - bugfix: fixed shadekin digi legs
+ xXPawnStarrXx:
+ - rscadd: Added digilegs for shadekin.
+2025-02-07:
+ ABoxFaux:
+ - balance: Slimepeople with the nitrogen breather quirk now no longer take toxin
+ damage from breathing oxygen, instead taking an equal amount of brute damage.
+2025-02-09:
+ Odairu:
+ - image: filled in nullspace on shadekin tail BEHIND sprite
+2025-02-10:
+ Odairu:
+ - balance: cult no longer gibs mindshields
+ StrangeWeirdKitten:
+ - rscadd: Replaces The Clown with The House which sets weights to 1, but spawns
+ stuff at a slower pace, and allows the adminbus to come.
+ - bugfix: Voidwalker properly spawns on the ghostset now.
+2025-02-11:
+ ArrisFairburne, LT3:
+ - rscadd: Added a new app to clock in and out from any NT OS-compatible device (Plexagon
+ Punch Clock)
+ - qol: Your job items are now locked into a box instead of warped to cryo, when
+ clocking out
+ xPokee:
+ - map: modified the jukebox in BoxStation's permabrig to be accessless
+2025-02-12:
+ Sebastionate:
+ - map: Added THREE new Infinite Dorms!
+ - map: Added 'Cultist's Cavern' Infinite Dorm.
+ - map: Added 'Winter Woods' Infinite Dorm.
+ - map: Added 'Evacuated Station' Infinite Dorm.
+2025-02-13:
+ EliteRiceFarmer:
+ - bugfix: Plasteel barricade delay. Now it's close properly.
+ Vanilla1040:
+ - rscadd: Readds the Large Hypobox being Printable in the Medical Lathe
+ - rscadd: Adds Advanced Hypospray into imports
+ - map: Added new Hotel room
+ - bugfix: Fixed the other hotel rooms not showing up from a different PR
+2025-02-14:
+ nevimer:
+ - bugfix: crew monitor alarm logic is updated to work with planetary z's
+2025-02-15:
+ ABoxFaux:
+ - rscadd: Adds pet space snacks - treats available from cargo that makes your pet
+ immune to the void of space.
+ LT3:
+ - balance: Event diseases are no longer hidden from health analyzers during incubation
+ periods
+ - bugfix: Masks and head slot items actually provide protection from airborne disease
+ spread
+ - bugfix: People other than the original airborne hosts spread diseases via respiration
+ - balance: Reduced infection chance for contact/airborne diseases from current 95%+
+ on all diseases to values 15%-40% based on the transmissibility strength
+ - code_imp: Airborne disease spread is rolled per target, not source
+ - balance: Disease outbreak won't spawn during rounds with less than 3 medical staff
+ - balance: Disease outbreak begins with 2-3 original hosts but lower spread speed
+ - bugfix: Disease cure won't request both antihol and alcohol mixed together
+ Vanilla1040:
+ - rscadd: Adds the Borg mat to Synth's *Turf
+ YakumoChen:
+ - balance: Removed "sidearm beacons" from spawning SecOff and HoS inventories. Complimentary
+ glocks are still available in security officer lockers.
+ - balance: Gave the HoS's silver glock to the Warden. The Head of Security only
+ has three guns at roundstart now! How will he ever recover??
+2025-02-16:
+ JustMeTheIInd:
+ - map: changed the bedsheet bin in InfiDorm apartment map to a towel bin.
+ - map: added a bedsheet bin in InfiDorm apartment map bedroom.
+ MosleyTheMalO:
+ - bugfix: fixes the issue where characters would reset after a round or on switching
+ character slots
+ shayoki:
+ - rscadd: Allows hypospray kits to fit in the first responder surgical kit and orange
+ satchel medical kit.
+ - bugfix: Allows blood filters to fit in the medical technician bag.
+ yooriss (Code), ReturnToZender (port):
+ - qol: 'The telepathy genetics mutation has had significant usability improvements:
+ it is now point-targeting based, and right-clicking the power allows for quick
+ resending to the same target, a feature mirrored by the new *treply emote. Telepathy
+ now also shows runechat messages.'
+ - rscadd: The Telepathic quirk has been added, allowing characters to start with
+ an unremovable (or activated) telepathy mutation.
+ zeroisthebiggay:
+ - bugfix: changes The House's welcome text "The House now runs the show..." to "The
+ House always wins." because it simply makes More Sense
+2025-02-17:
+ Majkl-J:
+ - image: Digitigrade variation for Captain, Security department, and Engineering
+ department bunnysuits
+ - bugfix: Lizard gas digitigrade actually works now
+ ReturnToZender:
+ - qol: Adds most of the Security cosmetics to the loadout
+ - spellcheck: Removes some spaces and spellchecks some things in the multisec vendor
+ - rscadd: Adds a corrections tab to the multisec vendor so being a corrections officer
+ is not inherently illegal
+ - rscadd: Holobadges are accessories rather than neck items now
+ urfrenthespessmen:
+ - rscadd: Croptops in loadout
+2025-02-18:
+ aKromatopzia:
+ - rscadd: syndie and ninja smolraptors
+ pixelkitty286:
+ - rscadd: Syndicats, Super cats, Super cat ears, and Super Syndicat ears
+ - balance: Cat night vision
+ - image: Syndicat sprites, and Super cat ear icon
+ - code_imp: Added a shape shifting caster variable for keeping the caster's name
+2025-02-19:
+ TealSeer:
+ - bugfix: fixed the utility cyborg upgrades node missing stuff
+ sippykot:
+ - rscadd: Syringes have been fatfinger-proofed, letting you inject in 1u and 2u
+ increments
+2025-02-20:
+ JustMeTheIInd:
+ - map: Added "Corporate Office" Infidorm map
+ - map: Added "Recovery Wing" Infidorm map
+ - map: Added "Grotto" Infidorm map
+ - map: Added "Grotto (night)" Infidorm map
+ TealSeer:
+ - bugfix: the winter woods dorm no longer kills you immediately
+ - bugfix: fixed cryoing with a storage implant dumping the contents of said implant
+ onto the floor
+ pixelkitty286:
+ - balance: forbids cats having storage implants
+ - bugfix: Super cats being able to bring things in hand in vents
+2025-02-24:
+ Alecksohs:
+ - code_imp: Vendors are now aware of sprite refits and will inform you if any are
+ available.
+ Arturlang:
+ - bugfix: 'Fixed some bugs in the malf ai screen: one bluescreen, an extra
+
+ colon, modules view'
+ KazooBard:
+ - rscadd: Chisels can be crafted [1 wood, 1 iron, screwdriver]
+ ReturnToZender:
+ - rscadd: Nurse costume suit now in loadout and medical vendor
+ SpooksAnno:
+ - rscadd: The ability to grab parts and cells as a borg.
+2025-02-25:
+ ABoxFaux:
+ - code_imp: Teshari and Vox primalis can now use size collars in dorms/interlink
+ areas.
+ StrangeWeirdKitten:
+ - rscadd: Nameless Quirk
+ - rscadd: Seamless heels quirk
+ xPokee:
+ - rscadd: added the intern ghoul plushie to both in game and the loadouts
+2025-02-26:
+ StrangeWeirdKitten:
+ - rscadd: Hypnotic Quirk
+ TealSeer:
+ - bugfix: fixed the SAD deleting wounds
+ nikothedude:
+ - rscadd: Quirk; venemous bite. Allows you to bite people and inject them with a
+ venom, or medicine, of your choosing.
diff --git a/html/changelogs/bubber_archive/2025-03.yml b/html/changelogs/bubber_archive/2025-03.yml
new file mode 100644
index 00000000000..f35b2340e37
--- /dev/null
+++ b/html/changelogs/bubber_archive/2025-03.yml
@@ -0,0 +1,235 @@
+2025-03-02:
+ Alecksohs:
+ - rscadd: Added a omni-species Kiryu-esque outfit to the Outfit Vendor.
+2025-03-03:
+ StrangeWeirdKitten:
+ - rscdel: Clientless mobs should no longer flash CI.
+ - admin: ghosted admins who LOOC now show by their ckey
+2025-03-04:
+ BurgerBB:
+ - rscdel: Reduces the weight of round-start malf ai from 10 to 2.
+ liz-lavenza:
+ - bugfix: fixed cryopods dropping prosthetic bodyparts of despawned mobs
+2025-03-06:
+ Arturlang:
+ - bugfix: fix color picket problems introduced by the upstream, specifically the
+ blooper and mutantparts color picker
+ LT3:
+ - bugfix: Examine boxes no longer restricted in width
+ - bugfix: Fixed missing light mode text classes
+ Majkl-J:
+ - image: New icon for sec hailers' backup call
+ - bugfix: Sec hailers no longer broadcast comms
+ - bugfix: Positive Quirks math correctly again
+ - bugfix: LOOC and Whisper are no longer dark and evil
+ Odairu:
+ - balance: malf ai weight from 2 to 6
+ TealSeer:
+ - bugfix: fixed company imports tab missing in cargo console
+ - bugfix: fixed the missing buttons in the communication console
+ xPokee:
+ - bugfix: shadekin no longer blink
+2025-03-07:
+ Alecksohs:
+ - image: Resprites Wood Walls, adds new Wood Flooring.
+ - map: updated the Biodome Bar area.
+ Bangle, StrangeWeirdKitten:
+ - sound: Lavaland has new ambiance.
+ LT3:
+ - rscadd: Added disease outbreak incident display
+ - bugfix: Purr consistently purrs the correct emote
+ Majkl-J:
+ - bugfix: Fixed depguard batons missing sprites
+ - bugfix: Quirks actually only add/remove 1x the points, not twice
+ - bugfix: Digi shoes render correctly
+ SarmentiCampbell:
+ - rscadd: Persistence cyborgs are now a thing.
+ - map: added 2 persistence borg spawner in persistence
+ TealSeer:
+ - bugfix: fixed various projectiles having inverted speeds
+ iskawhiskers, shayoki:
+ - rscadd: 'new sprite accessories: floppy (ears), big legs with pegfeet (taur legs),
+ porcine and porcine + tusks (snout)'
+ nikothedude:
+ - rscadd: Wheelchair now in the inhand section of loadout
+2025-03-08:
+ xPokee:
+ - bugfix: fixed xenos lacking their abilities
+2025-03-10:
+ Odairu:
+ - code_imp: adds handling for borg skins to have their own unique item sprites for
+ item sprites other borgs may not have
+ - image: adds new borg sprites
+ nikothedude:
+ - bugfix: Taur clothing rendering is mostly functional
+2025-03-12:
+ Majkl-J:
+ - bugfix: Having digi legs is now baked into your bodypart_overrides, speeding up
+ replace_body, and fixing a bug with slime legs
+ Odairu:
+ - bugfix: emissives for sci dragon borg will show up now when sitting
+ TealSeer:
+ - bugfix: fixed 9x25mm magazines being invisible
+ - bugfix: fixed hemophages missing their blood meter
+2025-03-13:
+ Ghommie:
+ - bugfix: You no longer jitter when crawling under tables and the likes as a borer
+ or from of army crawling.
+ Majkl-J:
+ - bugfix: Akula hair now layers correctly
+2025-03-14:
+ Majkl-J:
+ - bugfix: You no longer get randomly whitewashed when spawning with a different
+ species and planti legs
+2025-03-16:
+ TealSeer:
+ - rscadd: the janitor's belt can now hold a trash bag. just one
+ - bugfix: fixed character prefs bluescreening for certain species
+2025-03-17:
+ CydiaButt13:
+ - rscadd: Third eye marking
+ IgiariValkyr:
+ - rscadd: Dullahans now have a Security Module.
+ KazooBard:
+ - rscadd: Eldritch Essence (heretic's heal juice) now works on synths, the mansus
+ disregards it's worshippers equally.
+ kiwedespars:
+ - qol: last resort is no longer innate, instead just a free ability like DNA sting
+ and defib grasp.
+ nikothedude:
+ - rscadd: Venom milkers - siphon venom from people with the venom quirk
+ xPokee:
+ - balance: oversized characters can no longer use growth serum outside of dorms
+ - balance: growth serum is now capped at the same size as you would be if you took
+ the oversized quirk unless in dorms
+ xPokee, RimiNosha:
+ - rscadd: Added the ability to change the character creator background via the character
+ visuals tab.
+ - bugfix: Fixed oversized characters and larger characters not being fully visible
+ in the character creator
+ - image: Added additional background icons for the character creator.
+2025-03-18:
+ Arturlang:
+ - bugfix: Character setup panel is now slightly bigger
+ - bugfix: Character setup panel's add loadout button now works again
+ Iamgoofball and ChildrenOfTheSun:
+ - rscadd: Adds the Psionic Holding cosmetic quirk for roleplaying species with light
+ psionic abilities
+2025-03-19:
+ BurgerBB:
+ - rscadd: Fixes several moonstation bugs/issues/whatever.
+ Jinshee:
+ - rscadd: Added 2 new shadekin ears
+ Mitryll:
+ - rscadd: Adds Beo plushie to the loadout (sprite by Cepha)
+ StrangeWeirdKitten:
+ - qol: Adds the ability to put a reference picture on the examine panel.
+2025-03-20:
+ BurgerBB:
+ - rscadd: Events no longer run if the shuttle is moving towards the station in a
+ no-recall state.
+ Majkl-J:
+ - rscdel: Removes the martyr and hijack objs from traitor and spy
+2025-03-21:
+ BurgerBB:
+ - rscadd: Buffs security jackboots slightly.
+2025-03-22:
+ Arturlang:
+ - bugfix: Hologram mobs no longer have blood
+ Jinshee:
+ - rscadd: Added Splotches markings
+ - rscadd: Added Chitin markings
+ - rscadd: 'Added Horns: Simple (New), Broken (New), Ram (New), Lightning, and Brimstone'
+ - rscadd: 'Added Frills: Droopy, Frillhawk, Neck Frills (New), Neck Frills (Fuller
+ New)'
+ - rscadd: 'Added Markings: Dome'
+ - rscadd: 'Added Snouts: Extra Sharp'
+ - rscadd: Added Pinioned Wings, Masked Wing Snout, Headwing Ears, and Winged Messenger
+ Horns
+ Majkl-J:
+ - bugfix: Exploitables no longer show up when you examine an antag, exposing them
+ - bugfix: Exploitables now check the variables of the correct mob
+ ReturnToZender:
+ - balance: Cargo-ordered weapons no longer come in gun cases. Gun cases are now
+ bulky, and cannot fit in backpacks.
+ - rscdel: Armadyne corporate security no longer come with Wespe cases on top of
+ their issued guns
+ - rscdel: DS-2 Mining Officer (not the Persistence, DS-2) no longer has a Makarov.
+ SarmentiCampbell:
+ - rscadd: Borgo can put on hats by rightclicking.
+2025-03-23:
+ LT3:
+ - rscadd: Miniskirt now available in the clothesmate
+ - bugfix: Fixed fitting of black and colorable flannel shirts
+ TealSeer:
+ - bugfix: fixed larger sprite size mobs being unable to pixel shift properly
+2025-03-24:
+ nikothedude:
+ - rscdel: Romerol is once again nukie only
+ shellspeed1:
+ - rscadd: Persistence now has cybersun comms (It's literally just renamed persistence
+ comms)
+ - rscadd: Persistence can now produce interdyne comms in an emergency using an interdyne
+ comms chips
+ - bugfix: Persistence no longer has 4 safes on one tile
+ - bugfix: Persistence no longer has a turret that shoots out a window in the prison
+ - bugfix: Persistence no longer has a null telecomms server, also atmos works
+ - bugfix: Renamed syndicate_exofab to syndicate exofab in the circuit printer
+ - bugfix: Renamed cybersun channel no longer outputs to the uplink channel
+ - bugfix: Reverts automapper placement of persistence on icemoon and returns to
+ - map: slightly revamped the Persistence kitchen.
+ - map: condensed the utility area of persistence and added a cycling airlock plus
+ one more 3x3 construction area.
+ - map: toned down some of the roundstart persistence equipment that can be acquired
+ through other relatively easy means such as cargo.
+2025-03-25:
+ Swiftfeather:
+ - rscadd: Added a round removal opt-in preference.
+ TealSeer:
+ - bugfix: fixed synth chassis taking their color from the head
+ xPokee:
+ - rscadd: akula tongues now have the fish chat bubble effect tied to them
+2025-03-27:
+ StrangeWeirdKitten:
+ - config: Storyteller default configs now exist and should work again
+ Vanilla1040:
+ - rscadd: Added new barsign called "Heavens Hallow"
+ YakumoChen:
+ - qol: Mood is now buffed in certain ghost areas or off-station areas primarily
+ used for enterprise resource planning to make hunger less of an issue.
+ shayoki:
+ - map: Box Station now has the Captain's cast and green screen.
+ - map: Fixed the Mix to SM pipe in Box Station's Atmos never being connected.
+ - map: On Box Station, a few more walls in the brig are now reinforced walls.
+2025-03-28:
+ Bombermansam:
+ - rscadd: New option in character creation for a vox laugh
+ - sound: Added vox_laugh.ogg from ss14
+ StrangeWeirdKitten:
+ - bugfix: Modsuits no longer delete the seamless heels quirk.
+2025-03-29:
+ Decinomics:
+ - rscadd: Added a plushie to the Lust Wish vendor, the Sinister Vox Plushie
+2025-03-30:
+ Arturlang:
+ - rscadd: Re-adds nanites
+ Jinshee:
+ - rscadd: Added Stone Cauldron, a new primitive cooking structure with a microwave
+ function.
+ - map: Added sparring area, prison cell, dining area, revamped kitchen, animal pens,
+ revamped forge area, armory, revamped doctor's hut, and a spare room to a new
+ Ashwalker Nest map.
+ JustMeTheIInd:
+ - map: Re-did Ghost Cafe Bridge and Captain office, swapped holopads for not working
+ versions, removed cap locker.
+ Odairu:
+ - rscadd: adds a new station trait - HoS AI
+ aKromatopzia:
+ - image: more clothes are innately teshari-compatible
+ nevimer:
+ - rscadd: Added the Jerk Quirk
+2025-03-31:
+ Bombermansam:
+ - rscadd: Adds Marish, Chitinclick and Carptongue to Silicon's Known languages
+ BurgerBB:
+ - rscadd: Adds a new storyteller, "The Enemy Within".
diff --git a/html/changelogs/bubber_archive/2025-04.yml b/html/changelogs/bubber_archive/2025-04.yml
new file mode 100644
index 00000000000..6d9273fe2a9
--- /dev/null
+++ b/html/changelogs/bubber_archive/2025-04.yml
@@ -0,0 +1,62 @@
+2025-04-01:
+ BurgerBB:
+ - rscdel: Disabler boots have a 5% chance (per locker) to spawn in a locker during
+ april fools.
+ StrangeWeirdKitten:
+ - rscdel: Removes the handheld crew monitor from the medical lathes.
+ plsleavemealon:
+ - bugfix: fixed ethereals powercell back to bubbers values
+2025-04-02:
+ Jinshee:
+ - bugfix: fixed wagging state for all shadekin tails and ring tail (long)
+ LT3:
+ - rscadd: 'Added new carp variant: carpmospheric technician'
+ StrangeWeirdKitten:
+ - rscdel: Disaboots have been removed from apirl fools.
+2025-04-03:
+ Jinshee:
+ - rscadd: 10 new wings, 3 new horns, 9 new IPC screens, 13 new tails, and 6 new
+ ears
+ - rscadd: 'Added new ear type: Shadekin Gradient'
+ LT3:
+ - bugfix: Lobotomy/blessed lobotomy should correctly remove all surgery based traumas
+ - balance: Lobotomy/blessed lobotomy now provides a predictable status effect instead
+ of a trauma RNG roll
+ StrangeWeirdKitten:
+ - balance: Cyborgs now auto link in a priority system. Malf > AI cores > Suit AIs
+ / Cards
+2025-04-04:
+ Bombermansam:
+ - rscadd: Makes Nugget Boxes and Food packs small
+2025-04-05:
+ Bombermansam:
+ - rscadd: '*skweh emote to be sad'
+ - bugfix: Silicons can now yip.
+ Jinshee:
+ - sound: Slug Scream sound added to *scream choices
+ LT3:
+ - bugfix: Sound prefs that went missing post-516 are restored
+ - rscadd: Jukebox volume slider in game preferences
+ Odairu:
+ - rscadd: several vulpkanin species buffs/debuffs
+ - balance: shadekin empathy is better/worse based on mood
+2025-04-06:
+ Odairu:
+ - balance: shadekin nv buffed from 4.5/100 to 15/100
+ - balance: shadekin move a bit slower in the light
+ Swiftfeather:
+ - balance: Cat ears no longer provide a tackle bonus
+ TealSeer:
+ - bugfix: fixed persistence medbots speaking on wrong radio frequency
+ - bugfix: fixed sechud nv goggles being invisible when off
+ pixelkitty286:
+ - balance: Super cat ear cool downs are longer and removed the freedom implant function.
+ sippykot:
+ - rscadd: added 4 new large shark tail options - large shark, large shark (finless),
+ large shark (striped), and large shark (striped, finless)
+2025-04-07:
+ Jinshee:
+ - bugfix: Fix Podperson eye color selection
+ pixelkitty286:
+ - bugfix: chameleon model foot steps
+ - code_imp: moved many of the borg defines to their correct _defines file and folder
diff --git a/modular_zubbers/code/modules/asset_cache/assets/tgui.dm b/modular_zubbers/code/modules/asset_cache/assets/tgui.dm
new file mode 100644
index 00000000000..ab637ebbced
--- /dev/null
+++ b/modular_zubbers/code/modules/asset_cache/assets/tgui.dm
@@ -0,0 +1,5 @@
+/datum/asset/simple/server_logos
+ assets = list(
+ "tg_16.png" = 'icons/ui/common/tg_16.png',
+ "bubber_16.png" = 'modular_zubbers/icons/UI_Icons/common/bubber_16.png'
+ )
diff --git a/modular_zubbers/icons/UI_Icons/common/bubber_16.png b/modular_zubbers/icons/UI_Icons/common/bubber_16.png
new file mode 100644
index 00000000000..6d8fa8ef239
Binary files /dev/null and b/modular_zubbers/icons/UI_Icons/common/bubber_16.png differ
diff --git a/tgstation.dme b/tgstation.dme
index 46a0f52d8c6..4c20df8d4f1 100644
--- a/tgstation.dme
+++ b/tgstation.dme
@@ -9075,6 +9075,7 @@
#include "modular_zubbers\code\modules\arcades\code\overrides\spawners.dm"
#include "modular_zubbers\code\modules\ashwalkers\ashwalker_names.dm"
#include "modular_zubbers\code\modules\ashwalkers\code\effects\ash_rituals.dm"
+#include "modular_zubbers\code\modules\asset_cache\assets\tgui.dm"
#include "modular_zubbers\code\modules\atmospherics\gasmixtures\gas_types.dm"
#include "modular_zubbers\code\modules\atmospherics\machinery\air_alarm\air_alarm_modes.dm"
#include "modular_zubbers\code\modules\atmospherics\machinery\portable\canister.dm"
diff --git a/tgui/packages/tgui/interfaces/BubberChangelog.jsx b/tgui/packages/tgui/interfaces/BubberChangelog.jsx
new file mode 100644
index 00000000000..628149a8b0d
--- /dev/null
+++ b/tgui/packages/tgui/interfaces/BubberChangelog.jsx
@@ -0,0 +1,471 @@
+import dateformat from 'dateformat';
+import yaml from 'js-yaml';
+import { useEffect, useState } from 'react';
+import {
+ Box,
+ Button,
+ Dropdown,
+ Icon,
+ Image,
+ Section,
+ Stack,
+ Table,
+} from 'tgui-core/components';
+import { classes } from 'tgui-core/react';
+
+import { resolveAsset } from '../assets';
+import { useBackend } from '../backend';
+import { Window } from '../layouts';
+
+const icons = {
+ add: { icon: 'check-circle', color: 'green' },
+ admin: { icon: 'user-shield', color: 'purple' },
+ balance: { icon: 'balance-scale-right', color: 'yellow' },
+ bugfix: { icon: 'bug', color: 'green' },
+ code_imp: { icon: 'code', color: 'green' },
+ config: { icon: 'cogs', color: 'purple' },
+ expansion: { icon: 'check-circle', color: 'green' },
+ experiment: { icon: 'radiation', color: 'yellow' },
+ image: { icon: 'image', color: 'green' },
+ imageadd: { icon: 'tg-image-plus', color: 'green' },
+ imagedel: { icon: 'tg-image-minus', color: 'red' },
+ qol: { icon: 'hand-holding-heart', color: 'green' },
+ refactor: { icon: 'tools', color: 'green' },
+ rscadd: { icon: 'check-circle', color: 'green' },
+ rscdel: { icon: 'times-circle', color: 'red' },
+ server: { icon: 'server', color: 'purple' },
+ sound: { icon: 'volume-high', color: 'green' },
+ soundadd: { icon: 'tg-sound-plus', color: 'green' },
+ sounddel: { icon: 'tg-sound-minus', color: 'red' },
+ spellcheck: { icon: 'spell-check', color: 'green' },
+ map: { icon: 'map', color: 'green' },
+ tgs: { icon: 'toolbox', color: 'purple' },
+ tweak: { icon: 'wrench', color: 'green' },
+ unknown: { icon: 'info-circle', color: 'label' },
+ wip: { icon: 'hammer', color: 'orange' },
+};
+
+const DateDropdown = (props) => {
+ const { dates, selectedDate, setSelectedDate } = props;
+ const [selectedIndex, setSelectedIndex] = useState(0);
+
+ return (
+ dates.length > 0 && (
+
{contents}
; + } + + return Object.keys(combinedDates) + .sort() + .reverse() + .map((date) => ( ++ Thanks to: + /tg/station 13, Effigy, Stellar Haven, Baystation 12, /vg/station, + NTstation, CDK Station devs, FacepunchStation, GoonStation devs, the + original Space Station 13 developers, and the countless others who have + contributed to the game. +
++ {'Current organization members can be found '} + here + {', recent GitHub contributors can be found '} + + here + + . +
++ {'You can also join our discord '} + here! +
++ {'All code is licensed under '} + GNU AGPL v3. + {' See '} + + LICENSE + {' '} + for more details. +
++ {'All assets including icons and sound are under a '} + + Creative Commons 3.0 BY-SA license + + {' unless otherwise indicated.'} +
++ The TGS DMAPI API is licensed as a subproject under the MIT license. +
++ {' See the footer of '} + + code/__DEFINES/tgs.dm + + {' and '} + + code/modules/tgs/LICENSE + + {' for the MIT license.'} +
++ {'All code after '} + + commit 333c566b88108de218d882840e61928a9b759d8f on 2014/31/12 at + 4:38 PM PST + + {' is licensed under '} + GNU AGPL v3. +
++ {'All code before that commit is licensed under '} + GNU GPL v3 + {', including tools unless their readme specifies otherwise. See '} + + LICENSE + + {' and '} + + GPLv3.txt + + {' for more details.'} +
++ {'All assets including icons and sound are under a '} + + Creative Commons 3.0 BY-SA license + + {' unless otherwise indicated.'} +
++ Coders: + Stuntwaffle, Showtime, Pantaloons, Nannek, Keelin, Exadv1, hobnob, + Justicefries, 0staf, sniperchance, AngriestIBM, BrianOBlivion +
++ Spriters: + Supernorn, Haruhi, Stuntwaffle, Pantaloons, Rho, SynthOrange, I Said + No +
++ Bubberstation and /tg/station 13 are thankful to the GoonStation 13 + Development Team for its work on the game up to the + {' r4407 release. The changelog for changes up to r4407 can be seen '} + here. +
++ {'Except where otherwise noted, Goon Station 13 is licensed under a '} + + Creative Commons Attribution-Noncommercial-Share Alike 3.0 License + + . +
++ {'Rights are currently extended to '} + SomethingAwful Goons + {' only.'} +
+