forked from MarseyWorld/MarseyWorld
confused as hell
parent
1e884878d8
commit
36abb0b397
|
@ -63,8 +63,8 @@ def publish(pid, v):
|
|||
g.db.add(p)
|
||||
|
||||
p.chudded = v.chud and p.hole != 'chudrama' and not (p.is_longpost and not v.chudded_by)
|
||||
p.queened = (v.queen and not p.is_longpost)
|
||||
print('bool: ', (v.queen and not p.is_longpost), flush=True)
|
||||
p.queened = bool(v.queen and not p.is_longpost)
|
||||
print('bool: ', bool(v.queen and not p.is_longpost), flush=True)
|
||||
print(p.queened, flush=True)
|
||||
p.sharpened = v.sharpen and not p.is_longpost
|
||||
p.rainbowed = v.rainbow and not p.is_longpost
|
||||
|
|
Loading…
Reference in New Issue