Add ScriptDebugger
This commit is contained in:
@ -6,7 +6,6 @@ using System.Text;
|
||||
using RobloxFiles.Enums;
|
||||
using RobloxFiles.DataTypes;
|
||||
using RobloxFiles.Utility;
|
||||
using System.Diagnostics;
|
||||
using System.IO;
|
||||
|
||||
namespace RobloxFiles.BinaryFormat.Chunks
|
||||
@ -51,6 +50,12 @@ namespace RobloxFiles.BinaryFormat.Chunks
|
||||
return;
|
||||
}
|
||||
|
||||
if (Class == null)
|
||||
{
|
||||
RobloxFile.LogError($"Unknown class index {ClassIndex} (@ {this})!");
|
||||
return;
|
||||
}
|
||||
|
||||
var ids = Class.InstanceIds;
|
||||
int instCount = Class.NumInstances;
|
||||
var props = new Property[instCount];
|
||||
|
Reference in New Issue
Block a user