More admin ghost interactions (#4854)

* more aghost interactions

* restart test

and fix some yaml spacing while at it.
This commit is contained in:
Leon Friedrich
2021-10-14 04:40:29 +11:00
committed by GitHub
parent 057eb2ea40
commit d5392d7f29
2 changed files with 8 additions and 2 deletions

View File

@@ -69,11 +69,11 @@ namespace Content.Shared.Ghost
public bool CanInteract() => CanGhostInteract; public bool CanInteract() => CanGhostInteract;
public bool CanUse() => CanGhostInteract; public bool CanUse() => CanGhostInteract;
public bool CanThrow() => false; public bool CanThrow() => CanGhostInteract;
public bool CanDrop() => CanGhostInteract; public bool CanDrop() => CanGhostInteract;
public bool CanPickup() => CanGhostInteract; public bool CanPickup() => CanGhostInteract;
public bool CanEmote() => false; public bool CanEmote() => false;
public bool CanAttack() => false; public bool CanAttack() => CanGhostInteract;
} }
[Serializable, NetSerializable] [Serializable, NetSerializable]

View File

@@ -10,6 +10,12 @@
- type: Ghost - type: Ghost
canInteract: true canInteract: true
- type: Hands - type: Hands
- type: DoAfter
- type: CombatMode
- type: Actions
innateActions:
- CombatMode
- GhostBoo
- type: PlayerInputMover - type: PlayerInputMover
- type: Physics - type: Physics
bodyType: Kinematic bodyType: Kinematic