made the chances to post the second video a lot lower

This commit is contained in:
Ava Fox 2021-09-09 09:07:56 -04:00
parent 0992294fe2
commit b16c6c8815
2 changed files with 2 additions and 2 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
/bin/
.DS_Store

View File

@ -3,8 +3,7 @@
(in-package #:out-of-touch-bot)
(defun choose (c1 c2)
(let ((chance (random 2)))
(if (zerop chance) c1 c2)))
(if (> (random 1.0) .25) c1 c2))
(defun main ()
(let ((video2 (uiop:file-exists-p "video2.mp4")))