Skip to content

Commit

Permalink
fix: made some oops and fixed some oops
Browse files Browse the repository at this point in the history
  • Loading branch information
usmarine2687 committed Dec 6, 2023
1 parent 031eda6 commit 6756b6b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Scriber/init.lua
Expand Up @@ -1592,13 +1592,13 @@ local function bind_scriber(cmd,cmd2)

if tonumber(cmd) ~= nil and tonumber(cmd2) == nil then
cmd2 = cmd
MinLevel = tonumber(cmd)
MaxLevel = tonumber(cmd2)
MinLevel = cmd
MaxLevel = cmd2
scriber()
return
elseif tonumber(cmd) ~= nil and tonumber(cmd2) ~= nil then
MinLevel = tonumber(cmd)
Maxlevel = tonumber(cmd2)
MinLevel = cmd
Maxlevel = cmd2
scriber()
return
else
Expand Down

0 comments on commit 6756b6b

Please sign in to comment.