Fix: replace_terrain used wrong y2 coordinate
This commit is contained in:
committed by
Pasi Kallinen
parent
c0dc72b3d2
commit
1bb686f744
@@ -5122,7 +5122,7 @@ lspo_replace_terrain(lua_State *L)
|
|||||||
(void) selection_not(sel);
|
(void) selection_not(sel);
|
||||||
} else {
|
} else {
|
||||||
xchar rx1, ry1, rx2, ry2;
|
xchar rx1, ry1, rx2, ry2;
|
||||||
rx1 = x1, ry1 = y1, rx2 = x2, ry2 = x2;
|
rx1 = x1, ry1 = y1, rx2 = x2, ry2 = y2;
|
||||||
get_location(&rx1, &ry1, ANY_LOC, g.coder->croom);
|
get_location(&rx1, &ry1, ANY_LOC, g.coder->croom);
|
||||||
get_location(&rx2, &ry2, ANY_LOC, g.coder->croom);
|
get_location(&rx2, &ry2, ANY_LOC, g.coder->croom);
|
||||||
for (x = max(rx1, 0); x <= min(rx2, COLNO - 1); x++)
|
for (x = max(rx1, 0); x <= min(rx2, COLNO - 1); x++)
|
||||||
|
|||||||
Reference in New Issue
Block a user