diff --git a/code/modules/paperwork/photocopier.dm b/code/modules/paperwork/photocopier.dm index 2a880b670cbf6..8871de63837b0 100644 --- a/code/modules/paperwork/photocopier.dm +++ b/code/modules/paperwork/photocopier.dm @@ -173,7 +173,7 @@ to_chat(usr, "No images saved") return var/datum/picture/selection = tempAI.aicamera.selectpicture(usr) - var/obj/item/photo = new(loc, selection) + var/obj/item/photo/photo = new(loc, selection) photo.pixel_x = rand(-10, 10) photo.pixel_y = rand(-10, 10) toner -= 5 //AI prints color pictures only, thus they can do it more efficiently diff --git a/code/modules/photography/camera/camera.dm b/code/modules/photography/camera/camera.dm index fd7de4c1736c4..434374db8c57b 100644 --- a/code/modules/photography/camera/camera.dm +++ b/code/modules/photography/camera/camera.dm @@ -151,7 +151,7 @@ var/blueprints = FALSE var/clone_area = SSmapping.RequestBlockReservation(size_x * 2 + 1, size_y * 2 + 1) for(var/turf/T in block(locate(target_turf.x - size_x, target_turf.y - size_y, target_turf.z), locate(target_turf.x + size_x, target_turf.y + size_y, target_turf.z))) - if((ai_user && GLOB.cameranet.checkTurfVis(T)) || T in seen) + if((ai_user && GLOB.cameranet.checkTurfVis(T)) || (T in seen)) turfs += T for(var/mob/M in T) mobs += M