Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions code/game/machinery/doors/table.dm
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
pass_flags_self = PASSTABLE
layer = TABLE_LAYER
open_layer = TABLE_LAYER
closed_layer = TABLE_LAYER
throwpass = 1 //You can throw objects over this, despite its density.
use_power = MACHINE_POWER_USE_NONE
machine_flags = SCREWTOGGLE
Expand Down
2 changes: 1 addition & 1 deletion code/game/objects/items/stacks/stack_recipes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@
if(!dirs_found)
to_chat(user, "<span class='warning'>\The [title] must be constructed next to a table or wall!</span>")
return 0
return 1
return ..()

/datum/stack_recipe/table_door/finish_building(mob/user, var/obj/item/stack/S, var/obj/R)
if(!(dirs_found & clockwise_perpendicular_dirs(R.dir)))
Expand Down
Loading