Update 50000-char_echo.py

This commit is contained in:
chrys87 2016-08-26 11:59:15 +02:00 committed by GitHub
parent a7e7fbd145
commit 6fca14e9da

View File

@ -17,7 +17,7 @@ class command():
if environment['screenData']['newDelta'] == '': if environment['screenData']['newDelta'] == '':
return environment return environment
# big changes are no char (but the value is bigger than one maybe the differ needs longer than you can type, so a little strange random buffer for now) # big changes are no char (but the value is bigger than one maybe the differ needs longer than you can type, so a little strange random buffer for now)
if len(environment['screenData']['newDelta']) > 5: if len(environment['screenData']['newDelta']) > 8:
return environment return environment
environment['runtime']['outputManager'].presentText(environment, environment['screenData']['newDelta'], interrupt=True) environment['runtime']['outputManager'].presentText(environment, environment['screenData']['newDelta'], interrupt=True)