Debug verbs aren't blocked by containers anymore.

This commit is contained in:
Víctor Aguilera Puerto
2020-08-15 20:42:39 +02:00
parent add4986001
commit 33baa73f06
3 changed files with 3 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ namespace Content.Client.GlobalVerbs
class ViewVariablesVerb : GlobalVerb class ViewVariablesVerb : GlobalVerb
{ {
public override bool RequireInteractionRange => false; public override bool RequireInteractionRange => false;
public override bool BlockedByContainers => false;
public override void GetData(IEntity user, IEntity target, VerbData data) public override void GetData(IEntity user, IEntity target, VerbData data)
{ {

View File

@@ -13,6 +13,7 @@ namespace Content.Server.GlobalVerbs
public class ControlMobVerb : GlobalVerb public class ControlMobVerb : GlobalVerb
{ {
public override bool RequireInteractionRange => false; public override bool RequireInteractionRange => false;
public override bool BlockedByContainers => false;
public override void GetData(IEntity user, IEntity target, VerbData data) public override void GetData(IEntity user, IEntity target, VerbData data)
{ {

View File

@@ -16,6 +16,7 @@ namespace Content.Server.GlobalVerbs
class RejuvenateVerb : GlobalVerb class RejuvenateVerb : GlobalVerb
{ {
public override bool RequireInteractionRange => false; public override bool RequireInteractionRange => false;
public override bool BlockedByContainers => false;
public override void GetData(IEntity user, IEntity target, VerbData data) public override void GetData(IEntity user, IEntity target, VerbData data)
{ {