From 2aeee3fcebbe56be2dbf0bee08613db136b10860 Mon Sep 17 00:00:00 2001 From: Dusk-92 Date: Fri, 28 Aug 2026 18:31:15 +0200 Subject: [PATCH] Expose player GUID stage in OutlineDebug --- src/outline/outline.zig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/outline/outline.zig b/src/outline/outline.zig index 22cda7d..e75d84d 100644 --- a/src/outline/outline.zig +++ b/src/outline/outline.zig @@ -158,7 +158,7 @@ pub fn outlineDebug(L: lua.State) callconv(.{ .x86_thiscall = .{} }) u32 { var buf: [256]u8 = undefined; const msg = std.fmt.bufPrintZ( &buf, - "OutlineDBG en={d} own={d} mh={d} d3d={d} end={d} world={d} om={d} lp={d} tg={d} to={d} scan={d} tgt={d} mdl={d} dip={d} odip={d} cache={d} sh={d} rt={d} pipe={d}/{d}", + "OutlineDBG en={d} own={d} mh={d} d3d={d} end={d} world={d} om={d} pg={d} lp={d} tg={d} to={d} scan={d} tgt={d} mdl={d} dip={d} odip={d} cache={d} sh={d} rt={d} pipe={d}/{d}", .{ @intFromBool(isEnabled()), @intFromBool(g_is_hook_owner), @@ -167,6 +167,7 @@ pub fn outlineDebug(L: lua.State) callconv(.{ .x86_thiscall = .{} }) u32 { @intFromBool(d3d9_hook.debug_endscene_seen), @intFromBool(tracker.debug_in_world_seen), @intFromBool(tracker.debug_object_manager_seen), + @intFromBool(tracker.debug_player_guid_seen), @intFromBool(tracker.debug_local_player_seen), @intFromBool(tracker.debug_target_guid_seen), @intFromBool(tracker.debug_target_object_seen),