Skip to content

Commit

Permalink
silliest clown syntax error?
Browse files Browse the repository at this point in the history
  • Loading branch information
FalloutFalcon committed Sep 25, 2023
1 parent 474a962 commit 87a9ba0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/modules/food_and_drinks/kitchen_machinery/microwave.dm
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@
RegisterSignal(tocook, COMSIG_PARENT_QDELETING, PROC_REF(clear_cooking))
target.add_overlay(ration_overlay)
addtimer(CALLBACK(src, .proc/cook), 100)
visable_message("<span class='notice'>\the [target] rapidly begins cooking...</span>")
visible_message("<span class='notice'>\the [target] rapidly begins cooking...</span>")
playsound(src, 'sound/items/cig_light.ogg', 50, 1)
moveToNullspace()

Expand All @@ -395,10 +395,10 @@

/obj/item/ration_heater/proc/cook()
var/cookturf = get_turf(tocook)
tocook.visable_message("<span class='notice'>\the [src] lets out a final hiss...</span>")
tocook.visible_message("<span class='notice'>\the [src] lets out a final hiss...</span>")
playsound(tocook, 'sound/items/cig_snuff.ogg', 50, 1)
if(istype(tocook, /obj/item/reagent_containers/food) || istype(tocook, /obj/item/grown))
tocook.visable_message("<span class='notice'>\the [tocook] is done warming up!</span>")
tocook.visible_message("<span class='notice'>\the [tocook] is done warming up!</span>")
tocook.microwave_act()
clear_cooking()
if(uses == 0)
Expand Down

0 comments on commit 87a9ba0

Please sign in to comment.