Skip to content

Commit

Permalink
Fix: Station animation triggers every 250 ticks, not 256. (#266)
Browse files Browse the repository at this point in the history
The synchronized-tile-trigger is called from the station-acceptance-update cycle, not from the tile loop.
  • Loading branch information
frosch123 authored Sep 10, 2022
1 parent 0af534d commit 8928f56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nml/global_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def constant_number(name, info, pos):
"STAT_ANIM_TRAIN_ENTERS" : 3,
"STAT_ANIM_TRAIN_LEAVES" : 4,
"STAT_ANIM_TRAIN_LOAD_UNLOAD" : 5,
"STAT_ANIM_256_TICKS" : 6,
"STAT_ANIM_250_TICKS" : 6,

# house flags
"HOUSE_FLAG_NOT_SLOPED" : 1,
Expand Down

0 comments on commit 8928f56

Please sign in to comment.