From 351871a60edfb3b65a96de45279974fe0d8025fb Mon Sep 17 00:00:00 2001 From: SokyranTheDragon Date: Tue, 13 Jan 2026 17:20:22 +0100 Subject: [PATCH] Remove world VTR branching for Gravship/TravellingTransporters Due to changes from #802, the branching is no longer neccessary. --- Source/Client/Patches/VTRSyncPatch.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Source/Client/Patches/VTRSyncPatch.cs b/Source/Client/Patches/VTRSyncPatch.cs index 4bb37b7b..cab0fa24 100644 --- a/Source/Client/Patches/VTRSyncPatch.cs +++ b/Source/Client/Patches/VTRSyncPatch.cs @@ -43,11 +43,7 @@ static bool Prefix(ref int __result, WorldObject __instance) if (Multiplayer.Client == null) return true; - if (__instance is Gravship or TravellingTransporters) - __result = VTRSync.MinimumVtr; - else - __result = Multiplayer.AsyncWorldTime.VTR; - + __result = Multiplayer.AsyncWorldTime.VTR; return false; } }