Remove drones, fix InnateToolSystem (#25372)
* Fix drones * They dont need a full bloodstream * Incorrect indentation * Nuke drones * Fix ClothingHeadHatCatEars * Remove last mention of drones * Implement requested changes
This commit is contained in:
@@ -3,7 +3,6 @@ using Content.Server.Body.Systems;
|
||||
using Content.Server.Chat;
|
||||
using Content.Server.Chat.Systems;
|
||||
using Content.Server.Cloning;
|
||||
using Content.Server.Drone.Components;
|
||||
using Content.Server.Emoting.Systems;
|
||||
using Content.Server.Inventory;
|
||||
using Content.Server.Speech.EntitySystems;
|
||||
@@ -214,7 +213,7 @@ namespace Content.Server.Zombies
|
||||
if (args.User == entity)
|
||||
continue;
|
||||
|
||||
if (!TryComp<MobStateComponent>(entity, out var mobState) || HasComp<DroneComponent>(entity))
|
||||
if (!TryComp<MobStateComponent>(entity, out var mobState))
|
||||
continue;
|
||||
|
||||
if (HasComp<ZombieComponent>(entity))
|
||||
|
||||
Reference in New Issue
Block a user