Skip to content

Commit

Permalink
Merge branch 'CC-expansion' of https://github.com/GrrrKitten/cmss13 i…
Browse files Browse the repository at this point in the history
…nto CC-expansion
  • Loading branch information
GrrrKitten committed Feb 24, 2024
2 parents 0faf398 + ef6402a commit 6ba5be3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions code/game/machinery/fax_machine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -536,9 +536,15 @@ GLOBAL_LIST_EMPTY(alldepartments)
/obj/item/device/fax_backpack/attack_self(mob/user) //activate item version fax inhand to deploy
if(!ishuman(user))
return
<<<<<<< HEAD
var/turf/deployturf = get_turf(user)
if(istype(deployturf, /turf/open))
var/turf/open/floor = deployturf
=======
var/turf/T = get_turf(user)
if(istype(T, /turf/open))
var/turf/open/floor = T
>>>>>>> ef6402a47d86f35e243083a68d6b5e5176cb4852
if(!floor.allow_construction)
to_chat(user, SPAN_WARNING("You cannot deploy \the [src] here, find a more secure surface!"))
return FALSE
Expand Down

0 comments on commit 6ba5be3

Please sign in to comment.