swee revised this gist 7 months ago. Go to revision
1 file changed, 1 insertion
mind.lua
| @@ -4,4 +4,5 @@ do | |||
| 4 | 4 | if not thought:makesSubjectSad() then | |
| 5 | 5 | thought:Destroy() | |
| 6 | 6 | end | |
| 7 | + | wait(5) | |
| 7 | 8 | end | |
swee revised this gist 7 months ago. Go to revision
1 file changed, 6 insertions, 3 deletions
mind.lua
| @@ -1,4 +1,7 @@ | |||
| 1 | - | thought = mind:getThought() | |
| 2 | - | if not thought:makesSubjectSad() then | |
| 3 | - | thought:Destroy() | |
| 1 | + | while true | |
| 2 | + | do | |
| 3 | + | thought = mind:getThought() | |
| 4 | + | if not thought:makesSubjectSad() then | |
| 5 | + | thought:Destroy() | |
| 6 | + | end | |
| 4 | 7 | end | |
swee revised this gist 7 months ago. Go to revision
1 file changed, 4 insertions
mind.lua(file created)
| @@ -0,0 +1,4 @@ | |||
| 1 | + | thought = mind:getThought() | |
| 2 | + | if not thought:makesSubjectSad() then | |
| 3 | + | thought:Destroy() | |
| 4 | + | end | |