Skip to content

Commit

Permalink
Quickswap enabled by default (Simple-Station#77)
Browse files Browse the repository at this point in the history
<!--
This is a semi-strict format, you can add/remove sections as needed but
the order/format should be kept the same
Remove these comments before submitting
-->

# Description

<!--
Explain this PR in as much detail as applicable

Some example prompts to consider:
How might this affect the game? The codebase?
What might be some alternatives to this?
How/Who does this benefit/hurt [the game/codebase]?
-->

Quickswap is now enabled by default on items that don't specify whether
it should be on or off in their yaml

---

# Changelog

<!--
You can add an author after the `:cl:` to change the name that appears
in the changelog (ex: `:cl: Death`)
Leaving it blank will default to your GitHub display name
This includes all available types for the changelog
-->

:cl:
- add: You can once again directly insert things like ID cards and gun
magazines without having to take out the old one first.
  • Loading branch information
SsalamethVersaach authored Sep 17, 2024
2 parents 8223c7a + 6bee10c commit 7520343
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Shared/CCVar/CCVars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ public static readonly CVarDef<bool>
/// Whether item slots, such as power cell slots or AME fuel cell slots, should support quick swap if it is not otherwise specified in their YAML prototype.
/// </summary>
public static readonly CVarDef<bool> AllowSlotQuickSwap =
CVarDef.Create("game.slot_quick_swap", false, CVar.REPLICATED);
CVarDef.Create("game.slot_quick_swap", true, CVar.REPLICATED);

#if EXCEPTION_TOLERANCE
/// <summary>
Expand Down

0 comments on commit 7520343

Please sign in to comment.