]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Paraplegicn't zombies (#24169)
authorArendian <137322659+Arendian@users.noreply.github.com>
Thu, 1 Feb 2024 11:06:05 +0000 (12:06 +0100)
committerGitHub <noreply@github.com>
Thu, 1 Feb 2024 11:06:05 +0000 (22:06 +1100)
* The zombie virus now cures paraplegia.

* no wheelchairbound anymore

Content.Server/Zombies/ZombieSystem.Transform.cs

index 40946b6d7f0dbde045beca1d744aa1177627b6db..386a7c6419b9adb0d78674351d4561ed6abd8ccd 100644 (file)
@@ -30,11 +30,10 @@ using Content.Shared.Nutrition.Components;
 using Content.Shared.Popups;
 using Content.Shared.Roles;
 using Content.Shared.Pulling.Components;
-using Content.Shared.Tools.Components;
 using Content.Shared.Weapons.Melee;
 using Content.Shared.Zombies;
-using Robust.Shared.Audio;
 using Content.Shared.Prying.Components;
+using Content.Shared.Traits.Assorted;
 using Robust.Shared.Audio.Systems;
 
 namespace Content.Server.Zombies
@@ -98,13 +97,14 @@ namespace Content.Server.Zombies
             var zombiecomp = AddComp<ZombieComponent>(target);
 
             //we need to basically remove all of these because zombies shouldn't
-            //get diseases, breath, be thirst, be hungry, die in space or have offspring
+            //get diseases, breath, be thirst, be hungry, die in space, have offspring or be paraplegic.
             RemComp<RespiratorComponent>(target);
             RemComp<BarotraumaComponent>(target);
             RemComp<HungerComponent>(target);
             RemComp<ThirstComponent>(target);
-            RemComp<ReproductiveComponent>(target); 
+            RemComp<ReproductiveComponent>(target);
             RemComp<ReproductivePartnerComponent>(target);
+            RemComp<LegsParalyzedComponent>(target);
 
             //funny voice
             var accentType = "zombie";