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; } }