Makes this shit actually work

Yeah, also added crafting controller to debug controllers(who will need
to debug crafting, but whatever)

Conflicts:
	code/controllers/verbs.dm
This commit is contained in:
Razharas
2014-05-04 22:55:42 -04:00
committed by ZomgPonies
parent 3d762cd892
commit 95b6406adb
4 changed files with 21 additions and 14 deletions
+4 -2
View File
@@ -39,8 +39,9 @@
update_icon()
update_adjacent()
craft_holder = new craft_holder()
craft_holder.recipes = crafting_master.all_crafting_recipes
craft_holder = new /datum/crafting_holder(src)
spawn(10)
craft_holder.recipes = crafting_master.all_crafting_recipes
/obj/structure/table/Destroy()
update_adjacent()
@@ -54,6 +55,7 @@
/obj/structure/table/MouseDrop(atom/over)
if(usr.stat || usr.lying || !Adjacent(usr) || (over != usr))
return
world << "craft holder interact is attempting to be called"
craft_holder.interact(usr)
/obj/structure/table/update_icon()