Update workspace.lua

This commit is contained in:
LDDestroier 2019-06-25 00:45:46 -04:00 committed by GitHub
parent 8a89220fec
commit 146a6e9f21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -541,8 +541,8 @@ lddterm.screenshot = function(window)
lt, lb = t, b
if config.doTrippyVoid then
c = string.char(math.random(128, 159))
t = lddterm.backdropColors[1 + math.floor((y - realScroll[2] * scr_y) % #lddterm.backdropColors)]
b = lddterm.backdropColors[1 + math.floor((x - realScroll[1] * scr_x) % #lddterm.backdropColors)]
t = backdropColors[1 + math.floor((y - realScroll[2] * scr_y) % #backdropColors)]
b = backdropColors[1 + math.floor((x - realScroll[1] * scr_x) % #backdropColors)]
else
c = string.char( math.max(128, math.random(-5000, 159)) )
t = ({"7", "8"})[math.random(1, 2)]