From 0899cdec433217e4a55b8229c25e8d779e7a5349 Mon Sep 17 00:00:00 2001 From: Katy Coe Date: Wed, 22 Nov 2017 15:34:59 +0100 Subject: [PATCH] Don't reject metadata v24 files --- Il2CppInspector/Metadata.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Il2CppInspector/Metadata.cs b/Il2CppInspector/Metadata.cs index 75ce515..f86acb7 100644 --- a/Il2CppInspector/Metadata.cs +++ b/Il2CppInspector/Metadata.cs @@ -42,7 +42,7 @@ namespace Il2CppInspector // Rewind and read metadata header in full Position -= 8; Header = ReadObject(); - if (Version != 21 && Version != 22 && Version != 23) + if (Version < 21 || Version > 24) { throw new Exception($"ERROR: Metadata file supplied is not a supported version ({Header.version})."); }