-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cleans up tag system #28272
Cleans up tag system #28272
Conversation
/// <exception cref="UnknownPrototypeException"> | ||
/// Thrown if one of the ids represents an unregistered <see cref="TagPrototype"/>. | ||
/// </exception> | ||
public bool HasAllTags(EntityUid entity, string id) => HasTag(entity, id); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The main reason for having the single-parameter override was to avoid having the method allocate a new array unnecessarily. Unless there's some analyser or something else to prevent people from misusing it, I'd rather keep these overrides.
Similarly, IIRC the list & array specific overrides exist because they are faster than the overrides that use IEnumerables. I don't recall if I benchmarked them or not, but I think they existed for a reason. Tags get checked often enough that performance probably matters,
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does casting a class to the IEnumerable type create anything? Almost any list implements an iteration method of this interface, and when we cast an instance to the IEnumerable interface, we limit the ability to interact with the class to only the methods and properties described in IEnumerable. I don't think the type conversion operation consumes a lot of resources.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, I seem to get the point, but what prevents us from using HasTag, because we still input a collection, and it simply will not cause an overload even if it has one element?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, I seem to get the point, but what prevents us from using HasTag, because we still input a collection, and it simply will not cause an overload even if it has one element?
I'd be fine with just using hasTag if HasTags
were given a debug assert that checks that people don't accidentally use it when passing in only one tag (which they were doing, which is why the override exists). But I don't think theres a way to differentiate between that and someone just passing in an actual array that happens to only have one element.
Having the override doesn't hurt anything, its only a few lines of codes and stops some trivial mistakes from accidentally slowing things down a bit.
Does casting a class to the IEnumerable type create anything?
Using IEnumerable
and uneccesarily using params []
methods allocates and slows things down. IIRC for IEnumerable its because it has to create an enumerator class. For example, running these benchmarks ElectroJr/RobustToolbox@fd62c6d yields:
Method | Mean | Error | StdDev | Ratio | Gen0 | Allocated | Alloc Ratio |
---|---|---|---|---|---|---|---|
HasTagsArray | 21.39 ns | 0.129 ns | 0.121 ns | 1.00 | - | - | NA |
HasTagsList | 21.70 ns | 0.087 ns | 0.081 ns | 1.01 | - | - | NA |
HasTagsIEnumerableArray | 29.08 ns | 0.099 ns | 0.093 ns | 1.36 | 0.0038 | 32 B | NA |
HasTagsIEnumerableList | 30.13 ns | 0.098 ns | 0.092 ns | 1.41 | 0.0048 | 40 B | NA |
Method | Mean | Error | StdDev | Ratio | Gen0 | Allocated | Alloc Ratio |
---|---|---|---|---|---|---|---|
HasTag | 10.35 ns | 0.043 ns | 0.040 ns | 1.00 | - | - | NA |
HasTagsParams | 16.23 ns | 0.105 ns | 0.082 ns | 1.57 | 0.0038 | 32 B | NA |
They're generally 1.3-1.6 times slower and allocate. In most cases it usually doesn't matter and I wouldn't be picky, but I think that tags get used frequently enough by other systems that it would make a not insignificant difference. E.g., there are systems that iterate over many entities and check for some tags, or things like InRangeUnobstructed()
which does some tag checks.
It might be premature optimization, but I'd rather just keep the faster methods around. Though they look like bloat & duplicate code, they're not really hard to maintain and just help make things a bit faster.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To clarify, this really only matters for the has-tag methods. Add/remove tags don't get used often enough for it to matter
@@ -37,8 +38,7 @@ public sealed class SpreaderSystem : EntitySystem | |||
|
|||
public const float SpreadCooldownSeconds = 1; | |||
|
|||
[ValidatePrototypeId<TagPrototype>] | |||
private const string IgnoredTag = "SpreaderIgnore"; | |||
private static readonly ProtoId<TagPrototype> IgnoredTag = "SpreaderIgnore"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for these will ProtoId have a compile time / initialization stage error if you do this or will it just silently have an invalid id
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, electro made a linter pass for static protoid variables
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/// <summary>
/// This attribute should be used on static string or string collection fields to validate that they correspond to
/// valid YAML prototype ids. This attribute is not required for static <see cref="ProtoId{T}"/> and
/// <see cref="EntProtoId"/> fields, as they automatically get validated.
/// </summary>
[AttributeUsage(AttributeTargets.Field)]
public sealed class ValidatePrototypeIdAttribute<T> : Attribute where T : IPrototype
{
}
AFAICT should be fine to merge after re-adding some |
According to git bisect, this PR broke air alarms not alarming. |
Not sure if there's better place to mention this.. space-station-14/Content.Shared/DeviceNetwork/NetworkPayload.cs Lines 6 to 24 in b0b76a1
called from line 89 space-station-14/Content.Server/Atmos/Monitor/Systems/AtmosAlarmableSystem.cs Lines 81 to 94 in b0b76a1
Replacing that |
Thanks for the investigation and proposed fix. Would you mind putting that into a PR and linking it here? Thanks! |
* Fix double label on chem jugs (space-wizards#29137) * Automatic changelog update * Fix DresserFilled storagefill rarely causing an error (space-wizards#29135) Add ClothingUniformJumpskirtColorPink to an OrGroup * Fix female reptilians not having gasp sounds (space-wizards#29143) inital * clean up weather systems (space-wizards#28792) * clean up weather systems * Update WeatherComponent.cs * Update SharedWeatherSystem.cs * some fix * Update SharedWeatherSystem.cs * Update WeatherComponent.cs * Update WeatherComponent.cs * revert autoPause * Update SharedWeatherSystem.cs * Implement vital chef's hat functionality (space-wizards#25950) * Implement crucial chef's hat functionality * Unified stopping code and added events. * Added documentation to events * Rerun tests * Made review changes, and fixed potential desync bug. * Update whitelist * Automatic changelog update * Add cvar to disable round end pvs overrides (space-wizards#29151) * Update submodule to 226.1.0 (space-wizards#29159) * Fix conveyor mispredicts (space-wizards#28157) * Fix conveyor mispredicts Instead of tracking active conveyors we instead track the conveyed entities. This also handles things like stacking conveyors more gracely. * Fix ActiveConveyor * Fix lerping * Automatic changelog update * Replace StationRandomTransform (space-wizards#29149) * Revert "Rotate and Offset station CCVar nuke (space-wizards#26175)" This reverts commit 44b20f6. # Conflicts: # Content.Server/Station/Systems/StationSystem.cs # Resources/Prototypes/Maps/europa.yml * Fix * Review * Add warning cones to engivend (space-wizards#29085) Add cones to engivend * Automatic changelog update * arachnid inventory layout fix (space-wizards#29165) arachnid inventory layout fixC * Automatic changelog update * Turn interaction related attempt events into structs (space-wizards#29168) * Turn InteractionAttemptEvent into a struct event * readonly * GettingInteractedWithAttemptEvent * ConsciousAttemptEvent * Add the most anticipated gun in the game. Foam Force. (space-wizards#29103) * Foam Force * make it available somewhere * add clumsyproof and nuke dev item * reorganize * oopsy files * Strap! * woopsie layering * fix grammar to rerun tests for rogue unrelated test fail. * cleanup * I eepy layer forgetti spaghetti * For real last necessary commit * Oops I broke the law! feexed * Decided to just change it to the same source as the poster source in our repo for consistency. * Automatic changelog update * Fix material storage going BRRT (space-wizards#29167) If the volume hits 0 we just remove it. * Automatic changelog update * Fix air alarms (space-wizards#29172) Broken by space-wizards#28272 * Automatic changelog update * Hidden loadout groups (space-wizards#29170) * loadout hiding * department of redundancy department * Upgrade rsi-diff's changed files action | Make it only return rsi and png changes (space-wizards#29185) It was brought up to me in space-wizards#29179 (comment) (and from a dm from them) that space bars can cause issues with the rsi bot. Upon investigation its case we use "space-delimited" on the "get changes files" check. Which returns ALL changed files. Even if the change has nothing to do with png's or rsi's (example a downstream merging upstream) * unhardcode thief MaxSelectedSets (space-wizards#29175) * unhardcode thief MaxSelectedSets * we do a little copy paste*
--------- Co-authored-by: deltanedas <@deltanedas:kde.org> * PullingController cooldown change (space-wizards#29177) * Revert "Automatic changelog update" This reverts commit 3358aef. * Revert "Revert "Automatic changelog update"" This reverts commit 3d0b6a7. * Removal of the throw cooldown as it felt sluggish and unresponsive before. * Decrease meteor frequency (space-wizards#29194) * Automatic changelog update * Security Resprite (space-wizards#29082) * security resprite * hos cap fix * i forgor * further fixes * my furniture is broken * fedora update * Automatic changelog update * Make Hamlet a valid chef's hat pilot (space-wizards#29191) * Fix Underwing wings (space-wizards#29092) * add * tweak thickness of stripe * Add some happier medibot messages! (space-wizards#29147) * Happy! * opps * one more * Automatic changelog update * shorten short raffle (space-wizards#28685) * Automatic changelog update * Fix some lathe recipe textures showing up blank (space-wizards#28683) * Update lathes to use entity prototype * ScrollContainer my hero * gets rid of excess newlines --------- Co-authored-by: plykiya <plykiya@protonmail.com> * Grammar fix to medibot! (space-wizards#29197) fixed * Restore default panic bunker and tweak baby jail (space-wizards#29198) restore default panic bunker * Fixed cartridges installing more than once (space-wizards#29187) * fixed cartridges installing more than once * replaced prototypes with CartridgeComponent * relocated checks from InstallProgram to InstallCartridge * Automatic changelog update * Musician's skirt (space-wizards#29203) * Sprites&Meta * Changing prototypes * Adding to Theater vend * Sprite_Change * Sprite_Change * Prototype_Changes Is this exactly how it should be?... * FUCKING FIX * weh --------- Co-authored-by: Арт <123451459+JustArt1m@users.noreply.github.com> * Automatic changelog update * hos cap resprite (space-wizards#29208) * hos cap resprite * 1. 2. 3 4 Oh * Automatic changelog update * Rejig device link sink & source startup & shutdown (space-wizards#29035) * Fix DeviceLinkSinkComponent not updating sources on shutdown * Log error * Misc link changes & fixes * Fix core * Add prediction for Tech Disks, cleanup (space-wizards#29061) * Add prediction for Tech Disks, cleanup * Remove IsServer check in OnMapInit * Use HashSet for techs, remove LINQ * Code cleanup: radio jammer (space-wizards#29052) * Code cleanup for radio jammer * More Entity<T> for the people, and fix an accidental variable reuse * Partial buckling refactor (space-wizards#29031) * partial buckling refactor * git mv test * change test namespace * git mv test * Update test namespace * Add pulling test * Network BuckleTime * Add two more tests * smelly * Fix documentation typo (space-wizards#29209) Fix everything. * Emergency toolbox fill rework (space-wizards#29202) * emergency toolbox fill rework * Fuck * Add wet floor sign & warning cone to autolathe (space-wizards#29205) * Add wet floor sign & warning cone to autolathe * removing * Automatic changelog update * Tools batch files (space-wizards#29179) * Tools batch files * fine * Fix terrible portable scrubber unlit layers (space-wizards#29232) Jesus fucking christ man * Prevent fly-by fixture from powering containment field generator (space-wizards#29225) * Prevent fly-by fixture from powering containment field generator * Update according to review * Automatic changelog update * Hide moth antenna and lizard frills with hardsuit helmets, fix lizard snouts not being hidden (space-wizards#29214) * inital * Update ClothingSystem.cs * Update helmets.yml * Automatic changelog update * Fix and enable TestEmptyLoadout (space-wizards#29228) * Fix and enabled TestEmptyLoadout * Fine, have a real name * Fix brokey code :) --------- Co-authored-by: Tayrtahn <tayrtahn@gmail.com> Co-authored-by: PJBot <pieterjan.briers+bot@gmail.com> Co-authored-by: Mr. 27 <45323883+Dutch-VanDerLinde@users.noreply.github.com> Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com> Co-authored-by: DrSmugleaf <10968691+DrSmugleaf@users.noreply.github.com> Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: lzk <124214523+lzk228@users.noreply.github.com> Co-authored-by: Errant <35878406+Errant-4@users.noreply.github.com> Co-authored-by: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Co-authored-by: IProduceWidgets <107586145+IProduceWidgets@users.noreply.github.com> Co-authored-by: osjarw <62134478+osjarw@users.noreply.github.com> Co-authored-by: Vasilis <vasilis@pikachu.systems> Co-authored-by: deltanedas <39013340+deltanedas@users.noreply.github.com> Co-authored-by: Rouge2t7 <81053047+Sarahon@users.noreply.github.com> Co-authored-by: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Co-authored-by: Flareguy <78941145+Flareguy@users.noreply.github.com> Co-authored-by: Ubaser <134914314+UbaserB@users.noreply.github.com> Co-authored-by: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Co-authored-by: HS <81934438+HolySSSS@users.noreply.github.com> Co-authored-by: Plykiya <58439124+Plykiya@users.noreply.github.com> Co-authored-by: plykiya <plykiya@protonmail.com> Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Co-authored-by: Truoizys <153248924+Truoizys@users.noreply.github.com> Co-authored-by: Арт <123451459+JustArt1m@users.noreply.github.com> Co-authored-by: TsjipTsjip <19798667+TsjipTsjip@users.noreply.github.com> Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com> Co-authored-by: Alice "Arimah" Heurlin <30327355+arimah@users.noreply.github.com>
* Fix double label on chem jugs (space-wizards#29137) * Automatic changelog update * Fix DresserFilled storagefill rarely causing an error (space-wizards#29135) Add ClothingUniformJumpskirtColorPink to an OrGroup * Fix female reptilians not having gasp sounds (space-wizards#29143) inital * clean up weather systems (space-wizards#28792) * clean up weather systems * Update WeatherComponent.cs * Update SharedWeatherSystem.cs * some fix * Update SharedWeatherSystem.cs * Update WeatherComponent.cs * Update WeatherComponent.cs * revert autoPause * Update SharedWeatherSystem.cs * Implement vital chef's hat functionality (space-wizards#25950) * Implement crucial chef's hat functionality * Unified stopping code and added events. * Added documentation to events * Rerun tests * Made review changes, and fixed potential desync bug. * Update whitelist * Automatic changelog update * Add cvar to disable round end pvs overrides (space-wizards#29151) * Update submodule to 226.1.0 (space-wizards#29159) * Fix conveyor mispredicts (space-wizards#28157) * Fix conveyor mispredicts Instead of tracking active conveyors we instead track the conveyed entities. This also handles things like stacking conveyors more gracely. * Fix ActiveConveyor * Fix lerping * Automatic changelog update * Replace StationRandomTransform (space-wizards#29149) * Revert "Rotate and Offset station CCVar nuke (space-wizards#26175)" This reverts commit 44b20f6. # Conflicts: # Content.Server/Station/Systems/StationSystem.cs # Resources/Prototypes/Maps/europa.yml * Fix * Review * Add warning cones to engivend (space-wizards#29085) Add cones to engivend * Automatic changelog update * arachnid inventory layout fix (space-wizards#29165) arachnid inventory layout fixC * Automatic changelog update * Turn interaction related attempt events into structs (space-wizards#29168) * Turn InteractionAttemptEvent into a struct event * readonly * GettingInteractedWithAttemptEvent * ConsciousAttemptEvent * Add the most anticipated gun in the game. Foam Force. (space-wizards#29103) * Foam Force * make it available somewhere * add clumsyproof and nuke dev item * reorganize * oopsy files * Strap! * woopsie layering * fix grammar to rerun tests for rogue unrelated test fail. * cleanup * I eepy layer forgetti spaghetti * For real last necessary commit * Oops I broke the law! feexed * Decided to just change it to the same source as the poster source in our repo for consistency. * Automatic changelog update * Fix material storage going BRRT (space-wizards#29167) If the volume hits 0 we just remove it. * Automatic changelog update * Fix air alarms (space-wizards#29172) Broken by space-wizards#28272 * Automatic changelog update * Hidden loadout groups (space-wizards#29170) * loadout hiding * department of redundancy department * Upgrade rsi-diff's changed files action | Make it only return rsi and png changes (space-wizards#29185) It was brought up to me in space-wizards#29179 (comment) (and from a dm from them) that space bars can cause issues with the rsi bot. Upon investigation its case we use "space-delimited" on the "get changes files" check. Which returns ALL changed files. Even if the change has nothing to do with png's or rsi's (example a downstream merging upstream) * unhardcode thief MaxSelectedSets (space-wizards#29175) * unhardcode thief MaxSelectedSets * we do a little copy paste*
--------- Co-authored-by: deltanedas <@deltanedas:kde.org> * PullingController cooldown change (space-wizards#29177) * Revert "Automatic changelog update" This reverts commit 3358aef. * Revert "Revert "Automatic changelog update"" This reverts commit 3d0b6a7. * Removal of the throw cooldown as it felt sluggish and unresponsive before. * Decrease meteor frequency (space-wizards#29194) * Automatic changelog update * Security Resprite (space-wizards#29082) * security resprite * hos cap fix * i forgor * further fixes * my furniture is broken * fedora update * Automatic changelog update * Make Hamlet a valid chef's hat pilot (space-wizards#29191) * Fix Underwing wings (space-wizards#29092) * add * tweak thickness of stripe * Add some happier medibot messages! (space-wizards#29147) * Happy! * opps * one more * Automatic changelog update * shorten short raffle (space-wizards#28685) * Automatic changelog update * Fix some lathe recipe textures showing up blank (space-wizards#28683) * Update lathes to use entity prototype * ScrollContainer my hero * gets rid of excess newlines --------- Co-authored-by: plykiya <plykiya@protonmail.com> * Grammar fix to medibot! (space-wizards#29197) fixed * Restore default panic bunker and tweak baby jail (space-wizards#29198) restore default panic bunker * Fixed cartridges installing more than once (space-wizards#29187) * fixed cartridges installing more than once * replaced prototypes with CartridgeComponent * relocated checks from InstallProgram to InstallCartridge * Automatic changelog update * Musician's skirt (space-wizards#29203) * Sprites&Meta * Changing prototypes * Adding to Theater vend * Sprite_Change * Sprite_Change * Prototype_Changes Is this exactly how it should be?... * FUCKING FIX * weh --------- Co-authored-by: Арт <123451459+JustArt1m@users.noreply.github.com> * Automatic changelog update * hos cap resprite (space-wizards#29208) * hos cap resprite * 1. 2. 3 4 Oh * Automatic changelog update * Rejig device link sink & source startup & shutdown (space-wizards#29035) * Fix DeviceLinkSinkComponent not updating sources on shutdown * Log error * Misc link changes & fixes * Fix core * Add prediction for Tech Disks, cleanup (space-wizards#29061) * Add prediction for Tech Disks, cleanup * Remove IsServer check in OnMapInit * Use HashSet for techs, remove LINQ * Code cleanup: radio jammer (space-wizards#29052) * Code cleanup for radio jammer * More Entity<T> for the people, and fix an accidental variable reuse * Partial buckling refactor (space-wizards#29031) * partial buckling refactor * git mv test * change test namespace * git mv test * Update test namespace * Add pulling test * Network BuckleTime * Add two more tests * smelly * Fix documentation typo (space-wizards#29209) Fix everything. * Emergency toolbox fill rework (space-wizards#29202) * emergency toolbox fill rework * Fuck * Add wet floor sign & warning cone to autolathe (space-wizards#29205) * Add wet floor sign & warning cone to autolathe * removing * Automatic changelog update * Tools batch files (space-wizards#29179) * Tools batch files * fine * Fix terrible portable scrubber unlit layers (space-wizards#29232) Jesus fucking christ man * Prevent fly-by fixture from powering containment field generator (space-wizards#29225) * Prevent fly-by fixture from powering containment field generator * Update according to review * Automatic changelog update * Hide moth antenna and lizard frills with hardsuit helmets, fix lizard snouts not being hidden (space-wizards#29214) * inital * Update ClothingSystem.cs * Update helmets.yml * Automatic changelog update * Fix and enable TestEmptyLoadout (space-wizards#29228) * Fix and enabled TestEmptyLoadout * Fine, have a real name * Fix brokey code :) * Fix entities getting stuck red (space-wizards#28981) * Automatic changelog update * Update submodule to 226.2.0 (space-wizards#29247) * add a type specifier where one was forgor (space-wizards#29250) * add a type specifier where one was forgor * Fix other way because degub conditions * okay this feels kinda dumb but it does fix it. * Update Content.Client/Effects/ColorFlashEffectSystem.cs --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> * Make winter coat hood hide certain markings (space-wizards#29238) Update base_clothinghead.yml * Fix ERT becoming sleeper agents and add sleeper agent preferences (space-wizards#27817) * b * Update antags.ftl * m * ok * Update events.yml * antag * a * Create InitialInfectedExemptComponent.cs * Delete InitialInfectedExemptComponent.cs * yes * Delete InitialInfectedExemptComponent.cs * Create AntagImmuneComponent.cs * Automatic changelog update * fixed Syndicate smokes pack being half-filled (space-wizards#28371) * Automatic changelog update * Buff cube boxes (space-wizards#29251) * Automatic changelog update * moves explosive tech to T1 (space-wizards#29227) moves explo tech to T1 * Automatic changelog update * made cup ramen eatable with anything with the fork component (space-wizards#27826) * made cup ramen eatable with anything with the fork component * removed extra png * made cupramen fillable with water, and made hot ramen dry ramen. --------- Co-authored-by: redfire1331 <Redfire1331@users.noreply.github.com> * Automatic changelog update * Survival Box Loadouts, Nitrogen Emergency tanks (space-wizards#29131) * Nitrogen survival boxes * Zero-setup workaround * clown box * cleanup and universal tanks * cleanup * more cleanup * hide loadoutgroups * remaining survival boxes * space ninja * Revert "space ninja" This reverts commit a650f41. * weh * weh * undo appearance change of syndicate survival boxes * indentation fix and missing label * You can now pry multiple tiles at once (space-wizards#29231) * You can now pry multiple tiles at once * More advanced do after duplicate checking. Instead of just saying "lol tile prying can raise duplicates", we now have a system so tile prying can properly distinguish events on 2 different tiles. This is achieved with a virtual function on DoAfterEvent. * Automatic changelog update * Fix prying speed & log (space-wizards#29210) * cleanup prototypes with `PryingComponent` & fix jaws of life prying speed * Minor cleanup for tools and prying systems Remove some obsolete methods. * Fix doafter continues when not held & log * Modifiy delays for floor prying * Fix test fail * Automatic changelog update * golden plunger (space-wizards#29043) * golden plunger * Add wood material (the handle is still wood) * 52 hours --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> * Rate limit ahelps (space-wizards#29219) * Make chat rate limits a general-purpose system. Intending to use this with ahelps next. * Rate limt ahelps Fixes space-wizards#28762 * Review comments * return empty string for invalid identity (space-wizards#29274) Co-authored-by: deltanedas <@deltanedas:kde.org> * Make Loadout MinLimit not count failed attempts (space-wizards#29264) Loadout MinLimit doesn't count failed attempts * Add logging to SharedStorageSystem prototype indexing failure (space-wizards#29273) * Fix null exceptions in SurveillanceCameraMonitorSystem (space-wizards#29275) * Add IsNullOrEmpty checks before indexing KnownSubnets * actor * Make stasis bed power toggleable (space-wizards#29268) Stasis bed is now power toggleable * Automatic changelog update * Replace BlockSolutionAccessComponent with an attempt event (space-wizards#26988) * BlockSolutionAccessComponent now only blocks one specified solution. * Significant overhaul Separated spilling when worn functionality into its own component/system. Removed BlockSolutionAccessComponent. Added an event for solution access. * fix initial infected icons and add a briefing to the character menu (space-wizards#29259) * Automatic changelog update * feat: update cyborg parts naming for them to be ordered consistently,… (space-wizards#29272) feat: update cyborg parts naming for them to be ordered consistently, closes space-wizards#29270 --------- Co-authored-by: Tayrtahn <tayrtahn@gmail.com> Co-authored-by: PJBot <pieterjan.briers+bot@gmail.com> Co-authored-by: Mr. 27 <45323883+Dutch-VanDerLinde@users.noreply.github.com> Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com> Co-authored-by: DrSmugleaf <10968691+DrSmugleaf@users.noreply.github.com> Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: lzk <124214523+lzk228@users.noreply.github.com> Co-authored-by: Errant <35878406+Errant-4@users.noreply.github.com> Co-authored-by: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Co-authored-by: IProduceWidgets <107586145+IProduceWidgets@users.noreply.github.com> Co-authored-by: osjarw <62134478+osjarw@users.noreply.github.com> Co-authored-by: Vasilis <vasilis@pikachu.systems> Co-authored-by: deltanedas <39013340+deltanedas@users.noreply.github.com> Co-authored-by: Rouge2t7 <81053047+Sarahon@users.noreply.github.com> Co-authored-by: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Co-authored-by: Flareguy <78941145+Flareguy@users.noreply.github.com> Co-authored-by: Ubaser <134914314+UbaserB@users.noreply.github.com> Co-authored-by: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Co-authored-by: HS <81934438+HolySSSS@users.noreply.github.com> Co-authored-by: Plykiya <58439124+Plykiya@users.noreply.github.com> Co-authored-by: plykiya <plykiya@protonmail.com> Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Co-authored-by: Truoizys <153248924+Truoizys@users.noreply.github.com> Co-authored-by: Арт <123451459+JustArt1m@users.noreply.github.com> Co-authored-by: TsjipTsjip <19798667+TsjipTsjip@users.noreply.github.com> Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com> Co-authored-by: Alice "Arimah" Heurlin <30327355+arimah@users.noreply.github.com> Co-authored-by: neutrino <67447925+neutrino-laser@users.noreply.github.com> Co-authored-by: Boaz1111 <149967078+Boaz1111@users.noreply.github.com> Co-authored-by: Redfire1331 <125223432+Redfire1331@users.noreply.github.com> Co-authored-by: redfire1331 <Redfire1331@users.noreply.github.com> Co-authored-by: MilenVolf <63782763+MilenVolf@users.noreply.github.com> Co-authored-by: Ghagliiarghii <68826635+Ghagliiarghii@users.noreply.github.com> Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Co-authored-by: Alex Pavlenko <diraven@users.noreply.github.com>
* Fix double label on chem jugs (space-wizards#29137) * Automatic changelog update * Fix DresserFilled storagefill rarely causing an error (space-wizards#29135) Add ClothingUniformJumpskirtColorPink to an OrGroup * Fix female reptilians not having gasp sounds (space-wizards#29143) inital * clean up weather systems (space-wizards#28792) * clean up weather systems * Update WeatherComponent.cs * Update SharedWeatherSystem.cs * some fix * Update SharedWeatherSystem.cs * Update WeatherComponent.cs * Update WeatherComponent.cs * revert autoPause * Update SharedWeatherSystem.cs * Implement vital chef's hat functionality (space-wizards#25950) * Implement crucial chef's hat functionality * Unified stopping code and added events. * Added documentation to events * Rerun tests * Made review changes, and fixed potential desync bug. * Update whitelist * Automatic changelog update * Add cvar to disable round end pvs overrides (space-wizards#29151) * Update submodule to 226.1.0 (space-wizards#29159) * Fix conveyor mispredicts (space-wizards#28157) * Fix conveyor mispredicts Instead of tracking active conveyors we instead track the conveyed entities. This also handles things like stacking conveyors more gracely. * Fix ActiveConveyor * Fix lerping * Automatic changelog update * Replace StationRandomTransform (space-wizards#29149) * Revert "Rotate and Offset station CCVar nuke (space-wizards#26175)" This reverts commit 44b20f6. # Conflicts: # Content.Server/Station/Systems/StationSystem.cs # Resources/Prototypes/Maps/europa.yml * Fix * Review * Add warning cones to engivend (space-wizards#29085) Add cones to engivend * Automatic changelog update * arachnid inventory layout fix (space-wizards#29165) arachnid inventory layout fixC * Automatic changelog update * Turn interaction related attempt events into structs (space-wizards#29168) * Turn InteractionAttemptEvent into a struct event * readonly * GettingInteractedWithAttemptEvent * ConsciousAttemptEvent * Add the most anticipated gun in the game. Foam Force. (space-wizards#29103) * Foam Force * make it available somewhere * add clumsyproof and nuke dev item * reorganize * oopsy files * Strap! * woopsie layering * fix grammar to rerun tests for rogue unrelated test fail. * cleanup * I eepy layer forgetti spaghetti * For real last necessary commit * Oops I broke the law! feexed * Decided to just change it to the same source as the poster source in our repo for consistency. * Automatic changelog update * Fix material storage going BRRT (space-wizards#29167) If the volume hits 0 we just remove it. * Automatic changelog update * Fix air alarms (space-wizards#29172) Broken by space-wizards#28272 * Automatic changelog update * Hidden loadout groups (space-wizards#29170) * loadout hiding * department of redundancy department * Upgrade rsi-diff's changed files action | Make it only return rsi and png changes (space-wizards#29185) It was brought up to me in space-wizards#29179 (comment) (and from a dm from them) that space bars can cause issues with the rsi bot. Upon investigation its case we use "space-delimited" on the "get changes files" check. Which returns ALL changed files. Even if the change has nothing to do with png's or rsi's (example a downstream merging upstream) * unhardcode thief MaxSelectedSets (space-wizards#29175) * unhardcode thief MaxSelectedSets * we do a little copy paste*
--------- Co-authored-by: deltanedas <@deltanedas:kde.org> * PullingController cooldown change (space-wizards#29177) * Revert "Automatic changelog update" This reverts commit 3358aef. * Revert "Revert "Automatic changelog update"" This reverts commit 3d0b6a7. * Removal of the throw cooldown as it felt sluggish and unresponsive before. * Decrease meteor frequency (space-wizards#29194) * Automatic changelog update * Security Resprite (space-wizards#29082) * security resprite * hos cap fix * i forgor * further fixes * my furniture is broken * fedora update * Automatic changelog update * Make Hamlet a valid chef's hat pilot (space-wizards#29191) * Fix Underwing wings (space-wizards#29092) * add * tweak thickness of stripe * Add some happier medibot messages! (space-wizards#29147) * Happy! * opps * one more * Automatic changelog update * shorten short raffle (space-wizards#28685) * Automatic changelog update * Fix some lathe recipe textures showing up blank (space-wizards#28683) * Update lathes to use entity prototype * ScrollContainer my hero * gets rid of excess newlines --------- Co-authored-by: plykiya <plykiya@protonmail.com> * Grammar fix to medibot! (space-wizards#29197) fixed * Restore default panic bunker and tweak baby jail (space-wizards#29198) restore default panic bunker * Fixed cartridges installing more than once (space-wizards#29187) * fixed cartridges installing more than once * replaced prototypes with CartridgeComponent * relocated checks from InstallProgram to InstallCartridge * Automatic changelog update * Musician's skirt (space-wizards#29203) * Sprites&Meta * Changing prototypes * Adding to Theater vend * Sprite_Change * Sprite_Change * Prototype_Changes Is this exactly how it should be?... * FUCKING FIX * weh --------- Co-authored-by: Арт <123451459+JustArt1m@users.noreply.github.com> * Automatic changelog update * hos cap resprite (space-wizards#29208) * hos cap resprite * 1. 2. 3 4 Oh * Automatic changelog update * Rejig device link sink & source startup & shutdown (space-wizards#29035) * Fix DeviceLinkSinkComponent not updating sources on shutdown * Log error * Misc link changes & fixes * Fix core * Add prediction for Tech Disks, cleanup (space-wizards#29061) * Add prediction for Tech Disks, cleanup * Remove IsServer check in OnMapInit * Use HashSet for techs, remove LINQ * Code cleanup: radio jammer (space-wizards#29052) * Code cleanup for radio jammer * More Entity<T> for the people, and fix an accidental variable reuse * Partial buckling refactor (space-wizards#29031) * partial buckling refactor * git mv test * change test namespace * git mv test * Update test namespace * Add pulling test * Network BuckleTime * Add two more tests * smelly * Fix documentation typo (space-wizards#29209) Fix everything. * Emergency toolbox fill rework (space-wizards#29202) * emergency toolbox fill rework * Fuck * Add wet floor sign & warning cone to autolathe (space-wizards#29205) * Add wet floor sign & warning cone to autolathe * removing * Automatic changelog update * Tools batch files (space-wizards#29179) * Tools batch files * fine * Fix terrible portable scrubber unlit layers (space-wizards#29232) Jesus fucking christ man * Prevent fly-by fixture from powering containment field generator (space-wizards#29225) * Prevent fly-by fixture from powering containment field generator * Update according to review * Automatic changelog update * Hide moth antenna and lizard frills with hardsuit helmets, fix lizard snouts not being hidden (space-wizards#29214) * inital * Update ClothingSystem.cs * Update helmets.yml * Automatic changelog update * Fix and enable TestEmptyLoadout (space-wizards#29228) * Fix and enabled TestEmptyLoadout * Fine, have a real name * Fix brokey code :) * Fix entities getting stuck red (space-wizards#28981) * Automatic changelog update * Update submodule to 226.2.0 (space-wizards#29247) * add a type specifier where one was forgor (space-wizards#29250) * add a type specifier where one was forgor * Fix other way because degub conditions * okay this feels kinda dumb but it does fix it. * Update Content.Client/Effects/ColorFlashEffectSystem.cs --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> * Make winter coat hood hide certain markings (space-wizards#29238) Update base_clothinghead.yml * Fix ERT becoming sleeper agents and add sleeper agent preferences (space-wizards#27817) * b * Update antags.ftl * m * ok * Update events.yml * antag * a * Create InitialInfectedExemptComponent.cs * Delete InitialInfectedExemptComponent.cs * yes * Delete InitialInfectedExemptComponent.cs * Create AntagImmuneComponent.cs * Automatic changelog update * fixed Syndicate smokes pack being half-filled (space-wizards#28371) * Automatic changelog update * Buff cube boxes (space-wizards#29251) * Automatic changelog update * moves explosive tech to T1 (space-wizards#29227) moves explo tech to T1 * Automatic changelog update * made cup ramen eatable with anything with the fork component (space-wizards#27826) * made cup ramen eatable with anything with the fork component * removed extra png * made cupramen fillable with water, and made hot ramen dry ramen. --------- Co-authored-by: redfire1331 <Redfire1331@users.noreply.github.com> * Automatic changelog update * Survival Box Loadouts, Nitrogen Emergency tanks (space-wizards#29131) * Nitrogen survival boxes * Zero-setup workaround * clown box * cleanup and universal tanks * cleanup * more cleanup * hide loadoutgroups * remaining survival boxes * space ninja * Revert "space ninja" This reverts commit a650f41. * weh * weh * undo appearance change of syndicate survival boxes * indentation fix and missing label * You can now pry multiple tiles at once (space-wizards#29231) * You can now pry multiple tiles at once * More advanced do after duplicate checking. Instead of just saying "lol tile prying can raise duplicates", we now have a system so tile prying can properly distinguish events on 2 different tiles. This is achieved with a virtual function on DoAfterEvent. * Automatic changelog update * Fix prying speed & log (space-wizards#29210) * cleanup prototypes with `PryingComponent` & fix jaws of life prying speed * Minor cleanup for tools and prying systems Remove some obsolete methods. * Fix doafter continues when not held & log * Modifiy delays for floor prying * Fix test fail * Automatic changelog update * golden plunger (space-wizards#29043) * golden plunger * Add wood material (the handle is still wood) * 52 hours --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> * Rate limit ahelps (space-wizards#29219) * Make chat rate limits a general-purpose system. Intending to use this with ahelps next. * Rate limt ahelps Fixes space-wizards#28762 * Review comments * return empty string for invalid identity (space-wizards#29274) Co-authored-by: deltanedas <@deltanedas:kde.org> * Make Loadout MinLimit not count failed attempts (space-wizards#29264) Loadout MinLimit doesn't count failed attempts * Add logging to SharedStorageSystem prototype indexing failure (space-wizards#29273) * Fix null exceptions in SurveillanceCameraMonitorSystem (space-wizards#29275) * Add IsNullOrEmpty checks before indexing KnownSubnets * actor * Make stasis bed power toggleable (space-wizards#29268) Stasis bed is now power toggleable * Automatic changelog update * Replace BlockSolutionAccessComponent with an attempt event (space-wizards#26988) * BlockSolutionAccessComponent now only blocks one specified solution. * Significant overhaul Separated spilling when worn functionality into its own component/system. Removed BlockSolutionAccessComponent. Added an event for solution access. * fix initial infected icons and add a briefing to the character menu (space-wizards#29259) * Automatic changelog update * feat: update cyborg parts naming for them to be ordered consistently,… (space-wizards#29272) feat: update cyborg parts naming for them to be ordered consistently, closes space-wizards#29270 * Ghostrole rule updates (space-wizards#29249) * First batch of ghostrole rule updates * Second pass * Re-word free agent * Apply review comments Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> * You heard it here first folks God rules are weird to write. Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> * Honkbot -> Free Agent Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> * Mimebot -> Free Agent Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> * Jonkbot -> Free Agent Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> * Softer blue --------- Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> * Automatic changelog update * Fix some buckle interactions (space-wizards#29293) * Automatic changelog update * Implement BlacklistedRange exempt flag (space-wizards#29258) * Implement a new kind of ip range ban that only applies to new players * Put determining whether a player record exists to its own function * Make BlacklistedRange bans get bypassed by any ban exemption * Stop trying to get another DbGuard while already having one This does break with convention on the functions in that area but considering the use of this function it's probably fine? I could alternatively just move the place it's called from. Also I was suppossed to wait for tests to finish locally just to be sure, but nah. I am pushing this now * Automatic changelog update * Add time index to connection log (space-wizards#29281) * Add time index to connection log Queries go nyoom. * Don't let me code shit at 5 AM * Fix SSD indicator for scaled humanoids (space-wizards#29310) Fix ssd * Automatic changelog update * Fix noticeboard drawdepth (space-wizards#29262) darwdepth added * Fix pistols not displaying ammo count in-hand (space-wizards#29289) * Make Drozd and C-20r not unwield on use * Fix wielding mispredict * add AmmoCounter to pistols * Rewrite the options menu (space-wizards#28389) * Basic attempt at rewriting how the options menu works, move accessibility settings into their own tab. * Audio tab uses the new options system. * Rewrite Misc tab * Clean up heading styling * Rewrite options tab and other minor cleanup all over the place. * Documentation comments and minor cleanup. --------- Co-authored-by: AJCM <AJCM@tutanota.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com> * Update submodule to 226.3.0 (space-wizards#29323) * AME Deconstruction Changes (space-wizards#29317) * AME deconstruction complexity * review --------- Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com> * Automatic changelog update * Move air sensor components into abstract base prototype (space-wizards#29261) * Pacifist messages use target's identity name instead of entity name (space-wizards#29325) * Fix comments (space-wizards#29330) * Fix for missing survival boxes (space-wizards#29336) storagefill order fix * Automatic changelog update --------- Co-authored-by: Tayrtahn <tayrtahn@gmail.com> Co-authored-by: PJBot <pieterjan.briers+bot@gmail.com> Co-authored-by: Mr. 27 <45323883+Dutch-VanDerLinde@users.noreply.github.com> Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com> Co-authored-by: DrSmugleaf <10968691+DrSmugleaf@users.noreply.github.com> Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: lzk <124214523+lzk228@users.noreply.github.com> Co-authored-by: Errant <35878406+Errant-4@users.noreply.github.com> Co-authored-by: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Co-authored-by: IProduceWidgets <107586145+IProduceWidgets@users.noreply.github.com> Co-authored-by: osjarw <62134478+osjarw@users.noreply.github.com> Co-authored-by: Vasilis <vasilis@pikachu.systems> Co-authored-by: deltanedas <39013340+deltanedas@users.noreply.github.com> Co-authored-by: Rouge2t7 <81053047+Sarahon@users.noreply.github.com> Co-authored-by: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Co-authored-by: Flareguy <78941145+Flareguy@users.noreply.github.com> Co-authored-by: Ubaser <134914314+UbaserB@users.noreply.github.com> Co-authored-by: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Co-authored-by: HS <81934438+HolySSSS@users.noreply.github.com> Co-authored-by: Plykiya <58439124+Plykiya@users.noreply.github.com> Co-authored-by: plykiya <plykiya@protonmail.com> Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Co-authored-by: Truoizys <153248924+Truoizys@users.noreply.github.com> Co-authored-by: Арт <123451459+JustArt1m@users.noreply.github.com> Co-authored-by: TsjipTsjip <19798667+TsjipTsjip@users.noreply.github.com> Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com> Co-authored-by: Alice "Arimah" Heurlin <30327355+arimah@users.noreply.github.com> Co-authored-by: neutrino <67447925+neutrino-laser@users.noreply.github.com> Co-authored-by: Boaz1111 <149967078+Boaz1111@users.noreply.github.com> Co-authored-by: Redfire1331 <125223432+Redfire1331@users.noreply.github.com> Co-authored-by: redfire1331 <Redfire1331@users.noreply.github.com> Co-authored-by: MilenVolf <63782763+MilenVolf@users.noreply.github.com> Co-authored-by: Ghagliiarghii <68826635+Ghagliiarghii@users.noreply.github.com> Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Co-authored-by: Alex Pavlenko <diraven@users.noreply.github.com> Co-authored-by: nikthechampiongr <32041239+nikthechampiongr@users.noreply.github.com> Co-authored-by: Alex Evgrashin <aevgrashin@yandex.ru> Co-authored-by: Ko4ergaPunk <62609550+Ko4ergaPunk@users.noreply.github.com> Co-authored-by: Doomsdrayk <robotdoughnut@comcast.net> Co-authored-by: AJCM <AJCM@tutanota.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com> Co-authored-by: Partmedia <kevinz5000@gmail.com> Co-authored-by: ArkiveDev <95712736+ArkiveDev@users.noreply.github.com>
* Fix double label on chem jugs (space-wizards#29137) * Automatic changelog update * Fix DresserFilled storagefill rarely causing an error (space-wizards#29135) Add ClothingUniformJumpskirtColorPink to an OrGroup * Fix female reptilians not having gasp sounds (space-wizards#29143) inital * clean up weather systems (space-wizards#28792) * clean up weather systems * Update WeatherComponent.cs * Update SharedWeatherSystem.cs * some fix * Update SharedWeatherSystem.cs * Update WeatherComponent.cs * Update WeatherComponent.cs * revert autoPause * Update SharedWeatherSystem.cs * Implement vital chef's hat functionality (space-wizards#25950) * Implement crucial chef's hat functionality * Unified stopping code and added events. * Added documentation to events * Rerun tests * Made review changes, and fixed potential desync bug. * Update whitelist * Automatic changelog update * Add cvar to disable round end pvs overrides (space-wizards#29151) * Update submodule to 226.1.0 (space-wizards#29159) * Fix conveyor mispredicts (space-wizards#28157) * Fix conveyor mispredicts Instead of tracking active conveyors we instead track the conveyed entities. This also handles things like stacking conveyors more gracely. * Fix ActiveConveyor * Fix lerping * Automatic changelog update * Replace StationRandomTransform (space-wizards#29149) * Revert "Rotate and Offset station CCVar nuke (space-wizards#26175)" This reverts commit 44b20f6. # Conflicts: # Content.Server/Station/Systems/StationSystem.cs # Resources/Prototypes/Maps/europa.yml * Fix * Review * Add warning cones to engivend (space-wizards#29085) Add cones to engivend * Automatic changelog update * arachnid inventory layout fix (space-wizards#29165) arachnid inventory layout fixC * Automatic changelog update * Turn interaction related attempt events into structs (space-wizards#29168) * Turn InteractionAttemptEvent into a struct event * readonly * GettingInteractedWithAttemptEvent * ConsciousAttemptEvent * Add the most anticipated gun in the game. Foam Force. (space-wizards#29103) * Foam Force * make it available somewhere * add clumsyproof and nuke dev item * reorganize * oopsy files * Strap! * woopsie layering * fix grammar to rerun tests for rogue unrelated test fail. * cleanup * I eepy layer forgetti spaghetti * For real last necessary commit * Oops I broke the law! feexed * Decided to just change it to the same source as the poster source in our repo for consistency. * Automatic changelog update * Fix material storage going BRRT (space-wizards#29167) If the volume hits 0 we just remove it. * Automatic changelog update * Fix air alarms (space-wizards#29172) Broken by space-wizards#28272 * Automatic changelog update * Hidden loadout groups (space-wizards#29170) * loadout hiding * department of redundancy department * Upgrade rsi-diff's changed files action | Make it only return rsi and png changes (space-wizards#29185) It was brought up to me in space-wizards#29179 (comment) (and from a dm from them) that space bars can cause issues with the rsi bot. Upon investigation its case we use "space-delimited" on the "get changes files" check. Which returns ALL changed files. Even if the change has nothing to do with png's or rsi's (example a downstream merging upstream) * unhardcode thief MaxSelectedSets (space-wizards#29175) * unhardcode thief MaxSelectedSets * we do a little copy paste*
--------- Co-authored-by: deltanedas <@deltanedas:kde.org> * PullingController cooldown change (space-wizards#29177) * Revert "Automatic changelog update" This reverts commit 3358aef. * Revert "Revert "Automatic changelog update"" This reverts commit 3d0b6a7. * Removal of the throw cooldown as it felt sluggish and unresponsive before. * Decrease meteor frequency (space-wizards#29194) * Automatic changelog update * Security Resprite (space-wizards#29082) * security resprite * hos cap fix * i forgor * further fixes * my furniture is broken * fedora update * Automatic changelog update * Make Hamlet a valid chef's hat pilot (space-wizards#29191) * Fix Underwing wings (space-wizards#29092) * add * tweak thickness of stripe * Add some happier medibot messages! (space-wizards#29147) * Happy! * opps * one more * Automatic changelog update * shorten short raffle (space-wizards#28685) * Automatic changelog update * Fix some lathe recipe textures showing up blank (space-wizards#28683) * Update lathes to use entity prototype * ScrollContainer my hero * gets rid of excess newlines --------- Co-authored-by: plykiya <plykiya@protonmail.com> * Grammar fix to medibot! (space-wizards#29197) fixed * Restore default panic bunker and tweak baby jail (space-wizards#29198) restore default panic bunker * Fixed cartridges installing more than once (space-wizards#29187) * fixed cartridges installing more than once * replaced prototypes with CartridgeComponent * relocated checks from InstallProgram to InstallCartridge * Automatic changelog update * Musician's skirt (space-wizards#29203) * Sprites&Meta * Changing prototypes * Adding to Theater vend * Sprite_Change * Sprite_Change * Prototype_Changes Is this exactly how it should be?... * FUCKING FIX * weh --------- Co-authored-by: Арт <123451459+JustArt1m@users.noreply.github.com> * Automatic changelog update * hos cap resprite (space-wizards#29208) * hos cap resprite * 1. 2. 3 4 Oh * Automatic changelog update * Rejig device link sink & source startup & shutdown (space-wizards#29035) * Fix DeviceLinkSinkComponent not updating sources on shutdown * Log error * Misc link changes & fixes * Fix core * Add prediction for Tech Disks, cleanup (space-wizards#29061) * Add prediction for Tech Disks, cleanup * Remove IsServer check in OnMapInit * Use HashSet for techs, remove LINQ * Code cleanup: radio jammer (space-wizards#29052) * Code cleanup for radio jammer * More Entity<T> for the people, and fix an accidental variable reuse * Partial buckling refactor (space-wizards#29031) * partial buckling refactor * git mv test * change test namespace * git mv test * Update test namespace * Add pulling test * Network BuckleTime * Add two more tests * smelly * Fix documentation typo (space-wizards#29209) Fix everything. * Emergency toolbox fill rework (space-wizards#29202) * emergency toolbox fill rework * Fuck * Add wet floor sign & warning cone to autolathe (space-wizards#29205) * Add wet floor sign & warning cone to autolathe * removing * Automatic changelog update * Tools batch files (space-wizards#29179) * Tools batch files * fine * Fix terrible portable scrubber unlit layers (space-wizards#29232) Jesus fucking christ man * Prevent fly-by fixture from powering containment field generator (space-wizards#29225) * Prevent fly-by fixture from powering containment field generator * Update according to review * Automatic changelog update * Hide moth antenna and lizard frills with hardsuit helmets, fix lizard snouts not being hidden (space-wizards#29214) * inital * Update ClothingSystem.cs * Update helmets.yml * Automatic changelog update * Fix and enable TestEmptyLoadout (space-wizards#29228) * Fix and enabled TestEmptyLoadout * Fine, have a real name * Fix brokey code :) * Fix entities getting stuck red (space-wizards#28981) * Automatic changelog update * Update submodule to 226.2.0 (space-wizards#29247) * add a type specifier where one was forgor (space-wizards#29250) * add a type specifier where one was forgor * Fix other way because degub conditions * okay this feels kinda dumb but it does fix it. * Update Content.Client/Effects/ColorFlashEffectSystem.cs --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> * Make winter coat hood hide certain markings (space-wizards#29238) Update base_clothinghead.yml * Fix ERT becoming sleeper agents and add sleeper agent preferences (space-wizards#27817) * b * Update antags.ftl * m * ok * Update events.yml * antag * a * Create InitialInfectedExemptComponent.cs * Delete InitialInfectedExemptComponent.cs * yes * Delete InitialInfectedExemptComponent.cs * Create AntagImmuneComponent.cs * Automatic changelog update * fixed Syndicate smokes pack being half-filled (space-wizards#28371) * Automatic changelog update * Buff cube boxes (space-wizards#29251) * Automatic changelog update * moves explosive tech to T1 (space-wizards#29227) moves explo tech to T1 * Automatic changelog update * made cup ramen eatable with anything with the fork component (space-wizards#27826) * made cup ramen eatable with anything with the fork component * removed extra png * made cupramen fillable with water, and made hot ramen dry ramen. --------- Co-authored-by: redfire1331 <Redfire1331@users.noreply.github.com> * Automatic changelog update * Survival Box Loadouts, Nitrogen Emergency tanks (space-wizards#29131) * Nitrogen survival boxes * Zero-setup workaround * clown box * cleanup and universal tanks * cleanup * more cleanup * hide loadoutgroups * remaining survival boxes * space ninja * Revert "space ninja" This reverts commit a650f41. * weh * weh * undo appearance change of syndicate survival boxes * indentation fix and missing label * You can now pry multiple tiles at once (space-wizards#29231) * You can now pry multiple tiles at once * More advanced do after duplicate checking. Instead of just saying "lol tile prying can raise duplicates", we now have a system so tile prying can properly distinguish events on 2 different tiles. This is achieved with a virtual function on DoAfterEvent. * Automatic changelog update * Fix prying speed & log (space-wizards#29210) * cleanup prototypes with `PryingComponent` & fix jaws of life prying speed * Minor cleanup for tools and prying systems Remove some obsolete methods. * Fix doafter continues when not held & log * Modifiy delays for floor prying * Fix test fail * Automatic changelog update * golden plunger (space-wizards#29043) * golden plunger * Add wood material (the handle is still wood) * 52 hours --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> * Rate limit ahelps (space-wizards#29219) * Make chat rate limits a general-purpose system. Intending to use this with ahelps next. * Rate limt ahelps Fixes space-wizards#28762 * Review comments * return empty string for invalid identity (space-wizards#29274) Co-authored-by: deltanedas <@deltanedas:kde.org> * Make Loadout MinLimit not count failed attempts (space-wizards#29264) Loadout MinLimit doesn't count failed attempts * Add logging to SharedStorageSystem prototype indexing failure (space-wizards#29273) * Fix null exceptions in SurveillanceCameraMonitorSystem (space-wizards#29275) * Add IsNullOrEmpty checks before indexing KnownSubnets * actor * Make stasis bed power toggleable (space-wizards#29268) Stasis bed is now power toggleable * Automatic changelog update * Replace BlockSolutionAccessComponent with an attempt event (space-wizards#26988) * BlockSolutionAccessComponent now only blocks one specified solution. * Significant overhaul Separated spilling when worn functionality into its own component/system. Removed BlockSolutionAccessComponent. Added an event for solution access. * fix initial infected icons and add a briefing to the character menu (space-wizards#29259) * Automatic changelog update * feat: update cyborg parts naming for them to be ordered consistently,… (space-wizards#29272) feat: update cyborg parts naming for them to be ordered consistently, closes space-wizards#29270 * Ghostrole rule updates (space-wizards#29249) * First batch of ghostrole rule updates * Second pass * Re-word free agent * Apply review comments Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> * You heard it here first folks God rules are weird to write. Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> * Honkbot -> Free Agent Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> * Mimebot -> Free Agent Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> * Jonkbot -> Free Agent Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> * Softer blue --------- Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> * Automatic changelog update * Fix some buckle interactions (space-wizards#29293) * Automatic changelog update * Implement BlacklistedRange exempt flag (space-wizards#29258) * Implement a new kind of ip range ban that only applies to new players * Put determining whether a player record exists to its own function * Make BlacklistedRange bans get bypassed by any ban exemption * Stop trying to get another DbGuard while already having one This does break with convention on the functions in that area but considering the use of this function it's probably fine? I could alternatively just move the place it's called from. Also I was suppossed to wait for tests to finish locally just to be sure, but nah. I am pushing this now * Automatic changelog update * Add time index to connection log (space-wizards#29281) * Add time index to connection log Queries go nyoom. * Don't let me code shit at 5 AM * Fix SSD indicator for scaled humanoids (space-wizards#29310) Fix ssd * Automatic changelog update * Fix noticeboard drawdepth (space-wizards#29262) darwdepth added * Fix pistols not displaying ammo count in-hand (space-wizards#29289) * Make Drozd and C-20r not unwield on use * Fix wielding mispredict * add AmmoCounter to pistols * Rewrite the options menu (space-wizards#28389) * Basic attempt at rewriting how the options menu works, move accessibility settings into their own tab. * Audio tab uses the new options system. * Rewrite Misc tab * Clean up heading styling * Rewrite options tab and other minor cleanup all over the place. * Documentation comments and minor cleanup. --------- Co-authored-by: AJCM <AJCM@tutanota.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com> * Update submodule to 226.3.0 (space-wizards#29323) * AME Deconstruction Changes (space-wizards#29317) * AME deconstruction complexity * review --------- Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com> * Automatic changelog update * Move air sensor components into abstract base prototype (space-wizards#29261) * Pacifist messages use target's identity name instead of entity name (space-wizards#29325) * Fix comments (space-wizards#29330) * Fix for missing survival boxes (space-wizards#29336) storagefill order fix * Automatic changelog update * Admin UI localization (space-wizards#29340) admin ui localization Co-authored-by: MetalSage <metalsage.official@gmail.com> * Disk """resprite""" (space-wizards#29277) * disk ""resprite"" * fix holodisk * Sound Station 14 like a nukie song (space-wizards#29345) Nukie song!! * Automatic changelog update * add access reader log wire (space-wizards#29094) * add LoggingDisabled to AccessReader * add LogWireAction * -m give everything besides high-security door a log wire * make LogAccess public and support string arg * add log when pulsing * m * l --------- Co-authored-by: deltanedas <@deltanedas:kde.org> * Automatic changelog update * Adjust some gas thresholds (space-wizards#29331) * Add air alarm hysteresis (space-wizards#29223) Add firelock hysteresis * Automatic changelog update * Thief toolbox minor rebalance & description clean-up (space-wizards#27771) * thief clean-up * anatomy set description change * description changes * Automatic changelog update * Prying reinforced tile now will give you back metal rod (space-wizards#29084) * Reinforced tile can we welded back into metal rod * more changes * weh * fix --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> * Automatic changelog update * Firelocks are no longer pryable by hand if they are powered (space-wizards#29221) * Automatic changelog update * Don't add untriage lable if it has been labeled at issue creation (space-wizards#29356) * Remove robotics and supermatter lobby images (space-wizards#29355) They don't look good, we have way better ones now. * add lemon juice and fix bad sprite allocation (space-wizards#27465) * Automatic changelog update * Add the ability to put hats on medibots (space-wizards#28584) * Automatic changelog update * Update Credits (space-wizards#29363) Co-authored-by: PJBot <pieterjan.briers+bot@gmail.com> * TEG can power itself when turned on (space-wizards#29072) * Automatic changelog update * Revert "Weapon Reflection Movement Mechanic (space-wizards#27219)" (space-wizards#29326) * Revert "Weapon Reflection Movement Mechanic (space-wizards#27219)" This reverts commit b903733. # Conflicts: # Content.Shared/Alert/AlertType.cs # Content.Shared/Weapons/Reflect/ReflectSystem.cs * Add myself to codeowners * Add myself to codeowners * Also the alerts * Apply RoleLoadout MinLimit fix to EnsureValid too (space-wizards#29358) Apply MinLimit fix to EnsureValid too * swap siren (space-wizards#29369) * fix(packed): Fill the medical lockers in medbay (space-wizards#29319) * fix(omega): Connect the disposal unit in medbay to the disposal "network" (space-wizards#29305) fix(omega): Connect the disposal unit in medbay to the disposal pipe system * tweak(saltern): Place a red phone in bridge meeting room, add another artifact spawn (space-wizards#29359) * tweak(saltern): Place a red phone in bridge meeting room * add artifact spawn * tweat(emergency_delta): Add screens around the evacuation shuttle (space-wizards#29267) * tweak(emergency_box): Swap out Salvage Material crate with Engineering crate (space-wizards#29269) * tweak(fland): Add radiation shutters to front of PA (space-wizards#29265) * tweak(meta): Swap around some of the computers in bridge (space-wizards#29263) * tweak(meta): Swap around some of the computers in bridge * tweak(meta): unpause map * tweak(marathon): Fix some stuff (space-wizards#29256) * tweak(marathon): Add cargo request computer to bridge * fix everything else * fix(origin): Replace mindshield crate with implanter crate (space-wizards#29183) * fix(cluster): Replace mindshield crate with implanter crate (space-wizards#29182) * fix(oasis): Replace mindshield crate with implanter crate (space-wizards#29181) * tweak(medical): Reduce chemist slots (space-wizards#28711) * tweak(medical): Reduce chemist slots * tweak(medical): roundstart chemists slot set to 2 on some maps * tweak(fland): Chemist slots to 3 fland is target to 80-100 players * fix: Adds a missing defribilator to nukie planet (space-wizards#28362) * fix: Adds a missing defribilator to nukie planet * Fix: unpause nukie map * What changes? * fix(atlas): Replace mindshield crate with implanter crate (space-wizards#29184) * Survival box loadout group cleanup (space-wizards#29379) cleanup * Add "Structure" tag to switches, buttons, and levers (space-wizards#29378) Co-authored-by: Eoin Mcloughlin <helloworld@eoinrul.es> * Automatic changelog update * ironrock ores (space-wizards#29381) * Ban template system (space-wizards#29365) To help out admins, so they can easily fill out datacenter bans and stuff. Supports ban exemption flags and everything. This is for use with SS14.Admin so it's just DB models here. * ContainmentFieldComponent's garbage destruction can now be disabled (space-wizards#29376) * Garbage Vaporizer 3000 + DestroyGarbage bool property + DestroyGarbage property check when dealing with incoming trash * Update ContainmentFieldComponent.cs Co-authored-by: Tayrtahn <tayrtahn@gmail.com> --------- Co-authored-by: Tayrtahn <tayrtahn@gmail.com> * Fix unlabeled jugs in ChemVend (space-wizards#29178) * Spawn dummy entities on client for vending machine UI * Asked sloth, and we kinda need this pr --------- Co-authored-by: Vasilis <vasilis@pikachu.systems> * Automatic changelog update * Add bagels (space-wizards#24799) Bagels are made by using a rolling pin on a dough slice to make a dough rope, then cooking the dough rope in a microwave for 5 seconds. There are two types: a normal bagel and a poppyseed bagel. The poppyseed bagel requires a poppy and a dough rope and has a small (5u) quantity of Bicaridine inside of it in addition to its nutriment. Co-authored-by: Kevin Zheng <kevinz5000@gmail.com> * Automatic changelog update * Fix cargo and salvage's computer point light (space-wizards#29384) * Network BaseEmitSoundComponent (space-wizards#29400) * Network BaseEmitSoundComponent * high intelligence * Force map confirmation (space-wizards#29391) * Add map check to forcemap command * remove debug line * remove accidental newline * Ghosts can now always see examine details (space-wizards#29404) * Ghosts can now always see examine details This means they bypass range and occlusion checks for getting extra detail, like the charge on an SMES. * EntityQuery * Automatic changelog update * Hotfix examine (space-wizards#29408) #55328 was failing tests and shouldn't have been merged, it broke examine. The problem is that for some reason, client-side examine system doesn't call base Initialize. So my entity query change (that I did not test) broke. By the way, this same "not calling base" meant that group examine system wasn't predicting properly when it totally could've. Incredible. * Fix gay nuke layering (space-wizards#29410) I fucked up while exporting from aseprite whoops. * Use moderator perms for grant_connect_bypass (space-wizards#29406) use moderator perms for grant_connect_bypass * Automatic changelog update * hardsuit fireproof nerf (space-wizards#29416) hardsuit nerf * Automatic changelog update * Fix forcemap not bypassing requirements (space-wizards#29426) * Fix forcemap not bypassing requirements * Add integration test for forcemap * Colorblind friendly thermomachine LED colors (space-wizards#29397) Colorblind friendly thermomachines * Automatic changelog update * Revert "TEG can power itself when turned on" (space-wizards#29434) Revert "TEG can power itself when turned on (space-wizards#29072)" This reverts commit 9f9cf08. * Fix filter yml names in the lobby so they actually work (space-wizards#29435) Fix filter yml names so they actually work * Attempt to fix random test fail by undeleted AlertControl._spriteViewEntity (space-wizards#29424) * Increase of riot shield durability (space-wizards#29239) * Automatic changelog update * Revert Fland * Revert fland, again * god is good --------- Co-authored-by: Tayrtahn <tayrtahn@gmail.com> Co-authored-by: PJBot <pieterjan.briers+bot@gmail.com> Co-authored-by: Mr. 27 <45323883+Dutch-VanDerLinde@users.noreply.github.com> Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com> Co-authored-by: DrSmugleaf <10968691+DrSmugleaf@users.noreply.github.com> Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: lzk <124214523+lzk228@users.noreply.github.com> Co-authored-by: Errant <35878406+Errant-4@users.noreply.github.com> Co-authored-by: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Co-authored-by: IProduceWidgets <107586145+IProduceWidgets@users.noreply.github.com> Co-authored-by: osjarw <62134478+osjarw@users.noreply.github.com> Co-authored-by: Vasilis <vasilis@pikachu.systems> Co-authored-by: deltanedas <39013340+deltanedas@users.noreply.github.com> Co-authored-by: Rouge2t7 <81053047+Sarahon@users.noreply.github.com> Co-authored-by: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Co-authored-by: Flareguy <78941145+Flareguy@users.noreply.github.com> Co-authored-by: Ubaser <134914314+UbaserB@users.noreply.github.com> Co-authored-by: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Co-authored-by: HS <81934438+HolySSSS@users.noreply.github.com> Co-authored-by: Plykiya <58439124+Plykiya@users.noreply.github.com> Co-authored-by: plykiya <plykiya@protonmail.com> Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Co-authored-by: Truoizys <153248924+Truoizys@users.noreply.github.com> Co-authored-by: Арт <123451459+JustArt1m@users.noreply.github.com> Co-authored-by: TsjipTsjip <19798667+TsjipTsjip@users.noreply.github.com> Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com> Co-authored-by: Alice "Arimah" Heurlin <30327355+arimah@users.noreply.github.com> Co-authored-by: neutrino <67447925+neutrino-laser@users.noreply.github.com> Co-authored-by: Boaz1111 <149967078+Boaz1111@users.noreply.github.com> Co-authored-by: Redfire1331 <125223432+Redfire1331@users.noreply.github.com> Co-authored-by: redfire1331 <Redfire1331@users.noreply.github.com> Co-authored-by: MilenVolf <63782763+MilenVolf@users.noreply.github.com> Co-authored-by: Ghagliiarghii <68826635+Ghagliiarghii@users.noreply.github.com> Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Co-authored-by: Alex Pavlenko <diraven@users.noreply.github.com> Co-authored-by: nikthechampiongr <32041239+nikthechampiongr@users.noreply.github.com> Co-authored-by: Alex Evgrashin <aevgrashin@yandex.ru> Co-authored-by: Ko4ergaPunk <62609550+Ko4ergaPunk@users.noreply.github.com> Co-authored-by: Doomsdrayk <robotdoughnut@comcast.net> Co-authored-by: AJCM <AJCM@tutanota.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com> Co-authored-by: Partmedia <kevinz5000@gmail.com> Co-authored-by: ArkiveDev <95712736+ArkiveDev@users.noreply.github.com> Co-authored-by: MetalSage <74924875+MetalSage@users.noreply.github.com> Co-authored-by: MetalSage <metalsage.official@gmail.com> Co-authored-by: marbow <152051971+marboww@users.noreply.github.com> Co-authored-by: K-Dynamic <20566341+K-Dynamic@users.noreply.github.com> Co-authored-by: Floofi <126319569+Shadowtheprotogen546@users.noreply.github.com> Co-authored-by: Cojoke <83733158+Cojoke-dot@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: WarMechanic <69510347+WarMechanic@users.noreply.github.com> Co-authored-by: Brandon Hu <103440971+Brandon-Huu@users.noreply.github.com> Co-authored-by: eoineoineoin <github@eoinrul.es> Co-authored-by: Eoin Mcloughlin <helloworld@eoinrul.es> Co-authored-by: mhamster <81412348+mhamsterr@users.noreply.github.com> Co-authored-by: DrEnzyme <DrEnzyme@gmail.com> Co-authored-by: MureixloI <132683811+MureixloI@users.noreply.github.com> Co-authored-by: Emisse <99158783+Emisse@users.noreply.github.com> Co-authored-by: deathride58 <deathride58@users.noreply.github.com> Co-authored-by: Elysium206 <151651971+Elysium206@users.noreply.github.com>
* Fix double label on chem jugs (space-wizards#29137) * Automatic changelog update * Fix DresserFilled storagefill rarely causing an error (space-wizards#29135) Add ClothingUniformJumpskirtColorPink to an OrGroup * Fix female reptilians not having gasp sounds (space-wizards#29143) inital * clean up weather systems (space-wizards#28792) * clean up weather systems * Update WeatherComponent.cs * Update SharedWeatherSystem.cs * some fix * Update SharedWeatherSystem.cs * Update WeatherComponent.cs * Update WeatherComponent.cs * revert autoPause * Update SharedWeatherSystem.cs * Implement vital chef's hat functionality (space-wizards#25950) * Implement crucial chef's hat functionality * Unified stopping code and added events. * Added documentation to events * Rerun tests * Made review changes, and fixed potential desync bug. * Update whitelist * Automatic changelog update * Add cvar to disable round end pvs overrides (space-wizards#29151) * Update submodule to 226.1.0 (space-wizards#29159) * Fix conveyor mispredicts (space-wizards#28157) * Fix conveyor mispredicts Instead of tracking active conveyors we instead track the conveyed entities. This also handles things like stacking conveyors more gracely. * Fix ActiveConveyor * Fix lerping * Automatic changelog update * Replace StationRandomTransform (space-wizards#29149) * Revert "Rotate and Offset station CCVar nuke (space-wizards#26175)" This reverts commit 44b20f6. # Conflicts: # Content.Server/Station/Systems/StationSystem.cs # Resources/Prototypes/Maps/europa.yml * Fix * Review * Add warning cones to engivend (space-wizards#29085) Add cones to engivend * Automatic changelog update * arachnid inventory layout fix (space-wizards#29165) arachnid inventory layout fixC * Automatic changelog update * Turn interaction related attempt events into structs (space-wizards#29168) * Turn InteractionAttemptEvent into a struct event * readonly * GettingInteractedWithAttemptEvent * ConsciousAttemptEvent * Add the most anticipated gun in the game. Foam Force. (space-wizards#29103) * Foam Force * make it available somewhere * add clumsyproof and nuke dev item * reorganize * oopsy files * Strap! * woopsie layering * fix grammar to rerun tests for rogue unrelated test fail. * cleanup * I eepy layer forgetti spaghetti * For real last necessary commit * Oops I broke the law! feexed * Decided to just change it to the same source as the poster source in our repo for consistency. * Automatic changelog update * Fix material storage going BRRT (space-wizards#29167) If the volume hits 0 we just remove it. * Automatic changelog update * Fix air alarms (space-wizards#29172) Broken by space-wizards#28272 * Automatic changelog update * Hidden loadout groups (space-wizards#29170) * loadout hiding * department of redundancy department * Upgrade rsi-diff's changed files action | Make it only return rsi and png changes (space-wizards#29185) It was brought up to me in space-wizards#29179 (comment) (and from a dm from them) that space bars can cause issues with the rsi bot. Upon investigation its case we use "space-delimited" on the "get changes files" check. Which returns ALL changed files. Even if the change has nothing to do with png's or rsi's (example a downstream merging upstream) * unhardcode thief MaxSelectedSets (space-wizards#29175) * unhardcode thief MaxSelectedSets * we do a little copy paste*
--------- Co-authored-by: deltanedas <@deltanedas:kde.org> * PullingController cooldown change (space-wizards#29177) * Revert "Automatic changelog update" This reverts commit 3358aef. * Revert "Revert "Automatic changelog update"" This reverts commit 3d0b6a7. * Removal of the throw cooldown as it felt sluggish and unresponsive before. * Decrease meteor frequency (space-wizards#29194) * Automatic changelog update * Security Resprite (space-wizards#29082) * security resprite * hos cap fix * i forgor * further fixes * my furniture is broken * fedora update * Automatic changelog update * Make Hamlet a valid chef's hat pilot (space-wizards#29191) * Fix Underwing wings (space-wizards#29092) * add * tweak thickness of stripe * Add some happier medibot messages! (space-wizards#29147) * Happy! * opps * one more * Automatic changelog update * shorten short raffle (space-wizards#28685) * Automatic changelog update * Fix some lathe recipe textures showing up blank (space-wizards#28683) * Update lathes to use entity prototype * ScrollContainer my hero * gets rid of excess newlines --------- Co-authored-by: plykiya <plykiya@protonmail.com> * Grammar fix to medibot! (space-wizards#29197) fixed * Restore default panic bunker and tweak baby jail (space-wizards#29198) restore default panic bunker * Fixed cartridges installing more than once (space-wizards#29187) * fixed cartridges installing more than once * replaced prototypes with CartridgeComponent * relocated checks from InstallProgram to InstallCartridge * Automatic changelog update * Musician's skirt (space-wizards#29203) * Sprites&Meta * Changing prototypes * Adding to Theater vend * Sprite_Change * Sprite_Change * Prototype_Changes Is this exactly how it should be?... * FUCKING FIX * weh --------- Co-authored-by: Арт <123451459+JustArt1m@users.noreply.github.com> * Automatic changelog update * hos cap resprite (space-wizards#29208) * hos cap resprite * 1. 2. 3 4 Oh * Automatic changelog update * Rejig device link sink & source startup & shutdown (space-wizards#29035) * Fix DeviceLinkSinkComponent not updating sources on shutdown * Log error * Misc link changes & fixes * Fix core * Add prediction for Tech Disks, cleanup (space-wizards#29061) * Add prediction for Tech Disks, cleanup * Remove IsServer check in OnMapInit * Use HashSet for techs, remove LINQ * Code cleanup: radio jammer (space-wizards#29052) * Code cleanup for radio jammer * More Entity<T> for the people, and fix an accidental variable reuse * Partial buckling refactor (space-wizards#29031) * partial buckling refactor * git mv test * change test namespace * git mv test * Update test namespace * Add pulling test * Network BuckleTime * Add two more tests * smelly * Fix documentation typo (space-wizards#29209) Fix everything. * Emergency toolbox fill rework (space-wizards#29202) * emergency toolbox fill rework * Fuck * Add wet floor sign & warning cone to autolathe (space-wizards#29205) * Add wet floor sign & warning cone to autolathe * removing * Automatic changelog update * Tools batch files (space-wizards#29179) * Tools batch files * fine * Fix terrible portable scrubber unlit layers (space-wizards#29232) Jesus fucking christ man * Prevent fly-by fixture from powering containment field generator (space-wizards#29225) * Prevent fly-by fixture from powering containment field generator * Update according to review * Automatic changelog update * Hide moth antenna and lizard frills with hardsuit helmets, fix lizard snouts not being hidden (space-wizards#29214) * inital * Update ClothingSystem.cs * Update helmets.yml * Automatic changelog update * Fix and enable TestEmptyLoadout (space-wizards#29228) * Fix and enabled TestEmptyLoadout * Fine, have a real name * Fix brokey code :) * Fix entities getting stuck red (space-wizards#28981) * Automatic changelog update * Update submodule to 226.2.0 (space-wizards#29247) * add a type specifier where one was forgor (space-wizards#29250) * add a type specifier where one was forgor * Fix other way because degub conditions * okay this feels kinda dumb but it does fix it. * Update Content.Client/Effects/ColorFlashEffectSystem.cs --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> * Make winter coat hood hide certain markings (space-wizards#29238) Update base_clothinghead.yml * Fix ERT becoming sleeper agents and add sleeper agent preferences (space-wizards#27817) * b * Update antags.ftl * m * ok * Update events.yml * antag * a * Create InitialInfectedExemptComponent.cs * Delete InitialInfectedExemptComponent.cs * yes * Delete InitialInfectedExemptComponent.cs * Create AntagImmuneComponent.cs * Automatic changelog update * fixed Syndicate smokes pack being half-filled (space-wizards#28371) * Automatic changelog update * Buff cube boxes (space-wizards#29251) * Automatic changelog update * moves explosive tech to T1 (space-wizards#29227) moves explo tech to T1 * Automatic changelog update * made cup ramen eatable with anything with the fork component (space-wizards#27826) * made cup ramen eatable with anything with the fork component * removed extra png * made cupramen fillable with water, and made hot ramen dry ramen. --------- Co-authored-by: redfire1331 <Redfire1331@users.noreply.github.com> * Automatic changelog update * Survival Box Loadouts, Nitrogen Emergency tanks (space-wizards#29131) * Nitrogen survival boxes * Zero-setup workaround * clown box * cleanup and universal tanks * cleanup * more cleanup * hide loadoutgroups * remaining survival boxes * space ninja * Revert "space ninja" This reverts commit a650f41. * weh * weh * undo appearance change of syndicate survival boxes * indentation fix and missing label * You can now pry multiple tiles at once (space-wizards#29231) * You can now pry multiple tiles at once * More advanced do after duplicate checking. Instead of just saying "lol tile prying can raise duplicates", we now have a system so tile prying can properly distinguish events on 2 different tiles. This is achieved with a virtual function on DoAfterEvent. * Automatic changelog update * Fix prying speed & log (space-wizards#29210) * cleanup prototypes with `PryingComponent` & fix jaws of life prying speed * Minor cleanup for tools and prying systems Remove some obsolete methods. * Fix doafter continues when not held & log * Modifiy delays for floor prying * Fix test fail * Automatic changelog update * golden plunger (space-wizards#29043) * golden plunger * Add wood material (the handle is still wood) * 52 hours --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> * Rate limit ahelps (space-wizards#29219) * Make chat rate limits a general-purpose system. Intending to use this with ahelps next. * Rate limt ahelps Fixes space-wizards#28762 * Review comments * return empty string for invalid identity (space-wizards#29274) Co-authored-by: deltanedas <@deltanedas:kde.org> * Make Loadout MinLimit not count failed attempts (space-wizards#29264) Loadout MinLimit doesn't count failed attempts * Add logging to SharedStorageSystem prototype indexing failure (space-wizards#29273) * Fix null exceptions in SurveillanceCameraMonitorSystem (space-wizards#29275) * Add IsNullOrEmpty checks before indexing KnownSubnets * actor * Make stasis bed power toggleable (space-wizards#29268) Stasis bed is now power toggleable * Automatic changelog update * Replace BlockSolutionAccessComponent with an attempt event (space-wizards#26988) * BlockSolutionAccessComponent now only blocks one specified solution. * Significant overhaul Separated spilling when worn functionality into its own component/system. Removed BlockSolutionAccessComponent. Added an event for solution access. * fix initial infected icons and add a briefing to the character menu (space-wizards#29259) * Automatic changelog update * feat: update cyborg parts naming for them to be ordered consistently,… (space-wizards#29272) feat: update cyborg parts naming for them to be ordered consistently, closes space-wizards#29270 * Ghostrole rule updates (space-wizards#29249) * First batch of ghostrole rule updates * Second pass * Re-word free agent * Apply review comments Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> * You heard it here first folks God rules are weird to write. Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> * Honkbot -> Free Agent Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> * Mimebot -> Free Agent Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> * Jonkbot -> Free Agent Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> * Softer blue --------- Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> * Automatic changelog update * Fix some buckle interactions (space-wizards#29293) * Automatic changelog update * Implement BlacklistedRange exempt flag (space-wizards#29258) * Implement a new kind of ip range ban that only applies to new players * Put determining whether a player record exists to its own function * Make BlacklistedRange bans get bypassed by any ban exemption * Stop trying to get another DbGuard while already having one This does break with convention on the functions in that area but considering the use of this function it's probably fine? I could alternatively just move the place it's called from. Also I was suppossed to wait for tests to finish locally just to be sure, but nah. I am pushing this now * Automatic changelog update * Add time index to connection log (space-wizards#29281) * Add time index to connection log Queries go nyoom. * Don't let me code shit at 5 AM * Fix SSD indicator for scaled humanoids (space-wizards#29310) Fix ssd * Automatic changelog update * Fix noticeboard drawdepth (space-wizards#29262) darwdepth added * Fix pistols not displaying ammo count in-hand (space-wizards#29289) * Make Drozd and C-20r not unwield on use * Fix wielding mispredict * add AmmoCounter to pistols * Rewrite the options menu (space-wizards#28389) * Basic attempt at rewriting how the options menu works, move accessibility settings into their own tab. * Audio tab uses the new options system. * Rewrite Misc tab * Clean up heading styling * Rewrite options tab and other minor cleanup all over the place. * Documentation comments and minor cleanup. --------- Co-authored-by: AJCM <AJCM@tutanota.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com> * Update submodule to 226.3.0 (space-wizards#29323) * AME Deconstruction Changes (space-wizards#29317) * AME deconstruction complexity * review --------- Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com> * Automatic changelog update * Move air sensor components into abstract base prototype (space-wizards#29261) * Pacifist messages use target's identity name instead of entity name (space-wizards#29325) * Fix comments (space-wizards#29330) * Fix for missing survival boxes (space-wizards#29336) storagefill order fix * Automatic changelog update * Admin UI localization (space-wizards#29340) admin ui localization Co-authored-by: MetalSage <metalsage.official@gmail.com> * Disk """resprite""" (space-wizards#29277) * disk ""resprite"" * fix holodisk * Sound Station 14 like a nukie song (space-wizards#29345) Nukie song!! * Automatic changelog update * add access reader log wire (space-wizards#29094) * add LoggingDisabled to AccessReader * add LogWireAction * -m give everything besides high-security door a log wire * make LogAccess public and support string arg * add log when pulsing * m * l --------- Co-authored-by: deltanedas <@deltanedas:kde.org> * Automatic changelog update * Adjust some gas thresholds (space-wizards#29331) * Add air alarm hysteresis (space-wizards#29223) Add firelock hysteresis * Automatic changelog update * Thief toolbox minor rebalance & description clean-up (space-wizards#27771) * thief clean-up * anatomy set description change * description changes * Automatic changelog update * Prying reinforced tile now will give you back metal rod (space-wizards#29084) * Reinforced tile can we welded back into metal rod * more changes * weh * fix --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> * Automatic changelog update * Firelocks are no longer pryable by hand if they are powered (space-wizards#29221) * Automatic changelog update * Don't add untriage lable if it has been labeled at issue creation (space-wizards#29356) * Remove robotics and supermatter lobby images (space-wizards#29355) They don't look good, we have way better ones now. * add lemon juice and fix bad sprite allocation (space-wizards#27465) * Automatic changelog update * Add the ability to put hats on medibots (space-wizards#28584) * Automatic changelog update * Update Credits (space-wizards#29363) Co-authored-by: PJBot <pieterjan.briers+bot@gmail.com> * TEG can power itself when turned on (space-wizards#29072) * Automatic changelog update * Revert "Weapon Reflection Movement Mechanic (space-wizards#27219)" (space-wizards#29326) * Revert "Weapon Reflection Movement Mechanic (space-wizards#27219)" This reverts commit b903733. # Conflicts: # Content.Shared/Alert/AlertType.cs # Content.Shared/Weapons/Reflect/ReflectSystem.cs * Add myself to codeowners * Add myself to codeowners * Also the alerts * Apply RoleLoadout MinLimit fix to EnsureValid too (space-wizards#29358) Apply MinLimit fix to EnsureValid too * swap siren (space-wizards#29369) * fix(packed): Fill the medical lockers in medbay (space-wizards#29319) * fix(omega): Connect the disposal unit in medbay to the disposal "network" (space-wizards#29305) fix(omega): Connect the disposal unit in medbay to the disposal pipe system * tweak(saltern): Place a red phone in bridge meeting room, add another artifact spawn (space-wizards#29359) * tweak(saltern): Place a red phone in bridge meeting room * add artifact spawn * tweat(emergency_delta): Add screens around the evacuation shuttle (space-wizards#29267) * tweak(emergency_box): Swap out Salvage Material crate with Engineering crate (space-wizards#29269) * tweak(fland): Add radiation shutters to front of PA (space-wizards#29265) * tweak(meta): Swap around some of the computers in bridge (space-wizards#29263) * tweak(meta): Swap around some of the computers in bridge * tweak(meta): unpause map * tweak(marathon): Fix some stuff (space-wizards#29256) * tweak(marathon): Add cargo request computer to bridge * fix everything else * fix(origin): Replace mindshield crate with implanter crate (space-wizards#29183) * fix(cluster): Replace mindshield crate with implanter crate (space-wizards#29182) * fix(oasis): Replace mindshield crate with implanter crate (space-wizards#29181) * tweak(medical): Reduce chemist slots (space-wizards#28711) * tweak(medical): Reduce chemist slots * tweak(medical): roundstart chemists slot set to 2 on some maps * tweak(fland): Chemist slots to 3 fland is target to 80-100 players * fix: Adds a missing defribilator to nukie planet (space-wizards#28362) * fix: Adds a missing defribilator to nukie planet * Fix: unpause nukie map * What changes? * fix(atlas): Replace mindshield crate with implanter crate (space-wizards#29184) * Survival box loadout group cleanup (space-wizards#29379) cleanup * Add "Structure" tag to switches, buttons, and levers (space-wizards#29378) Co-authored-by: Eoin Mcloughlin <helloworld@eoinrul.es> * Automatic changelog update * ironrock ores (space-wizards#29381) * Ban template system (space-wizards#29365) To help out admins, so they can easily fill out datacenter bans and stuff. Supports ban exemption flags and everything. This is for use with SS14.Admin so it's just DB models here. * ContainmentFieldComponent's garbage destruction can now be disabled (space-wizards#29376) * Garbage Vaporizer 3000 + DestroyGarbage bool property + DestroyGarbage property check when dealing with incoming trash * Update ContainmentFieldComponent.cs Co-authored-by: Tayrtahn <tayrtahn@gmail.com> --------- Co-authored-by: Tayrtahn <tayrtahn@gmail.com> * Fix unlabeled jugs in ChemVend (space-wizards#29178) * Spawn dummy entities on client for vending machine UI * Asked sloth, and we kinda need this pr --------- Co-authored-by: Vasilis <vasilis@pikachu.systems> * Automatic changelog update * Add bagels (space-wizards#24799) Bagels are made by using a rolling pin on a dough slice to make a dough rope, then cooking the dough rope in a microwave for 5 seconds. There are two types: a normal bagel and a poppyseed bagel. The poppyseed bagel requires a poppy and a dough rope and has a small (5u) quantity of Bicaridine inside of it in addition to its nutriment. Co-authored-by: Kevin Zheng <kevinz5000@gmail.com> * Automatic changelog update * Fix cargo and salvage's computer point light (space-wizards#29384) * Network BaseEmitSoundComponent (space-wizards#29400) * Network BaseEmitSoundComponent * high intelligence * Force map confirmation (space-wizards#29391) * Add map check to forcemap command * remove debug line * remove accidental newline * Ghosts can now always see examine details (space-wizards#29404) * Ghosts can now always see examine details This means they bypass range and occlusion checks for getting extra detail, like the charge on an SMES. * EntityQuery * Automatic changelog update * Hotfix examine (space-wizards#29408) #55328 was failing tests and shouldn't have been merged, it broke examine. The problem is that for some reason, client-side examine system doesn't call base Initialize. So my entity query change (that I did not test) broke. By the way, this same "not calling base" meant that group examine system wasn't predicting properly when it totally could've. Incredible. * Fix gay nuke layering (space-wizards#29410) I fucked up while exporting from aseprite whoops. * Use moderator perms for grant_connect_bypass (space-wizards#29406) use moderator perms for grant_connect_bypass * Automatic changelog update * hardsuit fireproof nerf (space-wizards#29416) hardsuit nerf * Automatic changelog update * Fix forcemap not bypassing requirements (space-wizards#29426) * Fix forcemap not bypassing requirements * Add integration test for forcemap * Colorblind friendly thermomachine LED colors (space-wizards#29397) Colorblind friendly thermomachines * Automatic changelog update * Revert "TEG can power itself when turned on" (space-wizards#29434) Revert "TEG can power itself when turned on (space-wizards#29072)" This reverts commit 9f9cf08. * Fix filter yml names in the lobby so they actually work (space-wizards#29435) Fix filter yml names so they actually work * Attempt to fix random test fail by undeleted AlertControl._spriteViewEntity (space-wizards#29424) * Increase of riot shield durability (space-wizards#29239) * Automatic changelog update * Revert Fland * Revert fland, again * god is good * Fix internals not auto-activating for entities spawned in space (space-wizards#29213) * Add organs before trying to breathe * Add tests for auto-internals * EntMan to the rescue * Automatic changelog update * Oasis update (space-wizards#29440) * very minor things, mostly issue resolutions. * purge invalids * reclaimer-lobby-art (space-wizards#29343) * reclaimer-lobby-art * fixed attribution from my part-Snicket * fixed atributions this this time fr * man * Grobletombus * Cut low pressure damage to 1/4 (space-wizards#29478) * Automatic changelog update * Fix dragon ghost role rules (space-wizards#29474) q * Security Webbing Resprite (space-wizards#29441) * Make blood less satiate hunger (space-wizards#29433) * Automatic changelog update * Give moldy food the "Trash" tag (space-wizards#29380) Make moldy food items have the "Trash" tag, so they can be collected. * Automatic changelog update * Forcemap can be cleared with empty string again (space-wizards#29472) --------- Co-authored-by: Tayrtahn <tayrtahn@gmail.com> Co-authored-by: PJBot <pieterjan.briers+bot@gmail.com> Co-authored-by: Mr. 27 <45323883+Dutch-VanDerLinde@users.noreply.github.com> Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com> Co-authored-by: DrSmugleaf <10968691+DrSmugleaf@users.noreply.github.com> Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: lzk <124214523+lzk228@users.noreply.github.com> Co-authored-by: Errant <35878406+Errant-4@users.noreply.github.com> Co-authored-by: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Co-authored-by: IProduceWidgets <107586145+IProduceWidgets@users.noreply.github.com> Co-authored-by: osjarw <62134478+osjarw@users.noreply.github.com> Co-authored-by: Vasilis <vasilis@pikachu.systems> Co-authored-by: deltanedas <39013340+deltanedas@users.noreply.github.com> Co-authored-by: Rouge2t7 <81053047+Sarahon@users.noreply.github.com> Co-authored-by: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Co-authored-by: Flareguy <78941145+Flareguy@users.noreply.github.com> Co-authored-by: Ubaser <134914314+UbaserB@users.noreply.github.com> Co-authored-by: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Co-authored-by: HS <81934438+HolySSSS@users.noreply.github.com> Co-authored-by: Plykiya <58439124+Plykiya@users.noreply.github.com> Co-authored-by: plykiya <plykiya@protonmail.com> Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Co-authored-by: Truoizys <153248924+Truoizys@users.noreply.github.com> Co-authored-by: Арт <123451459+JustArt1m@users.noreply.github.com> Co-authored-by: TsjipTsjip <19798667+TsjipTsjip@users.noreply.github.com> Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com> Co-authored-by: Alice "Arimah" Heurlin <30327355+arimah@users.noreply.github.com> Co-authored-by: neutrino <67447925+neutrino-laser@users.noreply.github.com> Co-authored-by: Boaz1111 <149967078+Boaz1111@users.noreply.github.com> Co-authored-by: Redfire1331 <125223432+Redfire1331@users.noreply.github.com> Co-authored-by: redfire1331 <Redfire1331@users.noreply.github.com> Co-authored-by: MilenVolf <63782763+MilenVolf@users.noreply.github.com> Co-authored-by: Ghagliiarghii <68826635+Ghagliiarghii@users.noreply.github.com> Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Co-authored-by: Alex Pavlenko <diraven@users.noreply.github.com> Co-authored-by: nikthechampiongr <32041239+nikthechampiongr@users.noreply.github.com> Co-authored-by: Alex Evgrashin <aevgrashin@yandex.ru> Co-authored-by: Ko4ergaPunk <62609550+Ko4ergaPunk@users.noreply.github.com> Co-authored-by: Doomsdrayk <robotdoughnut@comcast.net> Co-authored-by: AJCM <AJCM@tutanota.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com> Co-authored-by: Partmedia <kevinz5000@gmail.com> Co-authored-by: ArkiveDev <95712736+ArkiveDev@users.noreply.github.com> Co-authored-by: MetalSage <74924875+MetalSage@users.noreply.github.com> Co-authored-by: MetalSage <metalsage.official@gmail.com> Co-authored-by: marbow <152051971+marboww@users.noreply.github.com> Co-authored-by: K-Dynamic <20566341+K-Dynamic@users.noreply.github.com> Co-authored-by: Floofi <126319569+Shadowtheprotogen546@users.noreply.github.com> Co-authored-by: Cojoke <83733158+Cojoke-dot@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: WarMechanic <69510347+WarMechanic@users.noreply.github.com> Co-authored-by: Brandon Hu <103440971+Brandon-Huu@users.noreply.github.com> Co-authored-by: eoineoineoin <github@eoinrul.es> Co-authored-by: Eoin Mcloughlin <helloworld@eoinrul.es> Co-authored-by: mhamster <81412348+mhamsterr@users.noreply.github.com> Co-authored-by: DrEnzyme <DrEnzyme@gmail.com> Co-authored-by: MureixloI <132683811+MureixloI@users.noreply.github.com> Co-authored-by: Emisse <99158783+Emisse@users.noreply.github.com> Co-authored-by: deathride58 <deathride58@users.noreply.github.com> Co-authored-by: Elysium206 <151651971+Elysium206@users.noreply.github.com> Co-authored-by: Snicket <getoutmarutak@gmail.com> Co-authored-by: Джексон Миссиссиппи <tripwiregamer@gmail.com> Co-authored-by: DieselMohawk <gavin.drinka@gmail.com> Co-authored-by: VeritableCalamity <34698192+Veritable-Calamity@users.noreply.github.com>
* Updated tag system * Added params methods * Fixed tag integration tests * Fixed params methods recursion * Revert has All/Any tag one argument realisation * Updated tag integration tests * Shit happens * Added individual List/HashSet methods, docs, tests
About the PR
Clean code and update the tag system
Why / Balance
All checks now take place only in Debug build, which will reduce the load during game and tag operations. Deprecated methods have been removed, as well as their usage, method signatures have been updated for convenient usage. Removed garbage overloads
Technical details
All overloads for
IEnumerable
methods have been removed for their uselessness. Also the function accepts onlyProtoId<TagPrototype>
, not a string. The system now does not create the component state itself, it now does so viaAutoGenerateComponentState
Media