Treat ResourceId() as a replay only ID

This matches previous behaviour of GetOriginalID() used when checking for live IDs i.e.

(GetResourceManager()->GetOriginalID(id) == id)
This commit is contained in:
Jake Turner
2026-01-08 07:10:53 +13:00
parent 775a9c947f
commit bf99f6fb6e
+1 -1
View File
@@ -41,7 +41,7 @@ ResourceId GetNewUniqueID()
bool IsReplayOnlyID(ResourceId id)
{
return baseReplayID < id;
return baseReplayID < id || (id == ResourceId());
}
void SetReplayResourceIDs()