We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93a427b commit b2f8617Copy full SHA for b2f8617
code/game/machinery/doors/table.dm
@@ -8,6 +8,7 @@
8
pass_flags_self = PASSTABLE
9
layer = TABLE_LAYER
10
open_layer = TABLE_LAYER
11
+ closed_layer = TABLE_LAYER
12
throwpass = 1 //You can throw objects over this, despite its density.
13
use_power = MACHINE_POWER_USE_NONE
14
machine_flags = SCREWTOGGLE
code/game/objects/items/stacks/stack_recipes.dm
@@ -230,7 +230,7 @@
230
if(!dirs_found)
231
to_chat(user, "<span class='warning'>\The [title] must be constructed next to a table or wall!</span>")
232
return 0
233
- return 1
+ return ..()
234
235
/datum/stack_recipe/table_door/finish_building(mob/user, var/obj/item/stack/S, var/obj/R)
236
if(!(dirs_found & clockwise_perpendicular_dirs(R.dir)))
0 commit comments