0.493.0.4930373

This commit is contained in:
Max 2021-09-01 17:48:37 -05:00
parent 648656a3bc
commit 1e5540d151
4 changed files with 9 additions and 5 deletions

View File

@ -1,5 +1,5 @@
// Auto-generated list of creatable Roblox classes. // Auto-generated list of creatable Roblox classes.
// Updated as of 0.492.0.4920395 // Updated as of 0.493.0.4930373
using System; using System;
@ -2633,6 +2633,7 @@ namespace RobloxFiles
public class PathfindingModifier : Instance public class PathfindingModifier : Instance
{ {
public string ModifierId = ""; public string ModifierId = "";
public bool PassThrough;
} }
public class PathfindingService : Instance public class PathfindingService : Instance
@ -2669,6 +2670,7 @@ namespace RobloxFiles
IsService = true; IsService = true;
} }
public bool CustomPoliciesEnabled;
public string DEPRECATED_SerializedEmulatedPolicyInfo = ""; public string DEPRECATED_SerializedEmulatedPolicyInfo = "";
public string EmulatedCountryCode = ""; public string EmulatedCountryCode = "";
public string EmulatedGameLocale = ""; public string EmulatedGameLocale = "";

View File

@ -1,5 +1,5 @@
// Auto-generated list of Roblox enums. // Auto-generated list of Roblox enums.
// Updated as of 0.492.0.4920395 // Updated as of 0.493.0.4930373
namespace RobloxFiles.Enums namespace RobloxFiles.Enums
{ {

Binary file not shown.

View File

@ -79,6 +79,10 @@ namespace RobloxFiles
{ {
get get
{ {
if (Tags == null)
// ?????
return null;
if (Tags.Count == 0) if (Tags.Count == 0)
return null; return null;
@ -539,9 +543,7 @@ namespace RobloxFiles
// Patch referents where applicable. // Patch referents where applicable.
foreach (var prop in refProps) foreach (var prop in refProps)
{ {
var source = prop.Value as Instance; if (!(prop.Value is Instance source))
if (source == null)
continue; continue;
if (!mitosis.TryGetValue(source, out var copy)) if (!mitosis.TryGetValue(source, out var copy))