v1.13.3 Parameter 'side' bugfix

This commit is contained in:
Joachim Stolberg 2018-09-06 20:32:59 +02:00
parent 971363a0bd
commit 86e5b84470
2 changed files with 9 additions and 2 deletions

@ -2,10 +2,16 @@
## V1.13.3 Beta (2018-09-06)
### Fixes
- Parameter 'side' bugfix (used e.g. for on_push_item(...))
## V1.13.2 Beta (2018-09-05)
### Changes
- Harvester now continues now at that position, where it last switched to faulty.
- Harvester continues now at that position, where it last switched to faulty.
### Fixes
- Recipe bug for SaferLua Controller fixed
@ -44,6 +50,7 @@
-------------------------------------------------------------
## Vx.xx.x (2018-mm-dd)

@ -67,7 +67,7 @@ function tubelib.get_neighbor_pos(pos, side)
if ndir then
npos, ndir = remote_node(npos, ndir)
end
return npos, dir-1
return npos, ndir-1
end
return npos, facedir
end