Advertisement
tochka

02. Construction Crew

Jun 25th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function constructionCrew(worker) {
  2.  
  3.     if(worker.handsShaking === true){
  4.         worker.bloodAlcoholLevel += worker.weight * worker.experience * 0.1;
  5.         worker.handsShaking = false;
  6.     }
  7.  
  8.     return worker;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement