Skip to content

Commit ced3585

Browse files
committed
Fixed flora cultivator pipe conenctions clipping
1 parent 51f1e1f commit ced3585

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

changelog.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Date: ????
99
- Make Flora Cultivator always show flowers
1010
- Added soil extractor, clay pit, and sand extractor recipes to mining productivity research
1111
Bugfixes:
12+
- Fixed flora cultivator pipe conenctions clipping
1213
- Changed great alien sample to poor alien sample from the Creature Chamber TURD path 1 phadai recipe so it matches the basic one. Resolves https://github.com/issues/assigned?issue=pyanodon%7CPyBlock%7C33.
1314
---------------------------------------------------------------------------------------------------
1415
Version: 3.2.2

prototypes/buildings/cultivator.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ local sets = {
182182
{08, 5},
183183
{26, 1},
184184
{24, 4},
185-
{42, 2},
185+
{45, 1},
186186
{50, 3},
187187
{56, 2},
188188
{47, 5},
@@ -243,7 +243,7 @@ for i=1, 7 do
243243
repeat_count = 255,
244244
animation_speed = 0.4,
245245
scale = 0.65,
246-
shift = util.by_pixel((i - 4) * 32, (j - 4) * 32 - 16),
246+
shift = util.by_pixel((j - 4) * 32, (i - 4) * 32 - 16),
247247
position = {
248248
(sets[(i - 1) * 7 + j][1] - 1) * 128,
249249
1600 - (sets[(i - 1) * 7 + j][2] - 1) * 160 -- inverted cause we want 1 to be sparse, 7 to be fully grown

0 commit comments

Comments
 (0)