]> git.smokeofanarchy.ru Git - space-station-14.git/commit
Move faction exception and everything it needs to shared (#25154)
authordeltanedas <39013340+deltanedas@users.noreply.github.com>
Mon, 18 Mar 2024 07:23:25 +0000 (07:23 +0000)
committerGitHub <noreply@github.com>
Mon, 18 Mar 2024 07:23:25 +0000 (18:23 +1100)
commit7561bef6a7aee65149381e155da53abc65a6a4e7
tree7cbf8b9695c38326b9dcdab13348cc65e4eaf39c
parent0493130591b1ee483c440adbb1a67998352dda38
Move faction exception and everything it needs to shared (#25154)

* move faction prototype to shared

* move faction exception and member stuff to shared

* fix breaking changes for random stuff

* move pettable friend stuff to shared

* mostly fix

* final fixy

* dragonops

* final fixy II

* use querys and fix warpspeed fish (probably)

* fixer

* Rrrr!

---------

Co-authored-by: deltanedas <@deltanedas:kde.org>
Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
29 files changed:
Content.Client/Entry/EntryPoint.cs
Content.Server/Dragon/Components/DragonComponent.cs
Content.Server/Dragon/DragonSystem.cs
Content.Server/Friends/Components/PettableFriendComponent.cs [deleted file]
Content.Server/Friends/Systems/PettableFriendSystem.cs [deleted file]
Content.Server/GameTicking/Rules/Components/NukeopsRuleComponent.cs
Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs
Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs
Content.Server/GameTicking/Rules/PiratesRuleSystem.cs
Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs
Content.Server/GameTicking/Rules/TraitorRuleSystem.cs
Content.Server/NPC/Components/FactionExceptionTrackerComponent.cs [deleted file]
Content.Server/NPC/Components/NpcFactionMemberComponent.cs [deleted file]
Content.Server/NPC/Components/NpcFactionPrototype.cs [deleted file]
Content.Server/NPC/FactionData.cs [deleted file]
Content.Server/NPC/Systems/NPCRetaliationSystem.cs
Content.Server/NPC/Systems/NPCSteeringSystem.Context.cs
Content.Server/NPC/Systems/NPCSteeringSystem.cs
Content.Server/NPC/Systems/NPCUtilitySystem.cs
Content.Server/NPC/Systems/NpcFactionSystem.Exception.cs [deleted file]
Content.Server/Zombies/ZombieSystem.Transform.cs
Content.Shared/Friends/Components/PettableFriendComponent.cs [new file with mode: 0644]
Content.Shared/Friends/Systems/PettableFriendSystem.cs [new file with mode: 0644]
Content.Shared/NPC/Components/FactionExceptionComponent.cs [moved from Content.Server/NPC/Components/FactionExceptionComponent.cs with 72% similarity]
Content.Shared/NPC/Components/FactionExceptionTrackerComponent.cs [new file with mode: 0644]
Content.Shared/NPC/Components/NpcFactionMemberComponent.cs [new file with mode: 0644]
Content.Shared/NPC/Prototypes/NpcFactionPrototype.cs [new file with mode: 0644]
Content.Shared/NPC/Systems/NpcFactionSystem.Exception.cs [new file with mode: 0644]
Content.Shared/NPC/Systems/NpcFactionSystem.cs [moved from Content.Server/NPC/Systems/NpcFactionSystem.cs with 50% similarity]