Files
Coding-Farm/2.harvest.py
DearSky 8427d2cc24 Add comment about the flip action in harvest function
Add comment explaining the purpose of the flip action.
2025-10-16 16:56:48 +08:00

14 lines
173 B
Python

'''
while True:
harvest()
#do_a_flip()
'''
while True:
if can_harvest():
harvest()
else:
do_a_flip()
#?翻跟头干什么
#虽然会浪费一秒钟,但是好玩~