Skip to content

Commit

Permalink
Updated: Chose the unique index for all tables
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdvideo1234 committed Aug 28, 2024
1 parent 95e2671 commit 788b21c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lua/autorun/trackassembly_init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ local asmlib = trackasmlib; if(not asmlib) then -- Module present
------------ CONFIGURE ASMLIB ------------

asmlib.InitBase("track","assembly")
asmlib.SetOpVar("TOOL_VERSION","8.780")
asmlib.SetOpVar("TOOL_VERSION","8.781")

------------ CONFIGURE GLOBAL INIT OPVARS ------------

Expand Down Expand Up @@ -1649,7 +1649,7 @@ propertiesAdd(gsOptionsCM, gtOptionsCM)

asmlib.NewTable("PIECES",{
Timer = gaTimerSet[1],
Index = {{1},{4},{1,4}},
Index = {{1},{4},{1,4,Un=true}},
Trigs = {
Record = function(arLine, vSrc)
local noMD = asmlib.GetOpVar("MISS_NOMD")
Expand Down Expand Up @@ -1732,7 +1732,7 @@ asmlib.NewTable("PIECES",{

asmlib.NewTable("ADDITIONS",{
Timer = gaTimerSet[2],
Index = {{1},{4},{1,4}},
Index = {{1},{4},{1,4,Un=true}},
Query = {
Record = {"%s","%s","%s","%d","%s","%s","%d","%d","%d","%d","%d","%d"},
ExportDSV = {1,4}
Expand Down Expand Up @@ -1785,7 +1785,7 @@ asmlib.NewTable("ADDITIONS",{

asmlib.NewTable("PHYSPROPERTIES",{
Timer = gaTimerSet[3],
Index = {{1},{2},{1,2}},
Index = {{1},{2},{1,2,Un=true}},
Trigs = {
Record = function(arLine, vSrc)
local noTY = asmlib.GetOpVar("MISS_NOTP")
Expand Down

0 comments on commit 788b21c

Please sign in to comment.