gg.easy.airship 0.1.2012 → 0.1.2013
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -593,8 +593,11 @@ public class SystemRoot : Singleton<SystemRoot> {
|
|
|
593
593
|
var pluginVersion = LuauPlugin.LuauGetLuauPluginVersion();
|
|
594
594
|
var bytecodeVersion = LuauPlugin.LuauGetBytecodeVersion();
|
|
595
595
|
var server = FindAnyObjectByType<LuauVersionFetcher>();
|
|
596
|
+
|
|
596
597
|
Debug.Log($"CLIENT: {pluginVersion} - Bytecode Version: {bytecodeVersion.Target} (Min: {bytecodeVersion.Min}, Max: {bytecodeVersion.Max})");
|
|
597
|
-
|
|
598
|
+
if (server != null) {
|
|
599
|
+
Debug.Log($"SERVER: {server.version} - Bytecode Version: {server.bytecodeVersion.Target} (Min: {server.bytecodeVersion.Min}, Max: {server.bytecodeVersion.Max})");
|
|
600
|
+
}
|
|
598
601
|
}));
|
|
599
602
|
}
|
|
600
603
|
}
|