mirror of
https://github.com/joe7575/techpack.git
synced 2024-11-26 09:03:46 +01:00
v1.13.3 Parameter 'side' bugfix
This commit is contained in:
parent
971363a0bd
commit
86e5b84470
@ -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)
|
## V1.13.2 Beta (2018-09-05)
|
||||||
|
|
||||||
### Changes
|
### 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
|
### Fixes
|
||||||
- Recipe bug for SaferLua Controller fixed
|
- Recipe bug for SaferLua Controller fixed
|
||||||
@ -44,6 +50,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
## Vx.xx.x (2018-mm-dd)
|
## Vx.xx.x (2018-mm-dd)
|
||||||
|
|
||||||
|
@ -67,7 +67,7 @@ function tubelib.get_neighbor_pos(pos, side)
|
|||||||
if ndir then
|
if ndir then
|
||||||
npos, ndir = remote_node(npos, ndir)
|
npos, ndir = remote_node(npos, ndir)
|
||||||
end
|
end
|
||||||
return npos, dir-1
|
return npos, ndir-1
|
||||||
end
|
end
|
||||||
return npos, facedir
|
return npos, facedir
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user