Lots of manual fixing. More to come.
This commit is contained in:
parent
f386b57148
commit
54ab29502a
2 changed files with 2 additions and 2 deletions
|
|
@ -231,7 +231,7 @@ namespace Content.Client.Chat.Managers
|
|||
ChatPermissionsUpdated?.Invoke(new ChatPermissionsUpdatedEventArgs {OldSelectableChannels = oldSelectable});
|
||||
}
|
||||
|
||||
public bool IsGhost => _playerManager.LocalPlayer?.ControlledEntityUid is {} uid && _entityManager.HasComponent<GhostComponent>(uid);
|
||||
public bool IsGhost => _playerManager.LocalPlayer?.ControlledEntity is {} uid && _entityManager.HasComponent<GhostComponent>(uid);
|
||||
|
||||
public void FrameUpdate(FrameEventArgs delta)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -206,7 +206,7 @@ namespace Content.Client.Verbs
|
|||
return;
|
||||
}
|
||||
|
||||
var user = _playerManager.LocalPlayer?.ControlledEntityUid;
|
||||
var user = _playerManager.LocalPlayer?.ControlledEntity;
|
||||
if (user == null)
|
||||
return;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue