Skip to content

Commit

Permalink
fix(std): fix working on pathos
Browse files Browse the repository at this point in the history
  • Loading branch information
BaraBarax authored Oct 5, 2024
1 parent 99da4d1 commit f99b828
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/objects/items/storage/briefcase.dm
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
..()

/obj/item/storage/briefcase/std/proc/can_launch()
return authentication_complete && (locate(/turf/space) in view(get_turf(src)))
return authentication_complete && ((locate(/turf/space) in view(get_turf(src))) || (locate(/area/polarplanet/street) in view(get_turf(src))))

/obj/item/storage/briefcase/std/attack_self(mob/user)
ui_interact(user)
Expand Down

0 comments on commit f99b828

Please sign in to comment.