Changes to be committed:

modified:   Difficult_Rocket/__init__.py
	modified:   Difficult_Rocket/api/Exp/unsupport.py
This commit is contained in:
shenjack 2022-06-21 10:17:13 +08:00
parent b8cbd79bb2
commit f095ddec59
2 changed files with 28 additions and 2 deletions

View File

@ -29,7 +29,17 @@ _DR_options_type = {
if DR_options['playing']:
from .api import new_thread
def think_it(something):
return something
@new_thread('think')
def think(some_thing_to_think):
gotcha = 'think_result'
gotcha = think_it(some_thing_to_think)
return gotcha

View File

@ -18,5 +18,21 @@ class NoMoreJson5(Error):
"""说什么我也不用Json5了"""
class NopeImTeapot418(Error):
class Nope418ImTeapot(Error):
"""我只是个茶壶而已,我不能煮咖啡!"""
class ThinkError(Error):
"""进不去,进不去,怎么想都进不去!"""
class BrainError(Error):
"""clever brain.png"""
class BigBrainError(BrainError):
"""bigbrain.png"""
class BrainTimeoutError(BrainError, ThinkError):
"""脑子····超时·······················啦!"""