Skip to content

Commit

Permalink
roger doger
Browse files Browse the repository at this point in the history
Co-authored-by: CPU_Blanc <54823378+CPU-Blanc@users.noreply.github.com>
  • Loading branch information
ErrorsWindows and CPU-Blanc committed May 10, 2024
1 parent 1c86452 commit 200e690
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions code/modules/urist/machinery/uristvending.dm
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,11 @@ Please keep it tidy, by which I mean put comments describing the item before the
var/mob/living/target = locate() in view(7, src)

if (!target)
return 0
return FALSE

visible_message(SPAN_WARNING("\The [src] ejects the contents of its paper storage bin at \the [target]!"))
for(var/i = 0 to rand(3,12))
var/obj/I = new /obj/item/paper(get_turf(src))
I.throw_at(target, 16, 3)
spawn(rand(1,5))
var/obj/I = new /obj/item/paper(src.loc)
I.throw_at(target, 16, 3)
return TRUE

0 comments on commit 200e690

Please sign in to comment.