Fix remaining wall fence issue

This commit is contained in:
duncanspumpkin 2017-02-21 21:17:10 +00:00
parent 4db8f05515
commit c5e9698f0c
1 changed files with 2 additions and 2 deletions

View File

@ -5059,11 +5059,11 @@ void game_command_modify_tile(sint32* eax, sint32* ebx, sint32* ecx, sint32* edx
*ebx = tile_inspector_path_toggle_edge(x, y, elementIndex, edgeIndex, flags);
break;
}
case TILE_INSPECTOR_FENCE_SET_SLOPE:
case TILE_INSPECTOR_WALL_SET_SLOPE:
{
const sint32 elementIndex = *edx;
const sint32 slopeValue = *edi;
*ebx = tile_inspector_fence_set_slope(x, y, elementIndex, slopeValue, flags);
*ebx = tile_inspector_wall_set_slope(x, y, elementIndex, slopeValue, flags);
break;
}
case TILE_INSPECTOR_TRACK_BASE_HEIGHT_OFFSET: