injection issue fix
This commit is contained in:
parent
1712c24a2b
commit
873ee1d7d3
|
|
@ -2164,7 +2164,9 @@ public class GlobalFuncs
|
||||||
|
|
||||||
string luafile = GetLuaFileName(ClientName, type);
|
string luafile = GetLuaFileName(ClientName, type);
|
||||||
string rbxexe = GetClientEXEDir(ClientName, type);
|
string rbxexe = GetClientEXEDir(ClientName, type);
|
||||||
string mapfile = type.Equals(ScriptType.EasterEgg) ? GlobalPaths.DataDir + "\\Appreciation.rbxl" : (nomap ? GlobalPaths.ConfigDir + "\\Place1.rbxl" : GlobalVars.UserConfiguration.MapPath);
|
string mapfile = type.Equals(ScriptType.EasterEgg) ?
|
||||||
|
GlobalPaths.DataDir + "\\Appreciation.rbxl" :
|
||||||
|
(nomap ? (type.Equals(ScriptType.Studio) ? GlobalPaths.ConfigDir + "\\Place1.rbxl" : "") : GlobalVars.UserConfiguration.MapPath);
|
||||||
string mapname = type.Equals(ScriptType.EasterEgg) ? "" : (nomap ? "" : GlobalVars.UserConfiguration.Map);
|
string mapname = type.Equals(ScriptType.EasterEgg) ? "" : (nomap ? "" : GlobalVars.UserConfiguration.Map);
|
||||||
FileFormat.ClientInfo info = GetClientInfoValues(ClientName);
|
FileFormat.ClientInfo info = GetClientInfoValues(ClientName);
|
||||||
string quote = "\"";
|
string quote = "\"";
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,8 @@
|
||||||
|
1.3 Snapshot v22.8288.28158.1
|
||||||
|
Enhancements:
|
||||||
|
- Reverted the safechat.xml in all clients to the original version distributed in each client for accuracy reasons.
|
||||||
|
- Fixed an exploit where players were able to inject places into online games.
|
||||||
|
----------------------------------------------------------------------------
|
||||||
1.3 Snapshot v22.8288.23564.2
|
1.3 Snapshot v22.8288.23564.2
|
||||||
Fixes:
|
Fixes:
|
||||||
- Clarified the %generatescript% documentation.
|
- Clarified the %generatescript% documentation.
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,6 @@ ExtendedVersionNumber=True
|
||||||
ExtendedVersionEditChangelog=True
|
ExtendedVersionEditChangelog=True
|
||||||
//ExtendedVersionTemplate=%version% v8.2022.%extended-revision%%lite%
|
//ExtendedVersionTemplate=%version% v8.2022.%extended-revision%%lite%
|
||||||
ExtendedVersionTemplate=%version% Snapshot v22.%build%.%revision%.%extended-revision%
|
ExtendedVersionTemplate=%version% Snapshot v22.%build%.%revision%.%extended-revision%
|
||||||
ExtendedVersionRevision=2
|
ExtendedVersionRevision=1
|
||||||
IsLite=False
|
IsLite=False
|
||||||
InitialBootup=False
|
InitialBootup=False
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue