HoratioGamer
HoratioGamer
There are only 5 possible responses to this algorithm from 2b2t: - Getting directly into the server -- problem solved. - Getting in Q, hopefully with a good Q position...
Perhaps it was the addition of ;b backfill that did it....
^ Good name Logging frequency would be a needed parameter.
This would be very useful. What might be a first step is, if Recaf could say give examples in the documentation of how to load the yarn/mappings: https://github.com/FabricMC/yarn/tree/1.20.5-pre2/mappings that would...
Ok, this is a different meaning of the word function, as in subroutine or procedure, a user declared function. I see listed in the code below Call, Jump, JumpIfTrue, under...
The solution might be here: in Lexer.java lines 106-119... ``` private void string() { while (!isAtEnd() && peek() != '"' && peek() != '\'') { if (peek() == '\n') line++;...
As I see it there are 6 options: OK, so I have never used an NBT editor before but I can see from a little reading I see it in...
Yes, Jumps as written are relative not absolute addressing `ip += jump` So the limit on script size is given by the type definition of `int ip = 0;`, so,...
Parser / Compiler.... I thought I was reading code from the latter, in which case the constants list is really being compiled, so, it could be a compiler error to...
``` if (constantI == -1) { constantI = constants.size(); constants.add(constant); } ``` becomes ``` if (constantI == -1) { if (constant.size==128) { // or 256 ? // Throw Exception with...