Skip to content

Commit

Permalink
Merge pull request #1326 from Absolucy/fix-photos
Browse files Browse the repository at this point in the history
[PORT] Fix Photographs
  • Loading branch information
dwasint authored Mar 2, 2024
2 parents 45d383d + 235dcfa commit 63ffdf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/photography/camera/camera.dm
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@
var/blueprints = FALSE
var/clone_area = SSmapping.request_turf_block_reservation(size_x * 2 + 1, size_y * 2 + 1, 1)

var/width = size_x * 2
var/height = size_y * 2
var/width = size_x * 2 + 1
var/height = size_y * 2 + 1
for(var/turf/placeholder as anything in CORNER_BLOCK_OFFSET(target_turf, width, height, -size_x, -size_y))
while(istype(placeholder, /turf/open/openspace)) //Multi-z photography
placeholder = GET_TURF_BELOW(placeholder)
Expand Down

0 comments on commit 63ffdf4

Please sign in to comment.