actually check the thing lol

This commit is contained in:
Mister_Nebula 2021-12-28 21:31:48 +00:00
parent 744bb72713
commit 6f2e31bf2b

View File

@ -141,7 +141,10 @@ namespace QSB.WorldSync
foreach (var obj in _worldObjects)
{
DebugGUI.DrawLabel(obj.ReturnObject().transform, obj.ReturnLabel());
if (obj.ShouldDisplayLabel())
{
DebugGUI.DrawLabel(obj.ReturnObject().transform, obj.ReturnLabel());
}
}
}
}