Browse Source

Timings - Check ticking VD > 3 before suggesting using notick VD

pull/15/merge
DrBot7 3 years ago
parent
commit
7797c93be0
  1. 2
      cogs/timings_public.py

2
cogs/timings_public.py

@ -217,7 +217,7 @@ class Timings(commands.Cog):
ntvd = int(request_raw["worlds"][world]["notick-viewdistance"])
if ntvd >= tvd >= 4:
using_ntvd = False
if not using_ntvd:
if not using_ntvd and tvd > 3:
embed_var.add_field(name="❌ no-tick-view-distance",
value="Set in [paper.yml](http://bit.ly/paperconf). Recommended: " + str(
tvd) + ". And reduce view-distance from default (" + str(

Loading…
Cancel
Save