0.413.1.370526
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
local function UseColor3(propName)
|
||||
return
|
||||
{
|
||||
Get = "BrickColor.FromColor3(" .. propName .. ')';
|
||||
Get = string.format("BrickColor.FromColor3(%s)", propName);
|
||||
Set = propName .. " = value.Color";
|
||||
}
|
||||
end
|
||||
@ -347,11 +347,31 @@ return
|
||||
DevelopmentLanguage = "SourceLocaleId";
|
||||
}
|
||||
};
|
||||
|
||||
LocalScript =
|
||||
{
|
||||
Remove =
|
||||
{
|
||||
"LinkedSource",
|
||||
"Source"
|
||||
}
|
||||
};
|
||||
|
||||
LuaSourceContainer =
|
||||
{
|
||||
Add = { ScriptGuid = "string" };
|
||||
Defaults = { ScriptGuid = "" };
|
||||
Add =
|
||||
{
|
||||
LinkedSource = "Content";
|
||||
ScriptGuid = "string";
|
||||
Source = "ProtectedString";
|
||||
};
|
||||
|
||||
Defaults =
|
||||
{
|
||||
LinkedSource = "";
|
||||
ScriptGuid = "";
|
||||
Source = "";
|
||||
};
|
||||
};
|
||||
|
||||
ManualSurfaceJointInstance =
|
||||
@ -379,6 +399,15 @@ return
|
||||
Add = { ModelInPrimary = "CFrame" };
|
||||
Defaults = { ModelInPrimary = CFrame.new() };
|
||||
};
|
||||
|
||||
ModuleScript =
|
||||
{
|
||||
Remove =
|
||||
{
|
||||
"LinkedSource",
|
||||
"Source"
|
||||
}
|
||||
};
|
||||
|
||||
NotificationService =
|
||||
{
|
||||
@ -389,9 +418,6 @@ return
|
||||
{
|
||||
Add =
|
||||
{
|
||||
VersionId = "int64";
|
||||
PackageId = "Content";
|
||||
|
||||
OriginalHash = "int64";
|
||||
SymbolicLink = "string";
|
||||
|
||||
@ -412,9 +438,6 @@ return
|
||||
|
||||
Redirect =
|
||||
{
|
||||
PackageId = { Get = "PackageIdSerialize" };
|
||||
VersionId = { Get = "VersionIdSerialize" };
|
||||
|
||||
VersionNumber = "VersionIdSerialize";
|
||||
};
|
||||
};
|
||||
@ -508,6 +531,15 @@ return
|
||||
{
|
||||
Defaults = { LoadStringEnabled = false }
|
||||
};
|
||||
|
||||
Script =
|
||||
{
|
||||
Remove =
|
||||
{
|
||||
"LinkedSource",
|
||||
"Source"
|
||||
}
|
||||
};
|
||||
|
||||
Smoke =
|
||||
{
|
||||
|
@ -9,7 +9,7 @@ local stackLevel = 0
|
||||
|
||||
local singletons =
|
||||
{
|
||||
Terrain = workspace:WaitForChild("Terrain");
|
||||
Terrain = workspace:WaitForChild("Terrain", 1000);
|
||||
StarterPlayerScripts = StarterPlayer:WaitForChild("StarterPlayerScripts");
|
||||
StarterCharacterScripts = StarterPlayer:WaitForChild("StarterCharacterScripts");
|
||||
}
|
||||
@ -175,7 +175,7 @@ end
|
||||
-- Formatting
|
||||
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
local formatting = require(script.Parent.Formatting)
|
||||
local formatting = require(script.Formatting)
|
||||
|
||||
local formatLinks =
|
||||
{
|
||||
@ -207,7 +207,7 @@ end
|
||||
-- Property Patches
|
||||
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
local patches = require(script.Parent.PropertyPatches)
|
||||
local patches = require(script.PropertyPatches)
|
||||
local patchIndex = {}
|
||||
|
||||
function patchIndex:__index(key)
|
Reference in New Issue
Block a user