Add toggle ghost visibility button to ghost GUI (#12325)

* Add toggle ghost visibility button to ghosts

* Rename to toggleghosts
This commit is contained in:
Jacob Tong
2022-11-01 18:14:06 -07:00
committed by GitHub
parent 4cb96dba6d
commit 9f485d7124
6 changed files with 41 additions and 0 deletions

View File

@@ -155,5 +155,10 @@ namespace Content.Client.Ghost
{
_console.RemoteExecuteCommand(null, "ghostroles");
}
public void ToggleGhostVisibility()
{
_console.RemoteExecuteCommand(null, "toggleghosts");
}
}
}