Merge pull request 'Added null check on GetCid if it is empty, would return zero' (#103) from fix-cid-settings into 2.0.1
Reviewed-on: #103 Reviewed-by: defnotken <defnotken@noreply.git.lightless-sync.org>
This commit was merged in pull request #103.
This commit is contained in:
@@ -490,6 +490,10 @@ public class DalamudUtilService : IHostedService, IMediatorSubscriber
|
|||||||
{
|
{
|
||||||
EnsureIsOnFramework();
|
EnsureIsOnFramework();
|
||||||
var playerChar = GetPlayerCharacter();
|
var playerChar = GetPlayerCharacter();
|
||||||
|
|
||||||
|
if (playerChar == null || playerChar.Address == IntPtr.Zero)
|
||||||
|
return 0;
|
||||||
|
|
||||||
return ((BattleChara*)playerChar.Address)->Character.ContentId;
|
return ((BattleChara*)playerChar.Address)->Character.ContentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user