and finally, the modules folder. Now I can publish and take a break
This commit is contained in:
@@ -60,7 +60,7 @@
|
||||
for(var/obj/item/reagent_containers/food/snacks/S in T.contents)
|
||||
var/datum/food_processor_process/P = select_recipe(S)
|
||||
if(P)
|
||||
if(T.SendSignal(COMSIG_TRY_STORAGE_TAKE, S, src))
|
||||
if(SEND_SIGNAL(T, COMSIG_TRY_STORAGE_TAKE, S, src))
|
||||
loaded++
|
||||
|
||||
if(loaded)
|
||||
@@ -106,7 +106,7 @@
|
||||
for(var/O in src.contents)
|
||||
var/datum/food_processor_process/P = select_recipe(O)
|
||||
if (!P)
|
||||
log_admin("DEBUG: [O] in processor hasnt got a suitable recipe. How did it get in there? Please report it immediatly!!!")
|
||||
log_admin("DEBUG: [O] in processor doesn't have a suitable recipe. How did it get in there? Please report it immediately!!!")
|
||||
continue
|
||||
total_time += P.time
|
||||
var/offset = prob(50) ? -2 : 2
|
||||
@@ -115,7 +115,7 @@
|
||||
for(var/atom/movable/O in src.contents)
|
||||
var/datum/food_processor_process/P = select_recipe(O)
|
||||
if (!P)
|
||||
log_admin("DEBUG: [O] in processor havent suitable recipe. How do you put it in?")
|
||||
log_admin("DEBUG: [O] in processor doesn't have a suitable recipe. How do you put it in?")
|
||||
continue
|
||||
process_food(P, O)
|
||||
pixel_x = initial(pixel_x) //return to its spot after shaking
|
||||
|
||||
Reference in New Issue
Block a user