Guest User

Part 2.0.1

a guest
Jun 19th, 2015
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. /obj/machinery/plumbing/pipe/sink/attack_hand(mob/user as mob)
  2. var/datum/plumb_web/A
  3. user.visible_message("\blue [user] using the handle of sink","\blue you using the handle of sink")
  4. for(var/obj/structure/reagent_dispensers/D in world)
  5. if(D.connect_to_pipe == 1 & plumb_web_num == D.plumb_web_num & A.web_num != plumb_web_num)
  6. var/i
  7. A.web_num = plumb_web_num
  8. for (i = 1, i <= D.reagents.reagent_list.len, i++)
  9. var/datum/reagent/R = D.reagents.reagent_list[i]
  10. A.reagents_name += R.id
  11. A.reagents_num += 1
  12. plumb_web += A
Advertisement
Add Comment
Please, Sign In to add comment