From 5fc52fb01fa28b746ce8d501c50bd118ace0db44 Mon Sep 17 00:00:00 2001 From: MineGame159 Date: Sun, 11 Sep 2022 13:35:07 +0200 Subject: [PATCH] Fix StructuredData.ObjectToString() --- BeefLibs/Beefy2D/src/utils/StructuredData.bf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BeefLibs/Beefy2D/src/utils/StructuredData.bf b/BeefLibs/Beefy2D/src/utils/StructuredData.bf index bf265510..b576ad56 100644 --- a/BeefLibs/Beefy2D/src/utils/StructuredData.bf +++ b/BeefLibs/Beefy2D/src/utils/StructuredData.bf @@ -1190,17 +1190,17 @@ namespace Beefy.utils else if (type == typeof(System.UInt32)) { ((uint32)theObject).ToString(str); - str.Append("U"); + //str.Append("U"); } else if (type == typeof(System.Int64)) { - ((uint64)theObject).ToString(str); - str.Append("L"); + ((int64)theObject).ToString(str); + //str.Append("L"); } else if (type == typeof(System.UInt64)) { ((uint64)theObject).ToString(str); - str.Append("UL"); + //str.Append("UL"); } else if (type == typeof(System.Int)) {