Skip to content

Commit

Permalink
Adds a Hardliner faction datum. (#3765)
Browse files Browse the repository at this point in the history
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->
<!-- You can view Contributing.MD for a detailed description of the pull
request process. -->

## About The Pull Request
Title.
<!-- Describe The Pull Request. Please be sure every change is
documented or this can delay review and even discourage maintainers from
merging your PR! -->

## Why It's Good For The Game
Three Hardliner ships are open (#3761, #3744, #3741) and all are using
the base syndicate faction. What a shame.
<!-- Please add a short description of why you think these changes would
benefit the game. If you can't justify it in words, it might not be
worth adding. -->

## Changelog

:cl:
code: Added a Hardliner faction datum.
/:cl:

<!-- Both :cl:'s are required for the changelog to work! You can put
your name to the right of the first :cl: if you want to overwrite your
GitHub username as author ingame. -->
<!-- You can use multiple of the same prefix (they're only used for the
icon ingame) and delete the unneeded ones. Despite some of the tags,
changelogs should generally represent how a player might be affected by
the changes rather than a summary of the PR's contents. -->
  • Loading branch information
Sadhorizon authored Nov 19, 2024
1 parent 4ef37b9 commit dc656ad
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion _maps/configs/syndicate_gorlex_komodo.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"faction": "/datum/faction/syndicate",
"faction": "/datum/faction/syndicate/hardliners",
"prefix": "ISV",
"namelists": [
"GORLEX",
Expand Down
2 changes: 2 additions & 0 deletions code/__DEFINES/factions.dm
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#define FACTION_SYNDICATE "Syndicate"
#define FACTION_NGR "New Gorlex Republic"
#define FACTION_CYBERSUN "CyberSun"
#define FACTION_HARDLINERS "Hardliners"
#define FACTION_SUNS "Student-Union of Naturalistic Sciences"
#define FACTION_SOLGOV "SolGov"
#define FACTION_SRM "Saint-Roumain Militia"
Expand All @@ -31,6 +32,7 @@
#define PREFIX_SYNDICATE list("SEV", "SSV")
#define PREFIX_NGR list("NGRV")
#define PREFIX_CYBERSUN list("CSSV")
#define PREFIX_HARDLINERS list("ISV")
#define PREFIX_SUNS list("SUNS")
#define PREFIX_SOLGOV list("SCSV")
#define PREFIX_SRM list("SRSV")
Expand Down
4 changes: 4 additions & 0 deletions code/modules/faction/faction_datum.dm
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
name = FACTION_CYBERSUN
prefixes = PREFIX_CYBERSUN

/datum/faction/syndicate/hardliners
name = FACTION_HARDLINERS
prefixes = PREFIX_HARDLINERS

/datum/faction/syndicate/suns
name = FACTION_SUNS
short_name = "SUNS"
Expand Down

0 comments on commit dc656ad

Please sign in to comment.