1
0
mirror of synced 2024-11-12 02:00:50 +01:00

Byaml : Fix saving ulong, long, and double types. Also fix converting ulong types

This commit is contained in:
KillzXGaming 2023-06-22 17:59:16 -04:00
parent 79b51dd7ed
commit 932a6f3a47
2 changed files with 2 additions and 1 deletions

View File

@ -254,7 +254,8 @@ namespace FirstPlugin
string tag = null;
if (node is int) tag = "!l";
else if (node is uint) tag = "!u";
else if (node is Int64) tag = "!ul";
else if (node is Int64) tag = "!ll";
else if (node is UInt64) tag = "!ul";
else if (node is double) tag = "!d";
else if (node is ByamlPathIndex) tag = "!p";

Binary file not shown.