mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 18:47:23 +01:00
minor fixes
This commit is contained in:
parent
4b52e60e7d
commit
8894795564
3 changed files with 39 additions and 22 deletions
|
|
@ -332,7 +332,15 @@ public class DalamudUtilService : IHostedService
|
|||
|
||||
private unsafe void FrameworkOnUpdateInternal()
|
||||
{
|
||||
if (_clientState.LocalPlayer?.IsDead ?? false) return;
|
||||
if (_clientState.LocalPlayer == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (_clientState.LocalPlayer?.IsDead ?? false)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
IsAnythingDrawing = false;
|
||||
_playerCharas = _performanceCollector.LogPerformance(this, "ObjTableToCharas",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue