0.413.1.370526

This commit is contained in:
CloneTrooper1019
2019-12-22 21:23:06 -06:00
parent 66bdae9387
commit 92c6f2d96e
10 changed files with 98 additions and 44 deletions

View File

@ -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 =
{

View File

@ -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)