Debug verbs aren't blocked by containers anymore.
This commit is contained in:
@@ -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)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user