Skip to content

Commit

Permalink
Added: General check for forced DB vacancy
Browse files Browse the repository at this point in the history
Added: Addition class defaults to physics prop
Renamed: Some local variables
  • Loading branch information
dvdvideo1234 committed Apr 18, 2024
1 parent d8ac61f commit efb7734
Show file tree
Hide file tree
Showing 4 changed files with 132 additions and 131 deletions.
2 changes: 1 addition & 1 deletion data/trackassembly/set/z_autorun_[trackassembly].txt
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ mySyncTable("PIECES", myPieces, true)
* It is mandatory and taken in pairs with LINEID, it forms the unique identifier of every record.
* When used in /DSV/ mode ( like seen below ) is is used as a hash index.
* MODELADD > This is the /*.mdl/ path of the addition entity. It is mandatory and cannot be disabled.
* ENTCLASS > This is the class of the addition entity. It is mandatory and cannot be disabled.
* ENTCLASS > This is the class of the addition entity. When disabled or missing it defaults to a normal prop.
* LINEID > This is the ID of the point that can be selected for building. They must be
* sequential and mandatory. If provided, the ID must the same as the row index under
* a given model key. Disabling this, makes it use the the index of the current line.
Expand Down
4 changes: 2 additions & 2 deletions lua/autorun/trackassembly_init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ local asmlib = trackasmlib; if(not asmlib) then -- Module present
------------ CONFIGURE ASMLIB ------------

asmlib.InitBase("track","assembly")
asmlib.SetOpVar("TOOL_VERSION","8.763")
asmlib.SetOpVar("TOOL_VERSION","8.764")

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

Expand Down Expand Up @@ -1782,7 +1782,7 @@ asmlib.CreateTable("ADDITIONS",{

asmlib.CreateTable("PHYSPROPERTIES",{
Timer = gaTimerSet[3],
Index = {{1},{2},{1,2}},
Index = {{1},{2},{1,2},{1,4}},
Trigs = {
Record = function(arLine, vSrc)
local noTY = asmlib.GetOpVar("MISS_NOTP")
Expand Down
2 changes: 1 addition & 1 deletion lua/autorun/z_autorun_[shinji85_s_rails].lua
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ mySyncTable("PIECES", myPieces, true)
* It is mandatory and taken in pairs with LINEID, it forms the unique identifier of every record.
* When used in /DSV/ mode ( like seen below ) is is used as a hash index.
* MODELADD > This is the /*.mdl/ path of the addition entity. It is mandatory and cannot be disabled.
* ENTCLASS > This is the class of the addition entity. It is mandatory and cannot be disabled.
* ENTCLASS > This is the class of the addition entity. When disabled or missing it defaults to a normal prop.
* LINEID > This is the ID of the point that can be selected for building. They must be
* sequential and mandatory. If provided, the ID must the same as the row index under
* a given model key. Disabling this, makes it use the the index of the current line.
Expand Down
Loading

0 comments on commit efb7734

Please sign in to comment.