Advertisement
DuneSciFye

Untitled

May 15th, 2022
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. function block() {
  2. if ("%block%" == "POTATOES") {
  3. return "potato";
  4. }
  5. if ("%block%" == "CARROTS") {
  6. return "carrot";
  7. }
  8. if ("%block%" == "BEETROOTS") {
  9. return "beetroot";
  10. }
  11.  
  12. return "carrot";
  13. }
  14.  
  15. block();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement