Skip to content

Commit

Permalink
Fixed: Comment typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdvideo1234 committed Nov 17, 2023
1 parent 6b63260 commit 8db6f52
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lua/autorun/trackassembly_init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ local asmlib = trackasmlib; if(not asmlib) then -- Module present
------------ CONFIGURE ASMLIB ------------

asmlib.InitBase("track","assembly")
asmlib.SetOpVar("TOOL_VERSION","8.742")
asmlib.SetOpVar("TOOL_VERSION","8.743")
asmlib.SetIndexes("V" ,1,2,3)
asmlib.SetIndexes("A" ,1,2,3)
asmlib.SetIndexes("WV",1,2,3)
Expand Down
6 changes: 3 additions & 3 deletions lua/trackassembly/trackasmlib.lua
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ function GetOwner(oEnt)
ows = oEnt.player; if(IsPlayer(ows)) then return ows else ows = nil end
ows = oEnt.Owner; if(IsPlayer(ows)) then return ows else ows = nil end
ows = oEnt.owner; if(IsPlayer(ows)) then return ows else ows = nil end
if(set) then -- Duplicator die functions are registered
if(set) then -- Duplicator the functions are registered
set = set.GetCountUpdate; ows = (set.Args and set.Args[1] or nil)
if(IsPlayer(ows)) then return ows else ows = nil end
set = set.undo1; ows = (set.Args and set.Args[1] or nil)
Expand Down Expand Up @@ -1804,7 +1804,7 @@ function SetComboBoxList(cPanel, sVar)
end -- Copy the combo box content shown
pItem.OnSelect = function(pnSelf, nInd, sVal, anyData)
SetAsmConvar(nil, sVar, anyData)
end -- Apply the settinc to the specified variable
end -- Apply the setting to the specified variable
for iD = 1, #tSet do local sI = tSet[iD]
local sIco = ToIcon(sNam.."_"..sI:lower())
local sPrv = (sBase.."_"..sI:lower())
Expand Down Expand Up @@ -1832,7 +1832,7 @@ function SetNumSlider(cPanel, sVar, vDig, vMin, vMax, vDev)
-- Read minimum value form the first available
if(not IsHere(nMin)) then nMin, nDum = GetBorder(sKey)
if(not IsHere(nMin)) then nMin = GetAsmConvar(sVar, "MIN")
if(not IsHere(nMin)) then -- Mininum bound is not located
if(not IsHere(nMin)) then -- Minimum bound is not located
nMin = -mathAbs(2 * mathFloor(GetAsmConvar(sVar, "FLT")))
LogInstance("(L) Miss "..GetReport1(sKey))
else LogInstance("(L) Cvar "..GetReport2(sKey, nMin)) end
Expand Down

0 comments on commit 8db6f52

Please sign in to comment.