Skip to content
This repository was archived by the owner on Dec 1, 2024. It is now read-only.

Commit 0efa3a0

Browse files
committed
Release 3.9
Bugfix & Optimization
1 parent 3ef5c7d commit 0efa3a0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

source-minified.lua

+2-2
Large diffs are not rendered by default.

source.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ local function RandomString()
7474
local Length = math.random(11, 22)
7575
local Array = {}
7676
for Index = 1, Length do
77-
Array[Index] = string.char(math.random(48, 90))
77+
Array[Index] = string.char(math.random(35, 91))
7878
end
7979
return table.concat(Array)
8080
end
@@ -5916,7 +5916,7 @@ local function ExecuteCode(str, env)
59165916
end)
59175917

59185918
if ran then
5919-
return f, buff.data
5919+
return f, buff and buff.data
59205920
end
59215921
end
59225922

0 commit comments

Comments
 (0)