From 584dbd71d9bfe6a3b6fdd5d91f8025df3193f889 Mon Sep 17 00:00:00 2001 From: Ninjune Date: Sun, 27 Nov 2022 19:41:13 -0600 Subject: v1.6.6 --- index.js | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'index.js') diff --git a/index.js b/index.js index eda6be1..bb38e78 100644 --- a/index.js +++ b/index.js @@ -11,25 +11,6 @@ import axios from '../axios' import constants from './util/constants'; const PREFIX = constants.PREFIX -//world update (coords) -register("renderWorld", () => { - if(constants.throneValues[0] != undefined) - { - for(let i = 0; i < constants.throneValues.length; i++) - { - Tessellator.drawString(i+1, constants.throneValues[i][0], constants.throneValues[i][1], constants.throneValues[i][2]) - } - } - if(constants.spiralValues[0] != undefined) - { - for(let i = 0; i < constants.spiralValues.length; i++) - { - Tessellator.drawString(i+1, constants.spiralValues[i][0], constants.spiralValues[i][1], constants.spiralValues[i][2]) - } - } -}) - - //update every second (dogshit code) register("step", () => { // first time check -- cgit