diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..0e0bc44 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,48 @@ +name: Build +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Setup java + uses: actions/setup-java@v4 + with: + distribution: "temurin" + java-version: "21" + cache: "gradle" + - name: Validate Gradle wrapper + uses: gradle/actions/wrapper-validation@v3 + - name: Compile code to javascript + run: ./gradlew generateJavaScript + - name: Compile assets + run: bash ./CompileEPK.sh + - name: Zip web files + run: zip -r web_files.zip javascript/* + - name: Upload github-pages artifact + if: github.ref == 'refs/heads/main' + uses: actions/upload-pages-artifact@v3 + with: + path: javascript/ + - name: Commit changes + uses: stefanzweifel/git-auto-commit-action@v5 + + deploy: + needs: build + if: github.ref == 'refs/heads/main' + concurrency: + group: "pages" + permissions: + pages: write + id-token: write + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Deploy to github pages + uses: actions/deploy-pages@v4 diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index cc4fdc2..e644113 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 6b932e8..b82aa23 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,7 @@ -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip +networkTimeout=10000 +validateDistributionUrl=true +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew old mode 100644 new mode 100755 index 2fe81a7..1aa94a4 --- a/gradlew +++ b/gradlew @@ -1,7 +1,7 @@ -#!/usr/bin/env sh +#!/bin/sh # -# Copyright 2015 the original author or authors. +# Copyright © 2015-2021 the original authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -17,78 +17,111 @@ # ############################################################################## -## -## Gradle start up script for UN*X -## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# ############################################################################## # Attempt to set APP_HOME + # Resolve links: $0 may be a link -PRG="$0" -# Need this for relative symlinks. -while [ -h "$PRG" ] ; do - ls=`ls -ld "$PRG"` - link=`expr "$ls" : '.*-> \(.*\)$'` - if expr "$link" : '/.*' > /dev/null; then - PRG="$link" - else - PRG=`dirname "$PRG"`"/$link" - fi +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac done -SAVED="`pwd`" -cd "`dirname \"$PRG\"`/" >/dev/null -APP_HOME="`pwd -P`" -cd "$SAVED" >/dev/null -APP_NAME="Gradle" -APP_BASE_NAME=`basename "$0"` - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. -MAX_FD="maximum" +MAX_FD=maximum warn () { echo "$*" -} +} >&2 die () { echo echo "$*" echo exit 1 -} +} >&2 # OS specific support (must be 'true' or 'false'). cygwin=false msys=false darwin=false nonstop=false -case "`uname`" in - CYGWIN* ) - cygwin=true - ;; - Darwin* ) - darwin=true - ;; - MINGW* ) - msys=true - ;; - NONSTOP* ) - nonstop=true - ;; +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; esac CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + # Determine the Java command to use to start the JVM. if [ -n "$JAVA_HOME" ] ; then if [ -x "$JAVA_HOME/jre/sh/java" ] ; then # IBM's JDK on AIX uses strange locations for the executables - JAVACMD="$JAVA_HOME/jre/sh/java" + JAVACMD=$JAVA_HOME/jre/sh/java else - JAVACMD="$JAVA_HOME/bin/java" + JAVACMD=$JAVA_HOME/bin/java fi if [ ! -x "$JAVACMD" ] ; then die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME @@ -97,87 +130,120 @@ Please set the JAVA_HOME variable in your environment to match the location of your Java installation." fi else - JAVACMD="java" - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation." + fi fi # Increase the maximum file descriptors if we can. -if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then - MAX_FD_LIMIT=`ulimit -H -n` - if [ $? -eq 0 ] ; then - if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then - MAX_FD="$MAX_FD_LIMIT" - fi - ulimit -n $MAX_FD - if [ $? -ne 0 ] ; then - warn "Could not set maximum file descriptor limit: $MAX_FD" - fi - else - warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" - fi -fi - -# For Darwin, add options to specify how the application appears in the dock -if $darwin; then - GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" -fi - -# For Cygwin or MSYS, switch paths to Windows format before running java -if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then - APP_HOME=`cygpath --path --mixed "$APP_HOME"` - CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` - JAVACMD=`cygpath --unix "$JAVACMD"` - - # We build the pattern for arguments to be converted via cygpath - ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` - SEP="" - for dir in $ROOTDIRSRAW ; do - ROOTDIRS="$ROOTDIRS$SEP$dir" - SEP="|" - done - OURCYGPATTERN="(^($ROOTDIRS))" - # Add a user-defined pattern to the cygpath arguments - if [ "$GRADLE_CYGPATTERN" != "" ] ; then - OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" - fi - # Now convert the arguments - kludge to limit ourselves to /bin/sh - i=0 - for arg in "$@" ; do - CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` - CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option - - if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition - eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` - else - eval `echo args$i`="\"$arg\"" - fi - i=`expr $i + 1` - done - case $i in - 0) set -- ;; - 1) set -- "$args0" ;; - 2) set -- "$args0" "$args1" ;; - 3) set -- "$args0" "$args1" "$args2" ;; - 4) set -- "$args0" "$args1" "$args2" "$args3" ;; - 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; - 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; - 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; - 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; - 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" esac fi -# Escape application args -save () { - for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done - echo " " -} -APP_ARGS=`save "$@"` +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. -# Collect all arguments for the java command, following the shell quoting and substitution rules -eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat index 24467a1..7101f8e 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -14,7 +14,7 @@ @rem limitations under the License. @rem -@if "%DEBUG%" == "" @echo off +@if "%DEBUG%"=="" @echo off @rem ########################################################################## @rem @rem Gradle startup script for Windows @@ -25,10 +25,14 @@ if "%OS%"=="Windows_NT" setlocal set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" @@ -37,13 +41,13 @@ if defined JAVA_HOME goto findJavaFromJavaHome set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto init +if %ERRORLEVEL% equ 0 goto execute -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail @@ -51,48 +55,36 @@ goto fail set JAVA_HOME=%JAVA_HOME:"=% set JAVA_EXE=%JAVA_HOME%/bin/java.exe -if exist "%JAVA_EXE%" goto init +if exist "%JAVA_EXE%" goto execute -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail -:init -@rem Get command-line arguments, handling Windows variants - -if not "%OS%" == "Windows_NT" goto win9xME_args - -:win9xME_args -@rem Slurp the command line arguments. -set CMD_LINE_ARGS= -set _SKIP=2 - -:win9xME_args_slurp -if "x%~1" == "x" goto execute - -set CMD_LINE_ARGS=%* - :execute @rem Setup the command line set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + @rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* :end @rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd +if %ERRORLEVEL% equ 0 goto mainEnd :fail rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% :mainEnd if "%OS%"=="Windows_NT" endlocal diff --git a/javascript/assets.epk b/javascript/assets.epk index 3856488..7a9181e 100644 Binary files a/javascript/assets.epk and b/javascript/assets.epk differ diff --git a/javascript/classes.js b/javascript/classes.js index 92b9355..f5b1eb8 100644 --- a/javascript/classes.js +++ b/javascript/classes.js @@ -7678,6 +7678,13 @@ parameterTypes : [], returnType : ji_PrintStream, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevl_Level), + callable : null }, { name : "", modifiers : 512, @@ -7857,6 +7864,13 @@ parameterTypes : [jl_String], returnType : nlevi_EnumPlatformAgent, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevi_EnumPlatformAgent), + callable : null }, { name : "", modifiers : 512, @@ -7922,6 +7936,13 @@ parameterTypes : [jl_String], returnType : nlevi_EnumPlatformOS, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevi_EnumPlatformOS), + callable : null }, { name : "", modifiers : 512, @@ -7973,6 +7994,13 @@ parameterTypes : [jl_String], returnType : nlevi_EnumPlatformANGLE, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevi_EnumPlatformANGLE), + callable : null }, { name : "", modifiers : 512, @@ -17037,6 +17065,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockPlanks$EnumType), + callable : null }, { name : "", modifiers : 512, @@ -26806,6 +26841,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmi_EnumDyeColor), + callable : null }, { name : "", modifiers : 512, @@ -27324,6 +27366,13 @@ parameterTypes : [jl_String], returnType : nmw_WorldSettings$GameType, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmw_WorldSettings$GameType), + callable : null }, { name : "", modifiers : 512, @@ -27652,6 +27701,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmw_EnumDifficulty), + callable : null }, { name : "", modifiers : 512, @@ -27775,6 +27831,13 @@ parameterTypes : [$rt_intcls()], returnType : nlevp_DefaultSkins, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevp_DefaultSkins), + callable : null }, { name : "", modifiers : 512, @@ -27826,6 +27889,13 @@ parameterTypes : [$rt_intcls()], returnType : nlevp_SkinModel, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevp_SkinModel), + callable : null }, { name : "", modifiers : 512, @@ -27856,6 +27926,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmu_Util$EnumOS), + callable : null }, { name : "", modifiers : 512, @@ -28339,6 +28416,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockPressurePlate$Sensitivity), + callable : null }, { name : "", modifiers : 512, @@ -28404,6 +28488,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockStoneBrick$EnumType), + callable : null }, { name : "", modifiers : 512, @@ -28469,6 +28560,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockSandStone$EnumType), + callable : null }, { name : "", modifiers : 512, @@ -28527,6 +28625,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockQuartz$EnumType), + callable : null }, { name : "", modifiers : 512, @@ -28599,6 +28704,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockSand$EnumType), + callable : null }, { name : "", modifiers : 512, @@ -28664,6 +28776,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockRedSandstone$EnumType), + callable : null }, { name : "", modifiers : 512, @@ -28910,6 +29029,13 @@ parameterTypes : [], returnType : nmi_Item, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmi_Item$ToolMaterial), + callable : null }, { name : "", modifiers : 512, @@ -28975,6 +29101,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmi_ItemArmor$ArmorMaterial), + callable : null }, { name : "", modifiers : 512, @@ -29203,6 +29336,13 @@ parameterTypes : [$rt_intcls()], returnType : nmei_EntityMinecart$EnumMinecartType, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmei_EntityMinecart$EnumMinecartType), + callable : null }, { name : "", modifiers : 512, @@ -30132,6 +30272,13 @@ parameterTypes : [nmn_Packet], returnType : nmn_EnumConnectionState, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmn_EnumConnectionState), + callable : null }, { name : "", modifiers : 512, @@ -30149,183 +30296,6 @@ returnType : $rt_voidcls(), callable : null }]; - jl_Byte.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_bytecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "intValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "longValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_longcls(), - callable : null - }, { - name : "floatValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "doubleValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_doublecls(), - callable : null - }, { - name : "byteValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_bytecls(), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_bytecls()], - returnType : jl_Byte, - callable : null - }, { - name : "toString", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_bytecls()], - returnType : jl_String, - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "equals", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hashCode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "hashCode", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_bytecls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "compare", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_bytecls(), $rt_bytecls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "compareUnsigned", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_bytecls(), $rt_bytecls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "compareTo", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Byte], - returnType : $rt_intcls(), - callable : null - }, { - name : "toUnsignedInt", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_bytecls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "toUnsignedLong", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_bytecls()], - returnType : $rt_longcls(), - callable : null - }, { - name : "parseByte", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_bytecls(), - callable : null - }, { - name : "parseByte", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_bytecls(), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String, $rt_intcls()], - returnType : jl_Byte, - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : jl_Byte, - callable : null - }, { - name : "decode", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : jl_Byte, - callable : null - }, { - name : "compareTo", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_intcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; jnc_UnsupportedCharsetException.$meta.methods = [ { name : "", @@ -30594,6 +30564,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockBed$EnumPartType), + callable : null }, { name : "", modifiers : 512, @@ -30673,6 +30650,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockDirt$DirtType), + callable : null }, { name : "", modifiers : 512, @@ -30717,6 +30701,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockDoor$EnumHingePosition), + callable : null }, { name : "", modifiers : 512, @@ -30761,6 +30752,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockDoor$EnumDoorHalf), + callable : null }, { name : "", modifiers : 512, @@ -30833,6 +30831,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockDoublePlant$EnumPlantType), + callable : null }, { name : "", modifiers : 512, @@ -30877,6 +30882,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockDoublePlant$EnumBlockHalf), + callable : null }, { name : "", modifiers : 512, @@ -30921,6 +30933,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockFlowerPot$EnumFlowerType), + callable : null }, { name : "", modifiers : 512, @@ -30979,6 +30998,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockHugeMushroom$EnumType), + callable : null }, { name : "", modifiers : 512, @@ -31051,6 +31077,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockLever$EnumOrientation), + callable : null }, { name : "", modifiers : 512, @@ -31102,6 +31135,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockLog$EnumAxis), + callable : null }, { name : "", modifiers : 512, @@ -31238,6 +31278,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockPistonExtension$EnumPistonType), + callable : null }, { name : "", modifiers : 512, @@ -31303,6 +31350,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockPrismarine$EnumType), + callable : null }, { name : "", modifiers : 512, @@ -31368,6 +31422,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockRailBase$EnumRailDirection), + callable : null }, { name : "", modifiers : 512, @@ -31458,6 +31519,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockRedstoneComparator$Mode), + callable : null }, { name : "", modifiers : 512, @@ -31502,6 +31570,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockRedstoneWire$EnumAttachPosition), + callable : null }, { name : "", modifiers : 512, @@ -31588,6 +31663,13 @@ parameterTypes : [nmbs_IBlockState], returnType : nmb_BlockSilverfish$EnumType, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockSilverfish$EnumType), + callable : null }, { name : "", modifiers : 512, @@ -31632,6 +31714,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockSlab$EnumBlockHalf), + callable : null }, { name : "", modifiers : 512, @@ -31676,6 +31765,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockStairs$EnumHalf), + callable : null }, { name : "", modifiers : 512, @@ -31720,6 +31816,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockStairs$EnumShape), + callable : null }, { name : "", modifiers : 512, @@ -31799,6 +31902,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockStone$EnumType), + callable : null }, { name : "", modifiers : 512, @@ -31878,6 +31988,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockStoneSlab$EnumType), + callable : null }, { name : "", modifiers : 512, @@ -31950,6 +32067,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockStoneSlabNew$EnumType), + callable : null }, { name : "", modifiers : 512, @@ -32008,6 +32132,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockTallGrass$EnumType), + callable : null }, { name : "", modifiers : 512, @@ -32052,6 +32183,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockTrapDoor$DoorHalf), + callable : null }, { name : "", modifiers : 512, @@ -32117,6 +32255,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockWall$EnumType), + callable : null }, { name : "", modifiers : 512, @@ -32586,6 +32731,13 @@ parameterTypes : [], returnType : nmu_Vec3i, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmu_EnumFacing), + callable : null }, { name : "", modifiers : 512, @@ -32702,6 +32854,13 @@ parameterTypes : [jl_Object], returnType : $rt_booleancls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmu_EnumFacing$Axis), + callable : null }, { name : "", modifiers : 512, @@ -34589,6 +34748,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmn_EnumPacketDirection), + callable : null }, { name : "", modifiers : 512, @@ -34619,6 +34785,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmsn_NetHandlerLoginServer$LoginState), + callable : null }, { name : "", modifiers : 512, @@ -37225,6 +37398,13 @@ parameterTypes : [nmi_Item], returnType : $rt_booleancls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nme_EnumEnchantmentType), + callable : null }, { name : "", modifiers : 512, @@ -37497,6 +37677,13 @@ parameterTypes : [], returnType : nmb_BlockFlower, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockFlower$EnumFlowerColor), + callable : null }, { name : "", modifiers : 512, @@ -37583,6 +37770,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_BlockFlower$EnumFlowerType), + callable : null }, { name : "", modifiers : 512, @@ -37655,6 +37849,13 @@ parameterTypes : [jl_Object], returnType : $rt_booleancls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmu_EnumFacing$Plane), + callable : null }, { name : "", modifiers : 512, @@ -37865,6 +38066,13 @@ parameterTypes : [$rt_booleancls(), $rt_booleancls()], returnType : ju_Collection, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmu_EnumChatFormatting), + callable : null }, { name : "", modifiers : 512, @@ -38217,6 +38425,13 @@ parameterTypes : [nmi_ItemStack], returnType : nmi_ItemFishFood$FishType, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmi_ItemFishFood$FishType), + callable : null }, { name : "", modifiers : 512, @@ -41086,6 +41301,13 @@ parameterTypes : [], returnType : cgcb_Predicate, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(cgcb_Predicates$ObjectPredicate), + callable : null }, { name : "", modifiers : 512, @@ -41130,6 +41352,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmu_EnumFacing$AxisDirection), + callable : null }, { name : "", modifiers : 512, @@ -41975,6 +42204,13 @@ parameterTypes : [jl_String, $rt_intcls(), nmu_ResourceLocation, nmu_ResourceLocation, nmu_ResourceLocation, nmu_ResourceLocation, $rt_arraycls(nmu_ResourceLocation), $rt_arraycls($rt_floatcls()), $rt_floatcls(), nmu_ResourceLocation], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevp_HighPolySkin), + callable : null }, { name : "", modifiers : 512, @@ -42005,6 +42241,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlev_BaseNCodec$CodecPolicy), + callable : null }, { name : "", modifiers : 512, @@ -42422,6 +42665,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevi_EnumPlatformType), + callable : null }, { name : "", modifiers : 512, @@ -45118,6 +45368,13 @@ parameterTypes : [$rt_floatcls()], returnType : $rt_floatcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmcs_GameSettings$Options), + callable : null }, { name : "", modifiers : 512, @@ -46955,6 +47212,13 @@ parameterTypes : [jl_String], returnType : nme_HoverEvent$Action, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nme_HoverEvent$Action), + callable : null }, { name : "", modifiers : 512, @@ -46985,6 +47249,13 @@ parameterTypes : [jl_String, $rt_intcls(), nmu_EnumChatFormatting, jl_String], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmi_EnumRarity), + callable : null }, { name : "", modifiers : 512, @@ -47306,6 +47577,13 @@ parameterTypes : [jl_String], returnType : nmca_SoundCategory, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmca_SoundCategory), + callable : null }, { name : "", modifiers : 512, @@ -51636,6 +51914,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevi_EnumCursorType), + callable : null }, { name : "", modifiers : 512, @@ -51687,6 +51972,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmep_EntityPlayer$EnumChatVisibility), + callable : null }, { name : "", modifiers : 512, @@ -51745,6 +52037,13 @@ parameterTypes : [], returnType : nmu_IChatComponent, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmep_EnumPlayerModelParts), + callable : null }, { name : "", modifiers : 512, @@ -52881,6 +53180,13 @@ parameterTypes : [$rt_intcls()], returnType : nmu_EnumParticleTypes, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmu_EnumParticleTypes), + callable : null }, { name : "", modifiers : 512, @@ -53648,6 +53954,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(cgcc_AbstractIterator$State), + callable : null }, { name : "", modifiers : 512, @@ -54701,6 +55014,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmu_EnumWorldBlockLayer), + callable : null }, { name : "", modifiers : 512, @@ -54828,6 +55148,13 @@ parameterTypes : [$rt_intcls()], returnType : nlevp_DefaultCapes, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevp_DefaultCapes), + callable : null }, { name : "", modifiers : 512, @@ -54858,6 +55185,13 @@ parameterTypes : [jl_String, $rt_intcls(), $rt_booleancls(), $rt_booleancls(), $rt_booleancls(), $rt_booleancls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevo_VertexFormat), + callable : null }, { name : "", modifiers : 512, @@ -56372,6 +56706,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmnpc_C16PacketClientStatus$EnumState), + callable : null }, { name : "", modifiers : 512, @@ -56516,6 +56857,13 @@ parameterTypes : [jl_String], returnType : nme_ClickEvent$Action, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nme_ClickEvent$Action), + callable : null }, { name : "", modifiers : 512, @@ -56867,6 +57215,13 @@ parameterTypes : [], returnType : $rt_booleancls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevi_EnumEaglerConnectionState), + callable : null }, { name : "", modifiers : 512, @@ -57214,6 +57569,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevv_EnumVoiceChannelType), + callable : null }, { name : "", modifiers : 512, @@ -57244,6 +57606,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevv_EnumVoiceChannelStatus), + callable : null }, { name : "", modifiers : 512, @@ -57274,6 +57643,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmu_MovingObjectPosition$MovingObjectType), + callable : null }, { name : "", modifiers : 512, @@ -57304,6 +57680,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmw_GameRules$ValueType), + callable : null }, { name : "", modifiers : 512, @@ -57513,6 +57896,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevv_EnumVoiceChannelReadyState), + callable : null }, { name : "", modifiers : 512, @@ -57543,6 +57933,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevsr_RelayQuery$RateLimit), + callable : null }, { name : "", modifiers : 512, @@ -57573,6 +57970,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevv_EnumVoiceChannelPeerState), + callable : null }, { name : "", modifiers : 512, @@ -57995,6 +58399,13 @@ parameterTypes : [], returnType : $rt_intcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmca_MusicTicker$MusicType), + callable : null }, { name : "", modifiers : 512, @@ -58947,6 +59358,13 @@ parameterTypes : [jl_String], returnType : nmca_SoundList$SoundEntry$Type, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmca_SoundList$SoundEntry$Type), + callable : null }, { name : "", modifiers : 512, @@ -58977,6 +59395,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevoed_ShadersRenderPassFuture$PassType), + callable : null }, { name : "", modifiers : 512, @@ -59470,6 +59895,13 @@ parameterTypes : [], returnType : nmu_IChatComponent, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmcm_ServerData$ServerResourceMode), + callable : null }, { name : "", modifiers : 512, @@ -61052,6 +61484,13 @@ parameterTypes : [$rt_intcls(), $rt_intcls()], returnType : nmcrm_ModelRotation, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmcrm_ModelRotation), + callable : null }, { name : "", modifiers : 512, @@ -61110,6 +61549,13 @@ parameterTypes : [jl_String], returnType : nmc_CommandResultStats$Type, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmc_CommandResultStats$Type), + callable : null }, { name : "", modifiers : 512, @@ -61244,6 +61690,13 @@ parameterTypes : [], returnType : $rt_intcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmwb_EnumBorderStatus), + callable : null }, { name : "", modifiers : 512, @@ -61274,6 +61727,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmi_EnumAction), + callable : null }, { name : "", modifiers : 512, @@ -61369,6 +61829,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevo_GlStateManager$TexGen), + callable : null }, { name : "", modifiers : 512, @@ -61399,6 +61866,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmcrbm_ItemCameraTransforms$TransformType), + callable : null }, { name : "", modifiers : 512, @@ -61443,6 +61917,13 @@ parameterTypes : [jl_String], returnType : nms_IScoreObjectiveCriteria$EnumRenderType, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nms_IScoreObjectiveCriteria$EnumRenderType), + callable : null }, { name : "", modifiers : 512, @@ -61519,6 +62000,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmnps_S38PacketPlayerListItem$Action), + callable : null }, { name : "", modifiers : 512, @@ -61635,6 +62123,13 @@ parameterTypes : [$rt_intcls()], returnType : nmcr_EnumFaceDirection$VertexInformation, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmcr_EnumFaceDirection), + callable : null }, { name : "", modifiers : 512, @@ -61725,6 +62220,13 @@ parameterTypes : [], returnType : $rt_intcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmca_ISound$AttenuationType), + callable : null }, { name : "", modifiers : 512, @@ -61755,6 +62257,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmnpc_C0BPacketEntityAction$Action), + callable : null }, { name : "", modifiers : 512, @@ -61785,6 +62294,13 @@ parameterTypes : [jl_String, $rt_intcls(), $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmw_EnumSkyBlock), + callable : null }, { name : "", modifiers : 512, @@ -61981,6 +62497,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmwgl_GenLayerEdge$Mode), + callable : null }, { name : "", modifiers : 512, @@ -62511,6 +63034,494 @@ returnType : $rt_intcls(), callable : null }]; + nmw_WorldServerMulti$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmw_WorldServerMulti], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onSizeChanged", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwb_WorldBorder, $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onTransitionStarted", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwb_WorldBorder, $rt_doublecls(), $rt_doublecls(), $rt_longcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onCenterChanged", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwb_WorldBorder, $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onWarningTimeChanged", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwb_WorldBorder, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onWarningDistanceChanged", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwb_WorldBorder, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onDamageAmountChanged", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwb_WorldBorder, $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onDamageBufferChanged", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwb_WorldBorder, $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmsm_ServerConfigurationManager$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmsm_ServerConfigurationManager], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onSizeChanged", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwb_WorldBorder, $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onTransitionStarted", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwb_WorldBorder, $rt_doublecls(), $rt_doublecls(), $rt_longcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onCenterChanged", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwb_WorldBorder, $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onWarningTimeChanged", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwb_WorldBorder, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onWarningDistanceChanged", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwb_WorldBorder, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onDamageAmountChanged", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwb_WorldBorder, $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onDamageBufferChanged", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwb_WorldBorder, $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmw_WorldManager.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nms_MinecraftServer, nmw_WorldServer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "spawnParticle", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_booleancls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_arraycls($rt_intcls())], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onEntityAdded", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onEntityRemoved", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_voidcls(), + callable : null + }, { + name : "playSound", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "playSoundToNearExcept", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer, jl_String, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "markBlockRangeForRenderUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "markBlockForUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_BlockPos], + returnType : $rt_voidcls(), + callable : null + }, { + name : "notifyLightSet", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_BlockPos], + returnType : $rt_voidcls(), + callable : null + }, { + name : "playRecord", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, nmu_BlockPos], + returnType : $rt_voidcls(), + callable : null + }, { + name : "playAuxSFX", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer, $rt_intcls(), nmu_BlockPos, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "broadcastSound", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nmu_BlockPos, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "sendBlockBreakProgress", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nmu_BlockPos, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmv_VillageCollection.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setWorldsForAll", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addToVillagerPositionList", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_BlockPos], + returnType : $rt_voidcls(), + callable : null + }, { + name : "tick", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "removeAnnihilatedVillages", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getVillageList", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_List, + callable : null + }, { + name : "getNearestVillage", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_BlockPos, $rt_intcls()], + returnType : nmv_Village, + callable : null + }, { + name : "dropOldestVillagerPosition", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addNewDoorsToVillageOrCreateVillage", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addDoorsAround", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmu_BlockPos], + returnType : $rt_voidcls(), + callable : null + }, { + name : "checkDoorExistence", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmu_BlockPos], + returnType : nmv_VillageDoorInfo, + callable : null + }, { + name : "addToNewDoorsList", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmu_BlockPos], + returnType : $rt_voidcls(), + callable : null + }, { + name : "countBlocksCanSeeSky", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmu_BlockPos, nmu_EnumFacing, $rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "positionInList", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmu_BlockPos], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isWoodDoor", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmu_BlockPos], + returnType : $rt_booleancls(), + callable : null + }, { + name : "readFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "fileNameForProvider", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmw_WorldProvider], + returnType : jl_String, + callable : null + }]; + nms_ScoreboardSaveData.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setScoreboard", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nms_Scoreboard], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readTeams", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagList], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_96502_a", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nms_ScorePlayerTeam, nmn_NBTTagList], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readDisplayConfig", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readObjectives", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagList], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readScores", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagList], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_96496_a", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmn_NBTTagList, + callable : null + }, { + name : "func_96497_d", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "objectivesToNbt", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmn_NBTTagList, + callable : null + }, { + name : "scoresToNbt", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmn_NBTTagList, + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + ju_GenericEnumSet$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [ju_GenericEnumSet], + returnType : $rt_voidcls(), + callable : null + }, { + name : "hasNext", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "next", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Enum, + callable : null + }, { + name : "remove", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "next", + modifiers : 96, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }]; cgcc_Iterators$3.$meta.methods = [ { name : "", @@ -62534,6 +63545,829 @@ returnType : jl_Object, callable : null }]; + nPs_ImageButton.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), jl_String, nmu_ResourceLocation], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "drawButton", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "drawHoverEffect", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcg_GuiButton.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getHoverState", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_booleancls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "drawButton", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "mouseDragged", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "mouseReleased", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "mousePressed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isMouseOver", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "drawButtonForegroundLayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "playPressSound", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmca_SoundHandler], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getButtonWidth", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "setWidth", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcg_GuiOptionButton.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), nmcs_GameSettings$Options, jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "returnEnumOptions", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmcs_GameSettings$Options, + callable : null + }]; + nmcr_RenderGlobal$ContainerLocalRenderInformation.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmcr_RenderGlobal, nmcrc_RenderChunk, nmu_EnumFacing, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmca_SoundHandler$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmca_SoundHandler, jl_String, nmca_SoundList$SoundEntry], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getWeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "cloneEntry", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmca_SoundPoolEntry, + callable : null + }, { + name : "cloneEntry", + modifiers : 96, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }]; + nmca_SoundEventAccessor.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmca_SoundPoolEntry, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getWeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "cloneEntry", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmca_SoundPoolEntry, + callable : null + }, { + name : "cloneEntry", + modifiers : 96, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }]; + nmi_Slot.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_IInventory, $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onSlotChange", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack, nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onCrafting", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmi_ItemStack, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onCrafting", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onPickupFromSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer, nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isItemValid", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getStack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmi_ItemStack, + callable : null + }, { + name : "getHasStack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "putStack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onSlotChanged", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSlotStackLimit", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getItemStackLimit", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_intcls(), + callable : null + }, { + name : "getSlotTexture", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "decrStackSize", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "isHere", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_IInventory, $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "canTakeStack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "canBeHovered", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + nPs_MainButton.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "drawButton", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "drawRoundedRect", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), nPs_Color], + returnType : $rt_voidcls(), + callable : null + }, { + name : "drawRoundedOutline", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_floatcls(), $rt_floatcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "drawRoundedOutline", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmwgs_MapGenVillage.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ju_Map], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getStructureName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "canSpawnStructureAtCoords", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getStructureStart", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : nmwgs_StructureStart, + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmwgs_MapGenScatteredFeature.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ju_Map], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getStructureName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "canSpawnStructureAtCoords", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getStructureStart", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : nmwgs_StructureStart, + callable : null + }, { + name : "func_175798_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_BlockPos], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getScatteredFeatureSpawnList", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_List, + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmwgs_MapGenMineshaft.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getStructureName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ju_Map], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canSpawnStructureAtCoords", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getStructureStart", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : nmwgs_StructureStart, + callable : null + }]; + nmwgs_MapGenStronghold.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ju_Map], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getStructureName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "canSpawnStructureAtCoords", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getCoordList", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : ju_List, + callable : null + }, { + name : "getStructureStart", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : nmwgs_StructureStart, + callable : null + }]; + nmwgs_StructureOceanMonument.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ju_Map], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getStructureName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "canSpawnStructureAtCoords", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getStructureStart", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : nmwgs_StructureStart, + callable : null + }, { + name : "func_175799_b", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_List, + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcgi_GuiContainerCreative$CreativeSlot.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcgi_GuiContainerCreative, nmi_Slot, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onPickupFromSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer, nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isItemValid", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getStack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmi_ItemStack, + callable : null + }, { + name : "getHasStack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "putStack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onSlotChanged", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSlotStackLimit", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getItemStackLimit", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_intcls(), + callable : null + }, { + name : "getSlotTexture", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "decrStackSize", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "isHere", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_IInventory, $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }]; + nmcgsc_TeleportToPlayer.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ju_Collection], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178669_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_List, + callable : null + }, { + name : "func_178670_b", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "func_178661_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcgs_SpectatorMenu], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSpectatorName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "func_178663_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178662_A_", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcgsc_TeleportToTeam.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178669_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_List, + callable : null + }, { + name : "func_178670_b", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "func_178661_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcgs_SpectatorMenu], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSpectatorName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "func_178663_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178662_A_", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; ju_LinkedHashMapKeySet.$meta.methods = [ { name : "", @@ -62627,41 +64461,392 @@ returnType : ju_SequencedCollection, callable : null }]; - ju_GenericEnumSet$1.$meta.methods = [ + nmcgsc_TeleportToTeam$TeamSelectionObject.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 0, - parameterTypes : [ju_GenericEnumSet], + accessLevel : 3, + parameterTypes : [nmcgsc_TeleportToTeam, nms_ScorePlayerTeam], returnType : $rt_voidcls(), callable : null }, { - name : "hasNext", + name : "func_178661_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcgs_SpectatorMenu], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSpectatorName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "func_178663_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178662_A_", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_booleancls(), callable : null - }, { - name : "next", + }]; + nmwg_FlatLayerInfo.$meta.methods = [ + { + name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : jl_Enum, - callable : null - }, { - name : "remove", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], + parameterTypes : [$rt_intcls(), nmb_Block], returnType : $rt_voidcls(), callable : null }, { - name : "next", - modifiers : 96, + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), nmb_Block], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), nmb_Block, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getLayerCount", + modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : jl_Object, + returnType : $rt_intcls(), + callable : null + }, { + name : "func_175900_c", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmbs_IBlockState, + callable : null + }, { + name : "func_151536_b", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : nmb_Block, + callable : null + }, { + name : "getFillBlockMeta", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getMinY", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "setMinY", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }]; + nmcgs_PlayerMenuObject.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevma_GameProfile], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178661_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcgs_SpectatorMenu], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSpectatorName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "func_178663_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178662_A_", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + jl_Byte.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_bytecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "intValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "longValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_longcls(), + callable : null + }, { + name : "floatValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "doubleValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_doublecls(), + callable : null + }, { + name : "byteValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_bytecls(), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_bytecls()], + returnType : jl_Byte, + callable : null + }, { + name : "toString", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_bytecls()], + returnType : jl_String, + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hashCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "hashCode", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_bytecls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "compare", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_bytecls(), $rt_bytecls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "compareUnsigned", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_bytecls(), $rt_bytecls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "compareTo", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Byte], + returnType : $rt_intcls(), + callable : null + }, { + name : "toUnsignedInt", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_bytecls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "toUnsignedLong", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_bytecls()], + returnType : $rt_longcls(), + callable : null + }, { + name : "parseByte", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_bytecls(), + callable : null + }, { + name : "parseByte", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_bytecls(), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String, $rt_intcls()], + returnType : jl_Byte, + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : jl_Byte, + callable : null + }, { + name : "decode", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : jl_Byte, + callable : null + }, { + name : "compareTo", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_intcls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nPs_NbtTagValue.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "matches", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_booleancls(), + callable : null + }, { + name : "matchesAnyChild", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmn_NBTBase], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getChildTag", + modifiers : 512, + accessLevel : 1, + parameterTypes : [nmn_NBTBase, jl_String], + returnType : nmn_NBTBase, + callable : null + }, { + name : "matches", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmn_NBTBase], + returnType : $rt_booleancls(), + callable : null + }, { + name : "matchesPattern", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, jl_String], + returnType : $rt_booleancls(), + callable : null + }, { + name : "matchesRegex", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, jl_String], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getValue", + modifiers : 512, + accessLevel : 1, + parameterTypes : [nmn_NBTBase], + returnType : jl_String, + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, callable : null }]; jl_OutOfMemoryError.$meta.methods = [ @@ -62680,12 +64865,12 @@ returnType : $rt_voidcls(), callable : null }]; - nmu_MinecraftError.$meta.methods = [ + cjj_Inflate$Return.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 3, - parameterTypes : [], + accessLevel : 0, + parameterTypes : [cjj_Inflate, $rt_intcls()], returnType : $rt_voidcls(), callable : null }]; @@ -62887,16 +65072,25 @@ returnType : $rt_booleancls(), callable : null }]; - jnc_CoderMalfunctionError.$meta.methods = [ + nmn_NBTException.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [jl_Throwable], + parameterTypes : [jl_String], returnType : $rt_voidcls(), callable : null }]; - jl_InstantiationException.$meta.methods = [ + nmu_MinecraftError.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nlev_HFormatter$DuplicateFormatFlagsException.$meta.methods = [ { name : "", modifiers : 0, @@ -62912,25 +65106,25 @@ returnType : $rt_voidcls(), callable : null }]; - nmcr_RenderGlobal$ContainerLocalRenderInformation.$meta.methods = [ + jnc_CoderMalfunctionError.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 1, - parameterTypes : [nmcr_RenderGlobal, nmcrc_RenderChunk, nmu_EnumFacing, $rt_intcls()], + accessLevel : 3, + parameterTypes : [jl_Throwable], returnType : $rt_voidcls(), callable : null }]; - cjj_Inflate$Return.$meta.methods = [ + nmcrbm_ModelBlock$LoopException.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 0, - parameterTypes : [cjj_Inflate, $rt_intcls()], + accessLevel : 3, + parameterTypes : [], returnType : $rt_voidcls(), callable : null }]; - nlev_HFormatter$DuplicateFormatFlagsException.$meta.methods = [ + jl_InstantiationException.$meta.methods = [ { name : "", modifiers : 0, @@ -62955,346 +65149,54 @@ returnType : $rt_voidcls(), callable : null }]; - nmcrbm_ModelBlock$LoopException.$meta.methods = [ + nme_DataWatcher$WatchableObject.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), jl_Object], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDataValueId", + modifiers : 0, + accessLevel : 3, parameterTypes : [], - returnType : $rt_voidcls(), + returnType : $rt_intcls(), callable : null - }]; - nmn_NBTException.$meta.methods = [ - { - name : "", + }, { + name : "setObject", modifiers : 0, accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }]; - nmcgs_PlayerMenuObject.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevma_GameProfile], + parameterTypes : [jl_Object], returnType : $rt_voidcls(), callable : null }, { - name : "func_178661_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcgs_SpectatorMenu], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSpectatorName", + name : "getObject", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : nmu_IChatComponent, + returnType : jl_Object, callable : null }, { - name : "func_178663_a", + name : "getObjectType", modifiers : 0, accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_intcls()], - returnType : $rt_voidcls(), + parameterTypes : [], + returnType : $rt_intcls(), callable : null }, { - name : "func_178662_A_", + name : "isWatched", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_booleancls(), callable : null - }]; - nmwgs_MapGenVillage.$meta.methods = [ - { - name : "", + }, { + name : "setWatched", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_Map], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getStructureName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "canSpawnStructureAtCoords", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getStructureStart", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : nmwgs_StructureStart, - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmw_WorldServerMulti$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmw_WorldServerMulti], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onSizeChanged", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwb_WorldBorder, $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onTransitionStarted", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwb_WorldBorder, $rt_doublecls(), $rt_doublecls(), $rt_longcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onCenterChanged", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwb_WorldBorder, $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onWarningTimeChanged", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwb_WorldBorder, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onWarningDistanceChanged", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwb_WorldBorder, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onDamageAmountChanged", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwb_WorldBorder, $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onDamageBufferChanged", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwb_WorldBorder, $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmw_WorldManager.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nms_MinecraftServer, nmw_WorldServer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "spawnParticle", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_booleancls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_arraycls($rt_intcls())], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onEntityAdded", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onEntityRemoved", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_voidcls(), - callable : null - }, { - name : "playSound", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "playSoundToNearExcept", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer, jl_String, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "markBlockRangeForRenderUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "markBlockForUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }, { - name : "notifyLightSet", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }, { - name : "playRecord", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }, { - name : "playAuxSFX", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer, $rt_intcls(), nmu_BlockPos, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "broadcastSound", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nmu_BlockPos, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "sendBlockBreakProgress", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nmu_BlockPos, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmcg_GuiButton.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getHoverState", - modifiers : 0, - accessLevel : 2, parameterTypes : [$rt_booleancls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "drawButton", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "mouseDragged", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "mouseReleased", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "mousePressed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isMouseOver", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "drawButtonForegroundLayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "playPressSound", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmca_SoundHandler], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getButtonWidth", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "setWidth", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], returnType : $rt_voidcls(), callable : null }]; @@ -63356,101 +65258,13 @@ returnType : $rt_voidcls(), callable : null }]; - nPs_ImageButton.$meta.methods = [ + nmcrbm_ModelBlockDefinition.$meta.methods = [ { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), jl_String, nmu_ResourceLocation], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "drawButton", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "drawHoverEffect", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmwgs_MapGenScatteredFeature.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_Map], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getStructureName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "canSpawnStructureAtCoords", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getStructureStart", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : nmwgs_StructureStart, - callable : null - }, { - name : "func_175798_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_BlockPos], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getScatteredFeatureSpawnList", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_List, - callable : null - }, { - name : "", + name : "parseFromReader", modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcgsc_TeleportToPlayer.$meta.methods = [ - { - name : "", - modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), + parameterTypes : [ji_Reader], + returnType : nmcrbm_ModelBlockDefinition, callable : null }, { name : "", @@ -63460,99 +65274,18 @@ returnType : $rt_voidcls(), callable : null }, { - name : "func_178669_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_List, - callable : null - }, { - name : "func_178670_b", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "func_178661_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcgs_SpectatorMenu], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSpectatorName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "func_178663_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178662_A_", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmca_SoundEventAccessor.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmca_SoundPoolEntry, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getWeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "cloneEntry", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmca_SoundPoolEntry, - callable : null - }, { - name : "cloneEntry", - modifiers : 96, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }]; - nmcrbm_ModelBlockDefinition$Variants.$meta.methods = [ - { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [jl_String, ju_List], + parameterTypes : [ju_List], returnType : $rt_voidcls(), callable : null }, { name : "getVariants", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : ju_List, + parameterTypes : [jl_String], + returnType : nmcrbm_ModelBlockDefinition$Variants, callable : null }, { name : "equals", @@ -63569,229 +65302,6 @@ returnType : $rt_intcls(), callable : null }]; - nmwgs_StructureOceanMonument.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_Map], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getStructureName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "canSpawnStructureAtCoords", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getStructureStart", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : nmwgs_StructureStart, - callable : null - }, { - name : "func_175799_b", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_List, - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmv_VillageCollection.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setWorldsForAll", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addToVillagerPositionList", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }, { - name : "tick", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "removeAnnihilatedVillages", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getVillageList", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_List, - callable : null - }, { - name : "getNearestVillage", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_BlockPos, $rt_intcls()], - returnType : nmv_Village, - callable : null - }, { - name : "dropOldestVillagerPosition", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addNewDoorsToVillageOrCreateVillage", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addDoorsAround", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }, { - name : "checkDoorExistence", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmu_BlockPos], - returnType : nmv_VillageDoorInfo, - callable : null - }, { - name : "addToNewDoorsList", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }, { - name : "countBlocksCanSeeSky", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmu_BlockPos, nmu_EnumFacing, $rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "positionInList", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmu_BlockPos], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isWoodDoor", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmu_BlockPos], - returnType : $rt_booleancls(), - callable : null - }, { - name : "readFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "fileNameForProvider", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmw_WorldProvider], - returnType : jl_String, - callable : null - }]; - nmcgsc_TeleportToTeam$TeamSelectionObject.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcgsc_TeleportToTeam, nms_ScorePlayerTeam], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178661_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcgs_SpectatorMenu], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSpectatorName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "func_178663_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178662_A_", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; nPs_DynamicLight.$meta.methods = [ { name : "", @@ -63878,735 +65388,20 @@ returnType : jl_String, callable : null }]; - nmi_Slot.$meta.methods = [ + nmcrbm_ModelBlockDefinition$Variants.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [nmi_IInventory, $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onSlotChange", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack, nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onCrafting", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmi_ItemStack, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onCrafting", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onPickupFromSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer, nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isItemValid", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getStack", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmi_ItemStack, - callable : null - }, { - name : "getHasStack", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "putStack", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onSlotChanged", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSlotStackLimit", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getItemStackLimit", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_intcls(), - callable : null - }, { - name : "getSlotTexture", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "decrStackSize", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "isHere", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_IInventory, $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "canTakeStack", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "canBeHovered", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_MapGenStronghold.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_Map], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getStructureName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "canSpawnStructureAtCoords", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getCoordList", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : ju_List, - callable : null - }, { - name : "getStructureStart", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : nmwgs_StructureStart, - callable : null - }]; - nmcgi_GuiContainerCreative$CreativeSlot.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcgi_GuiContainerCreative, nmi_Slot, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onPickupFromSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer, nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isItemValid", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getStack", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmi_ItemStack, - callable : null - }, { - name : "getHasStack", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "putStack", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onSlotChanged", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSlotStackLimit", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getItemStackLimit", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_intcls(), - callable : null - }, { - name : "getSlotTexture", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "decrStackSize", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "isHere", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_IInventory, $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }]; - nmwg_FlatLayerInfo.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nmb_Block], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), nmb_Block], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), nmb_Block, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getLayerCount", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "func_175900_c", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmbs_IBlockState, - callable : null - }, { - name : "func_151536_b", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : nmb_Block, - callable : null - }, { - name : "getFillBlockMeta", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getMinY", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "setMinY", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }]; - nmcgsc_TeleportToTeam.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178669_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_List, - callable : null - }, { - name : "func_178670_b", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "func_178661_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcgs_SpectatorMenu], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSpectatorName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "func_178663_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178662_A_", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nms_ScoreboardSaveData.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setScoreboard", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nms_Scoreboard], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readTeams", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagList], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_96502_a", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nms_ScorePlayerTeam, nmn_NBTTagList], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readDisplayConfig", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readObjectives", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagList], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readScores", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagList], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_96496_a", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmn_NBTTagList, - callable : null - }, { - name : "func_96497_d", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "objectivesToNbt", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmn_NBTTagList, - callable : null - }, { - name : "scoresToNbt", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmn_NBTTagList, - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmwgs_MapGenMineshaft.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getStructureName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_Map], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canSpawnStructureAtCoords", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getStructureStart", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : nmwgs_StructureStart, - callable : null - }]; - nPs_MainButton.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "drawButton", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "drawRoundedRect", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), nPs_Color], - returnType : $rt_voidcls(), - callable : null - }, { - name : "drawRoundedOutline", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_floatcls(), $rt_floatcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "drawRoundedOutline", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmca_SoundHandler$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmca_SoundHandler, jl_String, nmca_SoundList$SoundEntry], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getWeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "cloneEntry", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmca_SoundPoolEntry, - callable : null - }, { - name : "cloneEntry", - modifiers : 96, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }]; - nmsm_ServerConfigurationManager$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmsm_ServerConfigurationManager], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onSizeChanged", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwb_WorldBorder, $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onTransitionStarted", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwb_WorldBorder, $rt_doublecls(), $rt_doublecls(), $rt_longcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onCenterChanged", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwb_WorldBorder, $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onWarningTimeChanged", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwb_WorldBorder, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onWarningDistanceChanged", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwb_WorldBorder, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onDamageAmountChanged", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwb_WorldBorder, $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onDamageBufferChanged", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwb_WorldBorder, $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }]; - nme_DataWatcher$WatchableObject.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), jl_Object], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDataValueId", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "setObject", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getObject", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "getObjectType", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "isWatched", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setWatched", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrbm_ModelBlockDefinition.$meta.methods = [ - { - name : "parseFromReader", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ji_Reader], - returnType : nmcrbm_ModelBlockDefinition, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_Collection], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_List], + parameterTypes : [jl_String, ju_List], returnType : $rt_voidcls(), callable : null }, { name : "getVariants", modifiers : 0, accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmcrbm_ModelBlockDefinition$Variants, + parameterTypes : [], + returnType : ju_List, callable : null }, { name : "equals", @@ -64623,266 +65418,6 @@ returnType : $rt_intcls(), callable : null }]; - nmcg_GuiOptionButton.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), nmcs_GameSettings$Options, jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "returnEnumOptions", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmcs_GameSettings$Options, - callable : null - }]; - nPs_NbtTagValue.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "matches", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_booleancls(), - callable : null - }, { - name : "matchesAnyChild", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmn_NBTBase], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getChildTag", - modifiers : 512, - accessLevel : 1, - parameterTypes : [nmn_NBTBase, jl_String], - returnType : nmn_NBTBase, - callable : null - }, { - name : "matches", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmn_NBTBase], - returnType : $rt_booleancls(), - callable : null - }, { - name : "matchesPattern", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, jl_String], - returnType : $rt_booleancls(), - callable : null - }, { - name : "matchesRegex", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, jl_String], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getValue", - modifiers : 512, - accessLevel : 1, - parameterTypes : [nmn_NBTBase], - returnType : jl_String, - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }]; - nmb_BlockBush.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmbm_Material], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmbm_Material, nmbm_MapColor], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canPlaceBlockAt", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : $rt_booleancls(), - callable : null - }, { - name : "canPlaceBlockOn", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmb_Block], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onNeighborBlockChange", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmb_Block], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateTick", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "checkAndDropBlock", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canBlockStay", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getCollisionBoundingBox", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], - returnType : nmu_AxisAlignedBB, - callable : null - }, { - name : "isOpaqueCube", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isFullCube", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getBlockLayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_EnumWorldBlockLayer, - callable : null - }]; - nmb_BlockFalling.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmbm_Material], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onBlockAdded", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onNeighborBlockChange", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmb_Block], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateTick", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "checkFallable", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onStartFalling", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmei_EntityFallingBlock], - returnType : $rt_voidcls(), - callable : null - }, { - name : "tickRate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_intcls(), - callable : null - }, { - name : "canFallInto", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onEndFalling", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }]; nmca_SoundEventAccessorComposite.$meta.methods = [ { name : "", @@ -64992,7 +65527,7 @@ returnType : nmcrbm_ItemCameraTransforms, callable : null }]; - nmi_ItemMapBase.$meta.methods = [ + nmb_BlockFalling.$meta.methods = [ { name : "", modifiers : 0, @@ -65001,21 +65536,70 @@ returnType : $rt_voidcls(), callable : null }, { - name : "isMap", + name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [], + parameterTypes : [nmbm_Material], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onBlockAdded", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onNeighborBlockChange", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmb_Block], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateTick", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "checkFallable", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onStartFalling", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmei_EntityFallingBlock], + returnType : $rt_voidcls(), + callable : null + }, { + name : "tickRate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_intcls(), + callable : null + }, { + name : "canFallInto", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos], returnType : $rt_booleancls(), callable : null }, { - name : "createMapDataPacket", + name : "onEndFalling", modifiers : 0, accessLevel : 3, - parameterTypes : [nmi_ItemStack, nmw_World, nmep_EntityPlayer], - returnType : nmn_Packet, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : $rt_voidcls(), callable : null }]; - nmb_BlockSign.$meta.methods = [ + nmb_BlockBush.$meta.methods = [ { name : "", modifiers : 0, @@ -65023,6 +65607,62 @@ parameterTypes : [], returnType : $rt_voidcls(), callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmbm_Material], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmbm_Material, nmbm_MapColor], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canPlaceBlockAt", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : $rt_booleancls(), + callable : null + }, { + name : "canPlaceBlockOn", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmb_Block], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onNeighborBlockChange", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmb_Block], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateTick", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "checkAndDropBlock", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canBlockStay", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], + returnType : $rt_booleancls(), + callable : null }, { name : "getCollisionBoundingBox", modifiers : 0, @@ -65031,11 +65671,11 @@ returnType : nmu_AxisAlignedBB, callable : null }, { - name : "getSelectedBoundingBox", + name : "isOpaqueCube", modifiers : 0, accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : nmu_AxisAlignedBB, + parameterTypes : [], + returnType : $rt_booleancls(), callable : null }, { name : "isFullCube", @@ -65045,60 +65685,11 @@ returnType : $rt_booleancls(), callable : null }, { - name : "isPassable", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isOpaqueCube", + name : "getBlockLayer", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_181623_g", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "createNewTileEntity", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_intcls()], - returnType : nmt_TileEntity, - callable : null - }, { - name : "getItemDropped", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmbs_IBlockState, nlev_EaglercraftRandom, $rt_intcls()], - returnType : nmi_Item, - callable : null - }, { - name : "getItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : nmi_Item, - callable : null - }, { - name : "onBlockActivated", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmep_EntityPlayer, nmu_EnumFacing, $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "canPlaceBlockAt", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : $rt_booleancls(), + returnType : nmu_EnumWorldBlockLayer, callable : null }]; nmb_BlockBanner.$meta.methods = [ @@ -65208,1498 +65799,114 @@ returnType : $rt_voidcls(), callable : null }]; - cgcc_MultimapBuilder$ArrayListSupplier.$meta.methods = [ + nmi_ItemMapBase.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_intcls()], + accessLevel : 3, + parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { - name : "get", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_List, - callable : null - }, { - name : "get", - modifiers : 96, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }]; - nmt_TileEntityBanner$EnumBannerPattern.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmt_TileEntityBanner$EnumBannerPattern), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmt_TileEntityBanner$EnumBannerPattern, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls(), jl_String, jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls(), jl_String, jl_String, juf_Supplier], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls(), jl_String, jl_String, jl_String, jl_String, jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getPatternName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getPatternID", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getCraftingLayers", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(jl_String), - callable : null - }, { - name : "hasValidCrafting", + name : "isMap", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_booleancls(), callable : null }, { - name : "hasCraftingStack", + name : "createMapDataPacket", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getCraftingStack", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmi_ItemStack, - callable : null - }, { - name : "getPatternByID", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmt_TileEntityBanner$EnumBannerPattern, - callable : null - }, { - name : "lambda$static$5", - modifiers : 544, - accessLevel : 1, - parameterTypes : [], - returnType : nmi_ItemStack, - callable : null - }, { - name : "lambda$static$4", - modifiers : 544, - accessLevel : 1, - parameterTypes : [], - returnType : nmi_ItemStack, - callable : null - }, { - name : "lambda$static$3", - modifiers : 544, - accessLevel : 1, - parameterTypes : [], - returnType : nmi_ItemStack, - callable : null - }, { - name : "lambda$static$2", - modifiers : 544, - accessLevel : 1, - parameterTypes : [], - returnType : nmi_ItemStack, - callable : null - }, { - name : "lambda$static$1", - modifiers : 544, - accessLevel : 1, - parameterTypes : [], - returnType : nmi_ItemStack, - callable : null - }, { - name : "lambda$static$0", - modifiers : 544, - accessLevel : 1, - parameterTypes : [], - returnType : nmi_ItemStack, - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), + parameterTypes : [nmi_ItemStack, nmw_World, nmep_EntityPlayer], + returnType : nmn_Packet, callable : null }]; - cgcb_AbstractIterator$State.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(cgcb_AbstractIterator$State), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : cgcb_AbstractIterator$State, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmbs_BlockState$1.$meta.methods = [ + nmb_BlockSign.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "apply", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmbp_IProperty], - returnType : jl_String, - callable : null - }, { - name : "apply", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : jl_Object, - callable : null - }]; - cgcc_ImmutableEnumMap$2.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [cgcc_ImmutableEnumMap], - returnType : $rt_voidcls(), - callable : null - }, { - name : "map", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : cgcc_ImmutableMap, - callable : null - }, { - name : "iterator", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_UnmodifiableIterator, - callable : null - }, { - name : "iterator", - modifiers : 96, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Iterator, - callable : null - }]; - nmcrc_RenderChunk$ShadowFrustumState.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmcrc_RenderChunk$ShadowFrustumState), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmcrc_RenderChunk$ShadowFrustumState, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrbm_ItemModelGenerator$SpanFacing.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmcrbm_ItemModelGenerator$SpanFacing), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmcrbm_ItemModelGenerator$SpanFacing, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls(), nmu_EnumFacing, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFacing", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_EnumFacing, - callable : null - }, { - name : "func_178372_b", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "func_178371_c", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "func_178369_d", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcgs_SpectatorMenu$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178661_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcgs_SpectatorMenu], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSpectatorName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "func_178663_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178662_A_", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nmwb_BiomeGenBase$TempCategory.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmwb_BiomeGenBase$TempCategory), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmwb_BiomeGenBase$TempCategory, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - ju_LinkedList.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_Collection], - returnType : $rt_voidcls(), - callable : null - }, { - name : "size", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "clear", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "listIterator", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_ListIterator, - callable : null - }, { - name : "listIterator", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : ju_ListIterator, - callable : null - }, { - name : "offer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "remove", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "poll", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "element", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "peek", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "addFirst", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addLast", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_voidcls(), - callable : null - }, { - name : "offerFirst", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "offerLast", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "removeFirst", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "removeLast", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "pollFirst", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "pollLast", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "getFirst", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "getLast", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "peekFirst", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "peekLast", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "removeFirstOccurrence", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "removeLastOccurrence", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "push", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_voidcls(), - callable : null - }, { - name : "pop", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "descendingIterator", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Iterator, - callable : null - }, { - name : "reversed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_LinkedList, - callable : null - }, { - name : "removeEntry", - modifiers : 0, - accessLevel : 1, - parameterTypes : [ju_LinkedList$Entry], - returnType : $rt_voidcls(), - callable : null - }, { - name : "reversed", - modifiers : 96, - accessLevel : 3, - parameterTypes : [], - returnType : ju_List, - callable : null - }, { - name : "reversed", - modifiers : 96, - accessLevel : 3, - parameterTypes : [], - returnType : ju_SequencedCollection, - callable : null - }, { - name : "reversed", - modifiers : 96, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Deque, - callable : null - }]; - nmb_Block$EnumOffsetType.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmb_Block$EnumOffsetType), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmb_Block$EnumOffsetType, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrc_ChunkCompileTaskGenerator$Status.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmcrc_ChunkCompileTaskGenerator$Status), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmcrc_ChunkCompileTaskGenerator$Status, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nme_EntityLiving$SpawnPlacementType.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nme_EntityLiving$SpawnPlacementType), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nme_EntityLiving$SpawnPlacementType, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nms_Team$EnumVisible.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nms_Team$EnumVisible), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nms_Team$EnumVisible, - callable : null - }, { - name : "func_178825_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(jl_String), - callable : null - }, { - name : "func_178824_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nms_Team$EnumVisible, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls(), jl_String, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - cgcc_RegularImmutableMap$EntrySet.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [cgcc_RegularImmutableMap], - returnType : $rt_voidcls(), - callable : null - }, { - name : "map", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : cgcc_ImmutableMap, - callable : null - }, { - name : "iterator", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_UnmodifiableIterator, - callable : null - }, { - name : "createAsList", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "iterator", - modifiers : 96, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Iterator, - callable : null - }]; - cgcc_ImmutableList$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [cgcc_ImmutableList, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "get", - modifiers : 0, accessLevel : 2, - parameterTypes : [$rt_intcls()], - returnType : jl_Object, - callable : null - }]; - cgcc_RegularImmutableList.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_arraycls(jl_Object), $rt_intcls(), $rt_intcls()], + parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_arraycls(jl_Object)], - returnType : $rt_voidcls(), - callable : null - }, { - name : "size", + name : "getCollisionBoundingBox", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], + returnType : nmu_AxisAlignedBB, callable : null }, { - name : "isPartialView", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "copyIntoArray", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_arraycls(jl_Object), $rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "get", + name : "getSelectedBoundingBox", modifiers : 0, accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : jl_Object, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : nmu_AxisAlignedBB, callable : null }, { - name : "indexOf", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_intcls(), - callable : null - }, { - name : "lastIndexOf", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_intcls(), - callable : null - }, { - name : "subListUnchecked", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "listIterator", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : cgcc_UnmodifiableListIterator, - callable : null - }, { - name : "listIterator", - modifiers : 96, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : ju_ListIterator, - callable : null - }]; - cgcc_SingletonImmutableList.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [jl_Object], - returnType : $rt_voidcls(), - callable : null - }, { - name : "get", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : jl_Object, - callable : null - }, { - name : "indexOf", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_intcls(), - callable : null - }, { - name : "iterator", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_UnmodifiableIterator, - callable : null - }, { - name : "lastIndexOf", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_intcls(), - callable : null - }, { - name : "size", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "subList", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "reverse", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "contains", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "equals", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hashCode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "isEmpty", + name : "isFullCube", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_booleancls(), callable : null }, { - name : "isPartialView", + name : "isPassable", modifiers : 0, - accessLevel : 0, - parameterTypes : [], + accessLevel : 3, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], returnType : $rt_booleancls(), callable : null }, { - name : "copyIntoArray", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_arraycls(jl_Object), $rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "subList", - modifiers : 96, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : ju_List, - callable : null - }, { - name : "iterator", - modifiers : 96, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Iterator, - callable : null - }]; - ju_IdentityHashMap$HashEntry.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [jl_Object, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [jl_Object, jl_Object], - returnType : $rt_voidcls(), - callable : null - }, { - name : "clone", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }]; - nlevsr_RelayQuery$VersionMismatch.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nlevsr_RelayQuery$VersionMismatch), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nlevsr_RelayQuery$VersionMismatch, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isCompatible", + name : "isOpaqueCube", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_booleancls(), callable : null }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrbs_DefaultStateMapper.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getModelResourceLocation", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmbs_IBlockState], - returnType : nmcrm_ModelResourceLocation, - callable : null - }]; - ju_LinkedList$SequentialListIterator.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_LinkedList, ju_LinkedList$Entry, ju_LinkedList$Entry, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "hasNext", + name : "func_181623_g", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_booleancls(), callable : null }, { - name : "next", + name : "createNewTileEntity", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, + parameterTypes : [nmw_World, $rt_intcls()], + returnType : nmt_TileEntity, callable : null }, { - name : "remove", + name : "getItemDropped", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), + parameterTypes : [nmbs_IBlockState, nlev_EaglercraftRandom, $rt_intcls()], + returnType : nmi_Item, callable : null }, { - name : "hasPrevious", + name : "getItem", modifiers : 0, accessLevel : 3, - parameterTypes : [], + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : nmi_Item, + callable : null + }, { + name : "onBlockActivated", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmep_EntityPlayer, nmu_EnumFacing, $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], returnType : $rt_booleancls(), callable : null }, { - name : "previous", + name : "canPlaceBlockAt", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "nextIndex", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "previousIndex", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "set", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_voidcls(), - callable : null - }, { - name : "add", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_voidcls(), - callable : null - }, { - name : "checkConcurrentModification", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nme_EnumCreatureType.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nme_EnumCreatureType), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nme_EnumCreatureType, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls(), jl_Class, $rt_intcls(), nmbm_Material, $rt_booleancls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getCreatureClass", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Class, - callable : null - }, { - name : "getMaxNumberOfCreature", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getPeacefulCreature", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], + parameterTypes : [nmw_World, nmu_BlockPos], returnType : $rt_booleancls(), callable : null - }, { - name : "getAnimal", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nme_EnumCreatureAttribute.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nme_EnumCreatureAttribute), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nme_EnumCreatureAttribute, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nlevsrp_ICEServerSet$RelayType.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nlevsrp_ICEServerSet$RelayType), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nlevsrp_ICEServerSet$RelayType, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - cgcc_HashBiMap$Inverse.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [cgcc_HashBiMap], - returnType : $rt_voidcls(), - callable : null - }, { - name : "forward", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : cgcc_BiMap, - callable : null - }, { - name : "size", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "clear", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "containsKey", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "get", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : jl_Object, - callable : null - }, { - name : "put", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object], - returnType : jl_Object, - callable : null - }, { - name : "forcePut", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object], - returnType : jl_Object, - callable : null - }, { - name : "remove", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : jl_Object, - callable : null - }, { - name : "inverse", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_BiMap, - callable : null - }, { - name : "keySet", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Set, - callable : null - }, { - name : "values", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Set, - callable : null - }, { - name : "entrySet", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Set, - callable : null - }, { - name : "writeReplace", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "values", - modifiers : 96, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Collection, - callable : null - }]; - nmwc_Chunk$EnumCreateEntityType.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmwc_Chunk$EnumCreateEntityType), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmwc_Chunk$EnumCreateEntityType, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrc_ChunkCompileTaskGenerator$Type.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmcrc_ChunkCompileTaskGenerator$Type), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmcrc_ChunkCompileTaskGenerator$Type, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nPs_RangeInt.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isInRange", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getMin", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getMax", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null }]; nmwc_Chunk.$meta.methods = [ { @@ -67263,51 +66470,185 @@ returnType : $rt_voidcls(), callable : null }]; - jlr_Method.$meta.methods = [ + cgcc_MultimapBuilder$ArrayListSupplier.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Class, jl_String, $rt_intcls(), $rt_intcls(), jl_Class, $rt_arraycls(jl_Class), otcir_JSCallable], + accessLevel : 0, + parameterTypes : [$rt_intcls()], returnType : $rt_voidcls(), callable : null }, { - name : "getDeclaringClass", + name : "get", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : jl_Class, + returnType : ju_List, callable : null }, { - name : "getName", + name : "get", + modifiers : 96, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }]; + nmcgs_SpectatorMenu$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178661_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcgs_SpectatorMenu], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSpectatorName", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : jl_String, + returnType : nmu_IChatComponent, callable : null }, { - name : "getModifiers", + name : "func_178663_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178662_A_", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + cgcc_ImmutableList$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [cgcc_ImmutableList, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "get", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls()], + returnType : jl_Object, + callable : null + }]; + cgcc_ImmutableEnumMap$2.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [cgcc_ImmutableEnumMap], + returnType : $rt_voidcls(), + callable : null + }, { + name : "map", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : cgcc_ImmutableMap, + callable : null + }, { + name : "iterator", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : cgcc_UnmodifiableIterator, + callable : null + }, { + name : "iterator", + modifiers : 96, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Iterator, + callable : null + }]; + cgcc_SingletonImmutableList.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [jl_Object], + returnType : $rt_voidcls(), + callable : null + }, { + name : "get", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : jl_Object, + callable : null + }, { + name : "indexOf", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_intcls(), + callable : null + }, { + name : "iterator", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : cgcc_UnmodifiableIterator, + callable : null + }, { + name : "lastIndexOf", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_intcls(), + callable : null + }, { + name : "size", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_intcls(), callable : null }, { - name : "getReturnType", + name : "subList", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "reverse", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : jl_Class, + returnType : cgcc_ImmutableList, callable : null }, { - name : "getParameterTypes", + name : "contains", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(jl_Class), + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), callable : null }, { - name : "getParameterCount", + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hashCode", modifiers : 0, accessLevel : 3, parameterTypes : [], @@ -67321,168 +66662,1367 @@ returnType : jl_String, callable : null }, { - name : "invoke", + name : "isEmpty", modifiers : 0, accessLevel : 3, - parameterTypes : [jl_Object, $rt_arraycls(jl_Object)], + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isPartialView", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "copyIntoArray", + modifiers : 0, + accessLevel : 0, + parameterTypes : [$rt_arraycls(jl_Object), $rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "subList", + modifiers : 96, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : ju_List, + callable : null + }, { + name : "iterator", + modifiers : 96, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Iterator, + callable : null + }]; + ju_IdentityHashMap$HashEntry.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [jl_Object, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [jl_Object, jl_Object], + returnType : $rt_voidcls(), + callable : null + }, { + name : "clone", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }]; + ju_LinkedList.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ju_Collection], + returnType : $rt_voidcls(), + callable : null + }, { + name : "size", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "clear", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "listIterator", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_ListIterator, + callable : null + }, { + name : "listIterator", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : ju_ListIterator, + callable : null + }, { + name : "offer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "remove", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], returnType : jl_Object, callable : null }, { - name : "isBridge", + name : "poll", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : $rt_booleancls(), + returnType : jl_Object, callable : null }, { - name : "isSynthetic", + name : "element", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : $rt_booleancls(), + returnType : jl_Object, callable : null }, { - name : "isVarArgs", + name : "peek", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nmcrbm_ModelBlock.$meta.methods = [ - { - name : "deserialize", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmcrbm_ModelBlock, + returnType : jl_Object, callable : null }, { - name : "", + name : "addFirst", modifiers : 0, - accessLevel : 2, - parameterTypes : [ju_List, ju_Map, $rt_booleancls(), $rt_booleancls(), nmcrbm_ItemCameraTransforms], + accessLevel : 3, + parameterTypes : [jl_Object], returnType : $rt_voidcls(), callable : null }, { - name : "", + name : "addLast", modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_ResourceLocation, ju_Map, $rt_booleancls(), $rt_booleancls(), nmcrbm_ItemCameraTransforms], + accessLevel : 3, + parameterTypes : [jl_Object], returnType : $rt_voidcls(), callable : null }, { - name : "", + name : "offerFirst", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "offerLast", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "removeFirst", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "removeLast", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "pollFirst", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "pollLast", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "getFirst", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "getLast", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "peekFirst", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "peekLast", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "removeFirstOccurrence", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "removeLastOccurrence", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "push", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_voidcls(), + callable : null + }, { + name : "pop", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "descendingIterator", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Iterator, + callable : null + }, { + name : "reversed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_LinkedList, + callable : null + }, { + name : "removeEntry", modifiers : 0, accessLevel : 1, - parameterTypes : [nmu_ResourceLocation, ju_List, ju_Map, $rt_booleancls(), $rt_booleancls(), nmcrbm_ItemCameraTransforms], + parameterTypes : [ju_LinkedList$Entry], returnType : $rt_voidcls(), callable : null }, { - name : "getElements", - modifiers : 0, + name : "reversed", + modifiers : 96, accessLevel : 3, parameterTypes : [], returnType : ju_List, callable : null }, { - name : "hasParent", + name : "reversed", + modifiers : 96, + accessLevel : 3, + parameterTypes : [], + returnType : ju_SequencedCollection, + callable : null + }, { + name : "reversed", + modifiers : 96, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Deque, + callable : null + }]; + cgcc_RegularImmutableMap$EntrySet.$meta.methods = [ + { + name : "", modifiers : 0, accessLevel : 1, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isAmbientOcclusion", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isGui3d", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isResolved", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getParentFromMap", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_Map], + parameterTypes : [cgcc_RegularImmutableMap], returnType : $rt_voidcls(), callable : null }, { - name : "isTexturePresent", + name : "map", modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_booleancls(), + accessLevel : 0, + parameterTypes : [], + returnType : cgcc_ImmutableMap, callable : null }, { - name : "resolveTextureName", + name : "iterator", modifiers : 0, accessLevel : 3, - parameterTypes : [jl_String], + parameterTypes : [], + returnType : cgcc_UnmodifiableIterator, + callable : null + }, { + name : "createAsList", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "iterator", + modifiers : 96, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Iterator, + callable : null + }]; + nmbs_BlockState$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "apply", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmbp_IProperty], returnType : jl_String, callable : null }, { - name : "resolveTextureName", + name : "apply", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : jl_Object, + callable : null + }]; + ju_LinkedList$SequentialListIterator.$meta.methods = [ + { + name : "", modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, nmcrbm_ModelBlock$Bookkeep], - returnType : jl_String, + accessLevel : 3, + parameterTypes : [ju_LinkedList, ju_LinkedList$Entry, ju_LinkedList$Entry, $rt_intcls()], + returnType : $rt_voidcls(), callable : null }, { - name : "startsWithHash", + name : "hasNext", modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String], + accessLevel : 3, + parameterTypes : [], returnType : $rt_booleancls(), callable : null }, { - name : "getParentLocation", + name : "next", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : nmu_ResourceLocation, + returnType : jl_Object, callable : null }, { - name : "getRootModel", + name : "remove", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : nmcrbm_ModelBlock, + returnType : $rt_voidcls(), callable : null }, { - name : "func_181682_g", + name : "hasPrevious", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : nmcrbm_ItemCameraTransforms, + returnType : $rt_booleancls(), callable : null }, { - name : "func_181681_a", + name : "previous", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "nextIndex", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "previousIndex", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "set", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_voidcls(), + callable : null + }, { + name : "add", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_voidcls(), + callable : null + }, { + name : "checkConcurrentModification", modifiers : 0, accessLevel : 1, - parameterTypes : [nmcrbm_ItemCameraTransforms$TransformType], - returnType : nmcrbm_ItemTransformVec3f, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcrbs_DefaultStateMapper.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), callable : null }, { - name : "checkModelHierarchy", + name : "getModelResourceLocation", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmbs_IBlockState], + returnType : nmcrm_ModelResourceLocation, + callable : null + }]; + cgcc_HashBiMap$Inverse.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [cgcc_HashBiMap], + returnType : $rt_voidcls(), + callable : null + }, { + name : "forward", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : cgcc_BiMap, + callable : null + }, { + name : "size", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "clear", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "containsKey", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "get", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : jl_Object, + callable : null + }, { + name : "put", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object], + returnType : jl_Object, + callable : null + }, { + name : "forcePut", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object], + returnType : jl_Object, + callable : null + }, { + name : "remove", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : jl_Object, + callable : null + }, { + name : "inverse", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : cgcc_BiMap, + callable : null + }, { + name : "keySet", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Set, + callable : null + }, { + name : "values", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Set, + callable : null + }, { + name : "entrySet", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Set, + callable : null + }, { + name : "writeReplace", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "values", + modifiers : 96, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Collection, + callable : null + }]; + cgcc_RegularImmutableList.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [$rt_arraycls(jl_Object), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [$rt_arraycls(jl_Object)], + returnType : $rt_voidcls(), + callable : null + }, { + name : "size", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "isPartialView", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "copyIntoArray", + modifiers : 0, + accessLevel : 0, + parameterTypes : [$rt_arraycls(jl_Object), $rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "get", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : jl_Object, + callable : null + }, { + name : "indexOf", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_intcls(), + callable : null + }, { + name : "lastIndexOf", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_intcls(), + callable : null + }, { + name : "subListUnchecked", + modifiers : 0, + accessLevel : 0, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "listIterator", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : cgcc_UnmodifiableListIterator, + callable : null + }, { + name : "listIterator", + modifiers : 96, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : ju_ListIterator, + callable : null + }]; + nms_Team$EnumVisible.$meta.methods = [ + { + name : "values", modifiers : 512, accessLevel : 3, - parameterTypes : [ju_Map], + parameterTypes : [], + returnType : $rt_arraycls(nms_Team$EnumVisible), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nms_Team$EnumVisible, + callable : null + }, { + name : "func_178825_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(jl_String), + callable : null + }, { + name : "func_178824_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nms_Team$EnumVisible, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls(), jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nms_Team$EnumVisible), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nlevsrp_ICEServerSet$RelayType.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nlevsrp_ICEServerSet$RelayType), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nlevsrp_ICEServerSet$RelayType, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevsrp_ICEServerSet$RelayType), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nme_EntityLiving$SpawnPlacementType.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nme_EntityLiving$SpawnPlacementType), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nme_EntityLiving$SpawnPlacementType, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nme_EntityLiving$SpawnPlacementType), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + cgcb_AbstractIterator$State.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(cgcb_AbstractIterator$State), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : cgcb_AbstractIterator$State, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(cgcb_AbstractIterator$State), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcrbm_ItemModelGenerator$SpanFacing.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmcrbm_ItemModelGenerator$SpanFacing), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmcrbm_ItemModelGenerator$SpanFacing, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls(), nmu_EnumFacing, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFacing", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_EnumFacing, + callable : null + }, { + name : "func_178372_b", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "func_178371_c", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "func_178369_d", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmcrbm_ItemModelGenerator$SpanFacing), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nlevsr_RelayQuery$VersionMismatch.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nlevsr_RelayQuery$VersionMismatch), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nlevsr_RelayQuery$VersionMismatch, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isCompatible", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevsr_RelayQuery$VersionMismatch), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmwc_Chunk$EnumCreateEntityType.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmwc_Chunk$EnumCreateEntityType), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmwc_Chunk$EnumCreateEntityType, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmwc_Chunk$EnumCreateEntityType), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmwb_BiomeGenBase$TempCategory.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmwb_BiomeGenBase$TempCategory), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmwb_BiomeGenBase$TempCategory, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmwb_BiomeGenBase$TempCategory), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmt_TileEntityBanner$EnumBannerPattern.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmt_TileEntityBanner$EnumBannerPattern), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmt_TileEntityBanner$EnumBannerPattern, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls(), jl_String, jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls(), jl_String, jl_String, juf_Supplier], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls(), jl_String, jl_String, jl_String, jl_String, jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getPatternName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getPatternID", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getCraftingLayers", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(jl_String), + callable : null + }, { + name : "hasValidCrafting", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hasCraftingStack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getCraftingStack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmi_ItemStack, + callable : null + }, { + name : "getPatternByID", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmt_TileEntityBanner$EnumBannerPattern, + callable : null + }, { + name : "lambda$static$5", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : nmi_ItemStack, + callable : null + }, { + name : "lambda$static$4", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : nmi_ItemStack, + callable : null + }, { + name : "lambda$static$3", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : nmi_ItemStack, + callable : null + }, { + name : "lambda$static$2", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : nmi_ItemStack, + callable : null + }, { + name : "lambda$static$1", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : nmi_ItemStack, + callable : null + }, { + name : "lambda$static$0", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : nmi_ItemStack, + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmt_TileEntityBanner$EnumBannerPattern), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcrc_ChunkCompileTaskGenerator$Type.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmcrc_ChunkCompileTaskGenerator$Type), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmcrc_ChunkCompileTaskGenerator$Type, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmcrc_ChunkCompileTaskGenerator$Type), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmb_Block$EnumOffsetType.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmb_Block$EnumOffsetType), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmb_Block$EnumOffsetType, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmb_Block$EnumOffsetType), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nme_EnumCreatureAttribute.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nme_EnumCreatureAttribute), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nme_EnumCreatureAttribute, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nme_EnumCreatureAttribute), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcrc_RenderChunk$ShadowFrustumState.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmcrc_RenderChunk$ShadowFrustumState), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmcrc_RenderChunk$ShadowFrustumState, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmcrc_RenderChunk$ShadowFrustumState), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcrc_ChunkCompileTaskGenerator$Status.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmcrc_ChunkCompileTaskGenerator$Status), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmcrc_ChunkCompileTaskGenerator$Status, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmcrc_ChunkCompileTaskGenerator$Status), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nme_EnumCreatureType.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nme_EnumCreatureType), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nme_EnumCreatureType, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls(), jl_Class, $rt_intcls(), nmbm_Material, $rt_booleancls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getCreatureClass", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Class, + callable : null + }, { + name : "getMaxNumberOfCreature", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getPeacefulCreature", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getAnimal", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nme_EnumCreatureType), + callable : null }, { name : "", modifiers : 512, @@ -67738,6 +68278,148 @@ returnType : ju_HashMap, callable : null }]; + nmcrbm_ModelBlock.$meta.methods = [ + { + name : "deserialize", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmcrbm_ModelBlock, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [ju_List, ju_Map, $rt_booleancls(), $rt_booleancls(), nmcrbm_ItemCameraTransforms], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_ResourceLocation, ju_Map, $rt_booleancls(), $rt_booleancls(), nmcrbm_ItemCameraTransforms], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmu_ResourceLocation, ju_List, ju_Map, $rt_booleancls(), $rt_booleancls(), nmcrbm_ItemCameraTransforms], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getElements", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_List, + callable : null + }, { + name : "hasParent", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isAmbientOcclusion", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isGui3d", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isResolved", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getParentFromMap", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ju_Map], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isTexturePresent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_booleancls(), + callable : null + }, { + name : "resolveTextureName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : jl_String, + callable : null + }, { + name : "resolveTextureName", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, nmcrbm_ModelBlock$Bookkeep], + returnType : jl_String, + callable : null + }, { + name : "startsWithHash", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getParentLocation", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_ResourceLocation, + callable : null + }, { + name : "getRootModel", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmcrbm_ModelBlock, + callable : null + }, { + name : "func_181682_g", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmcrbm_ItemCameraTransforms, + callable : null + }, { + name : "func_181681_a", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmcrbm_ItemCameraTransforms$TransformType], + returnType : nmcrbm_ItemTransformVec3f, + callable : null + }, { + name : "checkModelHierarchy", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_Map], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; nlevm_EaglerTextureAtlasSprite.$meta.methods = [ { name : "", @@ -68148,6 +68830,300 @@ returnType : $rt_voidcls(), callable : null }]; + nmcrc_ListedRenderChunk.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmcr_RenderGlobal, nmu_BlockPos, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDisplayList", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_EnumWorldBlockLayer, nmcrc_CompiledChunk], + returnType : $rt_intcls(), + callable : null + }, { + name : "deleteGlResources", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "rebuildChunk", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls(), $rt_floatcls(), $rt_floatcls(), nmcrc_ChunkCompileTaskGenerator], + returnType : $rt_voidcls(), + callable : null + }]; + nlevsrp_IPacket07LocalWorlds$LocalWorld.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, jl_String], + returnType : $rt_voidcls(), + callable : null + }]; + jlr_Method.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Class, jl_String, $rt_intcls(), $rt_intcls(), jl_Class, $rt_arraycls(jl_Class), otcir_JSCallable], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDeclaringClass", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Class, + callable : null + }, { + name : "getName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getModifiers", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getReturnType", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Class, + callable : null + }, { + name : "getParameterTypes", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(jl_Class), + callable : null + }, { + name : "getParameterCount", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "invoke", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object, $rt_arraycls(jl_Object)], + returnType : jl_Object, + callable : null + }, { + name : "isBridge", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isSynthetic", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isVarArgs", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + nPs_RangeInt.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isInRange", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getMin", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getMax", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }]; + nlevsrp_ICEServerSet$RelayServer.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nlevsrp_ICEServerSet$RelayType, jl_String, jl_String, jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nlevsrp_ICEServerSet$RelayType, jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getICEString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }]; + nmws_MapData.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "calculateMapCenter", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateVisiblePlayers", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer, nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateDecorations", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_intcls(), nmw_World, jl_String, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getMapPacket", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack, nmw_World, nmep_EntityPlayer], + returnType : nmn_Packet, + callable : null + }, { + name : "updateMapData", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getMapInfo", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : nmws_MapData$MapInfo, + callable : null + }]; + nmwgs_MapGenStructureData.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeInstance", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "formatChunkCoords", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : jl_String, + callable : null + }, { + name : "getTagCompound", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmn_NBTTagCompound, + callable : null + }]; cgcc_EmptyImmutableBiMap.$meta.methods = [ { name : "", @@ -68320,71 +69296,6 @@ returnType : jl_Object, callable : null }]; - cgcc_RegularImmutableMap.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_arraycls(cgcc_ImmutableMapEntry$TerminalEntry)], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_intcls(), $rt_arraycls(cgcc_ImmutableMapEntry$TerminalEntry)], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_arraycls(ju_Map$Entry)], - returnType : $rt_voidcls(), - callable : null - }, { - name : "checkNoConflictInBucket", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_Object, cgcc_ImmutableMapEntry, cgcc_ImmutableMapEntry], - returnType : $rt_voidcls(), - callable : null - }, { - name : "createEntryArray", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_intcls()], - returnType : $rt_arraycls(cgcc_ImmutableMapEntry), - callable : null - }, { - name : "get", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : jl_Object, - callable : null - }, { - name : "size", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "isPartialView", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "createEntrySet", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : cgcc_ImmutableSet, - callable : null - }]; cgcc_SingletonImmutableBiMap.$meta.methods = [ { name : "", @@ -68471,198 +69382,69 @@ returnType : cgcc_BiMap, callable : null }]; - cgcb_Splitter$1$1.$meta.methods = [ + cgcc_RegularImmutableMap.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 0, - parameterTypes : [cgcb_Splitter$1, cgcb_Splitter, jl_CharSequence], + parameterTypes : [$rt_arraycls(cgcc_ImmutableMapEntry$TerminalEntry)], returnType : $rt_voidcls(), callable : null }, { - name : "separatorStart", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "separatorEnd", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_intcls()], - returnType : $rt_intcls(), - callable : null - }]; - cgcc_ImmutableEntry.$meta.methods = [ - { name : "", modifiers : 0, accessLevel : 0, - parameterTypes : [jl_Object, jl_Object], + parameterTypes : [$rt_intcls(), $rt_arraycls(cgcc_ImmutableMapEntry$TerminalEntry)], returnType : $rt_voidcls(), callable : null }, { - name : "getKey", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [$rt_arraycls(ju_Map$Entry)], + returnType : $rt_voidcls(), callable : null }, { - name : "getValue", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, + name : "checkNoConflictInBucket", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_Object, cgcc_ImmutableMapEntry, cgcc_ImmutableMapEntry], + returnType : $rt_voidcls(), callable : null }, { - name : "setValue", - modifiers : 4, + name : "createEntryArray", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_intcls()], + returnType : $rt_arraycls(cgcc_ImmutableMapEntry), + callable : null + }, { + name : "get", + modifiers : 0, accessLevel : 3, parameterTypes : [jl_Object], returnType : jl_Object, callable : null - }]; - nlevsrp_IPacket07LocalWorlds$LocalWorld.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, jl_String], - returnType : $rt_voidcls(), - callable : null - }]; - nmws_MapData.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null }, { - name : "calculateMapCenter", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateVisiblePlayers", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer, nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateDecorations", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_intcls(), nmw_World, jl_String, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getMapPacket", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack, nmw_World, nmep_EntityPlayer], - returnType : nmn_Packet, - callable : null - }, { - name : "updateMapData", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getMapInfo", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : nmws_MapData$MapInfo, - callable : null - }]; - nlevsrp_ICEServerSet$RelayServer.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nlevsrp_ICEServerSet$RelayType, jl_String, jl_String, jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nlevsrp_ICEServerSet$RelayType, jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getICEString", + name : "size", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : jl_String, - callable : null - }]; - nmwgs_MapGenStructureData.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), + returnType : $rt_intcls(), callable : null }, { - name : "readFromNBT", + name : "isPartialView", modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeInstance", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "formatChunkCoords", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : jl_String, - callable : null - }, { - name : "getTagCompound", - modifiers : 0, - accessLevel : 3, + accessLevel : 0, parameterTypes : [], - returnType : nmn_NBTTagCompound, + returnType : $rt_booleancls(), + callable : null + }, { + name : "createEntrySet", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : cgcc_ImmutableSet, callable : null }]; nmcrm_WeightedBakedModel.$meta.methods = [ @@ -68730,33 +69512,295 @@ returnType : nmcrm_IBakedModel, callable : null }]; - nmcrc_ListedRenderChunk.$meta.methods = [ + cgcb_Splitter$1$1.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmcr_RenderGlobal, nmu_BlockPos, $rt_intcls()], + accessLevel : 0, + parameterTypes : [cgcb_Splitter$1, cgcb_Splitter, jl_CharSequence], returnType : $rt_voidcls(), callable : null }, { - name : "getDisplayList", + name : "separatorStart", modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_EnumWorldBlockLayer, nmcrc_CompiledChunk], + accessLevel : 0, + parameterTypes : [$rt_intcls()], returnType : $rt_intcls(), callable : null }, { - name : "deleteGlResources", + name : "separatorEnd", + modifiers : 0, + accessLevel : 0, + parameterTypes : [$rt_intcls()], + returnType : $rt_intcls(), + callable : null + }]; + cgcc_ImmutableEntry.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [jl_Object, jl_Object], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getKey", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "getValue", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "setValue", + modifiers : 4, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : jl_Object, + callable : null + }]; + nmi_Blocks.$meta.methods = [ + { + name : "", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { - name : "rebuildChunk", + name : "getRegisteredBlock", + modifiers : 512, + accessLevel : 1, + parameterTypes : [jl_String], + returnType : nmb_Block, + callable : null + }, { + name : "makeModData", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : nea_ModData, + callable : null + }, { + name : "doBootstrap", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmi_Items.$meta.methods = [ + { + name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_floatcls(), $rt_floatcls(), nmcrc_ChunkCompileTaskGenerator], + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getRegisteredItem", + modifiers : 512, + accessLevel : 1, + parameterTypes : [jl_String], + returnType : nmi_Item, + callable : null + }, { + name : "makeModData", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : nea_ModData, + callable : null + }, { + name : "doBootstrap", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nea_server.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "makeModData", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : nea_ModData, + callable : null + }, { + name : "lambda$makeModData$7", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_doublecls(), + callable : null + }, { + name : "lambda$makeModData$6", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_doublecls(), + callable : null + }, { + name : "lambda$makeModData$5", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "lambda$makeModData$4", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "lambda$makeModData$3", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "lambda$makeModData$2", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "lambda$makeModData$1", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "lambda$makeModData$0", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : jl_String, + callable : null + }]; + nmep_PlayerCapabilities.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "loadModData", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nea_BaseData], + returnType : $rt_voidcls(), + callable : null + }, { + name : "makeModData", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nea_ModData, + callable : null + }, { + name : "writeCapabilitiesToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readCapabilitiesFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFlySpeed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "setFlySpeed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getWalkSpeed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "setPlayerWalkSpeed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$makeModData$5", + modifiers : 32, + accessLevel : 1, + parameterTypes : [nea_BaseData], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$makeModData$4", + modifiers : 32, + accessLevel : 1, + parameterTypes : [nea_BaseData], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$makeModData$3", + modifiers : 32, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "lambda$makeModData$2", + modifiers : 32, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "lambda$makeModData$1", + modifiers : 32, + accessLevel : 1, + parameterTypes : [], + returnType : otj_JSObject, + callable : null + }, { + name : "lambda$makeModData$0", + modifiers : 32, + accessLevel : 1, + parameterTypes : [nea_ModData], returnType : $rt_voidcls(), callable : null }]; @@ -69758,245 +70802,6 @@ returnType : otj_JSObject, callable : null }]; - nea_server.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "makeModData", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : nea_ModData, - callable : null - }, { - name : "lambda$makeModData$7", - modifiers : 544, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_doublecls(), - callable : null - }, { - name : "lambda$makeModData$6", - modifiers : 544, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_doublecls(), - callable : null - }, { - name : "lambda$makeModData$5", - modifiers : 544, - accessLevel : 1, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "lambda$makeModData$4", - modifiers : 544, - accessLevel : 1, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "lambda$makeModData$3", - modifiers : 544, - accessLevel : 1, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "lambda$makeModData$2", - modifiers : 544, - accessLevel : 1, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "lambda$makeModData$1", - modifiers : 544, - accessLevel : 1, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "lambda$makeModData$0", - modifiers : 544, - accessLevel : 1, - parameterTypes : [], - returnType : jl_String, - callable : null - }]; - nmi_Items.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getRegisteredItem", - modifiers : 512, - accessLevel : 1, - parameterTypes : [jl_String], - returnType : nmi_Item, - callable : null - }, { - name : "makeModData", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : nea_ModData, - callable : null - }, { - name : "doBootstrap", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmep_PlayerCapabilities.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "loadModData", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nea_BaseData], - returnType : $rt_voidcls(), - callable : null - }, { - name : "makeModData", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nea_ModData, - callable : null - }, { - name : "writeCapabilitiesToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readCapabilitiesFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFlySpeed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "setFlySpeed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getWalkSpeed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "setPlayerWalkSpeed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$makeModData$5", - modifiers : 32, - accessLevel : 1, - parameterTypes : [nea_BaseData], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$makeModData$4", - modifiers : 32, - accessLevel : 1, - parameterTypes : [nea_BaseData], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$makeModData$3", - modifiers : 32, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "lambda$makeModData$2", - modifiers : 32, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "lambda$makeModData$1", - modifiers : 32, - accessLevel : 1, - parameterTypes : [], - returnType : otj_JSObject, - callable : null - }, { - name : "lambda$makeModData$0", - modifiers : 32, - accessLevel : 1, - parameterTypes : [nea_ModData], - returnType : $rt_voidcls(), - callable : null - }]; - nmi_Blocks.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getRegisteredBlock", - modifiers : 512, - accessLevel : 1, - parameterTypes : [jl_String], - returnType : nmb_Block, - callable : null - }, { - name : "makeModData", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : nea_ModData, - callable : null - }, { - name : "doBootstrap", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; nmem_EntityZombie.$meta.methods = [ { name : "", @@ -70415,14 +71220,133 @@ returnType : $rt_voidcls(), callable : null }]; - cgcc_ImmutableCollection.$meta.methods = [ + cgcc_ImmutableSet.$meta.methods = [ { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : cgcc_ImmutableSet, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : cgcc_ImmutableSet, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object], + returnType : cgcc_ImmutableSet, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object, jl_Object], + returnType : cgcc_ImmutableSet, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object], + returnType : cgcc_ImmutableSet, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], + returnType : cgcc_ImmutableSet, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, $rt_arraycls(jl_Object)], + returnType : cgcc_ImmutableSet, + callable : null + }, { + name : "construct", + modifiers : 512, + accessLevel : 1, + parameterTypes : [$rt_intcls(), $rt_arraycls(jl_Object)], + returnType : cgcc_ImmutableSet, + callable : null + }, { + name : "chooseTableSize", + modifiers : 512, + accessLevel : 0, + parameterTypes : [$rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "copyOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_arraycls(jl_Object)], + returnType : cgcc_ImmutableSet, + callable : null + }, { + name : "copyOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Iterable], + returnType : cgcc_ImmutableSet, + callable : null + }, { + name : "copyOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_Iterator], + returnType : cgcc_ImmutableSet, + callable : null + }, { + name : "copyOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_Collection], + returnType : cgcc_ImmutableSet, + callable : null + }, { + name : "copyOfEnumSet", + modifiers : 512, + accessLevel : 1, + parameterTypes : [ju_EnumSet], + returnType : cgcc_ImmutableSet, + callable : null + }, { name : "", modifiers : 0, accessLevel : 0, parameterTypes : [], returnType : $rt_voidcls(), callable : null + }, { + name : "isHashCodeFast", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hashCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null }, { name : "iterator", modifiers : 1, @@ -70430,97 +71354,6 @@ parameterTypes : [], returnType : cgcc_UnmodifiableIterator, callable : null - }, { - name : "toArray", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(jl_Object), - callable : null - }, { - name : "toArray", - modifiers : 4, - accessLevel : 3, - parameterTypes : [$rt_arraycls(jl_Object)], - returnType : $rt_arraycls(jl_Object), - callable : null - }, { - name : "contains", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "add", - modifiers : 132, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "remove", - modifiers : 132, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "addAll", - modifiers : 132, - accessLevel : 3, - parameterTypes : [ju_Collection], - returnType : $rt_booleancls(), - callable : null - }, { - name : "removeAll", - modifiers : 132, - accessLevel : 3, - parameterTypes : [ju_Collection], - returnType : $rt_booleancls(), - callable : null - }, { - name : "retainAll", - modifiers : 132, - accessLevel : 3, - parameterTypes : [ju_Collection], - returnType : $rt_booleancls(), - callable : null - }, { - name : "clear", - modifiers : 132, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "asList", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "createAsList", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "isPartialView", - modifiers : 1, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "copyIntoArray", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_arraycls(jl_Object), $rt_intcls()], - returnType : $rt_intcls(), - callable : null }, { name : "writeReplace", modifiers : 0, @@ -70528,6 +71361,13 @@ parameterTypes : [], returnType : jl_Object, callable : null + }, { + name : "builder", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : cgcc_ImmutableSet$Builder, + callable : null }, { name : "iterator", modifiers : 96, @@ -70536,22 +71376,6 @@ returnType : ju_Iterator, callable : null }]; - cgcc_UnmodifiableIterator.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "remove", - modifiers : 132, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; nme_EntityLivingBase.$meta.methods = [ { name : "onKillCommand", @@ -71436,164 +72260,6 @@ returnType : $rt_voidcls(), callable : null }]; - cgcc_AbstractIndexedListIterator.$meta.methods = [ - { - name : "get", - modifiers : 1, - accessLevel : 2, - parameterTypes : [$rt_intcls()], - returnType : jl_Object, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "hasNext", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "next", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "nextIndex", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "hasPrevious", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "previous", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "previousIndex", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }]; - ju_AbstractCollection.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isEmpty", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "contains", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "toArray", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(jl_Object), - callable : null - }, { - name : "toArray", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_arraycls(jl_Object)], - returnType : $rt_arraycls(jl_Object), - callable : null - }, { - name : "add", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "remove", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "containsAll", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_Collection], - returnType : $rt_booleancls(), - callable : null - }, { - name : "addAll", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_Collection], - returnType : $rt_booleancls(), - callable : null - }, { - name : "removeAll", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_Collection], - returnType : $rt_booleancls(), - callable : null - }, { - name : "retainAll", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_Collection], - returnType : $rt_booleancls(), - callable : null - }, { - name : "clear", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }]; nmcrc_RenderChunk.$meta.methods = [ { name : "", @@ -71736,613 +72402,366 @@ returnType : nmu_BlockPos, callable : null }]; - nme_EntityLiving.$meta.methods = [ + cgcc_ImmutableList.$meta.methods = [ { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object, jl_Object], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, $rt_arraycls(jl_Object)], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "copyOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Iterable], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "copyOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_Collection], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "copyOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_Iterator], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "copyOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_arraycls(jl_Object)], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "construct", + modifiers : 512, + accessLevel : 1, + parameterTypes : [$rt_arraycls(jl_Object)], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "asImmutableList", + modifiers : 512, + accessLevel : 0, + parameterTypes : [$rt_arraycls(jl_Object)], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "asImmutableList", + modifiers : 512, + accessLevel : 0, + parameterTypes : [$rt_arraycls(jl_Object), $rt_intcls()], + returnType : cgcc_ImmutableList, + callable : null + }, { name : "", modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyEntityAttributes", - modifiers : 0, - accessLevel : 2, + accessLevel : 0, parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { - name : "getNewNavigator", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World], - returnType : nmp_PathNavigate, - callable : null - }, { - name : "getLookHelper", + name : "iterator", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : nmea_EntityLookHelper, + returnType : cgcc_UnmodifiableIterator, callable : null }, { - name : "getMoveHelper", + name : "listIterator", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : nmea_EntityMoveHelper, + returnType : cgcc_UnmodifiableListIterator, callable : null }, { - name : "getJumpHelper", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmea_EntityJumpHelper, - callable : null - }, { - name : "getNavigator", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmp_PathNavigate, - callable : null - }, { - name : "getEntitySenses", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmea_EntitySenses, - callable : null - }, { - name : "getAttackTarget", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nme_EntityLivingBase, - callable : null - }, { - name : "setAttackTarget", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityLivingBase], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canAttackClass", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Class], - returnType : $rt_booleancls(), - callable : null - }, { - name : "eatGrassBonus", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getTalkInterval", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "playLivingSound", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onEntityUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getExperiencePoints", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_intcls(), - callable : null - }, { - name : "spawnExplosionParticle", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "handleStatusUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_bytecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_110146_f", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_floatcls(), $rt_floatcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getLivingSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDropItem", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmi_Item, - callable : null - }, { - name : "dropFewItems", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_booleancls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setMoveForward", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setAIMoveSpeed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onLivingUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateEquipmentIfNeeded", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmei_EntityItem], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175448_a", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }, { - name : "canDespawn", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "despawnEntity", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateEntityActionState", - modifiers : 4, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateAITasks", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getVerticalFaceSpeed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "faceEntity", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity, $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateRotation", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getCanSpawnHere", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isNotColliding", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getRenderSizeModifier", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getMaxSpawnedInChunk", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getMaxFallHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getHeldItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmi_ItemStack, - callable : null - }, { - name : "getEquipmentInSlot", + name : "listIterator", modifiers : 0, accessLevel : 3, parameterTypes : [$rt_intcls()], - returnType : nmi_ItemStack, + returnType : cgcc_UnmodifiableListIterator, callable : null }, { - name : "getCurrentArmor", + name : "indexOf", modifiers : 0, accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "setCurrentItemOrArmor", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmi_ItemStack), - callable : null - }, { - name : "dropEquipment", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_booleancls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setEquipmentBasedOnDifficulty", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_DifficultyInstance], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getArmorPosition", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], + parameterTypes : [jl_Object], returnType : $rt_intcls(), callable : null }, { - name : "getArmorItemForSlot", - modifiers : 512, + name : "lastIndexOf", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_intcls(), + callable : null + }, { + name : "contains", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "subList", + modifiers : 0, accessLevel : 3, parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : nmi_Item, + returnType : cgcc_ImmutableList, callable : null }, { - name : "setEnchantmentBasedOnDifficulty", + name : "subListUnchecked", modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_DifficultyInstance], - returnType : $rt_voidcls(), + accessLevel : 0, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : cgcc_ImmutableList, callable : null }, { - name : "onInitialSpawn", - modifiers : 0, + name : "addAll", + modifiers : 132, accessLevel : 3, - parameterTypes : [nmw_DifficultyInstance, nme_IEntityLivingData], - returnType : nme_IEntityLivingData, - callable : null - }, { - name : "canBeSteered", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], + parameterTypes : [$rt_intcls(), ju_Collection], returnType : $rt_booleancls(), callable : null }, { - name : "enablePersistence", - modifiers : 0, + name : "set", + modifiers : 132, accessLevel : 3, - parameterTypes : [], + parameterTypes : [$rt_intcls(), jl_Object], + returnType : jl_Object, + callable : null + }, { + name : "add", + modifiers : 132, + accessLevel : 3, + parameterTypes : [$rt_intcls(), jl_Object], returnType : $rt_voidcls(), callable : null }, { - name : "setEquipmentDropChance", - modifiers : 0, + name : "remove", + modifiers : 132, accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_floatcls()], - returnType : $rt_voidcls(), + parameterTypes : [$rt_intcls()], + returnType : jl_Object, callable : null }, { - name : "canPickUpLoot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setCanPickUpLoot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isNoDespawnRequired", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "interactFirst", + name : "asList", modifiers : 4, accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "interact", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "updateLeashedState", - modifiers : 0, - accessLevel : 2, parameterTypes : [], - returnType : $rt_voidcls(), + returnType : cgcc_ImmutableList, callable : null }, { - name : "clearLeashed", + name : "copyIntoArray", modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls(), $rt_booleancls()], - returnType : $rt_voidcls(), + accessLevel : 0, + parameterTypes : [$rt_arraycls(jl_Object), $rt_intcls()], + returnType : $rt_intcls(), callable : null }, { - name : "allowLeashing", + name : "reverse", modifiers : 0, accessLevel : 3, parameterTypes : [], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], returnType : $rt_booleancls(), callable : null }, { - name : "getLeashed", + name : "hashCode", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : $rt_booleancls(), + returnType : $rt_intcls(), callable : null }, { - name : "getLeashedToEntity", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nme_Entity, - callable : null - }, { - name : "setLeashedToEntity", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity, $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "recreateLeash", + name : "readObject", modifiers : 0, accessLevel : 1, - parameterTypes : [], + parameterTypes : [ji_ObjectInputStream], returnType : $rt_voidcls(), callable : null }, { - name : "replaceItemInInventory", + name : "writeReplace", modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nmi_ItemStack], - returnType : $rt_booleancls(), + accessLevel : 0, + parameterTypes : [], + returnType : jl_Object, callable : null }, { - name : "isServerWorld", - modifiers : 0, + name : "builder", + modifiers : 512, accessLevel : 3, parameterTypes : [], - returnType : $rt_booleancls(), + returnType : cgcc_ImmutableList$Builder, callable : null }, { - name : "setNoAI", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isAIDisabled", - modifiers : 0, + name : "iterator", + modifiers : 96, accessLevel : 3, parameterTypes : [], - returnType : $rt_booleancls(), + returnType : ju_Iterator, callable : null }, { - name : "canSkipUpdate", - modifiers : 0, - accessLevel : 1, + name : "subList", + modifiers : 96, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : ju_List, + callable : null + }, { + name : "listIterator", + modifiers : 96, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : ju_ListIterator, + callable : null + }, { + name : "listIterator", + modifiers : 96, + accessLevel : 3, parameterTypes : [], - returnType : $rt_booleancls(), + returnType : ju_ListIterator, callable : null }, { - name : "onUpdateMinimal", - modifiers : 0, - accessLevel : 1, + name : "", + modifiers : 512, + accessLevel : 0, parameterTypes : [], returnType : $rt_voidcls(), callable : null }]; - nmcrbs_StateMapperBase.$meta.methods = [ + cgcb_Splitter$SplittingIterator.$meta.methods = [ { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getPropertyString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_Map], - returnType : jl_String, - callable : null - }, { - name : "putStateModelLocations", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmb_Block], - returnType : ju_Map, - callable : null - }, { - name : "getModelResourceLocation", + name : "separatorStart", modifiers : 1, - accessLevel : 2, - parameterTypes : [nmbs_IBlockState], - returnType : nmcrm_ModelResourceLocation, + accessLevel : 0, + parameterTypes : [$rt_intcls()], + returnType : $rt_intcls(), callable : null - }]; - cgcb_AbstractIterator.$meta.methods = [ - { + }, { + name : "separatorEnd", + modifiers : 1, + accessLevel : 0, + parameterTypes : [$rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { name : "", modifiers : 0, accessLevel : 2, - parameterTypes : [], + parameterTypes : [cgcb_Splitter, jl_CharSequence], returnType : $rt_voidcls(), callable : null }, { name : "computeNext", - modifiers : 1, - accessLevel : 2, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "endOfData", - modifiers : 4, - accessLevel : 2, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "hasNext", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "tryToComputeNext", modifiers : 0, - accessLevel : 1, + accessLevel : 2, parameterTypes : [], - returnType : $rt_booleancls(), + returnType : jl_String, callable : null }, { - name : "next", - modifiers : 4, - accessLevel : 3, + name : "computeNext", + modifiers : 96, + accessLevel : 2, parameterTypes : [], returnType : jl_Object, callable : null - }, { - name : "remove", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null }]; jl_Object.$meta.methods = [ { @@ -72661,6 +73080,525 @@ returnType : jl_Object, callable : null }]; + ju_MapEntry.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [jl_Object], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [jl_Object, jl_Object], + returnType : $rt_voidcls(), + callable : null + }, { + name : "clone", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getKey", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "getValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "hashCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "setValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : jl_Object, + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }]; + cgcc_ImmutableMap.$meta.methods = [ + { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : cgcc_ImmutableMap, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object], + returnType : cgcc_ImmutableMap, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object], + returnType : cgcc_ImmutableMap, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], + returnType : cgcc_ImmutableMap, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], + returnType : cgcc_ImmutableMap, + callable : null + }, { + name : "of", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], + returnType : cgcc_ImmutableMap, + callable : null + }, { + name : "entryOf", + modifiers : 512, + accessLevel : 0, + parameterTypes : [jl_Object, jl_Object], + returnType : cgcc_ImmutableMapEntry$TerminalEntry, + callable : null + }, { + name : "builder", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : cgcc_ImmutableMap$Builder, + callable : null + }, { + name : "checkNoConflict", + modifiers : 512, + accessLevel : 0, + parameterTypes : [$rt_booleancls(), jl_String, ju_Map$Entry, ju_Map$Entry], + returnType : $rt_voidcls(), + callable : null + }, { + name : "copyOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_Map], + returnType : cgcc_ImmutableMap, + callable : null + }, { + name : "copyOfEnumMapUnsafe", + modifiers : 512, + accessLevel : 1, + parameterTypes : [ju_Map], + returnType : cgcc_ImmutableMap, + callable : null + }, { + name : "copyOfEnumMap", + modifiers : 512, + accessLevel : 1, + parameterTypes : [ju_Map], + returnType : cgcc_ImmutableMap, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "put", + modifiers : 132, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object], + returnType : jl_Object, + callable : null + }, { + name : "remove", + modifiers : 132, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : jl_Object, + callable : null + }, { + name : "putAll", + modifiers : 132, + accessLevel : 3, + parameterTypes : [ju_Map], + returnType : $rt_voidcls(), + callable : null + }, { + name : "clear", + modifiers : 132, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isEmpty", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "containsKey", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "containsValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "get", + modifiers : 1, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : jl_Object, + callable : null + }, { + name : "entrySet", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : cgcc_ImmutableSet, + callable : null + }, { + name : "createEntrySet", + modifiers : 1, + accessLevel : 0, + parameterTypes : [], + returnType : cgcc_ImmutableSet, + callable : null + }, { + name : "keySet", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : cgcc_ImmutableSet, + callable : null + }, { + name : "createKeySet", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : cgcc_ImmutableSet, + callable : null + }, { + name : "values", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : cgcc_ImmutableCollection, + callable : null + }, { + name : "asMultimap", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : cgcc_ImmutableSetMultimap, + callable : null + }, { + name : "createMultimapView", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : cgcc_ImmutableSetMultimap, + callable : null + }, { + name : "viewMapValuesAsSingletonSets", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : cgcc_ImmutableMap, + callable : null + }, { + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isPartialView", + modifiers : 1, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hashCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "writeReplace", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "entrySet", + modifiers : 96, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Set, + callable : null + }, { + name : "values", + modifiers : 96, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Collection, + callable : null + }, { + name : "keySet", + modifiers : 96, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Set, + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + cgcc_AbstractIndexedListIterator.$meta.methods = [ + { + name : "get", + modifiers : 1, + accessLevel : 2, + parameterTypes : [$rt_intcls()], + returnType : jl_Object, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "hasNext", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "next", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "nextIndex", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "hasPrevious", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "previous", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "previousIndex", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }]; + ju_AbstractMap.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "size", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "isEmpty", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "containsValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "containsKey", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "get", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : jl_Object, + callable : null + }, { + name : "put", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object, jl_Object], + returnType : jl_Object, + callable : null + }, { + name : "putAll", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ju_Map], + returnType : $rt_voidcls(), + callable : null + }, { + name : "remove", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : jl_Object, + callable : null + }, { + name : "entrySet", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Set, + callable : null + }, { + name : "clear", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "keySet", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Set, + callable : null + }, { + name : "values", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Collection, + callable : null + }, { + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hashCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "clone", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_Object, + callable : null + }]; ju_AbstractSequentialList.$meta.methods = [ { name : "", @@ -72742,6 +73680,540 @@ returnType : $rt_voidcls(), callable : null }]; + jl_Enum.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "name", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "ordinal", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "equals", + modifiers : 4, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hashCode", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "clone", + modifiers : 4, + accessLevel : 2, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "getDeclaringClass", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Class, + callable : null + }, { + name : "compareTo", + modifiers : 4, + accessLevel : 3, + parameterTypes : [jl_Enum], + returnType : $rt_intcls(), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Class, jl_String], + returnType : jl_Enum, + callable : null + }, { + name : "compareTo", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_intcls(), + callable : null + }]; + cgcc_UnmodifiableIterator.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "remove", + modifiers : 132, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcrbs_StateMapperBase.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getPropertyString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ju_Map], + returnType : jl_String, + callable : null + }, { + name : "putStateModelLocations", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmb_Block], + returnType : ju_Map, + callable : null + }, { + name : "getModelResourceLocation", + modifiers : 1, + accessLevel : 2, + parameterTypes : [nmbs_IBlockState], + returnType : nmcrm_ModelResourceLocation, + callable : null + }]; + nmw_WorldSavedData.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readFromNBT", + modifiers : 1, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeToNBT", + modifiers : 1, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "markDirty", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setDirty", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isDirty", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + ju_AbstractCollection.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isEmpty", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "contains", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "toArray", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(jl_Object), + callable : null + }, { + name : "toArray", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_arraycls(jl_Object)], + returnType : $rt_arraycls(jl_Object), + callable : null + }, { + name : "add", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "remove", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "containsAll", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ju_Collection], + returnType : $rt_booleancls(), + callable : null + }, { + name : "addAll", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ju_Collection], + returnType : $rt_booleancls(), + callable : null + }, { + name : "removeAll", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ju_Collection], + returnType : $rt_booleancls(), + callable : null + }, { + name : "retainAll", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ju_Collection], + returnType : $rt_booleancls(), + callable : null + }, { + name : "clear", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }]; + nmem_EntityMob.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onLivingUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSwimSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getSplashSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "attackEntityFrom", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource, $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getHurtSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDeathSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getFallSoundString", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls()], + returnType : jl_String, + callable : null + }, { + name : "attackEntityAsMob", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getBlockPathWeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_BlockPos], + returnType : $rt_floatcls(), + callable : null + }, { + name : "isValidLightLevel", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getCanSpawnHere", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "applyEntityAttributes", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canDropLoot", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + ju_AbstractList.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "add", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "iterator", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Iterator, + callable : null + }, { + name : "addAll", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), ju_Collection], + returnType : $rt_booleancls(), + callable : null + }, { + name : "set", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), jl_Object], + returnType : jl_Object, + callable : null + }, { + name : "add", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), jl_Object], + returnType : $rt_voidcls(), + callable : null + }, { + name : "remove", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : jl_Object, + callable : null + }, { + name : "indexOf", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_intcls(), + callable : null + }, { + name : "lastIndexOf", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_intcls(), + callable : null + }, { + name : "clear", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "listIterator", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_ListIterator, + callable : null + }, { + name : "listIterator", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : ju_ListIterator, + callable : null + }, { + name : "subList", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : ju_List, + callable : null + }, { + name : "removeRange", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "hashCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }]; + cgcb_AbstractIterator.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "computeNext", + modifiers : 1, + accessLevel : 2, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "endOfData", + modifiers : 4, + accessLevel : 2, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "hasNext", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "tryToComputeNext", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "next", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "remove", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; nme_Entity.$meta.methods = [ { name : "getEntityId", @@ -74648,381 +76120,6 @@ returnType : $rt_voidcls(), callable : null }]; - jlr_AccessibleObject.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setAccessible", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_arraycls(jlr_AccessibleObject), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setAccessible", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isAccessible", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getAnnotation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Class], - returnType : jla_Annotation, - callable : null - }, { - name : "getAnnotations", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(jla_Annotation), - callable : null - }, { - name : "getDeclaredAnnotations", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(jla_Annotation), - callable : null - }]; - cgcc_ImmutableList.$meta.methods = [ - { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object, jl_Object], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, $rt_arraycls(jl_Object)], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "copyOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Iterable], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "copyOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_Collection], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "copyOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_Iterator], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "copyOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_arraycls(jl_Object)], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "construct", - modifiers : 512, - accessLevel : 1, - parameterTypes : [$rt_arraycls(jl_Object)], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "asImmutableList", - modifiers : 512, - accessLevel : 0, - parameterTypes : [$rt_arraycls(jl_Object)], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "asImmutableList", - modifiers : 512, - accessLevel : 0, - parameterTypes : [$rt_arraycls(jl_Object), $rt_intcls()], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "iterator", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_UnmodifiableIterator, - callable : null - }, { - name : "listIterator", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_UnmodifiableListIterator, - callable : null - }, { - name : "listIterator", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : cgcc_UnmodifiableListIterator, - callable : null - }, { - name : "indexOf", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_intcls(), - callable : null - }, { - name : "lastIndexOf", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_intcls(), - callable : null - }, { - name : "contains", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "subList", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "subListUnchecked", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "addAll", - modifiers : 132, - accessLevel : 3, - parameterTypes : [$rt_intcls(), ju_Collection], - returnType : $rt_booleancls(), - callable : null - }, { - name : "set", - modifiers : 132, - accessLevel : 3, - parameterTypes : [$rt_intcls(), jl_Object], - returnType : jl_Object, - callable : null - }, { - name : "add", - modifiers : 132, - accessLevel : 3, - parameterTypes : [$rt_intcls(), jl_Object], - returnType : $rt_voidcls(), - callable : null - }, { - name : "remove", - modifiers : 132, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : jl_Object, - callable : null - }, { - name : "asList", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "copyIntoArray", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_arraycls(jl_Object), $rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "reverse", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "equals", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hashCode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "readObject", - modifiers : 0, - accessLevel : 1, - parameterTypes : [ji_ObjectInputStream], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeReplace", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "builder", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_ImmutableList$Builder, - callable : null - }, { - name : "iterator", - modifiers : 96, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Iterator, - callable : null - }, { - name : "subList", - modifiers : 96, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : ju_List, - callable : null - }, { - name : "listIterator", - modifiers : 96, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : ju_ListIterator, - callable : null - }, { - name : "listIterator", - modifiers : 96, - accessLevel : 3, - parameterTypes : [], - returnType : ju_ListIterator, - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; cgcc_ImmutableMapEntrySet.$meta.methods = [ { name : "", @@ -75067,160 +76164,531 @@ returnType : jl_Object, callable : null }]; - cgcc_ImmutableSet.$meta.methods = [ + nme_EntityLiving.$meta.methods = [ { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_ImmutableSet, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : cgcc_ImmutableSet, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object], - returnType : cgcc_ImmutableSet, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object, jl_Object], - returnType : cgcc_ImmutableSet, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object], - returnType : cgcc_ImmutableSet, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], - returnType : cgcc_ImmutableSet, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, $rt_arraycls(jl_Object)], - returnType : cgcc_ImmutableSet, - callable : null - }, { - name : "construct", - modifiers : 512, - accessLevel : 1, - parameterTypes : [$rt_intcls(), $rt_arraycls(jl_Object)], - returnType : cgcc_ImmutableSet, - callable : null - }, { - name : "chooseTableSize", - modifiers : 512, - accessLevel : 0, - parameterTypes : [$rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "copyOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_arraycls(jl_Object)], - returnType : cgcc_ImmutableSet, - callable : null - }, { - name : "copyOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Iterable], - returnType : cgcc_ImmutableSet, - callable : null - }, { - name : "copyOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_Iterator], - returnType : cgcc_ImmutableSet, - callable : null - }, { - name : "copyOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_Collection], - returnType : cgcc_ImmutableSet, - callable : null - }, { - name : "copyOfEnumSet", - modifiers : 512, - accessLevel : 1, - parameterTypes : [ju_EnumSet], - returnType : cgcc_ImmutableSet, - callable : null - }, { name : "", modifiers : 0, - accessLevel : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyEntityAttributes", + modifiers : 0, + accessLevel : 2, parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { - name : "isHashCodeFast", + name : "getNewNavigator", modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_booleancls(), + accessLevel : 2, + parameterTypes : [nmw_World], + returnType : nmp_PathNavigate, callable : null }, { - name : "equals", + name : "getLookHelper", modifiers : 0, accessLevel : 3, - parameterTypes : [jl_Object], + parameterTypes : [], + returnType : nmea_EntityLookHelper, + callable : null + }, { + name : "getMoveHelper", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmea_EntityMoveHelper, + callable : null + }, { + name : "getJumpHelper", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmea_EntityJumpHelper, + callable : null + }, { + name : "getNavigator", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmp_PathNavigate, + callable : null + }, { + name : "getEntitySenses", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmea_EntitySenses, + callable : null + }, { + name : "getAttackTarget", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nme_EntityLivingBase, + callable : null + }, { + name : "setAttackTarget", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityLivingBase], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canAttackClass", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Class], returnType : $rt_booleancls(), callable : null }, { - name : "hashCode", + name : "eatGrassBonus", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getTalkInterval", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_intcls(), callable : null }, { - name : "iterator", - modifiers : 1, + name : "playLivingSound", + modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : cgcc_UnmodifiableIterator, + returnType : $rt_voidcls(), callable : null }, { - name : "writeReplace", + name : "onEntityUpdate", modifiers : 0, - accessLevel : 0, + accessLevel : 3, parameterTypes : [], - returnType : jl_Object, + returnType : $rt_voidcls(), callable : null }, { - name : "builder", + name : "getExperiencePoints", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_intcls(), + callable : null + }, { + name : "spawnExplosionParticle", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "handleStatusUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_bytecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_110146_f", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_floatcls(), $rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getLivingSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDropItem", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmi_Item, + callable : null + }, { + name : "dropFewItems", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_booleancls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setMoveForward", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setAIMoveSpeed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onLivingUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateEquipmentIfNeeded", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmei_EntityItem], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175448_a", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }, { + name : "canDespawn", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "despawnEntity", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateEntityActionState", + modifiers : 4, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateAITasks", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getVerticalFaceSpeed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "faceEntity", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity, $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateRotation", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getCanSpawnHere", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isNotColliding", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getRenderSizeModifier", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getMaxSpawnedInChunk", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getMaxFallHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getHeldItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmi_ItemStack, + callable : null + }, { + name : "getEquipmentInSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "getCurrentArmor", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "setCurrentItemOrArmor", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmi_ItemStack), + callable : null + }, { + name : "dropEquipment", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_booleancls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setEquipmentBasedOnDifficulty", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_DifficultyInstance], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getArmorPosition", modifiers : 512, accessLevel : 3, - parameterTypes : [], - returnType : cgcc_ImmutableSet$Builder, + parameterTypes : [nmi_ItemStack], + returnType : $rt_intcls(), callable : null }, { - name : "iterator", - modifiers : 96, + name : "getArmorItemForSlot", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : nmi_Item, + callable : null + }, { + name : "setEnchantmentBasedOnDifficulty", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_DifficultyInstance], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onInitialSpawn", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_DifficultyInstance, nme_IEntityLivingData], + returnType : nme_IEntityLivingData, + callable : null + }, { + name : "canBeSteered", + modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : ju_Iterator, + returnType : $rt_booleancls(), + callable : null + }, { + name : "enablePersistence", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setEquipmentDropChance", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canPickUpLoot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setCanPickUpLoot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isNoDespawnRequired", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "interactFirst", + modifiers : 4, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "interact", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "updateLeashedState", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "clearLeashed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "allowLeashing", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getLeashed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getLeashedToEntity", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nme_Entity, + callable : null + }, { + name : "setLeashedToEntity", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity, $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "recreateLeash", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "replaceItemInInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isServerWorld", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setNoAI", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isAIDisabled", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "canSkipUpdate", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onUpdateMinimal", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), callable : null }]; cgcc_AbstractMapEntry.$meta.methods = [ @@ -75274,107 +76742,7 @@ returnType : jl_String, callable : null }]; - nme_EntityCreature.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getBlockPathWeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_BlockPos], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getCanSpawnHere", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hasPath", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isWithinHomeDistanceCurrentPosition", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isWithinHomeDistanceFromPosition", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_BlockPos], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setHomePosAndDistance", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_BlockPos, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getHomePosition", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_BlockPos, - callable : null - }, { - name : "getMaximumHomeDistance", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "detachHome", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "hasHome", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "updateLeashedState", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_142017_o", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - ju_AbstractMap.$meta.methods = [ + jlr_AccessibleObject.$meta.methods = [ { name : "", modifiers : 0, @@ -75383,498 +76751,46 @@ returnType : $rt_voidcls(), callable : null }, { - name : "size", - modifiers : 0, + name : "setAccessible", + modifiers : 512, accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "isEmpty", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "containsValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "containsKey", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "get", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : jl_Object, - callable : null - }, { - name : "put", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object], - returnType : jl_Object, - callable : null - }, { - name : "putAll", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_Map], + parameterTypes : [$rt_arraycls(jlr_AccessibleObject), $rt_booleancls()], returnType : $rt_voidcls(), callable : null }, { - name : "remove", + name : "setAccessible", modifiers : 0, accessLevel : 3, - parameterTypes : [jl_Object], - returnType : jl_Object, - callable : null - }, { - name : "entrySet", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Set, - callable : null - }, { - name : "clear", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], + parameterTypes : [$rt_booleancls()], returnType : $rt_voidcls(), callable : null }, { - name : "keySet", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Set, - callable : null - }, { - name : "values", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Collection, - callable : null - }, { - name : "equals", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hashCode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "clone", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_Object, - callable : null - }]; - ju_AbstractList.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "add", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "iterator", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Iterator, - callable : null - }, { - name : "addAll", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), ju_Collection], - returnType : $rt_booleancls(), - callable : null - }, { - name : "set", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), jl_Object], - returnType : jl_Object, - callable : null - }, { - name : "add", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), jl_Object], - returnType : $rt_voidcls(), - callable : null - }, { - name : "remove", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : jl_Object, - callable : null - }, { - name : "indexOf", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_intcls(), - callable : null - }, { - name : "lastIndexOf", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_intcls(), - callable : null - }, { - name : "clear", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "listIterator", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_ListIterator, - callable : null - }, { - name : "listIterator", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : ju_ListIterator, - callable : null - }, { - name : "subList", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : ju_List, - callable : null - }, { - name : "removeRange", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "hashCode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "equals", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }]; - cgcc_ImmutableMap.$meta.methods = [ - { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_ImmutableMap, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object], - returnType : cgcc_ImmutableMap, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object], - returnType : cgcc_ImmutableMap, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], - returnType : cgcc_ImmutableMap, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], - returnType : cgcc_ImmutableMap, - callable : null - }, { - name : "of", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object, jl_Object], - returnType : cgcc_ImmutableMap, - callable : null - }, { - name : "entryOf", - modifiers : 512, - accessLevel : 0, - parameterTypes : [jl_Object, jl_Object], - returnType : cgcc_ImmutableMapEntry$TerminalEntry, - callable : null - }, { - name : "builder", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_ImmutableMap$Builder, - callable : null - }, { - name : "checkNoConflict", - modifiers : 512, - accessLevel : 0, - parameterTypes : [$rt_booleancls(), jl_String, ju_Map$Entry, ju_Map$Entry], - returnType : $rt_voidcls(), - callable : null - }, { - name : "copyOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_Map], - returnType : cgcc_ImmutableMap, - callable : null - }, { - name : "copyOfEnumMapUnsafe", - modifiers : 512, - accessLevel : 1, - parameterTypes : [ju_Map], - returnType : cgcc_ImmutableMap, - callable : null - }, { - name : "copyOfEnumMap", - modifiers : 512, - accessLevel : 1, - parameterTypes : [ju_Map], - returnType : cgcc_ImmutableMap, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "put", - modifiers : 132, - accessLevel : 3, - parameterTypes : [jl_Object, jl_Object], - returnType : jl_Object, - callable : null - }, { - name : "remove", - modifiers : 132, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : jl_Object, - callable : null - }, { - name : "putAll", - modifiers : 132, - accessLevel : 3, - parameterTypes : [ju_Map], - returnType : $rt_voidcls(), - callable : null - }, { - name : "clear", - modifiers : 132, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isEmpty", + name : "isAccessible", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_booleancls(), callable : null }, { - name : "containsKey", + name : "getAnnotation", modifiers : 0, accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), + parameterTypes : [jl_Class], + returnType : jla_Annotation, callable : null }, { - name : "containsValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "get", - modifiers : 1, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : jl_Object, - callable : null - }, { - name : "entrySet", + name : "getAnnotations", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : cgcc_ImmutableSet, + returnType : $rt_arraycls(jla_Annotation), callable : null }, { - name : "createEntrySet", - modifiers : 1, - accessLevel : 0, - parameterTypes : [], - returnType : cgcc_ImmutableSet, - callable : null - }, { - name : "keySet", + name : "getDeclaredAnnotations", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : cgcc_ImmutableSet, - callable : null - }, { - name : "createKeySet", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : cgcc_ImmutableSet, - callable : null - }, { - name : "values", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_ImmutableCollection, - callable : null - }, { - name : "asMultimap", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_ImmutableSetMultimap, - callable : null - }, { - name : "createMultimapView", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : cgcc_ImmutableSetMultimap, - callable : null - }, { - name : "viewMapValuesAsSingletonSets", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : cgcc_ImmutableMap, - callable : null - }, { - name : "equals", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isPartialView", - modifiers : 1, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hashCode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "writeReplace", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "entrySet", - modifiers : 96, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Set, - callable : null - }, { - name : "values", - modifiers : 96, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Collection, - callable : null - }, { - name : "keySet", - modifiers : 96, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Set, - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), + returnType : $rt_arraycls(jla_Annotation), callable : null }]; cgcc_ImmutableBiMap.$meta.methods = [ @@ -76005,72 +76921,7 @@ returnType : $rt_voidcls(), callable : null }]; - ju_MapEntry.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [jl_Object], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [jl_Object, jl_Object], - returnType : $rt_voidcls(), - callable : null - }, { - name : "clone", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "equals", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getKey", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "getValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "hashCode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "setValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : jl_Object, - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }]; - nmem_EntityMob.$meta.methods = [ + nme_EntityCreature.$meta.methods = [ { name : "", modifiers : 0, @@ -76078,69 +76929,6 @@ parameterTypes : [nmw_World], returnType : $rt_voidcls(), callable : null - }, { - name : "onLivingUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSwimSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getSplashSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "attackEntityFrom", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource, $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getHurtSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDeathSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getFallSoundString", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls()], - returnType : jl_String, - callable : null - }, { - name : "attackEntityAsMob", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null }, { name : "getBlockPathWeight", modifiers : 0, @@ -76148,13 +76936,6 @@ parameterTypes : [nmu_BlockPos], returnType : $rt_floatcls(), callable : null - }, { - name : "isValidLightLevel", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null }, { name : "getCanSpawnHere", modifiers : 0, @@ -76163,22 +76944,213 @@ returnType : $rt_booleancls(), callable : null }, { - name : "applyEntityAttributes", + name : "hasPath", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isWithinHomeDistanceCurrentPosition", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isWithinHomeDistanceFromPosition", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_BlockPos], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setHomePosAndDistance", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_BlockPos, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getHomePosition", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_BlockPos, + callable : null + }, { + name : "getMaximumHomeDistance", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "detachHome", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "hasHome", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "updateLeashedState", modifiers : 0, accessLevel : 2, parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { - name : "canDropLoot", + name : "func_142017_o", modifiers : 0, accessLevel : 2, + parameterTypes : [$rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + cgcc_ImmutableCollection.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "iterator", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : cgcc_UnmodifiableIterator, + callable : null + }, { + name : "toArray", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(jl_Object), + callable : null + }, { + name : "toArray", + modifiers : 4, + accessLevel : 3, + parameterTypes : [$rt_arraycls(jl_Object)], + returnType : $rt_arraycls(jl_Object), + callable : null + }, { + name : "contains", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "add", + modifiers : 132, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "remove", + modifiers : 132, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "addAll", + modifiers : 132, + accessLevel : 3, + parameterTypes : [ju_Collection], + returnType : $rt_booleancls(), + callable : null + }, { + name : "removeAll", + modifiers : 132, + accessLevel : 3, + parameterTypes : [ju_Collection], + returnType : $rt_booleancls(), + callable : null + }, { + name : "retainAll", + modifiers : 132, + accessLevel : 3, + parameterTypes : [ju_Collection], + returnType : $rt_booleancls(), + callable : null + }, { + name : "clear", + modifiers : 132, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "asList", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "createAsList", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "isPartialView", + modifiers : 1, + accessLevel : 0, parameterTypes : [], returnType : $rt_booleancls(), callable : null + }, { + name : "copyIntoArray", + modifiers : 0, + accessLevel : 0, + parameterTypes : [$rt_arraycls(jl_Object), $rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "writeReplace", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "iterator", + modifiers : 96, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Iterator, + callable : null }]; - nmw_WorldSavedData.$meta.methods = [ + jl_VirtualMachineError.$meta.methods = [ { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { name : "", modifiers : 0, accessLevel : 3, @@ -76186,99 +77158,190 @@ returnType : $rt_voidcls(), callable : null }, { - name : "readFromNBT", - modifiers : 1, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeToNBT", - modifiers : 1, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "markDirty", + name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [], + parameterTypes : [jl_Throwable], returnType : $rt_voidcls(), callable : null }, { - name : "setDirty", + name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [$rt_booleancls()], + parameterTypes : [jl_String, jl_Throwable], + returnType : $rt_voidcls(), + callable : null + }]; + nmi_ItemTool.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_floatcls(), nmi_Item$ToolMaterial, ju_Set], returnType : $rt_voidcls(), callable : null }, { - name : "isDirty", + name : "getStrVsBlock", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack, nmb_Block], + returnType : $rt_floatcls(), + callable : null + }, { + name : "hitEntity", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack, nme_EntityLivingBase, nme_EntityLivingBase], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onBlockDestroyed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack, nmw_World, nmb_Block, nmu_BlockPos, nme_EntityLivingBase], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isFull3D", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_booleancls(), callable : null - }]; - cgcb_Splitter$SplittingIterator.$meta.methods = [ - { - name : "separatorStart", - modifiers : 1, - accessLevel : 0, - parameterTypes : [$rt_intcls()], + }, { + name : "getToolMaterial", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmi_Item$ToolMaterial, + callable : null + }, { + name : "getItemEnchantability", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], returnType : $rt_intcls(), callable : null }, { - name : "separatorEnd", - modifiers : 1, - accessLevel : 0, - parameterTypes : [$rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "", + name : "getToolMaterialName", modifiers : 0, - accessLevel : 2, - parameterTypes : [cgcb_Splitter, jl_CharSequence], - returnType : $rt_voidcls(), - callable : null - }, { - name : "computeNext", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "computeNext", - modifiers : 96, - accessLevel : 2, - parameterTypes : [], - returnType : jl_Object, - callable : null - }]; - jl_Enum.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "name", - modifiers : 4, accessLevel : 3, parameterTypes : [], returnType : jl_String, callable : null }, { - name : "ordinal", - modifiers : 4, + name : "getIsRepairable", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack, nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getItemAttributeModifiers", + modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : $rt_intcls(), + returnType : cgcc_Multimap, + callable : null + }]; + jl_Throwable.$meta.methods = [ + { + name : "fakeInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [jl_String, jl_Throwable, $rt_booleancls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, jl_Throwable, $rt_booleancls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "fakeInit", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "fakeInit", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "fakeInit", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, jl_Throwable], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, jl_Throwable], + returnType : $rt_voidcls(), + callable : null + }, { + name : "fakeInit", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Throwable], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_Throwable], + returnType : $rt_voidcls(), + callable : null + }, { + name : "fillInStackTrace", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Throwable, + callable : null + }, { + name : "getMessage", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getLocalizedMessage", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getCause", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Throwable, callable : null }, { name : "toString", @@ -76288,149 +77351,59 @@ returnType : jl_String, callable : null }, { - name : "equals", - modifiers : 4, + name : "initCause", + modifiers : 0, accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), + parameterTypes : [jl_Throwable], + returnType : jl_Throwable, callable : null }, { - name : "hashCode", + name : "printStackTrace", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "printStackTrace", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ji_PrintStream], + returnType : $rt_voidcls(), + callable : null + }, { + name : "printStackTrace", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ji_PrintWriter], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getStackTrace", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(jl_StackTraceElement), + callable : null + }, { + name : "setStackTrace", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_arraycls(jl_StackTraceElement)], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSuppressed", modifiers : 4, accessLevel : 3, parameterTypes : [], - returnType : $rt_intcls(), + returnType : $rt_arraycls(jl_Throwable), callable : null }, { - name : "clone", - modifiers : 4, - accessLevel : 2, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "getDeclaringClass", + name : "addSuppressed", modifiers : 4, accessLevel : 3, - parameterTypes : [], - returnType : jl_Class, - callable : null - }, { - name : "compareTo", - modifiers : 4, - accessLevel : 3, - parameterTypes : [jl_Enum], - returnType : $rt_intcls(), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Class, jl_String], - returnType : jl_Enum, - callable : null - }, { - name : "compareTo", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_intcls(), - callable : null - }]; - nmcre_RenderBiped.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcre_RenderManager, nmcm_ModelBiped, $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcre_RenderManager, nmcm_ModelBiped, $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getEntityTexture", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nme_EntityLiving], - returnType : nmu_ResourceLocation, - callable : null - }, { - name : "transformHeldFull3DItemLayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getEntityTexture", - modifiers : 96, - accessLevel : 2, - parameterTypes : [nme_Entity], - returnType : nmu_ResourceLocation, - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - ju_AbstractSet.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "removeAll", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_Collection], - returnType : $rt_booleancls(), - callable : null - }, { - name : "equals", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hashCode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }]; - nmb_BlockDirectional.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmbm_Material], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmbm_Material, nmbm_MapColor], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], + parameterTypes : [jl_Throwable], returnType : $rt_voidcls(), callable : null }]; @@ -76492,97 +77465,62 @@ returnType : $rt_voidcls(), callable : null }]; - nmwgs_MapGenStructure.$meta.methods = [ + jt_DateFormatElement.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 3, + accessLevel : 0, parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { - name : "getStructureName", + name : "format", modifiers : 1, accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "recursiveGenerate", - modifiers : 4, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), nmwc_ChunkPrimer], + parameterTypes : [ju_Calendar, jl_StringBuffer], returnType : $rt_voidcls(), callable : null }, { - name : "generateStructure", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmw_ChunkCoordIntPair], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_175795_b", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_BlockPos], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_175797_c", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_BlockPos], - returnType : nmwgs_StructureStart, - callable : null - }, { - name : "func_175796_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getClosestStrongholdPos", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : nmu_BlockPos, - callable : null - }, { - name : "getCoordList", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : ju_List, - callable : null - }, { - name : "func_143027_a", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_143026_a", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_intcls(), $rt_intcls(), nmwgs_StructureStart], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canSpawnStructureAtCoords", + name : "parse", modifiers : 1, - accessLevel : 2, + accessLevel : 3, + parameterTypes : [jl_String, ju_Calendar, jt_ParsePosition], + returnType : $rt_voidcls(), + callable : null + }, { + name : "matches", + modifiers : 512, + accessLevel : 0, + parameterTypes : [jl_String, $rt_intcls(), jl_String], + returnType : $rt_booleancls(), + callable : null + }, { + name : "whichMatches", + modifiers : 512, + accessLevel : 0, + parameterTypes : [jl_String, jt_ParsePosition, $rt_arraycls(jl_String)], + returnType : $rt_intcls(), + callable : null + }, { + name : "tryParseFixedTimeZone", + modifiers : 512, + accessLevel : 0, + parameterTypes : [jl_String, ju_Calendar, jt_ParsePosition], + returnType : $rt_booleancls(), + callable : null + }, { + name : "parseHoursMinutes", + modifiers : 512, + accessLevel : 0, + parameterTypes : [jl_String, ju_Calendar, jt_ParsePosition], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getStaticTimeZone", + modifiers : 512, + accessLevel : 0, parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getStructureStart", - modifiers : 1, - accessLevel : 2, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : nmwgs_StructureStart, + returnType : ju_TimeZone, callable : null }]; nmb_BlockRedstoneDiode.$meta.methods = [ @@ -76832,433 +77770,135 @@ returnType : nmu_EnumWorldBlockLayer, callable : null }]; - nmb_BlockRailBase.$meta.methods = [ + nmcrd_BaseMetadataSectionSerializer.$meta.methods = [ { - name : "isRailBlock", - modifiers : 512, + name : "", + modifiers : 0, accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : $rt_booleancls(), + parameterTypes : [], + returnType : $rt_voidcls(), callable : null - }, { - name : "isRailBlock", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmbs_IBlockState], - returnType : $rt_booleancls(), - callable : null - }, { + }]; + nmeaa_BaseAttribute.$meta.methods = [ + { name : "", modifiers : 0, accessLevel : 2, + parameterTypes : [nmeaa_IAttribute, jl_String, $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getAttributeUnlocalizedName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDefaultValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_doublecls(), + callable : null + }, { + name : "getShouldWatch", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setShouldWatch", + modifiers : 0, + accessLevel : 3, parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), + returnType : nmeaa_BaseAttribute, callable : null }, { - name : "getCollisionBoundingBox", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], - returnType : nmu_AxisAlignedBB, - callable : null - }, { - name : "isOpaqueCube", + name : "func_180372_d", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : $rt_booleancls(), + returnType : nmeaa_IAttribute, callable : null }, { - name : "collisionRayTrace", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmu_Vec3, nmu_Vec3], - returnType : nmu_MovingObjectPosition, - callable : null - }, { - name : "setBlockBoundsBasedOnState", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isFullCube", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "canPlaceBlockAt", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onBlockAdded", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onNeighborBlockChange", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmb_Block], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onNeighborChangedInternal", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmb_Block], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_176564_a", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, $rt_booleancls()], - returnType : nmbs_IBlockState, - callable : null - }, { - name : "getMobilityFlag", + name : "hashCode", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_intcls(), callable : null }, { - name : "getBlockLayer", + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }]; + nmb_BlockStoneSlabNew.$meta.methods = [ + { + name : "", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : nmu_EnumWorldBlockLayer, - callable : null - }, { - name : "breakBlock", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], returnType : $rt_voidcls(), callable : null }, { - name : "getShapeProperty", - modifiers : 1, + name : "bootstrapStates", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getLocalizedName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getItemDropped", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmbs_IBlockState, nlev_EaglercraftRandom, $rt_intcls()], + returnType : nmi_Item, + callable : null + }, { + name : "getItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : nmi_Item, + callable : null + }, { + name : "getUnlocalizedName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : jl_String, + callable : null + }, { + name : "getVariantProperty", + modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : nmbp_IProperty, callable : null - }]; - nmb_BlockBreakable.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmbm_Material, $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null }, { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmbm_Material, $rt_booleancls(), nmbm_MapColor], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isOpaqueCube", + name : "getVariant", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), + parameterTypes : [nmi_ItemStack], + returnType : jl_Object, callable : null }, { - name : "shouldSideBeRendered", + name : "getSubBlocks", modifiers : 0, accessLevel : 3, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, nmu_EnumFacing], - returnType : $rt_booleancls(), - callable : null - }]; - ju_IllegalFormatException.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrel_LayerArmorBase.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcre_RendererLivingEntity], - returnType : $rt_voidcls(), - callable : null - }, { - name : "doRenderLayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityLivingBase, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "shouldCombineTextures", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "renderLayer", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nme_EntityLivingBase, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getCurrentArmor", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityLivingBase, $rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "func_177175_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nmcm_ModelBase, - callable : null - }, { - name : "isSlotForLeggings", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_177183_a", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nme_EntityLivingBase, nmcm_ModelBase, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getArmorResource", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmi_ItemArmor, $rt_booleancls()], - returnType : nmu_ResourceLocation, - callable : null - }, { - name : "getArmorResource", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmi_ItemArmor, $rt_booleancls(), jl_String], - returnType : nmu_ResourceLocation, - callable : null - }, { - name : "initArmor", - modifiers : 1, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_177179_a", - modifiers : 1, - accessLevel : 2, - parameterTypes : [nmcm_ModelBase, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmb_BlockButton.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getCollisionBoundingBox", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], - returnType : nmu_AxisAlignedBB, - callable : null - }, { - name : "tickRate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_intcls(), - callable : null - }, { - name : "isOpaqueCube", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isFullCube", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "canPlaceBlockOnSide", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmu_EnumFacing], - returnType : $rt_booleancls(), - callable : null - }, { - name : "canPlaceBlockAt", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_181088_a", - modifiers : 512, - accessLevel : 2, - parameterTypes : [nmw_World, nmu_BlockPos, nmu_EnumFacing], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onBlockPlaced", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmu_EnumFacing, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_intcls(), nme_EntityLivingBase], - returnType : nmbs_IBlockState, - callable : null - }, { - name : "onNeighborBlockChange", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmb_Block], - returnType : $rt_voidcls(), - callable : null - }, { - name : "checkForDrop", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setBlockBoundsBasedOnState", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateBlockBounds", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmbs_IBlockState], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onBlockActivated", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmep_EntityPlayer, nmu_EnumFacing, $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "breakBlock", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getWeakPower", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, nmbs_IBlockState, nmu_EnumFacing], - returnType : $rt_intcls(), - callable : null - }, { - name : "getStrongPower", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, nmbs_IBlockState, nmu_EnumFacing], - returnType : $rt_intcls(), - callable : null - }, { - name : "canProvidePower", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "randomTick", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateTick", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setBlockBoundsForItemRender", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onEntityCollidedWithBlock", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nme_Entity], - returnType : $rt_voidcls(), - callable : null - }, { - name : "checkForArrows", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], - returnType : $rt_voidcls(), - callable : null - }, { - name : "notifyNeighbors", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmw_World, nmu_BlockPos, nmu_EnumFacing], + parameterTypes : [nmi_Item, nmc_CreativeTabs, ju_List], returnType : $rt_voidcls(), callable : null }, { @@ -77282,6 +77922,20 @@ parameterTypes : [], returnType : nmbs_BlockState, callable : null + }, { + name : "getMapColor", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmbs_IBlockState], + returnType : nmbm_MapColor, + callable : null + }, { + name : "damageDropped", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmbs_IBlockState], + returnType : $rt_intcls(), + callable : null }, { name : "", modifiers : 512, @@ -77290,6 +77944,1276 @@ returnType : $rt_voidcls(), callable : null }]; + nmb_BlockContainer.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmbm_Material], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmbm_Material, nmbm_MapColor], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_181086_a", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, nmu_BlockPos, nmu_EnumFacing], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_181087_e", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getRenderType", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "breakBlock", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onBlockEventReceived", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, $rt_intcls(), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }]; + ju_LinkedHashMapIterator.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [ju_LinkedHashMap, $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "hasNext", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "checkConcurrentMod", + modifiers : 4, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "makeNext", + modifiers : 4, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "remove", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + jl_Number.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "intValue", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "longValue", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_longcls(), + callable : null + }, { + name : "floatValue", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "doubleValue", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_doublecls(), + callable : null + }, { + name : "byteValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_bytecls(), + callable : null + }, { + name : "shortValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_shortcls(), + callable : null + }]; + nmc_CommandBase.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getRequiredPermissionLevel", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getCommandAliases", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_List, + callable : null + }, { + name : "canCommandSenderUseCommand", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmc_ICommandSender], + returnType : $rt_booleancls(), + callable : null + }, { + name : "addTabCompletionOptions", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmc_ICommandSender, $rt_arraycls(jl_String), nmu_BlockPos], + returnType : ju_List, + callable : null + }, { + name : "parseInt", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_intcls(), + callable : null + }, { + name : "parseInt", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "parseInt", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String, $rt_intcls(), $rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "parseLong", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_longcls(), + callable : null + }, { + name : "parseLong", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String, $rt_longcls(), $rt_longcls()], + returnType : $rt_longcls(), + callable : null + }, { + name : "parseBlockPos", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmc_ICommandSender, $rt_arraycls(jl_String), $rt_intcls(), $rt_booleancls()], + returnType : nmu_BlockPos, + callable : null + }, { + name : "parseDouble", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_doublecls(), + callable : null + }, { + name : "parseDouble", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String, $rt_doublecls()], + returnType : $rt_doublecls(), + callable : null + }, { + name : "parseDouble", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String, $rt_doublecls(), $rt_doublecls()], + returnType : $rt_doublecls(), + callable : null + }, { + name : "parseBoolean", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getCommandSenderAsPlayer", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmc_ICommandSender], + returnType : nmep_EntityPlayerMP, + callable : null + }, { + name : "getPlayer", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmc_ICommandSender, jl_String], + returnType : nmep_EntityPlayerMP, + callable : null + }, { + name : "func_175768_b", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmc_ICommandSender, jl_String], + returnType : nme_Entity, + callable : null + }, { + name : "getEntity", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmc_ICommandSender, jl_String, jl_Class], + returnType : nme_Entity, + callable : null + }, { + name : "func_175763_c", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmc_ICommandSender, jl_String], + returnType : ju_List, + callable : null + }, { + name : "getPlayerName", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmc_ICommandSender, jl_String], + returnType : jl_String, + callable : null + }, { + name : "getEntityName", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmc_ICommandSender, jl_String], + returnType : jl_String, + callable : null + }, { + name : "getChatComponentFromNthArg", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmc_ICommandSender, $rt_arraycls(jl_String), $rt_intcls()], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "getChatComponentFromNthArg", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmc_ICommandSender, $rt_arraycls(jl_String), $rt_intcls(), $rt_booleancls()], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "buildString", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_arraycls(jl_String), $rt_intcls()], + returnType : jl_String, + callable : null + }, { + name : "parseCoordinate", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), jl_String, $rt_booleancls()], + returnType : nmc_CommandBase$CoordinateArg, + callable : null + }, { + name : "parseCoordinate", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), jl_String, $rt_intcls(), $rt_intcls(), $rt_booleancls()], + returnType : nmc_CommandBase$CoordinateArg, + callable : null + }, { + name : "parseDouble", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), jl_String, $rt_booleancls()], + returnType : $rt_doublecls(), + callable : null + }, { + name : "parseDouble", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), jl_String, $rt_intcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_doublecls(), + callable : null + }, { + name : "getItemByText", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmc_ICommandSender, jl_String], + returnType : nmi_Item, + callable : null + }, { + name : "getBlockByText", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmc_ICommandSender, jl_String], + returnType : nmb_Block, + callable : null + }, { + name : "joinNiceString", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_arraycls(jl_Object)], + returnType : jl_String, + callable : null + }, { + name : "join", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_List], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "joinNiceStringFromCollection", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_Collection], + returnType : jl_String, + callable : null + }, { + name : "func_175771_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_arraycls(jl_String), $rt_intcls(), nmu_BlockPos], + returnType : ju_List, + callable : null + }, { + name : "func_181043_b", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_arraycls(jl_String), $rt_intcls(), nmu_BlockPos], + returnType : ju_List, + callable : null + }, { + name : "doesStringStartWith", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String, jl_String], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getListOfStringsMatchingLastWord", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_arraycls(jl_String), $rt_arraycls(jl_String)], + returnType : ju_List, + callable : null + }, { + name : "getListOfStringsMatchingLastWord", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_arraycls(jl_String), ju_Collection], + returnType : ju_List, + callable : null + }, { + name : "isUsernameIndex", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_arraycls(jl_String), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "notifyOperators", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmc_ICommandSender, nmc_ICommand, jl_String, $rt_arraycls(jl_Object)], + returnType : $rt_voidcls(), + callable : null + }, { + name : "notifyOperators", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmc_ICommandSender, nmc_ICommand, $rt_intcls(), jl_String, $rt_arraycls(jl_Object)], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setAdminCommander", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmc_IAdminCommand], + returnType : $rt_voidcls(), + callable : null + }, { + name : "compareTo", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmc_ICommand], + returnType : $rt_intcls(), + callable : null + }, { + name : "compareTo", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_intcls(), + callable : null + }]; + jur_AbstractSet.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jur_AbstractSet], + returnType : $rt_voidcls(), + callable : null + }, { + name : "matches", + modifiers : 1, + accessLevel : 3, + parameterTypes : [$rt_intcls(), jl_CharSequence, jur_MatchResultImpl], + returnType : $rt_intcls(), + callable : null + }, { + name : "find", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), jl_CharSequence, jur_MatchResultImpl], + returnType : $rt_intcls(), + callable : null + }, { + name : "findBack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), jl_CharSequence, jur_MatchResultImpl], + returnType : $rt_intcls(), + callable : null + }, { + name : "hasConsumed", + modifiers : 1, + accessLevel : 3, + parameterTypes : [jur_MatchResultImpl], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getName", + modifiers : 1, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "setType", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getType", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getQualifiedName", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getNext", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jur_AbstractSet, + callable : null + }, { + name : "setNext", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jur_AbstractSet], + returnType : $rt_voidcls(), + callable : null + }, { + name : "first", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jur_AbstractSet], + returnType : $rt_booleancls(), + callable : null + }, { + name : "processBackRefReplacement", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jur_JointSet, + callable : null + }, { + name : "processSecondPass", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + jl_Exception.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, jl_Throwable], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Throwable], + returnType : $rt_voidcls(), + callable : null + }]; + nmb_BlockFlower.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "damageDropped", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmbs_IBlockState], + returnType : $rt_intcls(), + callable : null + }, { + name : "getSubBlocks", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_Item, nmc_CreativeTabs, ju_List], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getStateFromMeta", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmbs_IBlockState, + callable : null + }, { + name : "getBlockType", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : nmb_BlockFlower$EnumFlowerColor, + callable : null + }, { + name : "getTypeProperty", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmbp_IProperty, + callable : null + }, { + name : "getMetaFromState", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmbs_IBlockState], + returnType : $rt_intcls(), + callable : null + }, { + name : "createBlockState", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmbs_BlockState, + callable : null + }, { + name : "getOffsetType", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmb_Block$EnumOffsetType, + callable : null + }]; + nmu_WeightedRandom$Item.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmb_BlockBasePressurePlate.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmbm_Material], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmbm_Material, nmbm_MapColor], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setBlockBoundsBasedOnState", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setBlockBoundsBasedOnState0", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmbs_IBlockState], + returnType : $rt_voidcls(), + callable : null + }, { + name : "tickRate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_intcls(), + callable : null + }, { + name : "getCollisionBoundingBox", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], + returnType : nmu_AxisAlignedBB, + callable : null + }, { + name : "isOpaqueCube", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isFullCube", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isPassable", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_181623_g", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "canPlaceBlockAt", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onNeighborBlockChange", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmb_Block], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canBePlacedOn", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : $rt_booleancls(), + callable : null + }, { + name : "randomTick", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateTick", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onEntityCollidedWithBlock", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nme_Entity], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateState", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSensitiveAABB", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_BlockPos], + returnType : nmu_AxisAlignedBB, + callable : null + }, { + name : "breakBlock", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateNeighbors", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getWeakPower", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, nmbs_IBlockState, nmu_EnumFacing], + returnType : $rt_intcls(), + callable : null + }, { + name : "getStrongPower", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, nmbs_IBlockState, nmu_EnumFacing], + returnType : $rt_intcls(), + callable : null + }, { + name : "canProvidePower", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setBlockBoundsForItemRender", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getMobilityFlag", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "computeRedstoneStrength", + modifiers : 1, + accessLevel : 2, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : $rt_intcls(), + callable : null + }, { + name : "getRedstoneStrength", + modifiers : 1, + accessLevel : 2, + parameterTypes : [nmbs_IBlockState], + returnType : $rt_intcls(), + callable : null + }, { + name : "setRedstoneStrength", + modifiers : 1, + accessLevel : 2, + parameterTypes : [nmbs_IBlockState, $rt_intcls()], + returnType : nmbs_IBlockState, + callable : null + }]; + nmcre_RendererLivingEntity.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcre_RenderManager, nmcm_ModelBase, $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addLayer", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmcrel_LayerRenderer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "removeLayer", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmcrel_LayerRenderer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getMainModel", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmcm_ModelBase, + callable : null + }, { + name : "interpolateRotation", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "transformHeldFull3DItemLayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "doRender", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityLivingBase, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setScoreTeamColor", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nme_EntityLivingBase], + returnType : $rt_booleancls(), + callable : null + }, { + name : "unsetScoreTeamColor", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderModel", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nme_EntityLivingBase, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setDoRenderBrightness", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nme_EntityLivingBase, $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setBrightness", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityLivingBase, $rt_floatcls(), $rt_booleancls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "unsetBrightness", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderLivingAt", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityLivingBase, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "rotateCorpse", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nme_EntityLivingBase, $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSwingProgress", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nme_EntityLivingBase, $rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "handleRotationFloat", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nme_EntityLivingBase, $rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "renderLayers", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nme_EntityLivingBase, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDeathMaxRotation", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nme_EntityLivingBase], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getColorMultiplier", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nme_EntityLivingBase, $rt_floatcls(), $rt_floatcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "preRenderCallback", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nme_EntityLivingBase, $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityLivingBase, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canRenderName", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nme_EntityLivingBase], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setRenderOutlines", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canRenderName", + modifiers : 96, + accessLevel : 2, + parameterTypes : [nme_Entity], + returnType : $rt_booleancls(), + callable : null + }, { + name : "renderName", + modifiers : 96, + accessLevel : 3, + parameterTypes : [nme_Entity, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "doRender", + modifiers : 96, + accessLevel : 3, + parameterTypes : [nme_Entity, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + cgcc_ImmutableMapEntry.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [jl_Object, jl_Object], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [cgcc_ImmutableMapEntry], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getNextInKeyBucket", + modifiers : 1, + accessLevel : 0, + parameterTypes : [], + returnType : cgcc_ImmutableMapEntry, + callable : null + }, { + name : "getNextInValueBucket", + modifiers : 1, + accessLevel : 0, + parameterTypes : [], + returnType : cgcc_ImmutableMapEntry, + callable : null + }]; + nmcp_EntityFX.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "multiplyVelocity", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : nmcp_EntityFX, + callable : null + }, { + name : "multipleParticleScaleBy", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : nmcp_EntityFX, + callable : null + }, { + name : "setRBGColorF", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setAlphaF", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getRedColorF", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getGreenColorF", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getBlueColorF", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getAlpha", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "canTriggerWalking", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderParticle", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderAccelerated", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevm_IAcceleratedParticleEngine, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getFXLayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setParticleIcon", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevm_EaglerTextureAtlasSprite], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setParticleTextureIndex", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "nextTextureIndexX", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canAttackWithItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }]; nmi_Container.$meta.methods = [ { name : "", @@ -77558,390 +79482,36 @@ returnType : $rt_voidcls(), callable : null }]; - nme_Enchantment.$meta.methods = [ + nlevoedp_ShaderException.$meta.methods = [ { - name : "getEnchantmentById", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nme_Enchantment, - callable : null - }, { name : "", modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, jl_String], + returnType : $rt_voidcls(), + callable : null + }]; + nmbs_BlockStateBase.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "cycleProperty", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmbp_IProperty], + returnType : nmbs_IBlockState, + callable : null + }, { + name : "cyclePropertyValue", + modifiers : 512, accessLevel : 2, - parameterTypes : [$rt_intcls(), nmu_ResourceLocation, $rt_intcls(), nme_EnumEnchantmentType], - returnType : $rt_voidcls(), - callable : null - }, { - name : "loadModData", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nea_BaseData], - returnType : $rt_voidcls(), - callable : null - }, { - name : "makeModData", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nea_ModData, - callable : null - }, { - name : "makeModDataStatic", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : nea_ModData, - callable : null - }, { - name : "getEnchantmentByLocation", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nme_Enchantment, - callable : null - }, { - name : "func_181077_c", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Set, - callable : null - }, { - name : "getWeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getMinLevel", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getMaxLevel", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getMinEnchantability", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "getMaxEnchantability", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "calcModifierDamage", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nmu_DamageSource], - returnType : $rt_intcls(), - callable : null - }, { - name : "calcDamageByCreature", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nme_EnumCreatureAttribute], - returnType : $rt_floatcls(), - callable : null - }, { - name : "canApplyTogether", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Enchantment], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nme_Enchantment, - callable : null - }, { - name : "getName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getTranslatedName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : jl_String, - callable : null - }, { - name : "canApply", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onEntityDamaged", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityLivingBase, nme_Entity, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUserHurt", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityLivingBase, nme_Entity, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$makeModData$1", - modifiers : 32, - accessLevel : 1, - parameterTypes : [], - returnType : otj_JSObject, - callable : null - }, { - name : "lambda$makeModData$0", - modifiers : 32, - accessLevel : 1, - parameterTypes : [nea_ModData], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - jt_DateFormatElement.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "format", - modifiers : 1, - accessLevel : 3, - parameterTypes : [ju_Calendar, jl_StringBuffer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "parse", - modifiers : 1, - accessLevel : 3, - parameterTypes : [jl_String, ju_Calendar, jt_ParsePosition], - returnType : $rt_voidcls(), - callable : null - }, { - name : "matches", - modifiers : 512, - accessLevel : 0, - parameterTypes : [jl_String, $rt_intcls(), jl_String], - returnType : $rt_booleancls(), - callable : null - }, { - name : "whichMatches", - modifiers : 512, - accessLevel : 0, - parameterTypes : [jl_String, jt_ParsePosition, $rt_arraycls(jl_String)], - returnType : $rt_intcls(), - callable : null - }, { - name : "tryParseFixedTimeZone", - modifiers : 512, - accessLevel : 0, - parameterTypes : [jl_String, ju_Calendar, jt_ParsePosition], - returnType : $rt_booleancls(), - callable : null - }, { - name : "parseHoursMinutes", - modifiers : 512, - accessLevel : 0, - parameterTypes : [jl_String, ju_Calendar, jt_ParsePosition], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getStaticTimeZone", - modifiers : 512, - accessLevel : 0, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : ju_TimeZone, - callable : null - }]; - nmi_ItemTool.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_floatcls(), nmi_Item$ToolMaterial, ju_Set], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getStrVsBlock", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack, nmb_Block], - returnType : $rt_floatcls(), - callable : null - }, { - name : "hitEntity", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack, nme_EntityLivingBase, nme_EntityLivingBase], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onBlockDestroyed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack, nmw_World, nmb_Block, nmu_BlockPos, nme_EntityLivingBase], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isFull3D", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getToolMaterial", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmi_Item$ToolMaterial, - callable : null - }, { - name : "getItemEnchantability", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getToolMaterialName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getIsRepairable", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack, nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getItemAttributeModifiers", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_Multimap, - callable : null - }]; - nmu_ChatComponentStyle.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "appendSibling", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_IChatComponent], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "getSiblings", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_List, - callable : null - }, { - name : "appendText", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "setChatStyle", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_ChatStyle], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "getChatStyle", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_ChatStyle, - callable : null - }, { - name : "iterator", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Iterator, - callable : null - }, { - name : "getUnformattedText", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getFormattedText", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "createDeepCopyIterator", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Iterable], - returnType : ju_Iterator, - callable : null - }, { - name : "equals", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hashCode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), + parameterTypes : [ju_Collection, jl_Object], + returnType : jl_Object, callable : null }, { name : "toString", @@ -77950,192 +79520,27 @@ parameterTypes : [], returnType : jl_String, callable : null - }]; - nmb_BlockFlower.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null }, { - name : "damageDropped", + name : "getBlockId", modifiers : 0, accessLevel : 3, - parameterTypes : [nmbs_IBlockState], + parameterTypes : [], returnType : $rt_intcls(), callable : null }, { - name : "getSubBlocks", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_Item, nmc_CreativeTabs, ju_List], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getStateFromMeta", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nmbs_IBlockState, - callable : null - }, { - name : "getBlockType", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : nmb_BlockFlower$EnumFlowerColor, - callable : null - }, { - name : "getTypeProperty", + name : "getMetadata", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : nmbp_IProperty, - callable : null - }, { - name : "getMetaFromState", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmbs_IBlockState], returnType : $rt_intcls(), callable : null }, { - name : "createBlockState", - modifiers : 0, - accessLevel : 2, + name : "", + modifiers : 512, + accessLevel : 0, parameterTypes : [], - returnType : nmbs_BlockState, - callable : null - }, { - name : "getOffsetType", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmb_Block$EnumOffsetType, - callable : null - }]; - jnc_Charset.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [jl_String, $rt_arraycls(jl_String)], returnType : $rt_voidcls(), callable : null - }, { - name : "checkCanonicalName", - modifiers : 512, - accessLevel : 1, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isValidCharsetStart", - modifiers : 512, - accessLevel : 1, - parameterTypes : [$rt_charcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "forName", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : jnc_Charset, - callable : null - }, { - name : "defaultCharset", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : jnc_Charset, - callable : null - }, { - name : "name", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "aliases", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Set, - callable : null - }, { - name : "displayName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "contains", - modifiers : 1, - accessLevel : 3, - parameterTypes : [jnc_Charset], - returnType : $rt_booleancls(), - callable : null - }, { - name : "newDecoder", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : jnc_CharsetDecoder, - callable : null - }, { - name : "newEncoder", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : jnc_CharsetEncoder, - callable : null - }, { - name : "canEncode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "decode", - modifiers : 4, - accessLevel : 3, - parameterTypes : [jn_ByteBuffer], - returnType : jn_CharBuffer, - callable : null - }, { - name : "encode", - modifiers : 4, - accessLevel : 3, - parameterTypes : [jn_CharBuffer], - returnType : jn_ByteBuffer, - callable : null - }, { - name : "encode", - modifiers : 4, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : jn_ByteBuffer, - callable : null - }, { - name : "compareTo", - modifiers : 4, - accessLevel : 3, - parameterTypes : [jnc_Charset], - returnType : $rt_intcls(), - callable : null - }, { - name : "compareTo", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_intcls(), - callable : null }]; nmwb_BiomeGenBase.$meta.methods = [ { @@ -78412,7 +79817,7 @@ returnType : $rt_voidcls(), callable : null }]; - nmd_BehaviorProjectileDispense.$meta.methods = [ + nmn_NBTBase.$meta.methods = [ { name : "", modifiers : 0, @@ -78421,230 +79826,74 @@ returnType : $rt_voidcls(), callable : null }, { - name : "dispenseStack", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmd_IBlockSource, nmi_ItemStack], - returnType : nmi_ItemStack, - callable : null - }, { - name : "playDispenseSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmd_IBlockSource], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getProjectileEntity", + name : "write", modifiers : 1, - accessLevel : 2, - parameterTypes : [nmw_World, nmd_IPosition], - returnType : nme_IProjectile, - callable : null - }, { - name : "func_82498_a", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "func_82500_b", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }]; - nmcre_RendererLivingEntity.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcre_RenderManager, nmcm_ModelBase, $rt_floatcls()], + accessLevel : 0, + parameterTypes : [ji_DataOutput], returnType : $rt_voidcls(), callable : null }, { - name : "addLayer", - modifiers : 0, + name : "read", + modifiers : 1, + accessLevel : 0, + parameterTypes : [ji_DataInput, $rt_intcls(), nmn_NBTSizeTracker], + returnType : $rt_voidcls(), + callable : null + }, { + name : "toString", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getId", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_bytecls(), + callable : null + }, { + name : "createNewByType", + modifiers : 512, accessLevel : 2, - parameterTypes : [nmcrel_LayerRenderer], + parameterTypes : [$rt_bytecls()], + returnType : nmn_NBTBase, + callable : null + }, { + name : "copy", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : nmn_NBTBase, + callable : null + }, { + name : "hasNoTags", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], returnType : $rt_booleancls(), callable : null }, { - name : "removeLayer", + name : "equals", modifiers : 0, - accessLevel : 2, - parameterTypes : [nmcrel_LayerRenderer], + accessLevel : 3, + parameterTypes : [jl_Object], returnType : $rt_booleancls(), callable : null }, { - name : "getMainModel", + name : "hashCode", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : nmcm_ModelBase, - callable : null - }, { - name : "interpolateRotation", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "transformHeldFull3DItemLayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "doRender", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityLivingBase, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setScoreTeamColor", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nme_EntityLivingBase], - returnType : $rt_booleancls(), - callable : null - }, { - name : "unsetScoreTeamColor", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderModel", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nme_EntityLivingBase, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setDoRenderBrightness", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nme_EntityLivingBase, $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setBrightness", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityLivingBase, $rt_floatcls(), $rt_booleancls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "unsetBrightness", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderLivingAt", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityLivingBase, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "rotateCorpse", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nme_EntityLivingBase, $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSwingProgress", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nme_EntityLivingBase, $rt_floatcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "handleRotationFloat", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nme_EntityLivingBase, $rt_floatcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "renderLayers", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nme_EntityLivingBase, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDeathMaxRotation", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nme_EntityLivingBase], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getColorMultiplier", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nme_EntityLivingBase, $rt_floatcls(), $rt_floatcls()], returnType : $rt_intcls(), callable : null }, { - name : "preRenderCallback", + name : "getString", modifiers : 0, accessLevel : 2, - parameterTypes : [nme_EntityLivingBase, $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityLivingBase, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canRenderName", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nme_EntityLivingBase], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setRenderOutlines", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canRenderName", - modifiers : 96, - accessLevel : 2, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null - }, { - name : "renderName", - modifiers : 96, - accessLevel : 3, - parameterTypes : [nme_Entity, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "doRender", - modifiers : 96, - accessLevel : 3, - parameterTypes : [nme_Entity, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), + parameterTypes : [], + returnType : jl_String, callable : null }, { name : "", @@ -78654,211 +79903,21 @@ returnType : $rt_voidcls(), callable : null }]; - ju_HashMap$AbstractMapIterator.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [ju_HashMap], - returnType : $rt_voidcls(), - callable : null - }, { - name : "hasNext", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "checkConcurrentMod", - modifiers : 4, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "makeNext", - modifiers : 4, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "remove", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - cgcc_AbstractIterator.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "computeNext", - modifiers : 1, - accessLevel : 2, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "endOfData", - modifiers : 4, - accessLevel : 2, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "hasNext", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "tryToComputeNext", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "next", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "peek", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }]; - jur_QuantifierSet.$meta.methods = [ + nmb_BlockLog.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [jur_AbstractSet, jur_AbstractSet, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getInnerSet", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jur_AbstractSet, - callable : null - }, { - name : "setInnerSet", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jur_AbstractSet], - returnType : $rt_voidcls(), - callable : null - }, { - name : "first", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jur_AbstractSet], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hasConsumed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jur_MatchResultImpl], - returnType : $rt_booleancls(), - callable : null - }, { - name : "processSecondPass", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - ju_LinkedHashMapIterator.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [ju_LinkedHashMap, $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "hasNext", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "checkConcurrentMod", - modifiers : 4, - accessLevel : 0, parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { - name : "makeNext", - modifiers : 4, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "remove", - modifiers : 0, + name : "bootstrapStates", + modifiers : 512, accessLevel : 3, parameterTypes : [], returnType : $rt_voidcls(), callable : null - }]; - nmb_BlockContainer.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmbm_Material], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmbm_Material, nmbm_MapColor], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_181086_a", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, nmu_BlockPos, nmu_EnumFacing], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_181087_e", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getRenderType", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null }, { name : "breakBlock", modifiers : 0, @@ -78867,291 +79926,12 @@ returnType : $rt_voidcls(), callable : null }, { - name : "onBlockEventReceived", + name : "onBlockPlaced", modifiers : 0, accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, $rt_intcls(), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }]; - jl_VirtualMachineError.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Throwable], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, jl_Throwable], - returnType : $rt_voidcls(), - callable : null - }]; - nmb_BlockRotatedPillar.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmbm_Material], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmbm_Material, nmbm_MapColor], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmb_BlockLiquid.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmbm_Material], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isPassable", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], - returnType : $rt_booleancls(), - callable : null - }, { - name : "colorMultiplier", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, $rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "getLiquidHeightPercent", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getLevel", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], - returnType : $rt_intcls(), - callable : null - }, { - name : "getEffectiveFlowDecay", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], - returnType : $rt_intcls(), - callable : null - }, { - name : "isFullCube", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isOpaqueCube", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "canCollideCheck", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmbs_IBlockState, $rt_booleancls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isBlockSolid", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, nmu_EnumFacing], - returnType : $rt_booleancls(), - callable : null - }, { - name : "shouldSideBeRendered", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, nmu_EnumFacing], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_176364_g", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getCollisionBoundingBox", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], - returnType : nmu_AxisAlignedBB, - callable : null - }, { - name : "getRenderType", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getItemDropped", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmbs_IBlockState, nlev_EaglercraftRandom, $rt_intcls()], - returnType : nmi_Item, - callable : null - }, { - name : "quantityDropped", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlev_EaglercraftRandom], - returnType : $rt_intcls(), - callable : null - }, { - name : "getFlowVector", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], - returnType : nmu_Vec3, - callable : null - }, { - name : "modifyAcceleration", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nme_Entity, nmu_Vec3], - returnType : nmu_Vec3, - callable : null - }, { - name : "tickRate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_intcls(), - callable : null - }, { - name : "getMixedBrightnessForBlock", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], - returnType : $rt_intcls(), - callable : null - }, { - name : "getBlockLayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_EnumWorldBlockLayer, - callable : null - }, { - name : "randomDisplayTick", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFlowDirection", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, nmbm_Material], - returnType : $rt_doublecls(), - callable : null - }, { - name : "onBlockAdded", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onNeighborBlockChange", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmb_Block], - returnType : $rt_voidcls(), - callable : null - }, { - name : "checkForMixing", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], - returnType : $rt_booleancls(), - callable : null - }, { - name : "triggerMixEffects", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getStateFromMeta", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], + parameterTypes : [nmw_World, nmu_BlockPos, nmu_EnumFacing, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_intcls(), nme_EntityLivingBase], returnType : nmbs_IBlockState, callable : null - }, { - name : "getMetaFromState", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmbs_IBlockState], - returnType : $rt_intcls(), - callable : null - }, { - name : "createBlockState", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmbs_BlockState, - callable : null - }, { - name : "getFlowingBlock", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmbm_Material], - returnType : nmb_BlockDynamicLiquid, - callable : null - }, { - name : "getStaticBlock", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmbm_Material], - returnType : nmb_BlockStaticLiquid, - callable : null }, { name : "", modifiers : 512, @@ -79160,43 +79940,6 @@ returnType : $rt_voidcls(), callable : null }]; - cgcc_TransformedIterator.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [ju_Iterator], - returnType : $rt_voidcls(), - callable : null - }, { - name : "transform", - modifiers : 1, - accessLevel : 0, - parameterTypes : [jl_Object], - returnType : jl_Object, - callable : null - }, { - name : "hasNext", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "next", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "remove", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; nmb_BlockWoodSlab.$meta.methods = [ { name : "", @@ -79425,410 +80168,58 @@ returnType : $rt_voidcls(), callable : null }]; - nmb_BlockBasePressurePlate.$meta.methods = [ + jl_ReflectiveOperationException.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 2, - parameterTypes : [nmbm_Material], + accessLevel : 3, + parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { name : "", modifiers : 0, - accessLevel : 2, - parameterTypes : [nmbm_Material, nmbm_MapColor], + accessLevel : 3, + parameterTypes : [jl_String, jl_Throwable], returnType : $rt_voidcls(), callable : null }, { - name : "setBlockBoundsBasedOnState", + name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], + parameterTypes : [jl_String], returnType : $rt_voidcls(), callable : null }, { - name : "setBlockBoundsBasedOnState0", + name : "", modifiers : 0, - accessLevel : 2, - parameterTypes : [nmbs_IBlockState], + accessLevel : 3, + parameterTypes : [jl_Throwable], returnType : $rt_voidcls(), callable : null - }, { - name : "tickRate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_intcls(), - callable : null - }, { - name : "getCollisionBoundingBox", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], - returnType : nmu_AxisAlignedBB, - callable : null - }, { - name : "isOpaqueCube", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isFullCube", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isPassable", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_181623_g", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "canPlaceBlockAt", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onNeighborBlockChange", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmb_Block], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canBePlacedOn", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : $rt_booleancls(), - callable : null - }, { - name : "randomTick", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateTick", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onEntityCollidedWithBlock", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nme_Entity], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateState", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSensitiveAABB", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_BlockPos], - returnType : nmu_AxisAlignedBB, - callable : null - }, { - name : "breakBlock", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateNeighbors", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getWeakPower", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, nmbs_IBlockState, nmu_EnumFacing], - returnType : $rt_intcls(), - callable : null - }, { - name : "getStrongPower", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, nmbs_IBlockState, nmu_EnumFacing], - returnType : $rt_intcls(), - callable : null - }, { - name : "canProvidePower", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setBlockBoundsForItemRender", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getMobilityFlag", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "computeRedstoneStrength", - modifiers : 1, - accessLevel : 2, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : $rt_intcls(), - callable : null - }, { - name : "getRedstoneStrength", - modifiers : 1, - accessLevel : 2, - parameterTypes : [nmbs_IBlockState], - returnType : $rt_intcls(), - callable : null - }, { - name : "setRedstoneStrength", - modifiers : 1, - accessLevel : 2, - parameterTypes : [nmbs_IBlockState, $rt_intcls()], - returnType : nmbs_IBlockState, - callable : null }]; - nmd_BehaviorDefaultDispenseItem.$meta.methods = [ + cgcc_Tables$AbstractCell.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 3, + accessLevel : 0, parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { - name : "dispense", - modifiers : 4, - accessLevel : 3, - parameterTypes : [nmd_IBlockSource, nmi_ItemStack], - returnType : nmi_ItemStack, - callable : null - }, { - name : "dispenseStack", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmd_IBlockSource, nmi_ItemStack], - returnType : nmi_ItemStack, - callable : null - }, { - name : "doDispense", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmw_World, nmi_ItemStack, $rt_intcls(), nmu_EnumFacing, nmd_IPosition], - returnType : $rt_voidcls(), - callable : null - }, { - name : "playDispenseSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmd_IBlockSource], - returnType : $rt_voidcls(), - callable : null - }, { - name : "spawnDispenseParticles", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmd_IBlockSource, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_82488_a", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmu_EnumFacing], - returnType : $rt_intcls(), - callable : null - }]; - nmcp_EntityFX.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", + name : "equals", modifiers : 0, accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "multiplyVelocity", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : nmcp_EntityFX, - callable : null - }, { - name : "multipleParticleScaleBy", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : nmcp_EntityFX, - callable : null - }, { - name : "setRBGColorF", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setAlphaF", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getRedColorF", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getGreenColorF", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getBlueColorF", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getAlpha", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "canTriggerWalking", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], + parameterTypes : [jl_Object], returnType : $rt_booleancls(), callable : null }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderParticle", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderAccelerated", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevm_IAcceleratedParticleEngine, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getFXLayer", + name : "hashCode", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_intcls(), callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setParticleIcon", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevm_EaglerTextureAtlasSprite], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setParticleTextureIndex", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "nextTextureIndexX", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canAttackWithItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null }, { name : "toString", modifiers : 0, @@ -79837,265 +80228,57 @@ returnType : jl_String, callable : null }]; - nmcg_FontRenderer.$meta.methods = [ + nmn_JsonToNBT$Any.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "parse", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : nmn_NBTBase, + callable : null + }]; + nmcre_RenderBiped.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [nmcs_GameSettings, nmu_ResourceLocation, nmcrt_TextureManager, $rt_booleancls()], + parameterTypes : [nmcre_RenderManager, nmcm_ModelBiped, $rt_floatcls()], returnType : $rt_voidcls(), callable : null }, { - name : "onResourceManagerReload", + name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [nmcr_IResourceManager], + parameterTypes : [nmcre_RenderManager, nmcm_ModelBiped, $rt_floatcls(), $rt_floatcls()], returnType : $rt_voidcls(), callable : null }, { - name : "readFontTexture", + name : "getEntityTexture", modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readGlyphSizes", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_181559_a", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_charcls(), $rt_booleancls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "renderDefaultChar", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_intcls(), $rt_booleancls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getUnicodePageLocation", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_intcls()], + accessLevel : 2, + parameterTypes : [nme_EntityLiving], returnType : nmu_ResourceLocation, callable : null }, { - name : "loadGlyphTexture", + name : "transformHeldFull3DItemLayer", modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_intcls()], + accessLevel : 3, + parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { - name : "renderUnicodeChar", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_charcls(), $rt_booleancls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "drawStringWithShadow", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, $rt_floatcls(), $rt_floatcls(), $rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "drawString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "drawString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, $rt_floatcls(), $rt_floatcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "bidiReorder", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String], - returnType : jl_String, - callable : null - }, { - name : "resetStyles", - modifiers : 0, + name : "getEntityTexture", + modifiers : 96, accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderStringAtPos", - modifiers : 0, - accessLevel : 2, - parameterTypes : [jl_String, $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderStringAligned", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "renderString", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_floatcls(), $rt_floatcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "getStringWidth", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_intcls(), - callable : null - }, { - name : "getCharWidth", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_charcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "getCharWidthFloat", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_charcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "trimStringToWidth", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, $rt_intcls()], - returnType : jl_String, - callable : null - }, { - name : "trimStringToWidth", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, $rt_intcls(), $rt_booleancls()], - returnType : jl_String, - callable : null - }, { - name : "trimStringNewline", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String], - returnType : jl_String, - callable : null - }, { - name : "drawSplitString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderSplitString", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "splitStringWidth", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "setUnicodeFlag", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getUnicodeFlag", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setBidiFlag", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "listFormattedStringToWidth", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, $rt_intcls()], - returnType : ju_List, - callable : null - }, { - name : "wrapFormattedStringToWidth", - modifiers : 0, - accessLevel : 0, - parameterTypes : [jl_String, $rt_intcls(), $rt_intcls()], - returnType : jl_String, - callable : null - }, { - name : "sizeStringToWidth", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "isFormatColor", - modifiers : 512, - accessLevel : 1, - parameterTypes : [$rt_charcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isFormatSpecial", - modifiers : 512, - accessLevel : 1, - parameterTypes : [$rt_charcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getFormatFromString", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : jl_String, - callable : null - }, { - name : "getBidiFlag", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getColorCode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_charcls()], - returnType : $rt_intcls(), + parameterTypes : [nme_Entity], + returnType : nmu_ResourceLocation, callable : null }, { name : "", @@ -80105,6 +80288,231 @@ returnType : $rt_voidcls(), callable : null }]; + nmee_EntityWeatherEffect.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }]; + jnc_Charset.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [jl_String, $rt_arraycls(jl_String)], + returnType : $rt_voidcls(), + callable : null + }, { + name : "checkCanonicalName", + modifiers : 512, + accessLevel : 1, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isValidCharsetStart", + modifiers : 512, + accessLevel : 1, + parameterTypes : [$rt_charcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "forName", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : jnc_Charset, + callable : null + }, { + name : "defaultCharset", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : jnc_Charset, + callable : null + }, { + name : "name", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "aliases", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Set, + callable : null + }, { + name : "displayName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "contains", + modifiers : 1, + accessLevel : 3, + parameterTypes : [jnc_Charset], + returnType : $rt_booleancls(), + callable : null + }, { + name : "newDecoder", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : jnc_CharsetDecoder, + callable : null + }, { + name : "newEncoder", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : jnc_CharsetEncoder, + callable : null + }, { + name : "canEncode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "decode", + modifiers : 4, + accessLevel : 3, + parameterTypes : [jn_ByteBuffer], + returnType : jn_CharBuffer, + callable : null + }, { + name : "encode", + modifiers : 4, + accessLevel : 3, + parameterTypes : [jn_CharBuffer], + returnType : jn_ByteBuffer, + callable : null + }, { + name : "encode", + modifiers : 4, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : jn_ByteBuffer, + callable : null + }, { + name : "compareTo", + modifiers : 4, + accessLevel : 3, + parameterTypes : [jnc_Charset], + returnType : $rt_intcls(), + callable : null + }, { + name : "compareTo", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_intcls(), + callable : null + }]; + nmn_NBTBase$NBTPrimitive.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getLong", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_longcls(), + callable : null + }, { + name : "getInt", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getShort", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_shortcls(), + callable : null + }, { + name : "getByte", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_bytecls(), + callable : null + }, { + name : "getDouble", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_doublecls(), + callable : null + }, { + name : "getFloat", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }]; + jur_QuantifierSet.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jur_AbstractSet, jur_AbstractSet, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getInnerSet", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jur_AbstractSet, + callable : null + }, { + name : "setInnerSet", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jur_AbstractSet], + returnType : $rt_voidcls(), + callable : null + }, { + name : "first", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jur_AbstractSet], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hasConsumed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jur_MatchResultImpl], + returnType : $rt_booleancls(), + callable : null + }, { + name : "processSecondPass", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; nmcr_AbstractResourcePack.$meta.methods = [ { name : "", @@ -80191,478 +80599,413 @@ returnType : $rt_voidcls(), callable : null }]; - nmb_BlockStoneSlab.$meta.methods = [ + cgcc_FluentIterable.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "bootstrapStates", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getItemDropped", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmbs_IBlockState, nlev_EaglercraftRandom, $rt_intcls()], - returnType : nmi_Item, - callable : null - }, { - name : "getItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : nmi_Item, - callable : null - }, { - name : "getUnlocalizedName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : jl_String, - callable : null - }, { - name : "getVariantProperty", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmbp_IProperty, - callable : null - }, { - name : "getVariant", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : jl_Object, - callable : null - }, { - name : "getSubBlocks", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_Item, nmc_CreativeTabs, ju_List], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getStateFromMeta", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nmbs_IBlockState, - callable : null - }, { - name : "getMetaFromState", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmbs_IBlockState], - returnType : $rt_intcls(), - callable : null - }, { - name : "createBlockState", - modifiers : 0, accessLevel : 2, parameterTypes : [], - returnType : nmbs_BlockState, + returnType : $rt_voidcls(), callable : null }, { - name : "damageDropped", + name : "", modifiers : 0, - accessLevel : 3, - parameterTypes : [nmbs_IBlockState], - returnType : $rt_intcls(), - callable : null - }, { - name : "getMapColor", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmbs_IBlockState], - returnType : nmbm_MapColor, - callable : null - }, { - name : "", - modifiers : 512, accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmb_BlockLog.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], + parameterTypes : [jl_Iterable], returnType : $rt_voidcls(), callable : null }, { - name : "bootstrapStates", + name : "from", modifiers : 512, accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), + parameterTypes : [jl_Iterable], + returnType : cgcc_FluentIterable, callable : null }, { - name : "breakBlock", - modifiers : 0, + name : "from", + modifiers : 640, accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onBlockPlaced", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmu_EnumFacing, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_intcls(), nme_EntityLivingBase], - returnType : nmbs_IBlockState, - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmb_BlockStoneSlabNew.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "bootstrapStates", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getLocalizedName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getItemDropped", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmbs_IBlockState, nlev_EaglercraftRandom, $rt_intcls()], - returnType : nmi_Item, - callable : null - }, { - name : "getItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : nmi_Item, - callable : null - }, { - name : "getUnlocalizedName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : jl_String, - callable : null - }, { - name : "getVariantProperty", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmbp_IProperty, - callable : null - }, { - name : "getVariant", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : jl_Object, - callable : null - }, { - name : "getSubBlocks", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_Item, nmc_CreativeTabs, ju_List], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getStateFromMeta", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nmbs_IBlockState, - callable : null - }, { - name : "getMetaFromState", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmbs_IBlockState], - returnType : $rt_intcls(), - callable : null - }, { - name : "createBlockState", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmbs_BlockState, - callable : null - }, { - name : "getMapColor", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmbs_IBlockState], - returnType : nmbm_MapColor, - callable : null - }, { - name : "damageDropped", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmbs_IBlockState], - returnType : $rt_intcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - otcit_StorableDateTimeZone.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "write", - modifiers : 1, - accessLevel : 3, - parameterTypes : [jl_StringBuilder], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeTime", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_StringBuilder, $rt_longcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readTime", - modifiers : 512, - accessLevel : 3, - parameterTypes : [otci_CharFlow], - returnType : $rt_longcls(), - callable : null - }, { - name : "writeUnsignedTime", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_StringBuilder, $rt_longcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readUnsignedTime", - modifiers : 512, - accessLevel : 3, - parameterTypes : [otci_CharFlow], - returnType : $rt_longcls(), - callable : null - }, { - name : "writeTimeArray", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_StringBuilder, $rt_arraycls($rt_intcls())], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readTimeArray", - modifiers : 512, - accessLevel : 3, - parameterTypes : [otci_CharFlow, $rt_arraycls($rt_intcls())], - returnType : $rt_voidcls(), - callable : null - }, { - name : "read", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String, jl_String], - returnType : otcit_StorableDateTimeZone, - callable : null - }]; - nmcre_RenderLiving.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcre_RenderManager, nmcm_ModelBase, $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canRenderName", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nme_EntityLiving], - returnType : $rt_booleancls(), - callable : null - }, { - name : "shouldRender", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityLiving, nmcrc_ICamera, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "doRender", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityLiving, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_177105_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityLiving, $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "interpolateValue", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_doublecls(), - callable : null - }, { - name : "renderLeash", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nme_EntityLiving, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canRenderName", - modifiers : 96, - accessLevel : 2, - parameterTypes : [nme_EntityLivingBase], - returnType : $rt_booleancls(), - callable : null - }, { - name : "doRender", - modifiers : 96, - accessLevel : 3, - parameterTypes : [nme_EntityLivingBase, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canRenderName", - modifiers : 96, - accessLevel : 2, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null - }, { - name : "doRender", - modifiers : 96, - accessLevel : 3, - parameterTypes : [nme_Entity, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "shouldRender", - modifiers : 96, - accessLevel : 3, - parameterTypes : [nme_Entity, nmcrc_ICamera, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_booleancls(), - callable : null - }]; - nmn_NBTBase.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "write", - modifiers : 1, - accessLevel : 0, - parameterTypes : [ji_DataOutput], - returnType : $rt_voidcls(), - callable : null - }, { - name : "read", - modifiers : 1, - accessLevel : 0, - parameterTypes : [ji_DataInput, $rt_intcls(), nmn_NBTSizeTracker], - returnType : $rt_voidcls(), + parameterTypes : [cgcc_FluentIterable], + returnType : cgcc_FluentIterable, callable : null }, { name : "toString", - modifiers : 1, + modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : jl_String, callable : null }, { - name : "getId", - modifiers : 1, + name : "size", + modifiers : 4, accessLevel : 3, parameterTypes : [], - returnType : $rt_bytecls(), + returnType : $rt_intcls(), callable : null }, { - name : "createNewByType", - modifiers : 512, - accessLevel : 2, - parameterTypes : [$rt_bytecls()], - returnType : nmn_NBTBase, - callable : null - }, { - name : "copy", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : nmn_NBTBase, - callable : null - }, { - name : "hasNoTags", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "equals", - modifiers : 0, + name : "contains", + modifiers : 4, accessLevel : 3, parameterTypes : [jl_Object], returnType : $rt_booleancls(), callable : null }, { - name : "hashCode", + name : "cycle", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : cgcc_FluentIterable, + callable : null + }, { + name : "filter", + modifiers : 4, + accessLevel : 3, + parameterTypes : [cgcb_Predicate], + returnType : cgcc_FluentIterable, + callable : null + }, { + name : "filter", + modifiers : 4, + accessLevel : 3, + parameterTypes : [jl_Class], + returnType : cgcc_FluentIterable, + callable : null + }, { + name : "anyMatch", + modifiers : 4, + accessLevel : 3, + parameterTypes : [cgcb_Predicate], + returnType : $rt_booleancls(), + callable : null + }, { + name : "allMatch", + modifiers : 4, + accessLevel : 3, + parameterTypes : [cgcb_Predicate], + returnType : $rt_booleancls(), + callable : null + }, { + name : "firstMatch", + modifiers : 4, + accessLevel : 3, + parameterTypes : [cgcb_Predicate], + returnType : cgcb_Optional, + callable : null + }, { + name : "transform", + modifiers : 4, + accessLevel : 3, + parameterTypes : [cgcb_Function], + returnType : cgcc_FluentIterable, + callable : null + }, { + name : "transformAndConcat", + modifiers : 0, + accessLevel : 3, + parameterTypes : [cgcb_Function], + returnType : cgcc_FluentIterable, + callable : null + }, { + name : "first", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : cgcb_Optional, + callable : null + }, { + name : "last", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : cgcb_Optional, + callable : null + }, { + name : "skip", + modifiers : 4, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : cgcc_FluentIterable, + callable : null + }, { + name : "limit", + modifiers : 4, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : cgcc_FluentIterable, + callable : null + }, { + name : "isEmpty", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "toList", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "toSortedList", + modifiers : 4, + accessLevel : 3, + parameterTypes : [ju_Comparator], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "toSet", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : cgcc_ImmutableSet, + callable : null + }, { + name : "toSortedSet", + modifiers : 4, + accessLevel : 3, + parameterTypes : [ju_Comparator], + returnType : cgcc_ImmutableSortedSet, + callable : null + }, { + name : "toMap", + modifiers : 4, + accessLevel : 3, + parameterTypes : [cgcb_Function], + returnType : cgcc_ImmutableMap, + callable : null + }, { + name : "index", + modifiers : 4, + accessLevel : 3, + parameterTypes : [cgcb_Function], + returnType : cgcc_ImmutableListMultimap, + callable : null + }, { + name : "uniqueIndex", + modifiers : 4, + accessLevel : 3, + parameterTypes : [cgcb_Function], + returnType : cgcc_ImmutableMap, + callable : null + }, { + name : "toArray", + modifiers : 4, + accessLevel : 3, + parameterTypes : [jl_Class], + returnType : $rt_arraycls(jl_Object), + callable : null + }, { + name : "copyInto", + modifiers : 4, + accessLevel : 3, + parameterTypes : [ju_Collection], + returnType : ju_Collection, + callable : null + }, { + name : "get", + modifiers : 4, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : jl_Object, + callable : null + }]; + nmd_BehaviorDefaultDispenseItem.$meta.methods = [ + { + name : "", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : $rt_intcls(), + returnType : $rt_voidcls(), callable : null }, { - name : "getString", + name : "dispense", + modifiers : 4, + accessLevel : 3, + parameterTypes : [nmd_IBlockSource, nmi_ItemStack], + returnType : nmi_ItemStack, + callable : null + }, { + name : "dispenseStack", modifiers : 0, accessLevel : 2, + parameterTypes : [nmd_IBlockSource, nmi_ItemStack], + returnType : nmi_ItemStack, + callable : null + }, { + name : "doDispense", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmw_World, nmi_ItemStack, $rt_intcls(), nmu_EnumFacing, nmd_IPosition], + returnType : $rt_voidcls(), + callable : null + }, { + name : "playDispenseSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmd_IBlockSource], + returnType : $rt_voidcls(), + callable : null + }, { + name : "spawnDispenseParticles", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmd_IBlockSource, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_82488_a", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmu_EnumFacing], + returnType : $rt_intcls(), + callable : null + }]; + nmcrel_LayerArmorBase.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcre_RendererLivingEntity], + returnType : $rt_voidcls(), + callable : null + }, { + name : "doRenderLayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityLivingBase, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "shouldCombineTextures", + modifiers : 0, + accessLevel : 3, parameterTypes : [], - returnType : jl_String, + returnType : $rt_booleancls(), + callable : null + }, { + name : "renderLayer", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nme_EntityLivingBase, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getCurrentArmor", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityLivingBase, $rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "func_177175_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmcm_ModelBase, + callable : null + }, { + name : "isSlotForLeggings", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_177183_a", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nme_EntityLivingBase, nmcm_ModelBase, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getArmorResource", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmi_ItemArmor, $rt_booleancls()], + returnType : nmu_ResourceLocation, + callable : null + }, { + name : "getArmorResource", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmi_ItemArmor, $rt_booleancls(), jl_String], + returnType : nmu_ResourceLocation, + callable : null + }, { + name : "initArmor", + modifiers : 1, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_177179_a", + modifiers : 1, + accessLevel : 2, + parameterTypes : [nmcm_ModelBase, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + cgcb_CharMatcher$FastMatcher.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "precomputed", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : cgcb_CharMatcher, + callable : null + }, { + name : "negate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : cgcb_CharMatcher, + callable : null + }, { + name : "apply", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }]; + nmb_BlockDirectional.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmbm_Material], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmbm_Material, nmbm_MapColor], + returnType : $rt_voidcls(), callable : null }, { name : "", @@ -81724,23 +82067,384 @@ returnType : otj_JSObject, callable : null }]; - nmu_WeightedRandom$Item.$meta.methods = [ + nmcrt_AbstractTexture.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [$rt_intcls()], + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setBlurMipmapDirect", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setBlurMipmapDirect0", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_booleancls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setBlurMipmap", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "restoreLastBlurMipmap", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getGlTextureId", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "deleteGlTexture", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], returnType : $rt_voidcls(), callable : null }]; - nlevoedp_ShaderException.$meta.methods = [ + nmb_BlockLiquid.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmbm_Material], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isPassable", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], + returnType : $rt_booleancls(), + callable : null + }, { + name : "colorMultiplier", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, $rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "getLiquidHeightPercent", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getLevel", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], + returnType : $rt_intcls(), + callable : null + }, { + name : "getEffectiveFlowDecay", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], + returnType : $rt_intcls(), + callable : null + }, { + name : "isFullCube", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isOpaqueCube", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "canCollideCheck", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmbs_IBlockState, $rt_booleancls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isBlockSolid", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, nmu_EnumFacing], + returnType : $rt_booleancls(), + callable : null + }, { + name : "shouldSideBeRendered", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, nmu_EnumFacing], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_176364_g", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getCollisionBoundingBox", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], + returnType : nmu_AxisAlignedBB, + callable : null + }, { + name : "getRenderType", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getItemDropped", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmbs_IBlockState, nlev_EaglercraftRandom, $rt_intcls()], + returnType : nmi_Item, + callable : null + }, { + name : "quantityDropped", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlev_EaglercraftRandom], + returnType : $rt_intcls(), + callable : null + }, { + name : "getFlowVector", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], + returnType : nmu_Vec3, + callable : null + }, { + name : "modifyAcceleration", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nme_Entity, nmu_Vec3], + returnType : nmu_Vec3, + callable : null + }, { + name : "tickRate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_intcls(), + callable : null + }, { + name : "getMixedBrightnessForBlock", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], + returnType : $rt_intcls(), + callable : null + }, { + name : "getBlockLayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_EnumWorldBlockLayer, + callable : null + }, { + name : "randomDisplayTick", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFlowDirection", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, nmbm_Material], + returnType : $rt_doublecls(), + callable : null + }, { + name : "onBlockAdded", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onNeighborBlockChange", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmb_Block], + returnType : $rt_voidcls(), + callable : null + }, { + name : "checkForMixing", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], + returnType : $rt_booleancls(), + callable : null + }, { + name : "triggerMixEffects", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getStateFromMeta", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmbs_IBlockState, + callable : null + }, { + name : "getMetaFromState", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmbs_IBlockState], + returnType : $rt_intcls(), + callable : null + }, { + name : "createBlockState", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmbs_BlockState, + callable : null + }, { + name : "getFlowingBlock", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmbm_Material], + returnType : nmb_BlockDynamicLiquid, + callable : null + }, { + name : "getStaticBlock", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmbm_Material], + returnType : nmb_BlockStaticLiquid, + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + otcit_StorableDateTimeZone.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [jl_String, jl_String], + parameterTypes : [jl_String], returnType : $rt_voidcls(), callable : null + }, { + name : "write", + modifiers : 1, + accessLevel : 3, + parameterTypes : [jl_StringBuilder], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeTime", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_StringBuilder, $rt_longcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readTime", + modifiers : 512, + accessLevel : 3, + parameterTypes : [otci_CharFlow], + returnType : $rt_longcls(), + callable : null + }, { + name : "writeUnsignedTime", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_StringBuilder, $rt_longcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readUnsignedTime", + modifiers : 512, + accessLevel : 3, + parameterTypes : [otci_CharFlow], + returnType : $rt_longcls(), + callable : null + }, { + name : "writeTimeArray", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_StringBuilder, $rt_arraycls($rt_intcls())], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readTimeArray", + modifiers : 512, + accessLevel : 3, + parameterTypes : [otci_CharFlow, $rt_arraycls($rt_intcls())], + returnType : $rt_voidcls(), + callable : null + }, { + name : "read", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String, jl_String], + returnType : otcit_StorableDateTimeZone, + callable : null + }]; + ju_AbstractSet.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "removeAll", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ju_Collection], + returnType : $rt_booleancls(), + callable : null + }, { + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hashCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null }]; nPs_CharSequenceTranslator.$meta.methods = [ { @@ -81793,6 +82497,1003 @@ returnType : $rt_voidcls(), callable : null }]; + nmwgs_MapGenStructure.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getStructureName", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "recursiveGenerate", + modifiers : 4, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), nmwc_ChunkPrimer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "generateStructure", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmw_ChunkCoordIntPair], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_175795_b", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_BlockPos], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_175797_c", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_BlockPos], + returnType : nmwgs_StructureStart, + callable : null + }, { + name : "func_175796_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getClosestStrongholdPos", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : nmu_BlockPos, + callable : null + }, { + name : "getCoordList", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : ju_List, + callable : null + }, { + name : "func_143027_a", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_143026_a", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_intcls(), $rt_intcls(), nmwgs_StructureStart], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canSpawnStructureAtCoords", + modifiers : 1, + accessLevel : 2, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getStructureStart", + modifiers : 1, + accessLevel : 2, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : nmwgs_StructureStart, + callable : null + }]; + nme_Enchantment.$meta.methods = [ + { + name : "getEnchantmentById", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nme_Enchantment, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls(), nmu_ResourceLocation, $rt_intcls(), nme_EnumEnchantmentType], + returnType : $rt_voidcls(), + callable : null + }, { + name : "loadModData", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nea_BaseData], + returnType : $rt_voidcls(), + callable : null + }, { + name : "makeModData", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nea_ModData, + callable : null + }, { + name : "makeModDataStatic", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : nea_ModData, + callable : null + }, { + name : "getEnchantmentByLocation", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nme_Enchantment, + callable : null + }, { + name : "func_181077_c", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Set, + callable : null + }, { + name : "getWeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getMinLevel", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getMaxLevel", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getMinEnchantability", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "getMaxEnchantability", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "calcModifierDamage", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nmu_DamageSource], + returnType : $rt_intcls(), + callable : null + }, { + name : "calcDamageByCreature", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nme_EnumCreatureAttribute], + returnType : $rt_floatcls(), + callable : null + }, { + name : "canApplyTogether", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Enchantment], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nme_Enchantment, + callable : null + }, { + name : "getName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getTranslatedName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : jl_String, + callable : null + }, { + name : "canApply", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onEntityDamaged", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityLivingBase, nme_Entity, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUserHurt", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityLivingBase, nme_Entity, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$makeModData$1", + modifiers : 32, + accessLevel : 1, + parameterTypes : [], + returnType : otj_JSObject, + callable : null + }, { + name : "lambda$makeModData$0", + modifiers : 32, + accessLevel : 1, + parameterTypes : [nea_ModData], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmb_BlockButton.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getCollisionBoundingBox", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], + returnType : nmu_AxisAlignedBB, + callable : null + }, { + name : "tickRate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_intcls(), + callable : null + }, { + name : "isOpaqueCube", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isFullCube", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "canPlaceBlockOnSide", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmu_EnumFacing], + returnType : $rt_booleancls(), + callable : null + }, { + name : "canPlaceBlockAt", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_181088_a", + modifiers : 512, + accessLevel : 2, + parameterTypes : [nmw_World, nmu_BlockPos, nmu_EnumFacing], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onBlockPlaced", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmu_EnumFacing, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_intcls(), nme_EntityLivingBase], + returnType : nmbs_IBlockState, + callable : null + }, { + name : "onNeighborBlockChange", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmb_Block], + returnType : $rt_voidcls(), + callable : null + }, { + name : "checkForDrop", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setBlockBoundsBasedOnState", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateBlockBounds", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmbs_IBlockState], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onBlockActivated", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmep_EntityPlayer, nmu_EnumFacing, $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "breakBlock", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getWeakPower", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, nmbs_IBlockState, nmu_EnumFacing], + returnType : $rt_intcls(), + callable : null + }, { + name : "getStrongPower", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, nmbs_IBlockState, nmu_EnumFacing], + returnType : $rt_intcls(), + callable : null + }, { + name : "canProvidePower", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "randomTick", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateTick", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setBlockBoundsForItemRender", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onEntityCollidedWithBlock", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nme_Entity], + returnType : $rt_voidcls(), + callable : null + }, { + name : "checkForArrows", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], + returnType : $rt_voidcls(), + callable : null + }, { + name : "notifyNeighbors", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmw_World, nmu_BlockPos, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getStateFromMeta", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmbs_IBlockState, + callable : null + }, { + name : "getMetaFromState", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmbs_IBlockState], + returnType : $rt_intcls(), + callable : null + }, { + name : "createBlockState", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmbs_BlockState, + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcre_RenderLiving.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcre_RenderManager, nmcm_ModelBase, $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canRenderName", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nme_EntityLiving], + returnType : $rt_booleancls(), + callable : null + }, { + name : "shouldRender", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityLiving, nmcrc_ICamera, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "doRender", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityLiving, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_177105_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityLiving, $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "interpolateValue", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_doublecls(), + callable : null + }, { + name : "renderLeash", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nme_EntityLiving, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canRenderName", + modifiers : 96, + accessLevel : 2, + parameterTypes : [nme_EntityLivingBase], + returnType : $rt_booleancls(), + callable : null + }, { + name : "doRender", + modifiers : 96, + accessLevel : 3, + parameterTypes : [nme_EntityLivingBase, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canRenderName", + modifiers : 96, + accessLevel : 2, + parameterTypes : [nme_Entity], + returnType : $rt_booleancls(), + callable : null + }, { + name : "doRender", + modifiers : 96, + accessLevel : 3, + parameterTypes : [nme_Entity, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "shouldRender", + modifiers : 96, + accessLevel : 3, + parameterTypes : [nme_Entity, nmcrc_ICamera, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_booleancls(), + callable : null + }]; + nmu_ChatComponentStyle.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "appendSibling", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_IChatComponent], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "getSiblings", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_List, + callable : null + }, { + name : "appendText", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "setChatStyle", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_ChatStyle], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "getChatStyle", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_ChatStyle, + callable : null + }, { + name : "iterator", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Iterator, + callable : null + }, { + name : "getUnformattedText", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getFormattedText", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "createDeepCopyIterator", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_Iterable], + returnType : ju_Iterator, + callable : null + }, { + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hashCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }]; + nmbp_PropertyHelper.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [jl_String, jl_Class], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getValueClass", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Class, + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hashCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }]; + cgcc_TransformedIterator.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [ju_Iterator], + returnType : $rt_voidcls(), + callable : null + }, { + name : "transform", + modifiers : 1, + accessLevel : 0, + parameterTypes : [jl_Object], + returnType : jl_Object, + callable : null + }, { + name : "hasNext", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "next", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "remove", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmd_BehaviorProjectileDispense.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "dispenseStack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmd_IBlockSource, nmi_ItemStack], + returnType : nmi_ItemStack, + callable : null + }, { + name : "playDispenseSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmd_IBlockSource], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getProjectileEntity", + modifiers : 1, + accessLevel : 2, + parameterTypes : [nmw_World, nmd_IPosition], + returnType : nme_IProjectile, + callable : null + }, { + name : "func_82498_a", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "func_82500_b", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }]; + nmb_BlockStoneSlab.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "bootstrapStates", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getItemDropped", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmbs_IBlockState, nlev_EaglercraftRandom, $rt_intcls()], + returnType : nmi_Item, + callable : null + }, { + name : "getItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : nmi_Item, + callable : null + }, { + name : "getUnlocalizedName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : jl_String, + callable : null + }, { + name : "getVariantProperty", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmbp_IProperty, + callable : null + }, { + name : "getVariant", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : jl_Object, + callable : null + }, { + name : "getSubBlocks", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_Item, nmc_CreativeTabs, ju_List], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getStateFromMeta", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmbs_IBlockState, + callable : null + }, { + name : "getMetaFromState", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmbs_IBlockState], + returnType : $rt_intcls(), + callable : null + }, { + name : "createBlockState", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmbs_BlockState, + callable : null + }, { + name : "damageDropped", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmbs_IBlockState], + returnType : $rt_intcls(), + callable : null + }, { + name : "getMapColor", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmbs_IBlockState], + returnType : nmbm_MapColor, + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + cgcc_AbstractIterator.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "computeNext", + modifiers : 1, + accessLevel : 2, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "endOfData", + modifiers : 4, + accessLevel : 2, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "hasNext", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "tryToComputeNext", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "next", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "peek", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }]; + jt_DateFormatElement$BaseTimezone.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ju_Locale], + returnType : $rt_voidcls(), + callable : null + }, { + name : "parse", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, ju_Calendar, jt_ParsePosition], + returnType : $rt_voidcls(), + callable : null + }, { + name : "match", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jt_DateFormatElement$TrieNode, jl_String, jt_ParsePosition], + returnType : ju_TimeZone, + callable : null + }, { + name : "prepareTrie", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "prepareIdTrie", + modifiers : 512, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hashCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }]; + nmb_BlockBreakable.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmbm_Material, $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmbm_Material, $rt_booleancls(), nmbm_MapColor], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isOpaqueCube", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "shouldSideBeRendered", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, nmu_EnumFacing], + returnType : $rt_booleancls(), + callable : null + }]; jur_LeafSet.$meta.methods = [ { name : "", @@ -81837,34 +83538,309 @@ returnType : $rt_booleancls(), callable : null }]; - cgcc_ImmutableMapEntry.$meta.methods = [ + ju_HashMap$AbstractMapIterator.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 0, - parameterTypes : [jl_Object, jl_Object], + parameterTypes : [ju_HashMap], returnType : $rt_voidcls(), callable : null }, { + name : "hasNext", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "checkConcurrentMod", + modifiers : 4, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "makeNext", + modifiers : 4, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "remove", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcg_FontRenderer.$meta.methods = [ + { name : "", modifiers : 0, - accessLevel : 0, - parameterTypes : [cgcc_ImmutableMapEntry], + accessLevel : 3, + parameterTypes : [nmcs_GameSettings, nmu_ResourceLocation, nmcrt_TextureManager, $rt_booleancls()], returnType : $rt_voidcls(), callable : null }, { - name : "getNextInKeyBucket", - modifiers : 1, - accessLevel : 0, - parameterTypes : [], - returnType : cgcc_ImmutableMapEntry, + name : "onResourceManagerReload", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcr_IResourceManager], + returnType : $rt_voidcls(), callable : null }, { - name : "getNextInValueBucket", - modifiers : 1, + name : "readFontTexture", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readGlyphSizes", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_181559_a", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_charcls(), $rt_booleancls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "renderDefaultChar", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_intcls(), $rt_booleancls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getUnicodePageLocation", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_intcls()], + returnType : nmu_ResourceLocation, + callable : null + }, { + name : "loadGlyphTexture", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderUnicodeChar", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_charcls(), $rt_booleancls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "drawStringWithShadow", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, $rt_floatcls(), $rt_floatcls(), $rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "drawString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "drawString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, $rt_floatcls(), $rt_floatcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "bidiReorder", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String], + returnType : jl_String, + callable : null + }, { + name : "resetStyles", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderStringAtPos", + modifiers : 0, + accessLevel : 2, + parameterTypes : [jl_String, $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderStringAligned", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "renderString", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_floatcls(), $rt_floatcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "getStringWidth", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_intcls(), + callable : null + }, { + name : "getCharWidth", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_charcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "getCharWidthFloat", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_charcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "trimStringToWidth", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, $rt_intcls()], + returnType : jl_String, + callable : null + }, { + name : "trimStringToWidth", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, $rt_intcls(), $rt_booleancls()], + returnType : jl_String, + callable : null + }, { + name : "trimStringNewline", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String], + returnType : jl_String, + callable : null + }, { + name : "drawSplitString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderSplitString", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "splitStringWidth", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "setUnicodeFlag", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getUnicodeFlag", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setBidiFlag", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "listFormattedStringToWidth", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, $rt_intcls()], + returnType : ju_List, + callable : null + }, { + name : "wrapFormattedStringToWidth", + modifiers : 0, + accessLevel : 0, + parameterTypes : [jl_String, $rt_intcls(), $rt_intcls()], + returnType : jl_String, + callable : null + }, { + name : "sizeStringToWidth", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "isFormatColor", + modifiers : 512, + accessLevel : 1, + parameterTypes : [$rt_charcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isFormatSpecial", + modifiers : 512, + accessLevel : 1, + parameterTypes : [$rt_charcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getFormatFromString", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : jl_String, + callable : null + }, { + name : "getBidiFlag", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getColorCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_charcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "", + modifiers : 512, accessLevel : 0, parameterTypes : [], - returnType : cgcc_ImmutableMapEntry, + returnType : $rt_voidcls(), callable : null }]; nmcg_Gui.$meta.methods = [ @@ -81960,848 +83936,6 @@ returnType : $rt_voidcls(), callable : null }]; - cgcc_FluentIterable.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [jl_Iterable], - returnType : $rt_voidcls(), - callable : null - }, { - name : "from", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_Iterable], - returnType : cgcc_FluentIterable, - callable : null - }, { - name : "from", - modifiers : 640, - accessLevel : 3, - parameterTypes : [cgcc_FluentIterable], - returnType : cgcc_FluentIterable, - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "size", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "contains", - modifiers : 4, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "cycle", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_FluentIterable, - callable : null - }, { - name : "filter", - modifiers : 4, - accessLevel : 3, - parameterTypes : [cgcb_Predicate], - returnType : cgcc_FluentIterable, - callable : null - }, { - name : "filter", - modifiers : 4, - accessLevel : 3, - parameterTypes : [jl_Class], - returnType : cgcc_FluentIterable, - callable : null - }, { - name : "anyMatch", - modifiers : 4, - accessLevel : 3, - parameterTypes : [cgcb_Predicate], - returnType : $rt_booleancls(), - callable : null - }, { - name : "allMatch", - modifiers : 4, - accessLevel : 3, - parameterTypes : [cgcb_Predicate], - returnType : $rt_booleancls(), - callable : null - }, { - name : "firstMatch", - modifiers : 4, - accessLevel : 3, - parameterTypes : [cgcb_Predicate], - returnType : cgcb_Optional, - callable : null - }, { - name : "transform", - modifiers : 4, - accessLevel : 3, - parameterTypes : [cgcb_Function], - returnType : cgcc_FluentIterable, - callable : null - }, { - name : "transformAndConcat", - modifiers : 0, - accessLevel : 3, - parameterTypes : [cgcb_Function], - returnType : cgcc_FluentIterable, - callable : null - }, { - name : "first", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : cgcb_Optional, - callable : null - }, { - name : "last", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : cgcb_Optional, - callable : null - }, { - name : "skip", - modifiers : 4, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : cgcc_FluentIterable, - callable : null - }, { - name : "limit", - modifiers : 4, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : cgcc_FluentIterable, - callable : null - }, { - name : "isEmpty", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "toList", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "toSortedList", - modifiers : 4, - accessLevel : 3, - parameterTypes : [ju_Comparator], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "toSet", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : cgcc_ImmutableSet, - callable : null - }, { - name : "toSortedSet", - modifiers : 4, - accessLevel : 3, - parameterTypes : [ju_Comparator], - returnType : cgcc_ImmutableSortedSet, - callable : null - }, { - name : "toMap", - modifiers : 4, - accessLevel : 3, - parameterTypes : [cgcb_Function], - returnType : cgcc_ImmutableMap, - callable : null - }, { - name : "index", - modifiers : 4, - accessLevel : 3, - parameterTypes : [cgcb_Function], - returnType : cgcc_ImmutableListMultimap, - callable : null - }, { - name : "uniqueIndex", - modifiers : 4, - accessLevel : 3, - parameterTypes : [cgcb_Function], - returnType : cgcc_ImmutableMap, - callable : null - }, { - name : "toArray", - modifiers : 4, - accessLevel : 3, - parameterTypes : [jl_Class], - returnType : $rt_arraycls(jl_Object), - callable : null - }, { - name : "copyInto", - modifiers : 4, - accessLevel : 3, - parameterTypes : [ju_Collection], - returnType : ju_Collection, - callable : null - }, { - name : "get", - modifiers : 4, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : jl_Object, - callable : null - }]; - jur_AbstractSet.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jur_AbstractSet], - returnType : $rt_voidcls(), - callable : null - }, { - name : "matches", - modifiers : 1, - accessLevel : 3, - parameterTypes : [$rt_intcls(), jl_CharSequence, jur_MatchResultImpl], - returnType : $rt_intcls(), - callable : null - }, { - name : "find", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), jl_CharSequence, jur_MatchResultImpl], - returnType : $rt_intcls(), - callable : null - }, { - name : "findBack", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), jl_CharSequence, jur_MatchResultImpl], - returnType : $rt_intcls(), - callable : null - }, { - name : "hasConsumed", - modifiers : 1, - accessLevel : 3, - parameterTypes : [jur_MatchResultImpl], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getName", - modifiers : 1, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "setType", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getType", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getQualifiedName", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getNext", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jur_AbstractSet, - callable : null - }, { - name : "setNext", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jur_AbstractSet], - returnType : $rt_voidcls(), - callable : null - }, { - name : "first", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jur_AbstractSet], - returnType : $rt_booleancls(), - callable : null - }, { - name : "processBackRefReplacement", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jur_JointSet, - callable : null - }, { - name : "processSecondPass", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrt_AbstractTexture.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setBlurMipmapDirect", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setBlurMipmapDirect0", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_booleancls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setBlurMipmap", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "restoreLastBlurMipmap", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getGlTextureId", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "deleteGlTexture", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - jl_ReflectiveOperationException.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, jl_Throwable], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Throwable], - returnType : $rt_voidcls(), - callable : null - }]; - nmbp_PropertyHelper.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [jl_String, jl_Class], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getValueClass", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Class, - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "equals", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hashCode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }]; - nmee_EntityWeatherEffect.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }]; - nmc_CommandBase.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getRequiredPermissionLevel", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getCommandAliases", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_List, - callable : null - }, { - name : "canCommandSenderUseCommand", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmc_ICommandSender], - returnType : $rt_booleancls(), - callable : null - }, { - name : "addTabCompletionOptions", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmc_ICommandSender, $rt_arraycls(jl_String), nmu_BlockPos], - returnType : ju_List, - callable : null - }, { - name : "parseInt", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_intcls(), - callable : null - }, { - name : "parseInt", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "parseInt", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String, $rt_intcls(), $rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "parseLong", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_longcls(), - callable : null - }, { - name : "parseLong", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String, $rt_longcls(), $rt_longcls()], - returnType : $rt_longcls(), - callable : null - }, { - name : "parseBlockPos", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmc_ICommandSender, $rt_arraycls(jl_String), $rt_intcls(), $rt_booleancls()], - returnType : nmu_BlockPos, - callable : null - }, { - name : "parseDouble", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_doublecls(), - callable : null - }, { - name : "parseDouble", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String, $rt_doublecls()], - returnType : $rt_doublecls(), - callable : null - }, { - name : "parseDouble", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String, $rt_doublecls(), $rt_doublecls()], - returnType : $rt_doublecls(), - callable : null - }, { - name : "parseBoolean", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getCommandSenderAsPlayer", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmc_ICommandSender], - returnType : nmep_EntityPlayerMP, - callable : null - }, { - name : "getPlayer", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmc_ICommandSender, jl_String], - returnType : nmep_EntityPlayerMP, - callable : null - }, { - name : "func_175768_b", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmc_ICommandSender, jl_String], - returnType : nme_Entity, - callable : null - }, { - name : "getEntity", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmc_ICommandSender, jl_String, jl_Class], - returnType : nme_Entity, - callable : null - }, { - name : "func_175763_c", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmc_ICommandSender, jl_String], - returnType : ju_List, - callable : null - }, { - name : "getPlayerName", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmc_ICommandSender, jl_String], - returnType : jl_String, - callable : null - }, { - name : "getEntityName", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmc_ICommandSender, jl_String], - returnType : jl_String, - callable : null - }, { - name : "getChatComponentFromNthArg", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmc_ICommandSender, $rt_arraycls(jl_String), $rt_intcls()], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "getChatComponentFromNthArg", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmc_ICommandSender, $rt_arraycls(jl_String), $rt_intcls(), $rt_booleancls()], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "buildString", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_arraycls(jl_String), $rt_intcls()], - returnType : jl_String, - callable : null - }, { - name : "parseCoordinate", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), jl_String, $rt_booleancls()], - returnType : nmc_CommandBase$CoordinateArg, - callable : null - }, { - name : "parseCoordinate", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), jl_String, $rt_intcls(), $rt_intcls(), $rt_booleancls()], - returnType : nmc_CommandBase$CoordinateArg, - callable : null - }, { - name : "parseDouble", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), jl_String, $rt_booleancls()], - returnType : $rt_doublecls(), - callable : null - }, { - name : "parseDouble", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), jl_String, $rt_intcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_doublecls(), - callable : null - }, { - name : "getItemByText", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmc_ICommandSender, jl_String], - returnType : nmi_Item, - callable : null - }, { - name : "getBlockByText", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmc_ICommandSender, jl_String], - returnType : nmb_Block, - callable : null - }, { - name : "joinNiceString", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_arraycls(jl_Object)], - returnType : jl_String, - callable : null - }, { - name : "join", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_List], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "joinNiceStringFromCollection", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_Collection], - returnType : jl_String, - callable : null - }, { - name : "func_175771_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_arraycls(jl_String), $rt_intcls(), nmu_BlockPos], - returnType : ju_List, - callable : null - }, { - name : "func_181043_b", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_arraycls(jl_String), $rt_intcls(), nmu_BlockPos], - returnType : ju_List, - callable : null - }, { - name : "doesStringStartWith", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String, jl_String], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getListOfStringsMatchingLastWord", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_arraycls(jl_String), $rt_arraycls(jl_String)], - returnType : ju_List, - callable : null - }, { - name : "getListOfStringsMatchingLastWord", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_arraycls(jl_String), ju_Collection], - returnType : ju_List, - callable : null - }, { - name : "isUsernameIndex", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_arraycls(jl_String), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "notifyOperators", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmc_ICommandSender, nmc_ICommand, jl_String, $rt_arraycls(jl_Object)], - returnType : $rt_voidcls(), - callable : null - }, { - name : "notifyOperators", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmc_ICommandSender, nmc_ICommand, $rt_intcls(), jl_String, $rt_arraycls(jl_Object)], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setAdminCommander", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmc_IAdminCommand], - returnType : $rt_voidcls(), - callable : null - }, { - name : "compareTo", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmc_ICommand], - returnType : $rt_intcls(), - callable : null - }, { - name : "compareTo", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_intcls(), - callable : null - }]; - nmeaa_BaseAttribute.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmeaa_IAttribute, jl_String, $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getAttributeUnlocalizedName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDefaultValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_doublecls(), - callable : null - }, { - name : "getShouldWatch", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setShouldWatch", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : nmeaa_BaseAttribute, - callable : null - }, { - name : "func_180372_d", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmeaa_IAttribute, - callable : null - }, { - name : "hashCode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "equals", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }]; nmcre_Render.$meta.methods = [ { name : "", @@ -82944,211 +84078,36 @@ returnType : $rt_voidcls(), callable : null }]; - jl_Throwable.$meta.methods = [ + ju_IllegalFormatException.$meta.methods = [ { - name : "fakeInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [jl_String, jl_Throwable, $rt_booleancls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { name : "", modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, jl_Throwable, $rt_booleancls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "fakeInit", - modifiers : 0, - accessLevel : 3, + accessLevel : 0, parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { name : "", modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "fakeInit", - modifiers : 0, - accessLevel : 3, + accessLevel : 0, parameterTypes : [jl_String], returnType : $rt_voidcls(), callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "fakeInit", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, jl_Throwable], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, jl_Throwable], - returnType : $rt_voidcls(), - callable : null - }, { - name : "fakeInit", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Throwable], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_Throwable], - returnType : $rt_voidcls(), - callable : null - }, { - name : "fillInStackTrace", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Throwable, - callable : null - }, { - name : "getMessage", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getLocalizedMessage", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getCause", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Throwable, - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "initCause", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Throwable], - returnType : jl_Throwable, - callable : null - }, { - name : "printStackTrace", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "printStackTrace", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ji_PrintStream], - returnType : $rt_voidcls(), - callable : null - }, { - name : "printStackTrace", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ji_PrintWriter], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getStackTrace", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(jl_StackTraceElement), - callable : null - }, { - name : "setStackTrace", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_arraycls(jl_StackTraceElement)], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSuppressed", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(jl_Throwable), - callable : null - }, { - name : "addSuppressed", - modifiers : 4, - accessLevel : 3, - parameterTypes : [jl_Throwable], - returnType : $rt_voidcls(), - callable : null }]; - nmbs_BlockStateBase.$meta.methods = [ + nmb_BlockRotatedPillar.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 3, - parameterTypes : [], + accessLevel : 2, + parameterTypes : [nmbm_Material], returnType : $rt_voidcls(), callable : null }, { - name : "cycleProperty", + name : "", modifiers : 0, - accessLevel : 3, - parameterTypes : [nmbp_IProperty], - returnType : nmbs_IBlockState, - callable : null - }, { - name : "cyclePropertyValue", - modifiers : 512, accessLevel : 2, - parameterTypes : [ju_Collection, jl_Object], - returnType : jl_Object, - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getBlockId", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getMetadata", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), + parameterTypes : [nmbm_Material, nmbm_MapColor], + returnType : $rt_voidcls(), callable : null }, { name : "", @@ -83158,331 +84117,150 @@ returnType : $rt_voidcls(), callable : null }]; - jl_Number.$meta.methods = [ + nmb_BlockRailBase.$meta.methods = [ { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "intValue", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "longValue", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_longcls(), - callable : null - }, { - name : "floatValue", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "doubleValue", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_doublecls(), - callable : null - }, { - name : "byteValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_bytecls(), - callable : null - }, { - name : "shortValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_shortcls(), - callable : null - }]; - nmn_NBTBase$NBTPrimitive.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getLong", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_longcls(), - callable : null - }, { - name : "getInt", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getShort", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_shortcls(), - callable : null - }, { - name : "getByte", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_bytecls(), - callable : null - }, { - name : "getDouble", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_doublecls(), - callable : null - }, { - name : "getFloat", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }]; - jt_DateFormatElement$BaseTimezone.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_Locale], - returnType : $rt_voidcls(), - callable : null - }, { - name : "parse", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, ju_Calendar, jt_ParsePosition], - returnType : $rt_voidcls(), - callable : null - }, { - name : "match", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jt_DateFormatElement$TrieNode, jl_String, jt_ParsePosition], - returnType : ju_TimeZone, - callable : null - }, { - name : "prepareTrie", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "prepareIdTrie", + name : "isRailBlock", modifiers : 512, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "equals", - modifiers : 0, accessLevel : 3, - parameterTypes : [jl_Object], + parameterTypes : [nmw_World, nmu_BlockPos], returnType : $rt_booleancls(), callable : null }, { - name : "hashCode", + name : "isRailBlock", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmbs_IBlockState], + returnType : $rt_booleancls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getCollisionBoundingBox", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], + returnType : nmu_AxisAlignedBB, + callable : null + }, { + name : "isOpaqueCube", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "collisionRayTrace", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmu_Vec3, nmu_Vec3], + returnType : nmu_MovingObjectPosition, + callable : null + }, { + name : "setBlockBoundsBasedOnState", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isFullCube", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "canPlaceBlockAt", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onBlockAdded", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onNeighborBlockChange", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmb_Block], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onNeighborChangedInternal", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmb_Block], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_176564_a", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, $rt_booleancls()], + returnType : nmbs_IBlockState, + callable : null + }, { + name : "getMobilityFlag", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_intcls(), callable : null - }]; - cgcb_CharMatcher$FastMatcher.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null }, { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "precomputed", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : cgcb_CharMatcher, - callable : null - }, { - name : "negate", + name : "getBlockLayer", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : cgcb_CharMatcher, + returnType : nmu_EnumWorldBlockLayer, callable : null }, { - name : "apply", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }]; - nmn_JsonToNBT$Any.$meta.methods = [ - { - name : "", + name : "breakBlock", modifiers : 0, - accessLevel : 0, - parameterTypes : [], + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState], returnType : $rt_voidcls(), callable : null }, { - name : "parse", + name : "getShapeProperty", modifiers : 1, accessLevel : 3, parameterTypes : [], - returnType : nmn_NBTBase, + returnType : nmbp_IProperty, callable : null }]; - jl_Exception.$meta.methods = [ + jnc_UnmappableCharacterException.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [], + parameterTypes : [$rt_intcls()], returnType : $rt_voidcls(), callable : null }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, jl_Throwable], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Throwable], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrd_BaseMetadataSectionSerializer.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - cgcc_Tables$AbstractCell.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "equals", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hashCode", + name : "getLength", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_intcls(), callable : null }, { - name : "toString", + name : "getMessage", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : jl_String, callable : null }]; - jl_NoSuchMethodException.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }]; - ji_UncheckedIOException.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ji_IOException], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, ji_IOException], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrbm_ModelBlockDefinition$MissingVariantException.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcrbm_ModelBlockDefinition], - returnType : $rt_voidcls(), - callable : null - }]; - ju_EmptyStackException.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; jnc_MalformedInputException.$meta.methods = [ { name : "", @@ -83515,15 +84293,65 @@ returnType : $rt_voidcls(), callable : null }]; - nlevoed_DebugFramebufferView$NoDataException.$meta.methods = [ + ju_EmptyStackException.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 1, + accessLevel : 3, parameterTypes : [], returnType : $rt_voidcls(), callable : null }]; + ji_UncheckedIOException.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ji_IOException], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, ji_IOException], + returnType : $rt_voidcls(), + callable : null + }]; + jnc_BufferUnderflowException.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcrbm_ModelBlockDefinition$MissingVariantException.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcrbm_ModelBlockDefinition], + returnType : $rt_voidcls(), + callable : null + }]; + jl_NoSuchMethodException.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }]; jnc_BufferOverflowException.$meta.methods = [ { name : "", @@ -83533,61 +84361,15 @@ returnType : $rt_voidcls(), callable : null }]; - jnc_UnmappableCharacterException.$meta.methods = [ + nlevoed_DebugFramebufferView$NoDataException.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getLength", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getMessage", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }]; - jnc_BufferUnderflowException.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, + accessLevel : 1, parameterTypes : [], returnType : $rt_voidcls(), callable : null }]; - jl_Class$MethodSignature.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [jl_String, $rt_arraycls(jl_Class), jl_Class], - returnType : $rt_voidcls(), - callable : null - }, { - name : "equals", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hashCode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }]; nmw_ChunkCoordIntPair.$meta.methods = [ { name : "", @@ -83681,177 +84463,28 @@ returnType : jl_String, callable : null }]; - nmb_BlockLeavesBase.$meta.methods = [ + jl_Class$MethodSignature.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 2, - parameterTypes : [nmbm_Material, $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isOpaqueCube", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "shouldSideBeRendered", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, nmu_EnumFacing], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setLightOpacity", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmb_Block, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "restoreLightOpacity", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmb_Block], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmb_BlockSlab.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmbm_Material], + parameterTypes : [jl_String, $rt_arraycls(jl_Class), jl_Class], returnType : $rt_voidcls(), callable : null }, { - name : "bootstrapStates", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canSilkHarvest", + name : "equals", modifiers : 0, - accessLevel : 2, - parameterTypes : [], + accessLevel : 3, + parameterTypes : [jl_Object], returnType : $rt_booleancls(), callable : null }, { - name : "setBlockBoundsBasedOnState", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setBlockBoundsForItemRender", + name : "hashCode", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addCollisionBoxesToList", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmu_AxisAlignedBB, ju_List, nme_Entity], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isOpaqueCube", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onBlockPlaced", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmu_EnumFacing, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_intcls(), nme_EntityLivingBase], - returnType : nmbs_IBlockState, - callable : null - }, { - name : "quantityDropped", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlev_EaglercraftRandom], returnType : $rt_intcls(), callable : null - }, { - name : "isFullCube", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "shouldSideBeRendered", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, nmu_EnumFacing], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isSlab", - modifiers : 512, - accessLevel : 2, - parameterTypes : [nmb_Block], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getUnlocalizedName", - modifiers : 1, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : jl_String, - callable : null - }, { - name : "getDamageValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : $rt_intcls(), - callable : null - }, { - name : "isDouble", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getVariantProperty", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : nmbp_IProperty, - callable : null - }, { - name : "getVariant", - modifiers : 1, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : jl_Object, - callable : null - }, { - name : "onBlockActivated", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmep_EntityPlayer, nmu_EnumFacing, $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null }]; otcit_DateTimeZone.$meta.methods = [ { @@ -83960,38 +84593,6 @@ returnType : jtz_ZoneRules, callable : null }]; - nmwg_MapGenBase.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "generate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwc_IChunkProvider, nmw_World, $rt_intcls(), $rt_intcls(), nmwc_ChunkPrimer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "recursiveGenerate", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), nmwc_ChunkPrimer], - returnType : $rt_voidcls(), - callable : null - }]; - jnc_CharacterCodingException.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; cgcb_CharMatcher.$meta.methods = [ { name : "showCharacter", @@ -84288,165 +84889,376 @@ returnType : $rt_voidcls(), callable : null }]; - nmcrbm_ItemModelGenerator$Span.$meta.methods = [ + nmwg_MapGenBase.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [nmcrbm_ItemModelGenerator$SpanFacing, $rt_intcls(), $rt_intcls()], + parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { - name : "func_178382_a", + name : "generate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwc_IChunkProvider, nmw_World, $rt_intcls(), $rt_intcls(), nmwc_ChunkPrimer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "recursiveGenerate", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), nmwc_ChunkPrimer], + returnType : $rt_voidcls(), + callable : null + }]; + nmb_BlockSlab.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmbm_Material], + returnType : $rt_voidcls(), + callable : null + }, { + name : "bootstrapStates", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canSilkHarvest", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setBlockBoundsBasedOnState", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setBlockBoundsForItemRender", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addCollisionBoxesToList", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmu_AxisAlignedBB, ju_List, nme_Entity], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isOpaqueCube", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onBlockPlaced", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmu_EnumFacing, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_intcls(), nme_EntityLivingBase], + returnType : nmbs_IBlockState, + callable : null + }, { + name : "quantityDropped", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlev_EaglercraftRandom], + returnType : $rt_intcls(), + callable : null + }, { + name : "isFullCube", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "shouldSideBeRendered", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, nmu_EnumFacing], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isSlab", + modifiers : 512, + accessLevel : 2, + parameterTypes : [nmb_Block], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getUnlocalizedName", + modifiers : 1, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : jl_String, + callable : null + }, { + name : "getDamageValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : $rt_intcls(), + callable : null + }, { + name : "isDouble", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getVariantProperty", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : nmbp_IProperty, + callable : null + }, { + name : "getVariant", + modifiers : 1, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : jl_Object, + callable : null + }, { + name : "onBlockActivated", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmbs_IBlockState, nmep_EntityPlayer, nmu_EnumFacing, $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }]; + jnc_CharacterCodingException.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmb_BlockLeavesBase.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmbm_Material, $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isOpaqueCube", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "shouldSideBeRendered", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_IBlockAccess, nmu_BlockPos, nmu_EnumFacing], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setLightOpacity", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmb_Block, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "restoreLightOpacity", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmb_Block], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmv_VillageDoorInfo.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_BlockPos, $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFaceDirection", + modifiers : 512, + accessLevel : 1, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : nmu_EnumFacing, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_BlockPos, nmu_EnumFacing, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDistanceSquared", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "getDistanceToDoorBlockSq", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_BlockPos], + returnType : $rt_intcls(), + callable : null + }, { + name : "getDistanceToInsideBlockSq", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_BlockPos], + returnType : $rt_intcls(), + callable : null + }, { + name : "func_179850_c", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_BlockPos], + returnType : $rt_booleancls(), + callable : null + }, { + name : "resetDoorOpeningRestrictionCounter", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "incrementDoorOpeningRestrictionCounter", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDoorOpeningRestrictionCounter", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getDoorBlockPos", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_BlockPos, + callable : null + }, { + name : "getInsideBlockPos", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_BlockPos, + callable : null + }, { + name : "getInsideOffsetX", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getInsideOffsetZ", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getInsidePosY", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "func_179849_a", modifiers : 0, accessLevel : 3, parameterTypes : [$rt_intcls()], returnType : $rt_voidcls(), callable : null }, { - name : "func_178383_a", + name : "getIsDetachedFromVillageFlag", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : nmcrbm_ItemModelGenerator$SpanFacing, + returnType : $rt_booleancls(), callable : null }, { - name : "func_178385_b", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "func_178384_c", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "func_178381_d", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }]; - nmp_PotionEffect.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmp_PotionEffect], - returnType : $rt_voidcls(), - callable : null - }, { - name : "combine", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmp_PotionEffect], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getPotionID", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getDuration", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getAmplifier", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "setSplashPotion", + name : "setIsDetachedFromVillageFlag", modifiers : 0, accessLevel : 3, parameterTypes : [$rt_booleancls()], returnType : $rt_voidcls(), callable : null - }, { - name : "getIsAmbient", + }]; + nmcr_SimpleResource.$meta.methods = [ + { + name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getIsShowParticles", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityLivingBase], - returnType : $rt_booleancls(), - callable : null - }, { - name : "deincrementDuration", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "performEffect", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityLivingBase], + parameterTypes : [jl_String, nmu_ResourceLocation, ji_InputStream, ji_InputStream, nmcrd_IMetadataSerializer], returnType : $rt_voidcls(), callable : null }, { - name : "getEffectName", + name : "getResourceLocation", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : jl_String, + returnType : nmu_ResourceLocation, callable : null }, { - name : "hashCode", + name : "getInputStream", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : $rt_intcls(), + returnType : ji_InputStream, callable : null }, { - name : "toString", + name : "hasMetadata", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getMetadata", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmcrd_IMetadataSection, + callable : null + }, { + name : "getResourcePackName", modifiers : 0, accessLevel : 3, parameterTypes : [], @@ -84460,39 +85272,48 @@ returnType : $rt_booleancls(), callable : null }, { - name : "writeCustomPotionEffectToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : nmn_NBTTagCompound, - callable : null - }, { - name : "readCustomPotionEffectFromNBT", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : nmp_PotionEffect, - callable : null - }, { - name : "setPotionDurationMax", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getIsPotionDurationMax", + name : "hashCode", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : $rt_booleancls(), + returnType : $rt_intcls(), + callable : null + }]; + nmcrm_WeightedBakedModel$MyWeighedRandomItem.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcrm_IBakedModel, $rt_intcls()], + returnType : $rt_voidcls(), callable : null }, { - name : "", - modifiers : 512, - accessLevel : 0, + name : "compareTo", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcrm_WeightedBakedModel$MyWeighedRandomItem], + returnType : $rt_intcls(), + callable : null + }, { + name : "getCountQuads", + modifiers : 0, + accessLevel : 2, parameterTypes : [], - returnType : $rt_voidcls(), + returnType : $rt_intcls(), + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "compareTo", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_intcls(), callable : null }]; nmv_Village.$meta.methods = [ @@ -84742,229 +85563,6 @@ returnType : $rt_voidcls(), callable : null }]; - nmcrm_WeightedBakedModel$MyWeighedRandomItem.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcrm_IBakedModel, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "compareTo", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcrm_WeightedBakedModel$MyWeighedRandomItem], - returnType : $rt_intcls(), - callable : null - }, { - name : "getCountQuads", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "compareTo", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_intcls(), - callable : null - }]; - nmv_VillageDoorInfo.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_BlockPos, $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFaceDirection", - modifiers : 512, - accessLevel : 1, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : nmu_EnumFacing, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_BlockPos, nmu_EnumFacing, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDistanceSquared", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "getDistanceToDoorBlockSq", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_BlockPos], - returnType : $rt_intcls(), - callable : null - }, { - name : "getDistanceToInsideBlockSq", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_BlockPos], - returnType : $rt_intcls(), - callable : null - }, { - name : "func_179850_c", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_BlockPos], - returnType : $rt_booleancls(), - callable : null - }, { - name : "resetDoorOpeningRestrictionCounter", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "incrementDoorOpeningRestrictionCounter", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDoorOpeningRestrictionCounter", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getDoorBlockPos", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_BlockPos, - callable : null - }, { - name : "getInsideBlockPos", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_BlockPos, - callable : null - }, { - name : "getInsideOffsetX", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getInsideOffsetZ", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getInsidePosY", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "func_179849_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getIsDetachedFromVillageFlag", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setIsDetachedFromVillageFlag", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmcr_SimpleResource.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, nmu_ResourceLocation, ji_InputStream, ji_InputStream, nmcrd_IMetadataSerializer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getResourceLocation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_ResourceLocation, - callable : null - }, { - name : "getInputStream", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ji_InputStream, - callable : null - }, { - name : "hasMetadata", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getMetadata", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmcrd_IMetadataSection, - callable : null - }, { - name : "getResourcePackName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "equals", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hashCode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }]; nmcrbm_BlockPart.$meta.methods = [ { name : "", @@ -84988,6 +85586,213 @@ returnType : $rt_arraycls($rt_floatcls()), callable : null }]; + nmp_PotionEffect.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmp_PotionEffect], + returnType : $rt_voidcls(), + callable : null + }, { + name : "combine", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmp_PotionEffect], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getPotionID", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getDuration", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getAmplifier", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "setSplashPotion", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getIsAmbient", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getIsShowParticles", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityLivingBase], + returnType : $rt_booleancls(), + callable : null + }, { + name : "deincrementDuration", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "performEffect", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityLivingBase], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getEffectName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "hashCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "writeCustomPotionEffectToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : nmn_NBTTagCompound, + callable : null + }, { + name : "readCustomPotionEffectFromNBT", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : nmp_PotionEffect, + callable : null + }, { + name : "setPotionDurationMax", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getIsPotionDurationMax", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcrbm_ItemModelGenerator$Span.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcrbm_ItemModelGenerator$SpanFacing, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178382_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178383_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmcrbm_ItemModelGenerator$SpanFacing, + callable : null + }, { + name : "func_178385_b", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "func_178384_c", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "func_178381_d", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }]; nmcg_ChatLine.$meta.methods = [ { name : "", @@ -85018,261 +85823,6 @@ returnType : $rt_intcls(), callable : null }]; - nmu_ChatComponentScore.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getObjective", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "setValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getUnformattedTextForChat", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "createCopy", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_ChatComponentScore, - callable : null - }, { - name : "equals", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "createCopy", - modifiers : 96, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_IChatComponent, - callable : null - }]; - nmcrm_SimpleBakedModel.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_List, ju_List, $rt_booleancls(), $rt_booleancls(), nlevm_EaglerTextureAtlasSprite, nmcrbm_ItemCameraTransforms], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFaceQuads", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_EnumFacing], - returnType : ju_List, - callable : null - }, { - name : "getGeneralQuads", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_List, - callable : null - }, { - name : "isAmbientOcclusion", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isGui3d", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isBuiltInRenderer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getParticleTexture", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nlevm_EaglerTextureAtlasSprite, - callable : null - }, { - name : "getItemCameraTransforms", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmcrbm_ItemCameraTransforms, - callable : null - }]; - nmnps_S44PacketWorldBorder$Action.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmnps_S44PacketWorldBorder$Action), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmnps_S44PacketWorldBorder$Action, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - cgcc_LinkedListMultimap$ValueForKeyIterator.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [cgcc_LinkedListMultimap, jl_Object], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [cgcc_LinkedListMultimap, jl_Object, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "hasNext", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "next", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "hasPrevious", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "previous", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "nextIndex", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "previousIndex", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "remove", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "set", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_voidcls(), - callable : null - }, { - name : "add", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_voidcls(), - callable : null - }]; - cgcb_Splitter$5.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [cgcb_Splitter, jl_CharSequence], - returnType : $rt_voidcls(), - callable : null - }, { - name : "iterator", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Iterator, - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }]; jl_StringBuilder.$meta.methods = [ { name : "", @@ -85891,6 +86441,115 @@ returnType : jl_Appendable, callable : null }]; + nmcrm_SimpleBakedModel.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ju_List, ju_List, $rt_booleancls(), $rt_booleancls(), nlevm_EaglerTextureAtlasSprite, nmcrbm_ItemCameraTransforms], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFaceQuads", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_EnumFacing], + returnType : ju_List, + callable : null + }, { + name : "getGeneralQuads", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_List, + callable : null + }, { + name : "isAmbientOcclusion", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isGui3d", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isBuiltInRenderer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getParticleTexture", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nlevm_EaglerTextureAtlasSprite, + callable : null + }, { + name : "getItemCameraTransforms", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmcrbm_ItemCameraTransforms, + callable : null + }]; + nmu_ChatComponentSelector.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSelector", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getUnformattedTextForChat", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "createCopy", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_ChatComponentSelector, + callable : null + }, { + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "createCopy", + modifiers : 96, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_IChatComponent, + callable : null + }]; nlevi_EnumServerRateLimit.$meta.methods = [ { name : "values", @@ -85913,6 +86572,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevi_EnumServerRateLimit), + callable : null }, { name : "", modifiers : 512, @@ -85921,97 +86587,166 @@ returnType : $rt_voidcls(), callable : null }]; - nmcrc_ChunkCompileTaskGenerator.$meta.methods = [ + nmnps_S44PacketWorldBorder$Action.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmnps_S44PacketWorldBorder$Action), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmnps_S44PacketWorldBorder$Action, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmnps_S44PacketWorldBorder$Action), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + cgcb_Splitter$5.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [cgcb_Splitter, jl_CharSequence], + returnType : $rt_voidcls(), + callable : null + }, { + name : "iterator", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Iterator, + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }]; + cgcc_DenseImmutableTable$RowMap.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [cgcc_DenseImmutableTable], + returnType : $rt_voidcls(), + callable : null + }, { + name : "keyToIndex", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : cgcc_ImmutableMap, + callable : null + }, { + name : "getValue", + modifiers : 0, + accessLevel : 0, + parameterTypes : [$rt_intcls()], + returnType : ju_Map, + callable : null + }, { + name : "isPartialView", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getValue", + modifiers : 96, + accessLevel : 0, + parameterTypes : [$rt_intcls()], + returnType : jl_Object, + callable : null + }]; + nmu_ChatComponentScore.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [nmcrc_RenderChunk, nmcrc_ChunkCompileTaskGenerator$Type], + parameterTypes : [jl_String, jl_String], returnType : $rt_voidcls(), callable : null }, { - name : "getStatus", + name : "getName", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : nmcrc_ChunkCompileTaskGenerator$Status, + returnType : jl_String, callable : null }, { - name : "getRenderChunk", + name : "getObjective", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : nmcrc_RenderChunk, + returnType : jl_String, callable : null }, { - name : "getCompiledChunk", + name : "setValue", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : nmcrc_CompiledChunk, - callable : null - }, { - name : "setCompiledChunk", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcrc_CompiledChunk], + parameterTypes : [jl_String], returnType : $rt_voidcls(), callable : null }, { - name : "getRegionRenderCacheBuilder", + name : "getUnformattedTextForChat", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : nmcr_RegionRenderCacheBuilder, + returnType : jl_String, callable : null }, { - name : "setRegionRenderCacheBuilder", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcr_RegionRenderCacheBuilder], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setStatus", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcrc_ChunkCompileTaskGenerator$Status], - returnType : $rt_voidcls(), - callable : null - }, { - name : "finish", + name : "createCopy", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : $rt_voidcls(), + returnType : nmu_ChatComponentScore, callable : null }, { - name : "addFinishRunnable", + name : "equals", modifiers : 0, accessLevel : 3, - parameterTypes : [jl_Runnable], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getType", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmcrc_ChunkCompileTaskGenerator$Type, - callable : null - }, { - name : "isFinished", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], + parameterTypes : [jl_Object], returnType : $rt_booleancls(), callable : null }, { - name : "canExecuteYet", + name : "toString", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : $rt_booleancls(), + returnType : jl_String, + callable : null + }, { + name : "createCopy", + modifiers : 96, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_IChatComponent, callable : null }]; nmep_EntityRabbit$EnumMoveType.$meta.methods = [ @@ -86064,6 +86799,13 @@ parameterTypes : [], returnType : $rt_intcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmep_EntityRabbit$EnumMoveType), + callable : null }, { name : "", modifiers : 512, @@ -86072,92 +86814,148 @@ returnType : $rt_voidcls(), callable : null }]; - cgcc_DenseImmutableTable$RowMap.$meta.methods = [ + cgcc_LinkedListMultimap$ValueForKeyIterator.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 1, - parameterTypes : [cgcc_DenseImmutableTable], + accessLevel : 0, + parameterTypes : [cgcc_LinkedListMultimap, jl_Object], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [cgcc_LinkedListMultimap, jl_Object, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "hasNext", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "next", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "hasPrevious", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "previous", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "nextIndex", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "previousIndex", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "remove", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "set", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_voidcls(), + callable : null + }, { + name : "add", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_voidcls(), + callable : null + }]; + cgcc_DenseImmutableTable$ImmutableArrayMap.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [$rt_intcls()], returnType : $rt_voidcls(), callable : null }, { name : "keyToIndex", - modifiers : 0, + modifiers : 1, accessLevel : 0, parameterTypes : [], returnType : cgcc_ImmutableMap, callable : null }, { - name : "getValue", + name : "isFull", modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_intcls()], - returnType : ju_Map, - callable : null - }, { - name : "isPartialView", - modifiers : 0, - accessLevel : 0, + accessLevel : 1, parameterTypes : [], returnType : $rt_booleancls(), callable : null }, { - name : "getValue", - modifiers : 96, + name : "getKey", + modifiers : 0, accessLevel : 0, parameterTypes : [$rt_intcls()], returnType : jl_Object, callable : null - }]; - nmu_ChatComponentSelector.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), + }, { + name : "getValue", + modifiers : 1, + accessLevel : 0, + parameterTypes : [$rt_intcls()], + returnType : jl_Object, callable : null }, { - name : "getSelector", + name : "createKeySet", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : cgcc_ImmutableSet, + callable : null + }, { + name : "size", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : jl_String, + returnType : $rt_intcls(), callable : null }, { - name : "getUnformattedTextForChat", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "createCopy", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_ChatComponentSelector, - callable : null - }, { - name : "equals", + name : "get", modifiers : 0, accessLevel : 3, parameterTypes : [jl_Object], - returnType : $rt_booleancls(), + returnType : jl_Object, callable : null }, { - name : "toString", + name : "createEntrySet", modifiers : 0, - accessLevel : 3, + accessLevel : 0, parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "createCopy", - modifiers : 96, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_IChatComponent, + returnType : cgcc_ImmutableSet, callable : null }]; jl_AbstractStringBuilder.$meta.methods = [ @@ -86589,71 +87387,6 @@ returnType : $rt_intcls(), callable : null }]; - cgcc_DenseImmutableTable$ImmutableArrayMap.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "keyToIndex", - modifiers : 1, - accessLevel : 0, - parameterTypes : [], - returnType : cgcc_ImmutableMap, - callable : null - }, { - name : "isFull", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getKey", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_intcls()], - returnType : jl_Object, - callable : null - }, { - name : "getValue", - modifiers : 1, - accessLevel : 0, - parameterTypes : [$rt_intcls()], - returnType : jl_Object, - callable : null - }, { - name : "createKeySet", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : cgcc_ImmutableSet, - callable : null - }, { - name : "size", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "get", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : jl_Object, - callable : null - }, { - name : "createEntrySet", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : cgcc_ImmutableSet, - callable : null - }]; cgcc_HashBiMap$EntrySet$1$MapEntry.$meta.methods = [ { name : "", @@ -86684,6 +87417,99 @@ returnType : jl_Object, callable : null }]; + nmcrc_ChunkCompileTaskGenerator.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcrc_RenderChunk, nmcrc_ChunkCompileTaskGenerator$Type], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getStatus", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmcrc_ChunkCompileTaskGenerator$Status, + callable : null + }, { + name : "getRenderChunk", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmcrc_RenderChunk, + callable : null + }, { + name : "getCompiledChunk", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmcrc_CompiledChunk, + callable : null + }, { + name : "setCompiledChunk", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcrc_CompiledChunk], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getRegionRenderCacheBuilder", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmcr_RegionRenderCacheBuilder, + callable : null + }, { + name : "setRegionRenderCacheBuilder", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcr_RegionRenderCacheBuilder], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setStatus", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcrc_ChunkCompileTaskGenerator$Status], + returnType : $rt_voidcls(), + callable : null + }, { + name : "finish", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addFinishRunnable", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Runnable], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getType", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmcrc_ChunkCompileTaskGenerator$Type, + callable : null + }, { + name : "isFinished", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "canExecuteYet", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; nmcn_NetHandlerPlayClient.$meta.methods = [ { name : "", @@ -87512,6 +88338,1767 @@ returnType : $rt_voidcls(), callable : null }]; + nmeb_EntityDragonPart.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_IEntityMultiPart, jl_String, $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canBeCollidedWith", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "attackEntityFrom", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource, $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isEntityEqual", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_booleancls(), + callable : null + }]; + nmei_EntityFireworkRocket.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isInRangeToRenderDist", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setVelocity", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "handleStatusUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_bytecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getBrightness", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getBrightnessForRender", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "canAttackWithItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + nmem_EntitySlime.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setSlimeSize", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSlimeSize", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getParticleType", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmu_EnumParticleTypes, + callable : null + }, { + name : "getJumpSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "alterSquishAmount", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getJumpDelay", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "createInstance", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmem_EntitySlime, + callable : null + }, { + name : "onDataWatcherUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setDead", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyEntityCollision", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onCollideWithPlayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175451_e", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nme_EntityLivingBase], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getEyeHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "canDamagePlayer", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getAttackStrength", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getHurtSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDeathSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDropItem", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmi_Item, + callable : null + }, { + name : "getCanSpawnHere", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getSoundVolume", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getVerticalFaceSpeed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "makesSoundOnJump", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "makesSoundOnLand", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "jump", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onInitialSpawn", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_DifficultyInstance, nme_IEntityLivingData], + returnType : nme_IEntityLivingData, + callable : null + }]; + nmi_AnimalChest.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_IChatComponent, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmem_EntityCaveSpider.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyEntityAttributes", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "attackEntityAsMob", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onInitialSpawn", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_DifficultyInstance, nme_IEntityLivingData], + returnType : nme_IEntityLivingData, + callable : null + }, { + name : "getEyeHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }]; + nmep_EntityWitherSkull.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nme_EntityLivingBase, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getMotionFactor", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isBurning", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getExplosionResistance", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_Explosion, nmw_World, nmu_BlockPos, nmbs_IBlockState], + returnType : $rt_floatcls(), + callable : null + }, { + name : "onImpact", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_MovingObjectPosition], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canBeCollidedWith", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "attackEntityFrom", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource, $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isInvulnerable", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setInvulnerable", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmei_EntityTNTPrimed.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nme_EntityLivingBase], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canTriggerWalking", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "canBeCollidedWith", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "explode", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getTntPlacedBy", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nme_EntityLivingBase, + callable : null + }, { + name : "getEyeHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "renderDynamicLightsEaglerAt", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmem_EntityCreeper.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyEntityAttributes", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getMaxFallHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "fall", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getHurtSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDeathSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "onDeath", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource], + returnType : $rt_voidcls(), + callable : null + }, { + name : "attackEntityAsMob", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getPowered", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getCreeperFlashIntensity", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getDropItem", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmi_Item, + callable : null + }, { + name : "getCreeperState", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "setCreeperState", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onStruckByLightning", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmee_EntityLightningBolt], + returnType : $rt_voidcls(), + callable : null + }, { + name : "interact", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "explode", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "hasIgnited", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "ignite", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isAIEnabled", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_175493_co", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderDynamicLightsEaglerAt", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmei_EntityMinecartTNT.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getMinecartType", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmei_EntityMinecart$EnumMinecartType, + callable : null + }, { + name : "getDefaultDisplayTile", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmbs_IBlockState, + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "attackEntityFrom", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource, $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "killMinecart", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource], + returnType : $rt_voidcls(), + callable : null + }, { + name : "explodeCart", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "fall", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onActivatorRailPass", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "handleStatusUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_bytecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "ignite", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFuseTicks", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "isIgnited", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getExplosionResistance", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_Explosion, nmw_World, nmu_BlockPos, nmbs_IBlockState], + returnType : $rt_floatcls(), + callable : null + }, { + name : "verifyExplosion", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_Explosion, nmw_World, nmu_BlockPos, nmbs_IBlockState, $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderDynamicLightsEaglerAt", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmea_EntityMinecartMobSpawner.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getMinecartType", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmei_EntityMinecart$EnumMinecartType, + callable : null + }, { + name : "getDefaultDisplayTile", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmbs_IBlockState, + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "handleStatusUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_bytecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_98039_d", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmt_MobSpawnerBaseLogic, + callable : null + }]; + nmei_EntityItem.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canTriggerWalking", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "searchForOtherItemsNearby", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "combineItems", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmei_EntityItem], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setAgeToCreativeDespawnTime", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "handleWaterMovement", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "dealFireDamage", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "attackEntityFrom", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource, $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onCollideWithPlayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "canAttackWithItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "travelToDimension", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getEntityItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmi_ItemStack, + callable : null + }, { + name : "setEntityItemStack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getOwner", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "setOwner", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getThrower", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "setThrower", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getAge", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "setDefaultPickupDelay", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setNoPickupDelay", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setInfinitePickupDelay", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setPickupDelay", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "cannotPickup", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setNoDespawn", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_174870_v", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderDynamicLightsEaglerAt", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmei_EntityEnderCrystal.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canTriggerWalking", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canBeCollidedWith", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "attackEntityFrom", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource, $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }]; + nmep_EntityLargeFireball.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nme_EntityLivingBase, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onImpact", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_MovingObjectPosition], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }]; + nmei_EntityBoat.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canTriggerWalking", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getCollisionBox", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : nmu_AxisAlignedBB, + callable : null + }, { + name : "getCollisionBoundingBox", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_AxisAlignedBB, + callable : null + }, { + name : "canBePushed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getMountedYOffset", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_doublecls(), + callable : null + }, { + name : "attackEntityFrom", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource, $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "performHurtAnimation", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canBeCollidedWith", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setPositionAndRotation2", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setVelocity", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateRiderPosition", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "interactFirst", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "updateFallState", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_doublecls(), $rt_booleancls(), nmb_Block, nmu_BlockPos], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setDamageTaken", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDamageTaken", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "setTimeSinceHit", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getTimeSinceHit", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "setForwardDirection", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getForwardDirection", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "setIsBoatEmpty", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmei_EntityXPOrb.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canTriggerWalking", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getBrightnessForRender", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "handleWaterMovement", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "dealFireDamage", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "attackEntityFrom", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource, $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onCollideWithPlayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getXpValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getTextureByXP", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getXPSplit", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "canAttackWithItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "renderDynamicLightsEaglerAt", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmem_EntityPigZombie.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setRevengeTarget", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityLivingBase], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyEntityAI", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyEntityAttributes", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateAITasks", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getCanSpawnHere", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isNotColliding", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "attackEntityFrom", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource, $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "becomeAngryAt", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nme_Entity], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isAngry", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getLivingSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getHurtSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDeathSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "dropFewItems", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_booleancls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "interact", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "addRandomDrop", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setEquipmentBasedOnDifficulty", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_DifficultyInstance], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onInitialSpawn", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_DifficultyInstance, nme_IEntityLivingData], + returnType : nme_IEntityLivingData, + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; nmem_EntityEnderman.$meta.methods = [ { name : "", @@ -87682,6 +90269,4150 @@ returnType : $rt_voidcls(), callable : null }]; + nmep_EntityEgg.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nme_EntityLivingBase], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onImpact", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_MovingObjectPosition], + returnType : $rt_voidcls(), + callable : null + }]; + nmei_EntityMinecartFurnace.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getMinecartType", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmei_EntityMinecart$EnumMinecartType, + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getMaximumSpeed", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_doublecls(), + callable : null + }, { + name : "killMinecart", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_180460_a", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_BlockPos, nmbs_IBlockState], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyDrag", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "interactFirst", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isMinecartPowered", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setMinecartPowered", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDefaultDisplayTile", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmbs_IBlockState, + callable : null + }]; + nmep_EntitySnowball.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nme_EntityLivingBase], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onImpact", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_MovingObjectPosition], + returnType : $rt_voidcls(), + callable : null + }]; + nmei_EntityMinecartEmpty.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "interactFirst", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onActivatorRailPass", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getMinecartType", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmei_EntityMinecart$EnumMinecartType, + callable : null + }]; + nme_EntityMinecartCommandBlock.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getMinecartType", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmei_EntityMinecart$EnumMinecartType, + callable : null + }, { + name : "getDefaultDisplayTile", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmbs_IBlockState, + callable : null + }, { + name : "getCommandBlockLogic", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmcs_CommandBlockLogic, + callable : null + }, { + name : "onActivatorRailPass", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "interactFirst", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onDataWatcherUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmei_EntityItemFrame.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getCollisionBorderSize", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "attackEntityFrom", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource, $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getWidthPixels", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getHeightPixels", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "isInRangeToRenderDist", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onBroken", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_voidcls(), + callable : null + }, { + name : "dropItemOrSelf", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity, $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "removeFrameFromMap", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDisplayedItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmi_ItemStack, + callable : null + }, { + name : "setDisplayedItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setDisplayedItemWithUpdate", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmi_ItemStack, $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getRotation", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "setItemRotation", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_174865_a", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "interactFirst", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_174866_q", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "renderDynamicLightsEaglerAt", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmei_EntityEnderEye.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isInRangeToRenderDist", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "moveTowards", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_BlockPos], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setVelocity", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getBrightness", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getBrightnessForRender", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "canAttackWithItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + nmei_EntityFallingBlock.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmbs_IBlockState], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canTriggerWalking", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canBeCollidedWith", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "fall", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getWorldObj", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmw_World, + callable : null + }, { + name : "setHurtEntities", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canRenderOnFire", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "addEntityCrashInfo", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmc_CrashReportCategory], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getBlock", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmbs_IBlockState, + callable : null + }]; + nmei_EntityPainting.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, nmu_EnumFacing, jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getWidthPixels", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getHeightPixels", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "onBroken", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setLocationAndAngles", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setPositionAndRotation2", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmep_EntitySmallFireball.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nme_EntityLivingBase, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onImpact", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_MovingObjectPosition], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canBeCollidedWith", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "attackEntityFrom", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource, $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }]; + nmei_EntityArmorStand.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isServerWorld", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getHeldItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmi_ItemStack, + callable : null + }, { + name : "getEquipmentInSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "getCurrentArmor", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "setCurrentItemOrArmor", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmi_ItemStack), + callable : null + }, { + name : "replaceItemInInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writePoseToNBT", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readPoseFromNBT", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : nmn_NBTTagCompound, + callable : null + }, { + name : "canBePushed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "collideWithEntity", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nme_Entity], + returnType : $rt_voidcls(), + callable : null + }, { + name : "collideWithNearbyEntities", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "interactAt", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer, nmu_Vec3], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_175422_a", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmep_EntityPlayer, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "attackEntityFrom", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource, $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isInRangeToRenderDist", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "playParticles", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "damageArmorStand", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "dropBlock", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "dropContents", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_110146_f", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_floatcls(), $rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getEyeHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "moveEntityWithHeading", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_181550_a", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updatePotionMetadata", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setInvisible", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isChild", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onKillCommand", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isImmuneToExplosions", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setSmall", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isSmall", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setNoGravity", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "hasNoGravity", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setShowArms", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getShowArms", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setNoBasePlate", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "hasNoBasePlate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_181027_m", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_181026_s", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setHeadRotation", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_Rotations], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setBodyRotation", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_Rotations], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setLeftArmRotation", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_Rotations], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setRightArmRotation", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_Rotations], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setLeftLegRotation", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_Rotations], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setRightLegRotation", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_Rotations], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getHeadRotation", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_Rotations, + callable : null + }, { + name : "getBodyRotation", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_Rotations, + callable : null + }, { + name : "getLeftArmRotation", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_Rotations, + callable : null + }, { + name : "getRightArmRotation", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_Rotations, + callable : null + }, { + name : "getLeftLegRotation", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_Rotations, + callable : null + }, { + name : "getRightLegRotation", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_Rotations, + callable : null + }, { + name : "canBeCollidedWith", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nme_EntityLeashKnot.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateFacingWithBoundingBox", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getWidthPixels", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getHeightPixels", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getEyeHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "isInRangeToRenderDist", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onBroken", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeToNBTOptional", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_booleancls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "interactFirst", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onValidSurface", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "createKnot", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : nme_EntityLeashKnot, + callable : null + }, { + name : "getKnotForPosition", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : nme_EntityLeashKnot, + callable : null + }]; + nmep_EntitySheep$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmep_EntitySheep], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canInteractWith", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }]; + nmep_EntityArrow.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nme_EntityLivingBase, nme_EntityLivingBase, $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nme_EntityLivingBase, $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setThrowableHeading", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setPositionAndRotation2", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setVelocity", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onCollideWithPlayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canTriggerWalking", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setDamage", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDamage", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_doublecls(), + callable : null + }, { + name : "setKnockbackStrength", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canAttackWithItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getEyeHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "setIsCritical", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getIsCritical", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + nmem_EntityGiantZombie.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getEyeHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "applyEntityAttributes", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getBlockPathWeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_BlockPos], + returnType : $rt_floatcls(), + callable : null + }]; + nmei_EntityEnderPearl.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nme_EntityLivingBase], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onImpact", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_MovingObjectPosition], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmei_EntityExpBottle.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nme_EntityLivingBase], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getGravityVelocity", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getVelocity", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getInaccuracy", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "onImpact", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_MovingObjectPosition], + returnType : $rt_voidcls(), + callable : null + }]; + nmep_EntityPotion.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nme_EntityLivingBase, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nme_EntityLivingBase, nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getGravityVelocity", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getVelocity", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getInaccuracy", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "setPotionDamage", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getPotionDamage", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "onImpact", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_MovingObjectPosition], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }]; + nmem_EntitySpider.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getMountedYOffset", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_doublecls(), + callable : null + }, { + name : "getNewNavigator", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World], + returnType : nmp_PathNavigate, + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyEntityAttributes", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getLivingSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getHurtSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDeathSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "playStepSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_BlockPos, nmb_Block], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDropItem", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmi_Item, + callable : null + }, { + name : "dropFewItems", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_booleancls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isOnLadder", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setInWeb", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getCreatureAttribute", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nme_EnumCreatureAttribute, + callable : null + }, { + name : "isPotionApplicable", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmp_PotionEffect], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isBesideClimbableBlock", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setBesideClimbableBlock", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onInitialSpawn", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_DifficultyInstance, nme_IEntityLivingData], + returnType : nme_IEntityLivingData, + callable : null + }, { + name : "getEyeHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }]; + nmem_EntitySkeleton.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyEntityAttributes", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getLivingSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getHurtSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDeathSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "playStepSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_BlockPos, nmb_Block], + returnType : $rt_voidcls(), + callable : null + }, { + name : "attackEntityAsMob", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getCreatureAttribute", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nme_EnumCreatureAttribute, + callable : null + }, { + name : "onLivingUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateRidden", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onDeath", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDropItem", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmi_Item, + callable : null + }, { + name : "dropFewItems", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_booleancls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addRandomDrop", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setEquipmentBasedOnDifficulty", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_DifficultyInstance], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onInitialSpawn", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_DifficultyInstance, nme_IEntityLivingData], + returnType : nme_IEntityLivingData, + callable : null + }, { + name : "setCombatTask", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "attackEntityWithRangedAttack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityLivingBase, $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSkeletonType", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "setSkeletonType", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setCurrentItemOrArmor", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getEyeHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getYOffset", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_doublecls(), + callable : null + }]; + nmep_EntityThrowable.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isInRangeToRenderDist", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nme_EntityLivingBase], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getVelocity", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getInaccuracy", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "setThrowableHeading", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setVelocity", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getGravityVelocity", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "onImpact", + modifiers : 1, + accessLevel : 2, + parameterTypes : [nmu_MovingObjectPosition], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getThrower", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nme_EntityLivingBase, + callable : null + }]; + nme_EntityHanging.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateFacingWithBoundingBox", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateBoundingBox", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_174858_a", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_intcls()], + returnType : $rt_doublecls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onValidSurface", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "canBeCollidedWith", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hitByEntity", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getHorizontalFacing", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_EnumFacing, + callable : null + }, { + name : "attackEntityFrom", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource, $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "moveEntity", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addVelocity", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getWidthPixels", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getHeightPixels", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "onBroken", + modifiers : 1, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_voidcls(), + callable : null + }, { + name : "shouldSetPosAfterLoading", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setPosition", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getHangingPosition", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_BlockPos, + callable : null + }]; + nmei_EntityMinecart.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_180458_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmei_EntityMinecart$EnumMinecartType], + returnType : nmei_EntityMinecart, + callable : null + }, { + name : "canTriggerWalking", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getCollisionBox", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : nmu_AxisAlignedBB, + callable : null + }, { + name : "getCollisionBoundingBox", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_AxisAlignedBB, + callable : null + }, { + name : "canBePushed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getMountedYOffset", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_doublecls(), + callable : null + }, { + name : "attackEntityFrom", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource, $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "killMinecart", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource], + returnType : $rt_voidcls(), + callable : null + }, { + name : "performHurtAnimation", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canBeCollidedWith", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setDead", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getMaximumSpeed", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_doublecls(), + callable : null + }, { + name : "onActivatorRailPass", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "moveDerailedMinecart", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_180460_a", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_BlockPos, nmbs_IBlockState], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyDrag", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setPosition", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_70495_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : nmu_Vec3, + callable : null + }, { + name : "func_70489_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : nmu_Vec3, + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyEntityCollision", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setPositionAndRotation2", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setVelocity", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setDamage", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDamage", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "setRollingAmplitude", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getRollingAmplitude", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "setRollingDirection", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getRollingDirection", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getMinecartType", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : nmei_EntityMinecart$EnumMinecartType, + callable : null + }, { + name : "getDisplayTile", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmbs_IBlockState, + callable : null + }, { + name : "getDefaultDisplayTile", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmbs_IBlockState, + callable : null + }, { + name : "getDisplayTileOffset", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getDefaultDisplayTileOffset", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "func_174899_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmbs_IBlockState], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setDisplayTileOffset", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "hasDisplayTile", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setHasDisplayTile", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setCustomNameTag", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "hasCustomName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getCustomNameTag", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDisplayName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmep_EntityFireball.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isInRangeToRenderDist", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_doublecls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nme_EntityLivingBase, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getMotionFactor", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "onImpact", + modifiers : 1, + accessLevel : 2, + parameterTypes : [nmu_MovingObjectPosition], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canBeCollidedWith", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getCollisionBorderSize", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "attackEntityFrom", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource, $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getBrightness", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getBrightnessForRender", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_intcls(), + callable : null + }]; + nmem_EntityWitch.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getLivingSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getHurtSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDeathSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "setAggressive", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getAggressive", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "applyEntityAttributes", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onLivingUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "handleStatusUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_bytecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyPotionDamageCalculations", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_DamageSource, $rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "dropFewItems", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_booleancls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "attackEntityWithRangedAttack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityLivingBase, $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getEyeHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmei_EntityMinecartChest.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "killMinecart", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSizeInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getMinecartType", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmei_EntityMinecart$EnumMinecartType, + callable : null + }, { + name : "getDefaultDisplayTile", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmbs_IBlockState, + callable : null + }, { + name : "getDefaultDisplayTileOffset", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getGuiID", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "createContainer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_InventoryPlayer, nmep_EntityPlayer], + returnType : nmi_Container, + callable : null + }]; + nmem_EntityGhast.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isAttacking", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setAttacking", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFireballStrength", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "attackEntityFrom", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource, $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyEntityAttributes", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getLivingSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getHurtSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDeathSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDropItem", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmi_Item, + callable : null + }, { + name : "dropFewItems", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_booleancls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSoundVolume", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getCanSpawnHere", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getMaxSpawnedInChunk", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getEyeHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }]; + nmem_EntityIronGolem.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateAITasks", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyEntityAttributes", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "decreaseAirSupply", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "collideWithEntity", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nme_Entity], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onLivingUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canAttackClass", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Class], + returnType : $rt_booleancls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "attackEntityAsMob", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_booleancls(), + callable : null + }, { + name : "handleStatusUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_bytecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getVillage", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmv_Village, + callable : null + }, { + name : "getAttackTimer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "setHoldingRose", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getHurtSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDeathSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "playStepSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_BlockPos, nmb_Block], + returnType : $rt_voidcls(), + callable : null + }, { + name : "dropFewItems", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_booleancls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getHoldRoseTick", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "isPlayerCreated", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setPlayerCreated", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onDeath", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource], + returnType : $rt_voidcls(), + callable : null + }]; + nmem_EntitySnowman.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyEntityAttributes", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onLivingUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDropItem", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmi_Item, + callable : null + }, { + name : "dropFewItems", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_booleancls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "attackEntityWithRangedAttack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityLivingBase, $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getEyeHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }]; + nmem_EntitySilverfish.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getYOffset", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_doublecls(), + callable : null + }, { + name : "getEyeHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "applyEntityAttributes", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canTriggerWalking", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getLivingSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getHurtSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDeathSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "attackEntityFrom", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource, $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "playStepSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_BlockPos, nmb_Block], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDropItem", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmi_Item, + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getBlockPathWeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_BlockPos], + returnType : $rt_floatcls(), + callable : null + }, { + name : "isValidLightLevel", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getCanSpawnHere", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getCreatureAttribute", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nme_EnumCreatureAttribute, + callable : null + }]; + nmem_EntityBlaze.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyEntityAttributes", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getLivingSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getHurtSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDeathSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getBrightnessForRender", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "getBrightness", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "onLivingUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateAITasks", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "fall", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDropItem", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmi_Item, + callable : null + }, { + name : "isBurning", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "dropFewItems", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_booleancls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_70845_n", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setOnFire", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isValidLightLevel", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "renderDynamicLightsEaglerAt", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmei_EntityMinecartHopper.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getMinecartType", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmei_EntityMinecart$EnumMinecartType, + callable : null + }, { + name : "getDefaultDisplayTile", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmbs_IBlockState, + callable : null + }, { + name : "getDefaultDisplayTileOffset", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getSizeInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "interactFirst", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onActivatorRailPass", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getBlocked", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setBlocked", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getWorld", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmw_World, + callable : null + }, { + name : "getXPos", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_doublecls(), + callable : null + }, { + name : "getYPos", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_doublecls(), + callable : null + }, { + name : "getZPos", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_doublecls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_96112_aD", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "killMinecart", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setTransferTicker", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canTransfer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getGuiID", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "createContainer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_InventoryPlayer, nmep_EntityPlayer], + returnType : nmi_Container, + callable : null + }]; + nmem_EntityEndermite.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getEyeHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "applyEntityAttributes", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canTriggerWalking", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getLivingSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getHurtSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDeathSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "playStepSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_BlockPos, nmb_Block], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDropItem", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmi_Item, + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isSpawnedByPlayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setSpawnedByPlayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onLivingUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isValidLightLevel", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getCanSpawnHere", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getCreatureAttribute", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nme_EnumCreatureAttribute, + callable : null + }]; + nmem_EntityMagmaCube.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyEntityAttributes", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getCanSpawnHere", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isNotColliding", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getTotalArmorValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getBrightnessForRender", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "getBrightness", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getParticleType", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmu_EnumParticleTypes, + callable : null + }, { + name : "createInstance", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmem_EntitySlime, + callable : null + }, { + name : "getDropItem", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmi_Item, + callable : null + }, { + name : "dropFewItems", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_booleancls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isBurning", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getJumpDelay", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "alterSquishAmount", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "jump", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "handleJumpLava", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "fall", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canDamagePlayer", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getAttackStrength", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getJumpSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "makesSoundOnLand", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + nmeb_EntityWither.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getLivingSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getHurtSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDeathSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "onLivingUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateAITasks", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_181033_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmb_Block], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_82206_m", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setInWeb", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getTotalArmorValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "func_82214_u", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_intcls()], + returnType : $rt_doublecls(), + callable : null + }, { + name : "func_82208_v", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_intcls()], + returnType : $rt_doublecls(), + callable : null + }, { + name : "func_82213_w", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_intcls()], + returnType : $rt_doublecls(), + callable : null + }, { + name : "func_82204_b", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "launchWitherSkullToEntity", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_intcls(), nme_EntityLivingBase], + returnType : $rt_voidcls(), + callable : null + }, { + name : "launchWitherSkullToCoords", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_intcls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "attackEntityWithRangedAttack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityLivingBase, $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "attackEntityFrom", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource, $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "dropFewItems", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_booleancls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "despawnEntity", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getBrightnessForRender", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "fall", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addPotionEffect", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmp_PotionEffect], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyEntityAttributes", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_82207_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "func_82210_r", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getInvulTime", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "setInvulTime", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getWatchedTargetId", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "updateWatchedTargetId", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isArmored", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getCreatureAttribute", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nme_EnumCreatureAttribute, + callable : null + }, { + name : "mountEntity", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; nmeb_EntityDragon.$meta.methods = [ { name : "", @@ -88120,5496 +94851,6 @@ returnType : $rt_voidcls(), callable : null }]; - nmem_EntitySilverfish.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getYOffset", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_doublecls(), - callable : null - }, { - name : "getEyeHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "applyEntityAttributes", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canTriggerWalking", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getLivingSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getHurtSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDeathSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "attackEntityFrom", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource, $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "playStepSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_BlockPos, nmb_Block], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDropItem", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmi_Item, - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getBlockPathWeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_BlockPos], - returnType : $rt_floatcls(), - callable : null - }, { - name : "isValidLightLevel", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getCanSpawnHere", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getCreatureAttribute", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nme_EnumCreatureAttribute, - callable : null - }]; - nmei_EntityExpBottle.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nme_EntityLivingBase], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getGravityVelocity", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getVelocity", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getInaccuracy", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "onImpact", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_MovingObjectPosition], - returnType : $rt_voidcls(), - callable : null - }]; - nmei_EntityTNTPrimed.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nme_EntityLivingBase], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canTriggerWalking", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "canBeCollidedWith", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "explode", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getTntPlacedBy", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nme_EntityLivingBase, - callable : null - }, { - name : "getEyeHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "renderDynamicLightsEaglerAt", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmem_EntitySlime.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setSlimeSize", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSlimeSize", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getParticleType", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmu_EnumParticleTypes, - callable : null - }, { - name : "getJumpSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "alterSquishAmount", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getJumpDelay", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "createInstance", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmem_EntitySlime, - callable : null - }, { - name : "onDataWatcherUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setDead", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyEntityCollision", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onCollideWithPlayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175451_e", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nme_EntityLivingBase], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getEyeHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "canDamagePlayer", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getAttackStrength", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getHurtSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDeathSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDropItem", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmi_Item, - callable : null - }, { - name : "getCanSpawnHere", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getSoundVolume", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getVerticalFaceSpeed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "makesSoundOnJump", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "makesSoundOnLand", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "jump", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onInitialSpawn", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_DifficultyInstance, nme_IEntityLivingData], - returnType : nme_IEntityLivingData, - callable : null - }]; - nmem_EntityBlaze.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyEntityAttributes", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getLivingSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getHurtSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDeathSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getBrightnessForRender", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "getBrightness", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "onLivingUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateAITasks", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "fall", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDropItem", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmi_Item, - callable : null - }, { - name : "isBurning", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "dropFewItems", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_booleancls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_70845_n", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setOnFire", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isValidLightLevel", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "renderDynamicLightsEaglerAt", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmem_EntitySkeleton.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyEntityAttributes", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getLivingSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getHurtSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDeathSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "playStepSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_BlockPos, nmb_Block], - returnType : $rt_voidcls(), - callable : null - }, { - name : "attackEntityAsMob", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getCreatureAttribute", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nme_EnumCreatureAttribute, - callable : null - }, { - name : "onLivingUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateRidden", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onDeath", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDropItem", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmi_Item, - callable : null - }, { - name : "dropFewItems", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_booleancls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addRandomDrop", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setEquipmentBasedOnDifficulty", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_DifficultyInstance], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onInitialSpawn", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_DifficultyInstance, nme_IEntityLivingData], - returnType : nme_IEntityLivingData, - callable : null - }, { - name : "setCombatTask", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "attackEntityWithRangedAttack", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityLivingBase, $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSkeletonType", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "setSkeletonType", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setCurrentItemOrArmor", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getEyeHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getYOffset", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_doublecls(), - callable : null - }]; - nmeb_EntityWither.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getLivingSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getHurtSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDeathSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "onLivingUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateAITasks", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_181033_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmb_Block], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_82206_m", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setInWeb", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getTotalArmorValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "func_82214_u", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_intcls()], - returnType : $rt_doublecls(), - callable : null - }, { - name : "func_82208_v", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_intcls()], - returnType : $rt_doublecls(), - callable : null - }, { - name : "func_82213_w", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_intcls()], - returnType : $rt_doublecls(), - callable : null - }, { - name : "func_82204_b", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "launchWitherSkullToEntity", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_intcls(), nme_EntityLivingBase], - returnType : $rt_voidcls(), - callable : null - }, { - name : "launchWitherSkullToCoords", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_intcls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "attackEntityWithRangedAttack", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityLivingBase, $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "attackEntityFrom", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource, $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "dropFewItems", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_booleancls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "despawnEntity", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getBrightnessForRender", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "fall", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addPotionEffect", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmp_PotionEffect], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyEntityAttributes", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_82207_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "func_82210_r", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getInvulTime", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "setInvulTime", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getWatchedTargetId", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "updateWatchedTargetId", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isArmored", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getCreatureAttribute", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nme_EnumCreatureAttribute, - callable : null - }, { - name : "mountEntity", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmem_EntityGiantZombie.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getEyeHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "applyEntityAttributes", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getBlockPathWeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_BlockPos], - returnType : $rt_floatcls(), - callable : null - }]; - nmem_EntityGhast.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isAttacking", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setAttacking", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFireballStrength", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "attackEntityFrom", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource, $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyEntityAttributes", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getLivingSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getHurtSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDeathSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDropItem", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmi_Item, - callable : null - }, { - name : "dropFewItems", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_booleancls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSoundVolume", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getCanSpawnHere", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getMaxSpawnedInChunk", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getEyeHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }]; - nmei_EntityItemFrame.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getCollisionBorderSize", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "attackEntityFrom", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource, $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getWidthPixels", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getHeightPixels", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "isInRangeToRenderDist", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onBroken", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_voidcls(), - callable : null - }, { - name : "dropItemOrSelf", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity, $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "removeFrameFromMap", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDisplayedItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmi_ItemStack, - callable : null - }, { - name : "setDisplayedItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setDisplayedItemWithUpdate", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmi_ItemStack, $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getRotation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "setItemRotation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_174865_a", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "interactFirst", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_174866_q", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "renderDynamicLightsEaglerAt", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmi_AnimalChest.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_IChatComponent, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmei_EntityFallingBlock.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmbs_IBlockState], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canTriggerWalking", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canBeCollidedWith", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "fall", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getWorldObj", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmw_World, - callable : null - }, { - name : "setHurtEntities", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canRenderOnFire", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "addEntityCrashInfo", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmc_CrashReportCategory], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getBlock", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmbs_IBlockState, - callable : null - }]; - nmei_EntityMinecartHopper.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getMinecartType", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmei_EntityMinecart$EnumMinecartType, - callable : null - }, { - name : "getDefaultDisplayTile", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmbs_IBlockState, - callable : null - }, { - name : "getDefaultDisplayTileOffset", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getSizeInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "interactFirst", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onActivatorRailPass", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getBlocked", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setBlocked", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getWorld", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmw_World, - callable : null - }, { - name : "getXPos", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_doublecls(), - callable : null - }, { - name : "getYPos", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_doublecls(), - callable : null - }, { - name : "getZPos", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_doublecls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_96112_aD", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "killMinecart", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setTransferTicker", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canTransfer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getGuiID", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "createContainer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_InventoryPlayer, nmep_EntityPlayer], - returnType : nmi_Container, - callable : null - }]; - nmea_EntityMinecartMobSpawner.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getMinecartType", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmei_EntityMinecart$EnumMinecartType, - callable : null - }, { - name : "getDefaultDisplayTile", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmbs_IBlockState, - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "handleStatusUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_bytecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_98039_d", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmt_MobSpawnerBaseLogic, - callable : null - }]; - nmei_EntityBoat.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canTriggerWalking", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getCollisionBox", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : nmu_AxisAlignedBB, - callable : null - }, { - name : "getCollisionBoundingBox", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_AxisAlignedBB, - callable : null - }, { - name : "canBePushed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getMountedYOffset", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_doublecls(), - callable : null - }, { - name : "attackEntityFrom", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource, $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "performHurtAnimation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canBeCollidedWith", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setPositionAndRotation2", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setVelocity", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateRiderPosition", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "interactFirst", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "updateFallState", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_doublecls(), $rt_booleancls(), nmb_Block, nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setDamageTaken", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDamageTaken", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "setTimeSinceHit", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getTimeSinceHit", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "setForwardDirection", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getForwardDirection", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "setIsBoatEmpty", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmei_EntityEnderPearl.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nme_EntityLivingBase], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onImpact", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_MovingObjectPosition], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nme_EntityMinecartCommandBlock.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getMinecartType", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmei_EntityMinecart$EnumMinecartType, - callable : null - }, { - name : "getDefaultDisplayTile", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmbs_IBlockState, - callable : null - }, { - name : "getCommandBlockLogic", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmcs_CommandBlockLogic, - callable : null - }, { - name : "onActivatorRailPass", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "interactFirst", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onDataWatcherUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmep_EntitySmallFireball.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nme_EntityLivingBase, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onImpact", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_MovingObjectPosition], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canBeCollidedWith", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "attackEntityFrom", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource, $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }]; - nmem_EntityIronGolem.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateAITasks", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyEntityAttributes", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "decreaseAirSupply", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "collideWithEntity", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nme_Entity], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onLivingUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canAttackClass", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Class], - returnType : $rt_booleancls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "attackEntityAsMob", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null - }, { - name : "handleStatusUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_bytecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getVillage", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmv_Village, - callable : null - }, { - name : "getAttackTimer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "setHoldingRose", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getHurtSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDeathSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "playStepSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_BlockPos, nmb_Block], - returnType : $rt_voidcls(), - callable : null - }, { - name : "dropFewItems", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_booleancls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getHoldRoseTick", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "isPlayerCreated", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setPlayerCreated", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onDeath", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource], - returnType : $rt_voidcls(), - callable : null - }]; - nmem_EntitySpider.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getMountedYOffset", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_doublecls(), - callable : null - }, { - name : "getNewNavigator", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World], - returnType : nmp_PathNavigate, - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyEntityAttributes", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getLivingSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getHurtSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDeathSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "playStepSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_BlockPos, nmb_Block], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDropItem", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmi_Item, - callable : null - }, { - name : "dropFewItems", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_booleancls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isOnLadder", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setInWeb", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getCreatureAttribute", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nme_EnumCreatureAttribute, - callable : null - }, { - name : "isPotionApplicable", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmp_PotionEffect], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isBesideClimbableBlock", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setBesideClimbableBlock", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onInitialSpawn", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_DifficultyInstance, nme_IEntityLivingData], - returnType : nme_IEntityLivingData, - callable : null - }, { - name : "getEyeHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }]; - nmei_EntityEnderCrystal.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canTriggerWalking", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canBeCollidedWith", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "attackEntityFrom", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource, $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }]; - nmei_EntityFireworkRocket.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isInRangeToRenderDist", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setVelocity", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "handleStatusUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_bytecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getBrightness", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getBrightnessForRender", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "canAttackWithItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nmei_EntityMinecartTNT.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getMinecartType", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmei_EntityMinecart$EnumMinecartType, - callable : null - }, { - name : "getDefaultDisplayTile", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmbs_IBlockState, - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "attackEntityFrom", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource, $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "killMinecart", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource], - returnType : $rt_voidcls(), - callable : null - }, { - name : "explodeCart", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "fall", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onActivatorRailPass", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "handleStatusUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_bytecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "ignite", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFuseTicks", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "isIgnited", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getExplosionResistance", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_Explosion, nmw_World, nmu_BlockPos, nmbs_IBlockState], - returnType : $rt_floatcls(), - callable : null - }, { - name : "verifyExplosion", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_Explosion, nmw_World, nmu_BlockPos, nmbs_IBlockState, $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderDynamicLightsEaglerAt", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmei_EntityPainting.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, nmu_EnumFacing, jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getWidthPixels", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getHeightPixels", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "onBroken", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setLocationAndAngles", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setPositionAndRotation2", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmei_EntityArmorStand.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isServerWorld", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getHeldItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmi_ItemStack, - callable : null - }, { - name : "getEquipmentInSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "getCurrentArmor", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "setCurrentItemOrArmor", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmi_ItemStack), - callable : null - }, { - name : "replaceItemInInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writePoseToNBT", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readPoseFromNBT", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : nmn_NBTTagCompound, - callable : null - }, { - name : "canBePushed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "collideWithEntity", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nme_Entity], - returnType : $rt_voidcls(), - callable : null - }, { - name : "collideWithNearbyEntities", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "interactAt", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer, nmu_Vec3], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_175422_a", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmep_EntityPlayer, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "attackEntityFrom", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource, $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isInRangeToRenderDist", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "playParticles", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "damageArmorStand", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "dropBlock", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "dropContents", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_110146_f", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_floatcls(), $rt_floatcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getEyeHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "moveEntityWithHeading", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_181550_a", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updatePotionMetadata", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setInvisible", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isChild", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onKillCommand", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isImmuneToExplosions", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setSmall", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isSmall", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setNoGravity", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "hasNoGravity", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setShowArms", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getShowArms", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setNoBasePlate", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "hasNoBasePlate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_181027_m", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_181026_s", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setHeadRotation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_Rotations], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setBodyRotation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_Rotations], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setLeftArmRotation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_Rotations], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setRightArmRotation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_Rotations], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setLeftLegRotation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_Rotations], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setRightLegRotation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_Rotations], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getHeadRotation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_Rotations, - callable : null - }, { - name : "getBodyRotation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_Rotations, - callable : null - }, { - name : "getLeftArmRotation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_Rotations, - callable : null - }, { - name : "getRightArmRotation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_Rotations, - callable : null - }, { - name : "getLeftLegRotation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_Rotations, - callable : null - }, { - name : "getRightLegRotation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_Rotations, - callable : null - }, { - name : "canBeCollidedWith", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmem_EntitySnowman.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyEntityAttributes", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onLivingUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDropItem", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmi_Item, - callable : null - }, { - name : "dropFewItems", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_booleancls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "attackEntityWithRangedAttack", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityLivingBase, $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getEyeHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }]; - nmem_EntityEndermite.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getEyeHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "applyEntityAttributes", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canTriggerWalking", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getLivingSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getHurtSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDeathSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "playStepSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_BlockPos, nmb_Block], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDropItem", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmi_Item, - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isSpawnedByPlayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setSpawnedByPlayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onLivingUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isValidLightLevel", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getCanSpawnHere", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getCreatureAttribute", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nme_EnumCreatureAttribute, - callable : null - }]; - nmem_EntityPigZombie.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setRevengeTarget", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityLivingBase], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyEntityAI", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyEntityAttributes", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateAITasks", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getCanSpawnHere", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isNotColliding", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "attackEntityFrom", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource, $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "becomeAngryAt", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nme_Entity], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isAngry", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getLivingSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getHurtSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDeathSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "dropFewItems", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_booleancls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "interact", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "addRandomDrop", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setEquipmentBasedOnDifficulty", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_DifficultyInstance], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onInitialSpawn", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_DifficultyInstance, nme_IEntityLivingData], - returnType : nme_IEntityLivingData, - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmei_EntityItem.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canTriggerWalking", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "searchForOtherItemsNearby", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "combineItems", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmei_EntityItem], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setAgeToCreativeDespawnTime", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "handleWaterMovement", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "dealFireDamage", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "attackEntityFrom", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource, $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onCollideWithPlayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "canAttackWithItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "travelToDimension", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getEntityItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmi_ItemStack, - callable : null - }, { - name : "setEntityItemStack", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getOwner", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "setOwner", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getThrower", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "setThrower", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getAge", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "setDefaultPickupDelay", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setNoPickupDelay", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setInfinitePickupDelay", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setPickupDelay", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "cannotPickup", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setNoDespawn", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_174870_v", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderDynamicLightsEaglerAt", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmep_EntityLargeFireball.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nme_EntityLivingBase, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onImpact", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_MovingObjectPosition], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }]; - nmei_EntityMinecartChest.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "killMinecart", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSizeInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getMinecartType", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmei_EntityMinecart$EnumMinecartType, - callable : null - }, { - name : "getDefaultDisplayTile", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmbs_IBlockState, - callable : null - }, { - name : "getDefaultDisplayTileOffset", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getGuiID", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "createContainer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_InventoryPlayer, nmep_EntityPlayer], - returnType : nmi_Container, - callable : null - }]; - nmem_EntityCreeper.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyEntityAttributes", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getMaxFallHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "fall", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getHurtSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDeathSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "onDeath", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource], - returnType : $rt_voidcls(), - callable : null - }, { - name : "attackEntityAsMob", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getPowered", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getCreeperFlashIntensity", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getDropItem", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmi_Item, - callable : null - }, { - name : "getCreeperState", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "setCreeperState", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onStruckByLightning", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmee_EntityLightningBolt], - returnType : $rt_voidcls(), - callable : null - }, { - name : "interact", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "explode", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "hasIgnited", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "ignite", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isAIEnabled", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_175493_co", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderDynamicLightsEaglerAt", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmep_EntitySnowball.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nme_EntityLivingBase], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onImpact", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_MovingObjectPosition], - returnType : $rt_voidcls(), - callable : null - }]; - nmei_EntityMinecartEmpty.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "interactFirst", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onActivatorRailPass", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getMinecartType", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmei_EntityMinecart$EnumMinecartType, - callable : null - }]; - nmei_EntityXPOrb.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canTriggerWalking", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getBrightnessForRender", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "handleWaterMovement", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "dealFireDamage", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "attackEntityFrom", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource, $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onCollideWithPlayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getXpValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getTextureByXP", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getXPSplit", - modifiers : 512, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "canAttackWithItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "renderDynamicLightsEaglerAt", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmei_EntityMinecartFurnace.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getMinecartType", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmei_EntityMinecart$EnumMinecartType, - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getMaximumSpeed", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_doublecls(), - callable : null - }, { - name : "killMinecart", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_180460_a", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_BlockPos, nmbs_IBlockState], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyDrag", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "interactFirst", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isMinecartPowered", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setMinecartPowered", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDefaultDisplayTile", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmbs_IBlockState, - callable : null - }]; - nmep_EntityEgg.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nme_EntityLivingBase], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onImpact", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_MovingObjectPosition], - returnType : $rt_voidcls(), - callable : null - }]; - nmei_EntityEnderEye.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isInRangeToRenderDist", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "moveTowards", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setVelocity", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getBrightness", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getBrightnessForRender", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "canAttackWithItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nmep_EntitySheep$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmep_EntitySheep], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canInteractWith", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }]; - nmep_EntityWitherSkull.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nme_EntityLivingBase, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getMotionFactor", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isBurning", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getExplosionResistance", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_Explosion, nmw_World, nmu_BlockPos, nmbs_IBlockState], - returnType : $rt_floatcls(), - callable : null - }, { - name : "onImpact", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_MovingObjectPosition], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canBeCollidedWith", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "attackEntityFrom", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource, $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isInvulnerable", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setInvulnerable", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmep_EntityPotion.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nme_EntityLivingBase, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nme_EntityLivingBase, nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getGravityVelocity", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getVelocity", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getInaccuracy", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "setPotionDamage", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getPotionDamage", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "onImpact", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_MovingObjectPosition], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }]; - nme_EntityLeashKnot.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateFacingWithBoundingBox", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getWidthPixels", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getHeightPixels", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getEyeHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "isInRangeToRenderDist", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onBroken", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeToNBTOptional", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_booleancls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "interactFirst", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onValidSurface", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "createKnot", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : nme_EntityLeashKnot, - callable : null - }, { - name : "getKnotForPosition", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : nme_EntityLeashKnot, - callable : null - }]; - nmem_EntityMagmaCube.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyEntityAttributes", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getCanSpawnHere", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isNotColliding", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getTotalArmorValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getBrightnessForRender", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "getBrightness", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getParticleType", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmu_EnumParticleTypes, - callable : null - }, { - name : "createInstance", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmem_EntitySlime, - callable : null - }, { - name : "getDropItem", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmi_Item, - callable : null - }, { - name : "dropFewItems", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_booleancls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isBurning", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getJumpDelay", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "alterSquishAmount", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "jump", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "handleJumpLava", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "fall", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canDamagePlayer", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getAttackStrength", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getJumpSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "makesSoundOnLand", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nmeb_EntityDragonPart.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_IEntityMultiPart, jl_String, $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canBeCollidedWith", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "attackEntityFrom", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource, $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isEntityEqual", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null - }]; - nmep_EntityArrow.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nme_EntityLivingBase, nme_EntityLivingBase, $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nme_EntityLivingBase, $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setThrowableHeading", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setPositionAndRotation2", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setVelocity", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onCollideWithPlayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canTriggerWalking", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setDamage", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDamage", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_doublecls(), - callable : null - }, { - name : "setKnockbackStrength", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canAttackWithItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getEyeHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "setIsCritical", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getIsCritical", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nmem_EntityCaveSpider.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyEntityAttributes", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "attackEntityAsMob", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onInitialSpawn", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_DifficultyInstance, nme_IEntityLivingData], - returnType : nme_IEntityLivingData, - callable : null - }, { - name : "getEyeHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }]; - nmem_EntityWitch.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getLivingSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getHurtSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDeathSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "setAggressive", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getAggressive", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "applyEntityAttributes", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onLivingUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "handleStatusUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_bytecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyPotionDamageCalculations", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_DamageSource, $rt_floatcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "dropFewItems", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_booleancls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "attackEntityWithRangedAttack", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityLivingBase, $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getEyeHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmep_EntityFireball.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isInRangeToRenderDist", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nme_EntityLivingBase, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getMotionFactor", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "onImpact", - modifiers : 1, - accessLevel : 2, - parameterTypes : [nmu_MovingObjectPosition], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canBeCollidedWith", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getCollisionBorderSize", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "attackEntityFrom", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource, $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getBrightness", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getBrightnessForRender", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_intcls(), - callable : null - }]; - nme_EntityHanging.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateFacingWithBoundingBox", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateBoundingBox", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_174858_a", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_intcls()], - returnType : $rt_doublecls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onValidSurface", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "canBeCollidedWith", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hitByEntity", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getHorizontalFacing", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_EnumFacing, - callable : null - }, { - name : "attackEntityFrom", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource, $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "moveEntity", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addVelocity", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getWidthPixels", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getHeightPixels", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "onBroken", - modifiers : 1, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_voidcls(), - callable : null - }, { - name : "shouldSetPosAfterLoading", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setPosition", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getHangingPosition", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_BlockPos, - callable : null - }]; - nme_EntityFlying.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "fall", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateFallState", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_doublecls(), $rt_booleancls(), nmb_Block, nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }, { - name : "moveEntityWithHeading", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isOnLadder", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; nmei_EntityMinecartContainer.$meta.methods = [ { name : "", @@ -93801,7 +95042,7 @@ returnType : $rt_voidcls(), callable : null }]; - nmei_EntityMinecart.$meta.methods = [ + nme_EntityFlying.$meta.methods = [ { name : "", modifiers : 0, @@ -93810,341 +95051,33 @@ returnType : $rt_voidcls(), callable : null }, { - name : "func_180458_a", - modifiers : 512, + name : "fall", + modifiers : 0, accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmei_EntityMinecart$EnumMinecartType], - returnType : nmei_EntityMinecart, - callable : null - }, { - name : "canTriggerWalking", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], + parameterTypes : [$rt_floatcls(), $rt_floatcls()], returnType : $rt_voidcls(), callable : null }, { - name : "getCollisionBox", + name : "updateFallState", modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : nmu_AxisAlignedBB, + accessLevel : 2, + parameterTypes : [$rt_doublecls(), $rt_booleancls(), nmb_Block, nmu_BlockPos], + returnType : $rt_voidcls(), callable : null }, { - name : "getCollisionBoundingBox", + name : "moveEntityWithHeading", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : nmu_AxisAlignedBB, + parameterTypes : [$rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), callable : null }, { - name : "canBePushed", + name : "isOnLadder", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_booleancls(), callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getMountedYOffset", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_doublecls(), - callable : null - }, { - name : "attackEntityFrom", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource, $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "killMinecart", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource], - returnType : $rt_voidcls(), - callable : null - }, { - name : "performHurtAnimation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canBeCollidedWith", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setDead", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getMaximumSpeed", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_doublecls(), - callable : null - }, { - name : "onActivatorRailPass", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "moveDerailedMinecart", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_180460_a", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_BlockPos, nmbs_IBlockState], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyDrag", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setPosition", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_70495_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : nmu_Vec3, - callable : null - }, { - name : "func_70489_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : nmu_Vec3, - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyEntityCollision", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setPositionAndRotation2", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setVelocity", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setDamage", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDamage", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "setRollingAmplitude", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getRollingAmplitude", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "setRollingDirection", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getRollingDirection", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getMinecartType", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : nmei_EntityMinecart$EnumMinecartType, - callable : null - }, { - name : "getDisplayTile", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmbs_IBlockState, - callable : null - }, { - name : "getDefaultDisplayTile", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmbs_IBlockState, - callable : null - }, { - name : "getDisplayTileOffset", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getDefaultDisplayTileOffset", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "func_174899_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmbs_IBlockState], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setDisplayTileOffset", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "hasDisplayTile", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setHasDisplayTile", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setCustomNameTag", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "hasCustomName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getCustomNameTag", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDisplayName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null }]; nmem_EntityGolem.$meta.methods = [ { @@ -94197,113 +95130,6 @@ returnType : $rt_booleancls(), callable : null }]; - nmep_EntityThrowable.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isInRangeToRenderDist", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nme_EntityLivingBase], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getVelocity", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getInaccuracy", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "setThrowableHeading", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setVelocity", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getGravityVelocity", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "onImpact", - modifiers : 1, - accessLevel : 2, - parameterTypes : [nmu_MovingObjectPosition], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getThrower", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nme_EntityLivingBase, - callable : null - }]; nmep_EntitySquid.$meta.methods = [ { name : "", @@ -94697,472 +95523,6 @@ returnType : $rt_booleancls(), callable : null }]; - nmep_EntityCow.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyEntityAttributes", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getLivingSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getHurtSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDeathSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "playStepSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_BlockPos, nmb_Block], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSoundVolume", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getDropItem", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmi_Item, - callable : null - }, { - name : "dropFewItems", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_booleancls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "interact", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "createChild", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityAgeable], - returnType : nmep_EntityCow, - callable : null - }, { - name : "getEyeHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "createChild", - modifiers : 96, - accessLevel : 3, - parameterTypes : [nme_EntityAgeable], - returnType : nme_EntityAgeable, - callable : null - }]; - nmep_EntityVillager.$meta.methods = [ - { - name : "bootstrap", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setAdditionalAItasks", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onGrowingAdult", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyEntityAttributes", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateAITasks", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "interact", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canDespawn", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getLivingSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getHurtSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDeathSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "setProfession", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getProfession", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "isMating", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setMating", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setPlaying", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isPlaying", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setRevengeTarget", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityLivingBase], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onDeath", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_DamageSource], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setCustomer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getCustomer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmep_EntityPlayer, - callable : null - }, { - name : "isTrading", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getIsWillingToMate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setIsWillingToMate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "useRecipe", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmv_MerchantRecipe], - returnType : $rt_voidcls(), - callable : null - }, { - name : "verifySellingItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getRecipes", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : nmv_MerchantRecipeList, - callable : null - }, { - name : "populateBuyingList", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setRecipes", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmv_MerchantRecipeList], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDisplayName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "getEyeHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "handleStatusUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_bytecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "spawnParticles", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmu_EnumParticleTypes], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onInitialSpawn", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_DifficultyInstance, nme_IEntityLivingData], - returnType : nme_IEntityLivingData, - callable : null - }, { - name : "setLookingForHome", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "createChild", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityAgeable], - returnType : nmep_EntityVillager, - callable : null - }, { - name : "allowLeashing", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onStruckByLightning", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmee_EntityLightningBolt], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getVillagerInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmi_InventoryBasic, - callable : null - }, { - name : "updateEquipmentIfNeeded", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmei_EntityItem], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canVillagerPickupItem", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmi_Item], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_175553_cp", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "canAbondonItems", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_175557_cr", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hasEnoughItems", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isFarmItemInInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "replaceItemInInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }, { - name : "createChild", - modifiers : 96, - accessLevel : 3, - parameterTypes : [nme_EntityAgeable], - returnType : nme_EntityAgeable, - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; nmep_EntityHorse.$meta.methods = [ { name : "", @@ -95949,43 +96309,6 @@ returnType : $rt_voidcls(), callable : null }]; - nmep_EntityMooshroom.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "interact", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "createChild", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityAgeable], - returnType : nmep_EntityMooshroom, - callable : null - }, { - name : "createChild", - modifiers : 96, - accessLevel : 3, - parameterTypes : [nme_EntityAgeable], - returnType : nmep_EntityCow, - callable : null - }, { - name : "createChild", - modifiers : 96, - accessLevel : 3, - parameterTypes : [nme_EntityAgeable], - returnType : nme_EntityAgeable, - callable : null - }]; nmep_EntitySheep.$meta.methods = [ { name : "func_175513_a", @@ -96198,6 +96521,509 @@ returnType : $rt_voidcls(), callable : null }]; + nmep_EntityVillager.$meta.methods = [ + { + name : "bootstrap", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setAdditionalAItasks", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onGrowingAdult", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyEntityAttributes", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateAITasks", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "interact", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canDespawn", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getLivingSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getHurtSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDeathSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "setProfession", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getProfession", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "isMating", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setMating", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setPlaying", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isPlaying", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setRevengeTarget", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityLivingBase], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onDeath", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setCustomer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getCustomer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmep_EntityPlayer, + callable : null + }, { + name : "isTrading", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getIsWillingToMate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setIsWillingToMate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "useRecipe", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmv_MerchantRecipe], + returnType : $rt_voidcls(), + callable : null + }, { + name : "verifySellingItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getRecipes", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : nmv_MerchantRecipeList, + callable : null + }, { + name : "populateBuyingList", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setRecipes", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmv_MerchantRecipeList], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDisplayName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "getEyeHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "handleStatusUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_bytecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "spawnParticles", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmu_EnumParticleTypes], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onInitialSpawn", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_DifficultyInstance, nme_IEntityLivingData], + returnType : nme_IEntityLivingData, + callable : null + }, { + name : "setLookingForHome", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "createChild", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityAgeable], + returnType : nmep_EntityVillager, + callable : null + }, { + name : "allowLeashing", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onStruckByLightning", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmee_EntityLightningBolt], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getVillagerInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmi_InventoryBasic, + callable : null + }, { + name : "updateEquipmentIfNeeded", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmei_EntityItem], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canVillagerPickupItem", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmi_Item], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_175553_cp", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "canAbondonItems", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_175557_cr", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hasEnoughItems", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isFarmItemInInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "replaceItemInInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }, { + name : "createChild", + modifiers : 96, + accessLevel : 3, + parameterTypes : [nme_EntityAgeable], + returnType : nme_EntityAgeable, + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmep_EntityMooshroom.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "interact", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "createChild", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityAgeable], + returnType : nmep_EntityMooshroom, + callable : null + }, { + name : "createChild", + modifiers : 96, + accessLevel : 3, + parameterTypes : [nme_EntityAgeable], + returnType : nmep_EntityCow, + callable : null + }, { + name : "createChild", + modifiers : 96, + accessLevel : 3, + parameterTypes : [nme_EntityAgeable], + returnType : nme_EntityAgeable, + callable : null + }]; + nmep_EntityCow.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyEntityAttributes", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getLivingSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getHurtSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDeathSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "playStepSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_BlockPos, nmb_Block], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSoundVolume", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getDropItem", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmi_Item, + callable : null + }, { + name : "dropFewItems", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_booleancls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "interact", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "createChild", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityAgeable], + returnType : nmep_EntityCow, + callable : null + }, { + name : "getEyeHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "createChild", + modifiers : 96, + accessLevel : 3, + parameterTypes : [nme_EntityAgeable], + returnType : nme_EntityAgeable, + callable : null + }]; nmep_EntityOcelot.$meta.methods = [ { name : "", @@ -96692,6 +97518,155 @@ returnType : nme_EntityAgeable, callable : null }]; + nmep_EntityPig.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyEntityAttributes", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canBeSteered", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getLivingSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getHurtSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDeathSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "playStepSound", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmu_BlockPos, nmb_Block], + returnType : $rt_voidcls(), + callable : null + }, { + name : "interact", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getDropItem", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : nmi_Item, + callable : null + }, { + name : "dropFewItems", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_booleancls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSaddled", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setSaddled", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onStruckByLightning", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmee_EntityLightningBolt], + returnType : $rt_voidcls(), + callable : null + }, { + name : "fall", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "createChild", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_EntityAgeable], + returnType : nmep_EntityPig, + callable : null + }, { + name : "isBreedingItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getAIControlledByPlayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmea_EntityAIControlledByPlayer, + callable : null + }, { + name : "createChild", + modifiers : 96, + accessLevel : 3, + parameterTypes : [nme_EntityAgeable], + returnType : nme_EntityAgeable, + callable : null + }]; nmep_EntityRabbit.$meta.methods = [ { name : "", @@ -96974,155 +97949,6 @@ returnType : nme_EntityAgeable, callable : null }]; - nmep_EntityPig.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyEntityAttributes", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canBeSteered", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getLivingSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getHurtSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getDeathSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "playStepSound", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmu_BlockPos, nmb_Block], - returnType : $rt_voidcls(), - callable : null - }, { - name : "interact", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getDropItem", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : nmi_Item, - callable : null - }, { - name : "dropFewItems", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_booleancls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSaddled", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setSaddled", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onStruckByLightning", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmee_EntityLightningBolt], - returnType : $rt_voidcls(), - callable : null - }, { - name : "fall", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "createChild", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_EntityAgeable], - returnType : nmep_EntityPig, - callable : null - }, { - name : "isBreedingItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getAIControlledByPlayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmea_EntityAIControlledByPlayer, - callable : null - }, { - name : "createChild", - modifiers : 96, - accessLevel : 3, - parameterTypes : [nme_EntityAgeable], - returnType : nme_EntityAgeable, - callable : null - }]; nmep_EntityChicken.$meta.methods = [ { name : "", @@ -97272,120 +98098,6 @@ returnType : nme_EntityAgeable, callable : null }]; - nme_EntityAgeable.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "createChild", - modifiers : 1, - accessLevel : 3, - parameterTypes : [nme_EntityAgeable], - returnType : nme_EntityAgeable, - callable : null - }, { - name : "interact", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "entityInit", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getGrowingAge", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "func_175501_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addGrowth", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setGrowingAge", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeEntityToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readEntityFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onLivingUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onGrowingAdult", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isChild", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setScaleForAge", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setSize", - modifiers : 4, - accessLevel : 2, - parameterTypes : [$rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setScale", - modifiers : 4, - accessLevel : 2, - parameterTypes : [$rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }]; nmep_EntityAnimal.$meta.methods = [ { name : "", @@ -97528,6 +98240,120 @@ returnType : $rt_voidcls(), callable : null }]; + nme_EntityAgeable.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "createChild", + modifiers : 1, + accessLevel : 3, + parameterTypes : [nme_EntityAgeable], + returnType : nme_EntityAgeable, + callable : null + }, { + name : "interact", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "entityInit", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getGrowingAge", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "func_175501_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addGrowth", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setGrowingAge", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeEntityToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readEntityFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onLivingUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onGrowingAdult", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isChild", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setScaleForAge", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setSize", + modifiers : 4, + accessLevel : 2, + parameterTypes : [$rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setScale", + modifiers : 4, + accessLevel : 2, + parameterTypes : [$rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }]; nmep_EntityTameable.$meta.methods = [ { name : "", @@ -97677,381 +98503,6 @@ returnType : nme_Entity, callable : null }]; - nmn_ServerStatusResponse.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getServerDescription", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "setServerDescription", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_IChatComponent], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getPlayerCountData", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmn_ServerStatusResponse$PlayerCountData, - callable : null - }, { - name : "setPlayerCountData", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_ServerStatusResponse$PlayerCountData], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getProtocolVersionInfo", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmn_ServerStatusResponse$MinecraftProtocolVersionIdentifier, - callable : null - }, { - name : "setProtocolVersionInfo", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_ServerStatusResponse$MinecraftProtocolVersionIdentifier], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setFavicon", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFavicon", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }]; - nmcrd_LanguageMetadataSection.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_Collection], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getLanguages", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Collection, - callable : null - }]; - nmcrbm_ItemTransformVec3f.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevv_Vector3f, nlevv_Vector3f, nlevv_Vector3f], - returnType : $rt_voidcls(), - callable : null - }, { - name : "equals", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hashCode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrbm_ItemCameraTransforms.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcrbm_ItemCameraTransforms], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcrbm_ItemTransformVec3f, nmcrbm_ItemTransformVec3f, nmcrbm_ItemTransformVec3f, nmcrbm_ItemTransformVec3f, nmcrbm_ItemTransformVec3f, nmcrbm_ItemTransformVec3f], - returnType : $rt_voidcls(), - callable : null - }, { - name : "applyTransform", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcrbm_ItemCameraTransforms$TransformType], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getTransform", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcrbm_ItemCameraTransforms$TransformType], - returnType : nmcrbm_ItemTransformVec3f, - callable : null - }, { - name : "func_181687_c", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcrbm_ItemCameraTransforms$TransformType], - returnType : $rt_booleancls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmn_ServerStatusResponse$PlayerCountData.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getMaxPlayers", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getOnlinePlayerCount", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getPlayers", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nlevma_GameProfile), - callable : null - }, { - name : "setPlayers", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_arraycls(nlevma_GameProfile)], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrd_AnimationMetadataSection.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_List, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFrameHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getFrameWidth", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getFrameCount", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getFrameTime", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "isInterpolate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getAnimationFrame", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_intcls()], - returnType : nmcrd_AnimationFrame, - callable : null - }, { - name : "getFrameTimeSingle", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "frameHasTime", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getFrameIndex", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "getFrameIndexSet", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Set, - callable : null - }]; - jl_IllegalAccessException.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrd_TextureMetadataSection.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls(), $rt_booleancls(), ju_List], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getTextureBlur", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getTextureClamp", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getListMipmaps", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_List, - callable : null - }]; - nmwg_ChunkProviderSettings$Factory.$meta.methods = [ - { - name : "jsonToFactory", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmwg_ChunkProviderSettings$Factory, - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_177863_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "equals", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hashCode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "func_177864_b", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmwg_ChunkProviderSettings, - callable : null - }]; nmca_SoundHandler$SoundMap.$meta.methods = [ { name : "", @@ -98061,102 +98512,6 @@ returnType : $rt_voidcls(), callable : null }]; - ju_FormatterClosedException.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrd_PackMetadataSection.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_IChatComponent, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getPackDescription", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "getPackFormat", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }]; - nmcrd_FontMetadataSection.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_arraycls($rt_floatcls()), $rt_arraycls($rt_floatcls()), $rt_arraycls($rt_floatcls())], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrbm_BreakingFour.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcrbm_BakedQuad, nlevm_EaglerTextureAtlasSprite], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178217_e", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178216_a", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmu_ChatComponentTranslationFormatException.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_ChatComponentTranslation, jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_ChatComponentTranslation, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_ChatComponentTranslation, jl_Throwable], - returnType : $rt_voidcls(), - callable : null - }]; - nmb_BlockRedstoneTorch$Toggle.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_BlockPos, $rt_longcls()], - returnType : $rt_voidcls(), - callable : null - }]; nmu_ChatStyle.$meta.methods = [ { name : "", @@ -98406,7 +98761,37 @@ returnType : $rt_voidcls(), callable : null }]; - jn_BufferOverflowException.$meta.methods = [ + nmcrd_TextureMetadataSection.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls(), $rt_booleancls(), ju_List], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getTextureBlur", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getTextureClamp", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getListMipmaps", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_List, + callable : null + }]; + nmn_ServerStatusResponse.$meta.methods = [ { name : "", modifiers : 0, @@ -98414,6 +98799,266 @@ parameterTypes : [], returnType : $rt_voidcls(), callable : null + }, { + name : "getServerDescription", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "setServerDescription", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_IChatComponent], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getPlayerCountData", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmn_ServerStatusResponse$PlayerCountData, + callable : null + }, { + name : "setPlayerCountData", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_ServerStatusResponse$PlayerCountData], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getProtocolVersionInfo", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmn_ServerStatusResponse$MinecraftProtocolVersionIdentifier, + callable : null + }, { + name : "setProtocolVersionInfo", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_ServerStatusResponse$MinecraftProtocolVersionIdentifier], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setFavicon", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFavicon", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }]; + nmcrbm_ItemCameraTransforms.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcrbm_ItemCameraTransforms], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcrbm_ItemTransformVec3f, nmcrbm_ItemTransformVec3f, nmcrbm_ItemTransformVec3f, nmcrbm_ItemTransformVec3f, nmcrbm_ItemTransformVec3f, nmcrbm_ItemTransformVec3f], + returnType : $rt_voidcls(), + callable : null + }, { + name : "applyTransform", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcrbm_ItemCameraTransforms$TransformType], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getTransform", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcrbm_ItemCameraTransforms$TransformType], + returnType : nmcrbm_ItemTransformVec3f, + callable : null + }, { + name : "func_181687_c", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcrbm_ItemCameraTransforms$TransformType], + returnType : $rt_booleancls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmn_ServerStatusResponse$MinecraftProtocolVersionIdentifier.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getProtocol", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }]; + nmcrd_AnimationMetadataSection.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ju_List, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFrameHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getFrameWidth", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getFrameCount", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getFrameTime", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "isInterpolate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getAnimationFrame", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_intcls()], + returnType : nmcrd_AnimationFrame, + callable : null + }, { + name : "getFrameTimeSingle", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "frameHasTime", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getFrameIndex", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "getFrameIndexSet", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Set, + callable : null + }]; + nmwg_ChunkProviderSettings$Factory.$meta.methods = [ + { + name : "jsonToFactory", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmwg_ChunkProviderSettings$Factory, + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_177863_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hashCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "func_177864_b", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmwg_ChunkProviderSettings, + callable : null }]; nmcrbm_BlockFaceUV.$meta.methods = [ { @@ -98459,80 +99104,77 @@ returnType : $rt_voidcls(), callable : null }]; - nmn_ServerStatusResponse$MinecraftProtocolVersionIdentifier.$meta.methods = [ + nmcrbm_BreakingFour.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [jl_String, $rt_intcls()], + parameterTypes : [nmcrbm_BakedQuad, nlevm_EaglerTextureAtlasSprite], returnType : $rt_voidcls(), callable : null }, { - name : "getName", + name : "func_178217_e", modifiers : 0, - accessLevel : 3, + accessLevel : 1, parameterTypes : [], - returnType : jl_String, + returnType : $rt_voidcls(), callable : null }, { - name : "getProtocol", + name : "func_178216_a", modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), + accessLevel : 1, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), callable : null }]; - nmw_WorldServerMulti.$meta.methods = [ + nmcrd_LanguageMetadataSection.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [nms_MinecraftServer, nmws_ISaveHandler, $rt_intcls(), nmw_WorldServer, nmp_Profiler], + parameterTypes : [ju_Collection], returnType : $rt_voidcls(), callable : null }, { - name : "saveLevel", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "init", + name : "getLanguages", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : nmw_World, + returnType : ju_Collection, callable : null }]; - nmcr_Language.$meta.methods = [ + nmcrd_FontMetadataSection.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [jl_String, jl_String, jl_String, $rt_booleancls()], + parameterTypes : [$rt_arraycls($rt_floatcls()), $rt_arraycls($rt_floatcls()), $rt_arraycls($rt_floatcls())], + returnType : $rt_voidcls(), + callable : null + }]; + jl_IllegalAccessException.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { - name : "getLanguageCode", + name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : jl_String, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), callable : null - }, { - name : "isBidirectional", + }]; + nmcrbm_ItemTransformVec3f.$meta.methods = [ + { + name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, + parameterTypes : [nlevv_Vector3f, nlevv_Vector3f, nlevv_Vector3f], + returnType : $rt_voidcls(), callable : null }, { name : "equals", @@ -98549,19 +99191,406 @@ returnType : $rt_intcls(), callable : null }, { - name : "compareTo", + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmu_ChatComponentTranslationFormatException.$meta.methods = [ + { + name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [nmcr_Language], + parameterTypes : [nmu_ChatComponentTranslation, jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_ChatComponentTranslation, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_ChatComponentTranslation, jl_Throwable], + returnType : $rt_voidcls(), + callable : null + }]; + nmb_BlockRedstoneTorch$Toggle.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_BlockPos, $rt_longcls()], + returnType : $rt_voidcls(), + callable : null + }]; + ju_FormatterClosedException.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcrd_PackMetadataSection.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_IChatComponent, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getPackDescription", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "getPackFormat", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }]; + jn_BufferOverflowException.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmn_ServerStatusResponse$PlayerCountData.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getMaxPlayers", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], returnType : $rt_intcls(), callable : null }, { - name : "compareTo", - modifiers : 96, + name : "getOnlinePlayerCount", + modifiers : 0, accessLevel : 3, - parameterTypes : [jl_Object], + parameterTypes : [], returnType : $rt_intcls(), callable : null + }, { + name : "getPlayers", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nlevma_GameProfile), + callable : null + }, { + name : "setPlayers", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_arraycls(nlevma_GameProfile)], + returnType : $rt_voidcls(), + callable : null + }]; + nmcg_GuiLockIconButton.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175230_c", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_175229_b", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "drawButton", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmcgs_SpectatorMenu$MoveMenuObject.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178661_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcgs_SpectatorMenu], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSpectatorName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "func_178663_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178662_A_", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + nmcgs_SpectatorMenu$EndSpectatorObject.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178661_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcgs_SpectatorMenu], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSpectatorName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "func_178663_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178662_A_", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + nmcg_GuiOptionSlider.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), nmcs_GameSettings$Options], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), nmcs_GameSettings$Options, $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getHoverState", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_booleancls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "mouseDragged", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "mousePressed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "mouseReleased", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmcre_RenderItem$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmcre_RenderItem, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), nlevv_Matrix4f, $rt_floatcls(), $rt_floatcls(), nmcrm_IBakedModel, nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "draw", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], + returnType : $rt_voidcls(), + callable : null + }]; + nmea_EntityAITasks$EntityAITaskEntry.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmea_EntityAITasks, $rt_intcls(), nmea_EntityAIBase], + returnType : $rt_voidcls(), + callable : null + }]; + nmcrd_AnimationFrame.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "hasNoTime", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getFrameTime", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getFrameIndex", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }]; + nmcre_RenderItem$2.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmcre_RenderItem, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), nlevv_Matrix4f, $rt_floatcls(), $rt_floatcls(), nmcrm_IBakedModel], + returnType : $rt_voidcls(), + callable : null + }, { + name : "draw", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], + returnType : $rt_voidcls(), + callable : null + }]; + nlevoed_ShadersRenderPassFuture.$meta.methods = [ + { + name : "getX", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getY", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getZ", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity, $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_voidcls(), + callable : null + }, { + name : "draw", + modifiers : 1, + accessLevel : 3, + parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], + returnType : $rt_voidcls(), + callable : null + }, { + name : "tmpValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls($rt_floatcls()), + callable : null }]; nmw_WorldServer.$meta.methods = [ { @@ -98980,6 +100009,87 @@ returnType : $rt_voidcls(), callable : null }]; + nmw_WorldServerMulti.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nms_MinecraftServer, nmws_ISaveHandler, $rt_intcls(), nmw_WorldServer, nmp_Profiler], + returnType : $rt_voidcls(), + callable : null + }, { + name : "saveLevel", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "init", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmw_World, + callable : null + }]; + nmcr_Language.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, jl_String, jl_String, $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getLanguageCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "isBidirectional", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hashCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "compareTo", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcr_Language], + returnType : $rt_intcls(), + callable : null + }, { + name : "compareTo", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_intcls(), + callable : null + }]; nmw_World.$meta.methods = [ { name : "", @@ -100508,296 +101618,56 @@ returnType : $rt_booleancls(), callable : null }]; - nmcgs_SpectatorMenu$EndSpectatorObject.$meta.methods = [ + nmei_EntityPainting$EnumArt.$meta.methods = [ { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmei_EntityPainting$EnumArt), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmei_EntityPainting$EnumArt, + callable : null + }, { name : "", modifiers : 0, accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls(), jl_String, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, parameterTypes : [], - returnType : $rt_voidcls(), + returnType : $rt_arraycls(nmei_EntityPainting$EnumArt), callable : null }, { - name : "func_178661_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcgs_SpectatorMenu], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSpectatorName", - modifiers : 0, - accessLevel : 3, + name : "", + modifiers : 512, + accessLevel : 0, parameterTypes : [], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "func_178663_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178662_A_", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nmcg_GuiLockIconButton.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175230_c", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_175229_b", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "drawButton", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], returnType : $rt_voidcls(), callable : null }]; - nmcgs_SpectatorMenu$MoveMenuObject.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178661_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcgs_SpectatorMenu], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSpectatorName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "func_178663_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178662_A_", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nmcrd_AnimationFrame.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "hasNoTime", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getFrameTime", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getFrameIndex", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }]; - nmcre_RenderItem$1.$meta.methods = [ + ju_AbstractList$SubAbstractList$SubAbstractListIterator.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 0, - parameterTypes : [nmcre_RenderItem, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), nlevv_Matrix4f, $rt_floatcls(), $rt_floatcls(), nmcrm_IBakedModel, nmi_ItemStack], + parameterTypes : [ju_ListIterator, ju_AbstractList$SubAbstractList, $rt_intcls(), $rt_intcls()], returnType : $rt_voidcls(), callable : null }, { - name : "draw", + name : "add", modifiers : 0, accessLevel : 3, - parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], - returnType : $rt_voidcls(), - callable : null - }]; - nmcre_RenderItem$2.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmcre_RenderItem, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), nlevv_Matrix4f, $rt_floatcls(), $rt_floatcls(), nmcrm_IBakedModel], - returnType : $rt_voidcls(), - callable : null - }, { - name : "draw", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], - returnType : $rt_voidcls(), - callable : null - }]; - nmea_EntityAITasks$EntityAITaskEntry.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmea_EntityAITasks, $rt_intcls(), nmea_EntityAIBase], - returnType : $rt_voidcls(), - callable : null - }]; - nmcg_GuiOptionSlider.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), nmcs_GameSettings$Options], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), nmcs_GameSettings$Options, $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getHoverState", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_booleancls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "mouseDragged", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "mousePressed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "mouseReleased", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }]; - nlevoed_ShadersRenderPassFuture.$meta.methods = [ - { - name : "getX", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getY", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getZ", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity, $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_voidcls(), - callable : null - }, { - name : "draw", - modifiers : 1, - accessLevel : 3, - parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], - returnType : $rt_voidcls(), - callable : null - }, { - name : "tmpValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls($rt_floatcls()), - callable : null - }]; - cgcc_ImmutableEnumMap$2$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [cgcc_ImmutableEnumMap$2], + parameterTypes : [jl_Object], returnType : $rt_voidcls(), callable : null }, { @@ -100807,20 +101677,106 @@ parameterTypes : [], returnType : $rt_booleancls(), callable : null + }, { + name : "hasPrevious", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null }, { name : "next", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : ju_Map$Entry, + returnType : jl_Object, callable : null }, { - name : "next", - modifiers : 96, + name : "nextIndex", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "previous", + modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : jl_Object, callable : null + }, { + name : "previousIndex", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "remove", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "set", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_voidcls(), + callable : null + }]; + nmcg_GuiLockIconButton$Icon.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmcg_GuiLockIconButton$Icon), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmcg_GuiLockIconButton$Icon, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178910_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "func_178912_b", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmcg_GuiLockIconButton$Icon), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null }]; ju_TreeSet.$meta.methods = [ { @@ -101027,34 +101983,34 @@ returnType : $rt_voidcls(), callable : null }]; - nmei_EntityPainting$EnumArt.$meta.methods = [ + cgcc_ImmutableEnumMap$2$1.$meta.methods = [ { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmei_EntityPainting$EnumArt), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmei_EntityPainting$EnumArt, - callable : null - }, { name : "", modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls(), jl_String, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], + accessLevel : 0, + parameterTypes : [cgcc_ImmutableEnumMap$2], returnType : $rt_voidcls(), callable : null }, { - name : "", - modifiers : 512, - accessLevel : 0, + name : "hasNext", + modifiers : 0, + accessLevel : 3, parameterTypes : [], - returnType : $rt_voidcls(), + returnType : $rt_booleancls(), + callable : null + }, { + name : "next", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Map$Entry, + callable : null + }, { + name : "next", + modifiers : 96, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, callable : null }]; cgcc_DenseImmutableTable$ImmutableArrayMap$1.$meta.methods = [ @@ -101180,6 +102136,22 @@ returnType : $rt_voidcls(), callable : null }]; + nmcrt_TextureClock.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateAnimation", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_arraycls(nlevi_IFramebufferGL)], + returnType : $rt_voidcls(), + callable : null + }]; nmcrt_TextureCompass.$meta.methods = [ { name : "", @@ -101203,254 +102175,6 @@ returnType : $rt_voidcls(), callable : null }]; - ju_AbstractList$SubAbstractList$SubAbstractListIterator.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [ju_ListIterator, ju_AbstractList$SubAbstractList, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "add", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_voidcls(), - callable : null - }, { - name : "hasNext", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hasPrevious", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "next", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "nextIndex", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "previous", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "previousIndex", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "remove", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "set", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_voidcls(), - callable : null - }]; - nmcg_GuiLockIconButton$Icon.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmcg_GuiLockIconButton$Icon), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmcg_GuiLockIconButton$Icon, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178910_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "func_178912_b", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrt_TextureClock.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateAnimation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_arraycls(nlevi_IFramebufferGL)], - returnType : $rt_voidcls(), - callable : null - }]; - nms_ScoreObjective.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nms_Scoreboard, jl_String, nms_IScoreObjectiveCriteria], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getScoreboard", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nms_Scoreboard, - callable : null - }, { - name : "getName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getCriteria", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nms_IScoreObjectiveCriteria, - callable : null - }, { - name : "getDisplayName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "setDisplayName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getRenderType", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nms_IScoreObjectiveCriteria$EnumRenderType, - callable : null - }, { - name : "setRenderType", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nms_IScoreObjectiveCriteria$EnumRenderType], - returnType : $rt_voidcls(), - callable : null - }]; - otcit_DateTimeZoneBuilder$Transition.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_longcls(), otcit_DateTimeZoneBuilder$Transition], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_longcls(), otcit_DateTimeZoneBuilder$Rule, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_longcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getMillis", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_longcls(), - callable : null - }, { - name : "getWallOffset", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getStandardOffset", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getSaveMillis", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "isTransitionFrom", - modifiers : 0, - accessLevel : 3, - parameterTypes : [otcit_DateTimeZoneBuilder$Transition], - returnType : $rt_booleancls(), - callable : null - }]; nmwcs_ExtendedBlockStorage.$meta.methods = [ { name : "", @@ -101586,42 +102310,61 @@ returnType : $rt_voidcls(), callable : null }]; - nlevoedt_TextureClockPBRImpl.$meta.methods = [ + nms_ScoreObjective.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, + parameterTypes : [nms_Scoreboard, jl_String, nms_IScoreObjectiveCriteria], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getScoreboard", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nms_Scoreboard, + callable : null + }, { + name : "getName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getCriteria", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nms_IScoreObjectiveCriteria, + callable : null + }, { + name : "getDisplayName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "setDisplayName", + modifiers : 0, + accessLevel : 3, parameterTypes : [jl_String], returnType : $rt_voidcls(), callable : null }, { - name : "updateAnimationPBR", + name : "getRenderType", modifiers : 0, accessLevel : 3, - parameterTypes : [$rt_arraycls(nlevi_IFramebufferGL), $rt_arraycls(nlevi_IFramebufferGL), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }]; - nlevoedt_TextureCompassPBRImpl.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), + parameterTypes : [], + returnType : nms_IScoreObjectiveCriteria$EnumRenderType, callable : null }, { - name : "updateAnimationPBR", + name : "setRenderType", modifiers : 0, accessLevel : 3, - parameterTypes : [$rt_arraycls(nlevi_IFramebufferGL), $rt_arraycls(nlevi_IFramebufferGL), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateCompassPBR", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_booleancls(), $rt_arraycls(nlevi_IFramebufferGL), $rt_arraycls(nlevi_IFramebufferGL), $rt_intcls()], + parameterTypes : [nms_IScoreObjectiveCriteria$EnumRenderType], returnType : $rt_voidcls(), callable : null }]; @@ -101648,6 +102391,64 @@ returnType : otj_JSObject, callable : null }]; + otcit_DateTimeZoneBuilder$Transition.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [$rt_longcls(), otcit_DateTimeZoneBuilder$Transition], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [$rt_longcls(), otcit_DateTimeZoneBuilder$Rule, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [$rt_longcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getMillis", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_longcls(), + callable : null + }, { + name : "getWallOffset", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getStandardOffset", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getSaveMillis", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "isTransitionFrom", + modifiers : 0, + accessLevel : 3, + parameterTypes : [otcit_DateTimeZoneBuilder$Transition], + returnType : $rt_booleancls(), + callable : null + }]; nmca_SoundList$SoundEntry.$meta.methods = [ { name : "", @@ -101741,12 +102542,90 @@ returnType : $rt_voidcls(), callable : null }]; - ju_LinkedHashMapIterator$ValueIterator.$meta.methods = [ + nlevoedt_TextureCompassPBRImpl.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateAnimationPBR", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_arraycls(nlevi_IFramebufferGL), $rt_arraycls(nlevi_IFramebufferGL), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateCompassPBR", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_booleancls(), $rt_arraycls(nlevi_IFramebufferGL), $rt_arraycls(nlevi_IFramebufferGL), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }]; + nlevoedt_TextureClockPBRImpl.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateAnimationPBR", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_arraycls(nlevi_IFramebufferGL), $rt_arraycls(nlevi_IFramebufferGL), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmcr_StitcherException.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcrt_Stitcher$Holder, jl_String], + returnType : $rt_voidcls(), + callable : null + }]; + nlevf_ListenableFutureTask.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [juc_Callable], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addListener", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Runnable, juc_Executor], + returnType : $rt_voidcls(), + callable : null + }, { + name : "done", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "create", + modifiers : 512, + accessLevel : 3, + parameterTypes : [juc_Callable], + returnType : nlevf_ListenableFutureTask, + callable : null + }]; + ju_IdentityHashMap$ValueIterator.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 0, - parameterTypes : [ju_LinkedHashMap, $rt_booleancls()], + parameterTypes : [ju_IdentityHashMap], returnType : $rt_voidcls(), callable : null }, { @@ -101757,7 +102636,134 @@ returnType : jl_Object, callable : null }]; - nmwgs_MapGenNetherBridge$Start.$meta.methods = [ + nme_EnchantmentData.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Enchantment, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }]; + cgcc_ImmutableMapKeySet$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [cgcc_ImmutableMapKeySet, cgcc_ImmutableList], + returnType : $rt_voidcls(), + callable : null + }, { + name : "get", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : jl_Object, + callable : null + }, { + name : "delegateCollection", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : cgcc_ImmutableCollection, + callable : null + }]; + cgcb_Predicates$IsEqualToPredicate.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_Object], + returnType : $rt_voidcls(), + callable : null + }, { + name : "apply", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hashCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }]; + nmwgs_StructureOceanMonument$StartMonument.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175789_b", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "generateStructure", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175788_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_ChunkCoordIntPair], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_175787_b", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_ChunkCoordIntPair], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }]; + nmwgs_MapGenStronghold$Start.$meta.methods = [ { name : "", modifiers : 0, @@ -101773,7 +102779,7 @@ returnType : $rt_voidcls(), callable : null }]; - nmwgs_MapGenScatteredFeature$Start.$meta.methods = [ + nmwgs_MapGenNetherBridge$Start.$meta.methods = [ { name : "", modifiers : 0, @@ -101833,6 +102839,38 @@ returnType : $rt_voidcls(), callable : null }]; + nmwgs_MapGenScatteredFeature$Start.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }]; + ju_HashMap$ValueIterator.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [ju_HashMap], + returnType : $rt_voidcls(), + callable : null + }, { + name : "next", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }]; nlevi_PlatformWebRTC$LANPeer.$meta.methods = [ { name : "", @@ -101947,67 +102985,51 @@ returnType : $rt_voidcls(), callable : null }]; - nme_EnchantmentData.$meta.methods = [ + nlevma_Property.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [nme_Enchantment, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }]; - nlevi_PlatformWebRTC$RelayWorldsQueryRatelimitDummy.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nlevsr_RelayQuery$RateLimit], + parameterTypes : [jl_String, jl_String], returnType : $rt_voidcls(), callable : null }, { - name : "isQueryOpen", + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, jl_String, jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getSignature", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "hasSignature", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_booleancls(), callable : null - }, { - name : "isQueryFailed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isQueryRateLimit", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nlevsr_RelayQuery$RateLimit, - callable : null - }, { - name : "close", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getWorlds", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_List, - callable : null - }, { - name : "getCompatible", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nlevsr_RelayQuery$VersionMismatch, - callable : null }]; - nmwgs_MapGenStronghold$Start.$meta.methods = [ + nmwgs_StructureMineshaftStart.$meta.methods = [ { name : "", modifiers : 0, @@ -102023,7 +103045,7 @@ returnType : $rt_voidcls(), callable : null }]; - ju_LinkedHashMapValues.$meta.methods = [ + ju_LinkedHashMapIterator$ValueIterator.$meta.methods = [ { name : "", modifiers : 0, @@ -102031,157 +103053,6 @@ parameterTypes : [ju_LinkedHashMap, $rt_booleancls()], returnType : $rt_voidcls(), callable : null - }, { - name : "size", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "clear", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "iterator", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Iterator, - callable : null - }, { - name : "contains", - modifiers : 4, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "forEach", - modifiers : 4, - accessLevel : 3, - parameterTypes : [juf_Consumer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFirst", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "getLast", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "removeFirst", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "removeLast", - modifiers : 4, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "reversed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_SequencedCollection, - callable : null - }]; - nlevi_PlatformWebRTC$RelayWorldsQueryImpl.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isQueryOpen", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isQueryFailed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isQueryRateLimit", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nlevsr_RelayQuery$RateLimit, - callable : null - }, { - name : "close", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getWorlds", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_List, - callable : null - }, { - name : "getCompatible", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nlevsr_RelayQuery$VersionMismatch, - callable : null - }, { - name : "lambda$new$2", - modifiers : 32, - accessLevel : 1, - parameterTypes : [jl_String, otjw_CloseEvent], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$new$1", - modifiers : 32, - accessLevel : 1, - parameterTypes : [jl_String, otjde_MessageEvent], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$new$0", - modifiers : 32, - accessLevel : 1, - parameterTypes : [otjde_Event], - returnType : $rt_voidcls(), - callable : null - }]; - ju_IdentityHashMap$ValueIterator.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [ju_IdentityHashMap], - returnType : $rt_voidcls(), - callable : null }, { name : "next", modifiers : 0, @@ -102190,120 +103061,6 @@ returnType : jl_Object, callable : null }]; - nmt_TileEntityPiston.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmbs_IBlockState, nmu_EnumFacing, $rt_booleancls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getPistonState", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmbs_IBlockState, - callable : null - }, { - name : "getBlockMetadata", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "isExtending", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getFacing", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_EnumFacing, - callable : null - }, { - name : "shouldPistonHeadBeRendered", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getProgress", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getOffsetX", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getOffsetY", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getOffsetZ", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "launchWithSlimeBlock", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "clearPistonTileEntity", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "update", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }]; ju_AbstractMap$Values.$meta.methods = [ { name : "", @@ -102327,154 +103084,6 @@ returnType : ju_Iterator, callable : null }]; - ju_HashMap$ValueIterator.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [ju_HashMap], - returnType : $rt_voidcls(), - callable : null - }, { - name : "next", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }]; - nmwgs_StructureOceanMonument$StartMonument.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175789_b", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "generateStructure", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175788_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_ChunkCoordIntPair], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_175787_b", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_ChunkCoordIntPair], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }]; - cgcc_RegularImmutableAsList.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [cgcc_ImmutableCollection, cgcc_ImmutableList], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [cgcc_ImmutableCollection, $rt_arraycls(jl_Object)], - returnType : $rt_voidcls(), - callable : null - }, { - name : "delegateCollection", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : cgcc_ImmutableCollection, - callable : null - }, { - name : "delegateList", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : cgcc_ImmutableList, - callable : null - }, { - name : "listIterator", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : cgcc_UnmodifiableListIterator, - callable : null - }, { - name : "copyIntoArray", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_arraycls(jl_Object), $rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "get", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : jl_Object, - callable : null - }, { - name : "listIterator", - modifiers : 96, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : ju_ListIterator, - callable : null - }]; - nmwgs_StructureMineshaftStart.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }]; nms_ScorePlayerTeam.$meta.methods = [ { name : "", @@ -102638,78 +103247,187 @@ returnType : nmu_EnumChatFormatting, callable : null }]; - nmwgs_MapGenVillage$Start.$meta.methods = [ + ju_DuplicateFormatFlagsException.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [], + parameterTypes : [jl_String], returnType : $rt_voidcls(), callable : null }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isSizeableStructure", + name : "getFlags", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "writeToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), + returnType : jl_String, callable : null }]; - cgcb_Predicates$IsEqualToPredicate.$meta.methods = [ + nlevsl_LANServerList$LanServer.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_Object], + accessLevel : 2, + parameterTypes : [nlevsl_LANServerList, jl_String, nlevsr_RelayServer, jl_String], returnType : $rt_voidcls(), callable : null }, { - name : "apply", + name : "getLanServerMotd", modifiers : 0, accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), + parameterTypes : [], + returnType : jl_String, callable : null }, { - name : "hashCode", + name : "getLanServerRelay", modifiers : 0, accessLevel : 3, parameterTypes : [], + returnType : nlevsr_RelayServer, + callable : null + }, { + name : "getLanServerCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }]; + cgcc_RegularImmutableAsList.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [cgcc_ImmutableCollection, cgcc_ImmutableList], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [cgcc_ImmutableCollection, $rt_arraycls(jl_Object)], + returnType : $rt_voidcls(), + callable : null + }, { + name : "delegateCollection", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : cgcc_ImmutableCollection, + callable : null + }, { + name : "delegateList", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : cgcc_ImmutableList, + callable : null + }, { + name : "listIterator", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : cgcc_UnmodifiableListIterator, + callable : null + }, { + name : "copyIntoArray", + modifiers : 0, + accessLevel : 0, + parameterTypes : [$rt_arraycls(jl_Object), $rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "get", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : jl_Object, + callable : null + }, { + name : "listIterator", + modifiers : 96, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : ju_ListIterator, + callable : null + }]; + ju_LinkedHashMapValues.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [ju_LinkedHashMap, $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "size", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], returnType : $rt_intcls(), callable : null }, { - name : "equals", - modifiers : 0, + name : "clear", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "iterator", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Iterator, + callable : null + }, { + name : "contains", + modifiers : 4, accessLevel : 3, parameterTypes : [jl_Object], returnType : $rt_booleancls(), callable : null }, { - name : "toString", + name : "forEach", + modifiers : 4, + accessLevel : 3, + parameterTypes : [juf_Consumer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFirst", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "getLast", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "removeFirst", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "removeLast", + modifiers : 4, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "reversed", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : jl_String, + returnType : ju_SequencedCollection, callable : null }]; ju_IdentityHashMap$2.$meta.methods = [ @@ -102749,28 +103467,279 @@ returnType : ju_Iterator, callable : null }]; - cgcc_ImmutableMapKeySet$1.$meta.methods = [ + nmwgs_MapGenVillage$Start.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isSizeableStructure", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "writeToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }]; + nmt_TileEntityPiston.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmbs_IBlockState, nmu_EnumFacing, $rt_booleancls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getPistonState", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmbs_IBlockState, + callable : null + }, { + name : "getBlockMetadata", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "isExtending", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getFacing", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_EnumFacing, + callable : null + }, { + name : "shouldPistonHeadBeRendered", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getProgress", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getOffsetX", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getOffsetY", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getOffsetZ", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "launchWithSlimeBlock", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "clearPistonTileEntity", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "update", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }]; + nms_Team.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isSameTeam", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nms_Team], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getRegisteredName", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "formatString", + modifiers : 1, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : jl_String, + callable : null + }, { + name : "getSeeFriendlyInvisiblesEnabled", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getAllowFriendlyFire", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getNameTagVisibility", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : nms_Team$EnumVisible, + callable : null + }, { + name : "getMembershipCollection", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Collection, + callable : null + }, { + name : "getDeathMessageVisibility", + modifiers : 1, + accessLevel : 3, + parameterTypes : [], + returnType : nms_Team$EnumVisible, + callable : null + }]; + cgcc_ImmutableAsList.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 0, - parameterTypes : [cgcc_ImmutableMapKeySet, cgcc_ImmutableList], + parameterTypes : [], returnType : $rt_voidcls(), callable : null - }, { - name : "get", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : jl_Object, - callable : null }, { name : "delegateCollection", - modifiers : 0, + modifiers : 1, accessLevel : 0, parameterTypes : [], returnType : cgcc_ImmutableCollection, callable : null + }, { + name : "contains", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "size", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "isEmpty", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isPartialView", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "readObject", + modifiers : 0, + accessLevel : 1, + parameterTypes : [ji_ObjectInputStream], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeReplace", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : jl_Object, + callable : null }]; ju_IdentityHashMap$AbstractMapIterator.$meta.methods = [ { @@ -102809,6 +103778,64 @@ returnType : $rt_voidcls(), callable : null }]; + nlevf_FutureTask.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [juc_Callable], + returnType : $rt_voidcls(), + callable : null + }, { + name : "cancel", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isCancelled", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isDone", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "get", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "get", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_longcls(), juc_TimeUnit], + returnType : jl_Object, + callable : null + }, { + name : "run", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "done", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; nmt_TileEntity.$meta.methods = [ { name : "", @@ -103100,173 +104127,6 @@ returnType : $rt_intcls(), callable : null }]; - nms_Team.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isSameTeam", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nms_Team], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getRegisteredName", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "formatString", - modifiers : 1, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : jl_String, - callable : null - }, { - name : "getSeeFriendlyInvisiblesEnabled", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getAllowFriendlyFire", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getNameTagVisibility", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : nms_Team$EnumVisible, - callable : null - }, { - name : "getMembershipCollection", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Collection, - callable : null - }, { - name : "getDeathMessageVisibility", - modifiers : 1, - accessLevel : 3, - parameterTypes : [], - returnType : nms_Team$EnumVisible, - callable : null - }]; - cgcc_ImmutableAsList.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "delegateCollection", - modifiers : 1, - accessLevel : 0, - parameterTypes : [], - returnType : cgcc_ImmutableCollection, - callable : null - }, { - name : "contains", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "size", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "isEmpty", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isPartialView", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "readObject", - modifiers : 0, - accessLevel : 1, - parameterTypes : [ji_ObjectInputStream], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeReplace", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : jl_Object, - callable : null - }]; - nmcg_GuiScreenOptionsSounds$Button.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcg_GuiScreenOptionsSounds, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmca_SoundCategory, $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getHoverState", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_booleancls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "mouseDragged", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "mousePressed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "playPressSound", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmca_SoundHandler], - returnType : $rt_voidcls(), - callable : null - }, { - name : "mouseReleased", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }]; nlev_EaglercraftUUID.$meta.methods = [ { name : "", @@ -103451,64 +104311,48 @@ returnType : $rt_intcls(), callable : null }]; - nPs_GuiOptionButtonOF.$meta.methods = [ + nmcr_ResourcePackListEntryFound.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), nmcs_GameSettings$Options, jl_String], + parameterTypes : [nmcg_GuiScreenResourcePacks, nmcr_ResourcePackRepository$Entry], returnType : $rt_voidcls(), callable : null }, { - name : "getOption", + name : "func_148313_c", modifiers : 0, - accessLevel : 3, + accessLevel : 2, parameterTypes : [], - returnType : nmcs_GameSettings$Options, - callable : null - }]; - nlevma_Property.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, jl_String], returnType : $rt_voidcls(), callable : null }, { - name : "", + name : "func_183019_a", modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, jl_String, jl_String], - returnType : $rt_voidcls(), + accessLevel : 2, + parameterTypes : [], + returnType : $rt_intcls(), callable : null }, { - name : "getName", + name : "func_148311_a", modifiers : 0, - accessLevel : 3, + accessLevel : 2, parameterTypes : [], returnType : jl_String, callable : null }, { - name : "getValue", + name : "func_148312_b", modifiers : 0, - accessLevel : 3, + accessLevel : 2, parameterTypes : [], returnType : jl_String, callable : null }, { - name : "getSignature", + name : "func_148318_i", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "hasSignature", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), + returnType : nmcr_ResourcePackRepository$Entry, callable : null }]; nmcr_ResourcePackListEntryDefault.$meta.methods = [ @@ -103606,44 +104450,192 @@ returnType : $rt_voidcls(), callable : null }]; - nlevf_ListenableFutureTask.$meta.methods = [ + nmcg_GuiCustomizeSkin$ButtonPart.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmcg_GuiCustomizeSkin, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), nmep_EnumPlayerModelParts], + returnType : $rt_voidcls(), + callable : null + }]; + nPs_GuiOptionButtonOF.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [juc_Callable], + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), nmcs_GameSettings$Options, jl_String], returnType : $rt_voidcls(), callable : null }, { - name : "addListener", + name : "getOption", modifiers : 0, accessLevel : 3, - parameterTypes : [jl_Runnable, juc_Executor], + parameterTypes : [], + returnType : nmcs_GameSettings$Options, + callable : null + }]; + nPs_GuiOptionSliderOF.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), nmcs_GameSettings$Options], returnType : $rt_voidcls(), callable : null }, { - name : "done", + name : "getOption", modifiers : 0, - accessLevel : 2, + accessLevel : 3, + parameterTypes : [], + returnType : nmcs_GameSettings$Options, + callable : null + }]; + nmcgsc_SpectatorDetails.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcgs_ISpectatorMenuView, ju_List, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178680_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmcgs_ISpectatorMenuObject, + callable : null + }, { + name : "func_178681_b", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }]; + nlevi_PlatformWebRTC$RelayWorldsQueryImpl.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isQueryOpen", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isQueryFailed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isQueryRateLimit", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nlevsr_RelayQuery$RateLimit, + callable : null + }, { + name : "close", + modifiers : 0, + accessLevel : 3, parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { - name : "create", - modifiers : 512, + name : "getWorlds", + modifiers : 0, accessLevel : 3, - parameterTypes : [juc_Callable], - returnType : nlevf_ListenableFutureTask, + parameterTypes : [], + returnType : ju_List, + callable : null + }, { + name : "getCompatible", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nlevsr_RelayQuery$VersionMismatch, + callable : null + }, { + name : "lambda$new$2", + modifiers : 32, + accessLevel : 1, + parameterTypes : [jl_String, otjw_CloseEvent], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$new$1", + modifiers : 32, + accessLevel : 1, + parameterTypes : [jl_String, otjde_MessageEvent], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$new$0", + modifiers : 32, + accessLevel : 1, + parameterTypes : [otjde_Event], + returnType : $rt_voidcls(), callable : null }]; - nmcr_StitcherException.$meta.methods = [ + nlevi_PlatformWebRTC$RelayWorldsQueryRatelimitDummy.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcrt_Stitcher$Holder, jl_String], + accessLevel : 1, + parameterTypes : [nlevsr_RelayQuery$RateLimit], returnType : $rt_voidcls(), callable : null + }, { + name : "isQueryOpen", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isQueryFailed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isQueryRateLimit", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nlevsr_RelayQuery$RateLimit, + callable : null + }, { + name : "close", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getWorlds", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_List, + callable : null + }, { + name : "getCompatible", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nlevsr_RelayQuery$VersionMismatch, + callable : null }]; nmcrt_Stitcher$Slot.$meta.methods = [ { @@ -103696,6 +104688,22 @@ returnType : jl_String, callable : null }]; + nlevm_ChunkUpdateManager$2.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nlevm_ChunkUpdateManager, nmcrc_ChunkCompileTaskGenerator], + returnType : $rt_voidcls(), + callable : null + }, { + name : "run", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; nmcg_ServerListEntryNormal.$meta.methods = [ { name : "", @@ -103761,352 +104769,47 @@ returnType : $rt_voidcls(), callable : null }]; - nmw_NextTickListEntry.$meta.methods = [ + nmcg_GuiScreenOptionsSounds$Button.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [nmu_BlockPos, nmb_Block], + parameterTypes : [nmcg_GuiScreenOptionsSounds, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmca_SoundCategory, $rt_booleancls()], returnType : $rt_voidcls(), callable : null }, { - name : "equals", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hashCode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "setScheduledTime", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_longcls()], - returnType : nmw_NextTickListEntry, - callable : null - }, { - name : "setPriority", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "compareTo", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_NextTickListEntry], - returnType : $rt_intcls(), - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getBlock", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmb_Block, - callable : null - }, { - name : "compareTo", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_intcls(), - callable : null - }]; - ju_DuplicateFormatFlagsException.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFlags", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }]; - nlevm_ChunkUpdateManager$2.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nlevm_ChunkUpdateManager, nmcrc_ChunkCompileTaskGenerator], - returnType : $rt_voidcls(), - callable : null - }, { - name : "run", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcg_GuiCustomizeSkin$ButtonPart.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmcg_GuiCustomizeSkin, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), nmep_EnumPlayerModelParts], - returnType : $rt_voidcls(), - callable : null - }]; - nPs_GuiOptionSliderOF.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), nmcs_GameSettings$Options], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getOption", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmcs_GameSettings$Options, - callable : null - }]; - nmcrt_Stitcher$Holder.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevm_EaglerTextureAtlasSprite, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getAtlasSprite", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nlevm_EaglerTextureAtlasSprite, - callable : null - }, { - name : "getWidth", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "rotate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isRotated", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setNewDimension", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "compareTo", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcrt_Stitcher$Holder], - returnType : $rt_intcls(), - callable : null - }, { - name : "compareTo", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_intcls(), - callable : null - }]; - nmcgsc_SpectatorDetails.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcgs_ISpectatorMenuView, ju_List, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178680_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nmcgs_ISpectatorMenuObject, - callable : null - }, { - name : "func_178681_b", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }]; - nlevsl_LANServerList$LanServer.$meta.methods = [ - { - name : "", + name : "getHoverState", modifiers : 0, accessLevel : 2, - parameterTypes : [nlevsl_LANServerList, jl_String, nlevsr_RelayServer, jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getLanServerMotd", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getLanServerRelay", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nlevsr_RelayServer, - callable : null - }, { - name : "getLanServerCode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }]; - nmcr_ResourcePackListEntryFound.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcg_GuiScreenResourcePacks, nmcr_ResourcePackRepository$Entry], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_148313_c", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_183019_a", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "func_148311_a", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "func_148312_b", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "func_148318_i", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmcr_ResourcePackRepository$Entry, - callable : null - }]; - nlevf_FutureTask.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [juc_Callable], - returnType : $rt_voidcls(), - callable : null - }, { - name : "cancel", - modifiers : 0, - accessLevel : 3, parameterTypes : [$rt_booleancls()], - returnType : $rt_booleancls(), + returnType : $rt_intcls(), callable : null }, { - name : "isCancelled", + name : "mouseDragged", modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isDone", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "get", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "get", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_longcls(), juc_TimeUnit], - returnType : jl_Object, - callable : null - }, { - name : "run", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], + accessLevel : 2, + parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], returnType : $rt_voidcls(), callable : null }, { - name : "done", + name : "mousePressed", modifiers : 0, - accessLevel : 2, - parameterTypes : [], + accessLevel : 3, + parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "playPressSound", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmca_SoundHandler], + returnType : $rt_voidcls(), + callable : null + }, { + name : "mouseReleased", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], returnType : $rt_voidcls(), callable : null }]; @@ -104224,129 +104927,224 @@ returnType : $rt_voidcls(), callable : null }]; - nmt_TileEntityEndPortal.$meta.methods = [ + nmcrt_Stitcher$Holder.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [], + parameterTypes : [nlevm_EaglerTextureAtlasSprite, $rt_intcls()], returnType : $rt_voidcls(), callable : null - }]; - nmnpc_C02PacketUseEntity$Action.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmnpc_C02PacketUseEntity$Action), - callable : null }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmnpc_C02PacketUseEntity$Action, - callable : null - }, { - name : "", + name : "getAtlasSprite", modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_voidcls(), + accessLevel : 3, + parameterTypes : [], + returnType : nlevm_EaglerTextureAtlasSprite, callable : null }, { - name : "", - modifiers : 512, - accessLevel : 0, + name : "getWidth", + modifiers : 0, + accessLevel : 3, parameterTypes : [], - returnType : $rt_voidcls(), + returnType : $rt_intcls(), callable : null - }]; - nmt_TileEntityMobSpawner.$meta.methods = [ - { - name : "", + }, { + name : "getHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "rotate", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { - name : "readFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "update", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDescriptionPacket", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmn_Packet, - callable : null - }, { - name : "receiveClientEvent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_183000_F", + name : "isRotated", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_booleancls(), callable : null }, { - name : "getSpawnerBaseLogic", + name : "setNewDimension", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : nmt_MobSpawnerBaseLogic, - callable : null - }]; - nmnpc_C19PacketResourcePackStatus$Action.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmnpc_C19PacketResourcePackStatus$Action), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmnpc_C19PacketResourcePackStatus$Action, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls()], + parameterTypes : [$rt_intcls()], returnType : $rt_voidcls(), callable : null }, { - name : "", - modifiers : 512, + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "compareTo", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcrt_Stitcher$Holder], + returnType : $rt_intcls(), + callable : null + }, { + name : "compareTo", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_intcls(), + callable : null + }]; + nmw_NextTickListEntry.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_BlockPos, nmb_Block], + returnType : $rt_voidcls(), + callable : null + }, { + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hashCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "setScheduledTime", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_longcls()], + returnType : nmw_NextTickListEntry, + callable : null + }, { + name : "setPriority", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "compareTo", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_NextTickListEntry], + returnType : $rt_intcls(), + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getBlock", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmb_Block, + callable : null + }, { + name : "compareTo", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_intcls(), + callable : null + }]; + nlevsl_LANPeerEvent$LANPeerDisconnectEvent.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getPeerId", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }]; + cgcb_Splitter$2$1.$meta.methods = [ + { + name : "", + modifiers : 0, accessLevel : 0, + parameterTypes : [cgcb_Splitter$2, cgcb_Splitter, jl_CharSequence], + returnType : $rt_voidcls(), + callable : null + }, { + name : "separatorStart", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "separatorEnd", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_intcls(), + callable : null + }]; + ju_IdentityHashMap$KeyIterator.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [ju_IdentityHashMap], + returnType : $rt_voidcls(), + callable : null + }, { + name : "next", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }]; + ju_AbstractMap$Values$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [ju_AbstractMap$Values, ju_Iterator], + returnType : $rt_voidcls(), + callable : null + }, { + name : "hasNext", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "next", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "remove", + modifiers : 0, + accessLevel : 3, parameterTypes : [], returnType : $rt_voidcls(), callable : null @@ -104381,86 +105179,12 @@ returnType : cgcc_ImmutableMapEntry, callable : null }]; - nmt_TileEntityNote.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "changePitch", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "triggerNote", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }]; - nmcr_BlockModelRenderer$EnumNeighborInfo.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmcr_BlockModelRenderer$EnumNeighborInfo), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmcr_BlockModelRenderer$EnumNeighborInfo, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls(), $rt_arraycls(nmu_EnumFacing), $rt_floatcls(), $rt_booleancls(), $rt_arraycls(nmcr_BlockModelRenderer$Orientation), $rt_arraycls(nmcr_BlockModelRenderer$Orientation), $rt_arraycls(nmcr_BlockModelRenderer$Orientation), $rt_arraycls(nmcr_BlockModelRenderer$Orientation)], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getNeighbourInfo", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmu_EnumFacing], - returnType : nmcr_BlockModelRenderer$EnumNeighborInfo, - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmc_PlayerSelector$11.$meta.methods = [ + nmu_EntitySelectors$1.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 0, - parameterTypes : [nmu_AxisAlignedBB], + parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { @@ -104478,6 +105202,509 @@ returnType : $rt_booleancls(), callable : null }]; + nmt_TileEntityBrewingStand.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "hasCustomName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSizeInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "update", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canBrew", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "brewPotions", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getPotionResult", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_intcls(), nmi_ItemStack], + returnType : $rt_intcls(), + callable : null + }, { + name : "readFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getStackInSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "decrStackSize", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "removeStackFromSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "setInventorySlotContents", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getInventoryStackLimit", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "isUseableByPlayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "openInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "closeInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isItemValidForSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_174902_m", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls($rt_booleancls()), + callable : null + }, { + name : "getSlotsForFace", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_EnumFacing], + returnType : $rt_arraycls($rt_intcls()), + callable : null + }, { + name : "canInsertItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nmi_ItemStack, nmu_EnumFacing], + returnType : $rt_booleancls(), + callable : null + }, { + name : "canExtractItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nmi_ItemStack, nmu_EnumFacing], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getGuiID", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "createContainer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_InventoryPlayer, nmep_EntityPlayer], + returnType : nmi_Container, + callable : null + }, { + name : "getField", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "setField", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFieldCount", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "clear", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmt_TileEntityEnderChest.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "update", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "receiveClientEvent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "invalidate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "openChest", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "closeChest", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canBeUsed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }]; + nmt_TileEntityBeacon.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "update", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateBeacon", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addEffectsToPlayers", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateSegmentColors", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getBeamSegments", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_List, + callable : null + }, { + name : "shouldBeamRender", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "getDescriptionPacket", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmn_Packet, + callable : null + }, { + name : "getMaxRenderDistanceSquared", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_doublecls(), + callable : null + }, { + name : "func_183001_h", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "readFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSizeInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getStackInSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "decrStackSize", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "removeStackFromSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "setInventorySlotContents", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "hasCustomName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getInventoryStackLimit", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "isUseableByPlayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "openInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "closeInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isItemValidForSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getGuiID", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "createContainer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_InventoryPlayer, nmep_EntityPlayer], + returnType : nmi_Container, + callable : null + }, { + name : "getField", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "setField", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFieldCount", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "clear", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "receiveClientEvent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; nmt_TileEntityComparator.$meta.methods = [ { name : "", @@ -104515,20 +105742,20 @@ returnType : $rt_voidcls(), callable : null }]; - nmnps_S42PacketCombatEvent$Event.$meta.methods = [ + nmnpc_C02PacketUseEntity$Action.$meta.methods = [ { name : "values", modifiers : 512, accessLevel : 3, parameterTypes : [], - returnType : $rt_arraycls(nmnps_S42PacketCombatEvent$Event), + returnType : $rt_arraycls(nmnpc_C02PacketUseEntity$Action), callable : null }, { name : "valueOf", modifiers : 512, accessLevel : 3, parameterTypes : [jl_String], - returnType : nmnps_S42PacketCombatEvent$Event, + returnType : nmnpc_C02PacketUseEntity$Action, callable : null }, { name : "", @@ -104537,6 +105764,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmnpc_C02PacketUseEntity$Action), + callable : null }, { name : "", modifiers : 512, @@ -104545,41 +105779,224 @@ returnType : $rt_voidcls(), callable : null }]; - cgcb_Predicates$AndPredicate.$meta.methods = [ + nmcr_BlockModelRenderer$VertexTranslations.$meta.methods = [ { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmcr_BlockModelRenderer$VertexTranslations), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmcr_BlockModelRenderer$VertexTranslations, + callable : null + }, { name : "", modifiers : 0, accessLevel : 1, - parameterTypes : [ju_List], + parameterTypes : [jl_String, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], returnType : $rt_voidcls(), callable : null }, { - name : "apply", - modifiers : 0, + name : "getVertexTranslations", + modifiers : 512, accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), + parameterTypes : [nmu_EnumFacing], + returnType : nmcr_BlockModelRenderer$VertexTranslations, callable : null }, { - name : "hashCode", + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmcr_BlockModelRenderer$VertexTranslations), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmt_TileEntityNote.$meta.methods = [ + { + name : "", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : $rt_intcls(), + returnType : $rt_voidcls(), callable : null }, { - name : "equals", + name : "writeToNBT", modifiers : 0, accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), callable : null }, { - name : "toString", + name : "readFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "changePitch", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : jl_String, + returnType : $rt_voidcls(), + callable : null + }, { + name : "triggerNote", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : $rt_voidcls(), + callable : null + }]; + nmt_TileEntityEndPortal.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmt_TileEntityDaylightDetector.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "update", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + juc_TimeUnit.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(juc_TimeUnit), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : juc_TimeUnit, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls(), $rt_longcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "convert", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_longcls(), juc_TimeUnit], + returnType : $rt_longcls(), + callable : null + }, { + name : "toNanos", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_longcls()], + returnType : $rt_longcls(), + callable : null + }, { + name : "toMicros", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_longcls()], + returnType : $rt_longcls(), + callable : null + }, { + name : "toMillis", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_longcls()], + returnType : $rt_longcls(), + callable : null + }, { + name : "toSeconds", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_longcls()], + returnType : $rt_longcls(), + callable : null + }, { + name : "toMinutes", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_longcls()], + returnType : $rt_longcls(), + callable : null + }, { + name : "toHours", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_longcls()], + returnType : $rt_longcls(), + callable : null + }, { + name : "toDays", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_longcls()], + returnType : $rt_longcls(), + callable : null + }, { + name : "timedWait", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object, $rt_longcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "timedJoin", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Thread, $rt_longcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "sleep", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_longcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(juc_TimeUnit), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), callable : null }]; nmt_TileEntityFurnace.$meta.methods = [ @@ -104822,76 +106239,7 @@ returnType : $rt_voidcls(), callable : null }]; - cgcb_Splitter$2$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [cgcb_Splitter$2, cgcb_Splitter, jl_CharSequence], - returnType : $rt_voidcls(), - callable : null - }, { - name : "separatorStart", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "separatorEnd", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_intcls(), - callable : null - }]; - nmu_EntitySelectors$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "apply", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null - }, { - name : "apply", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }]; - nme_EntityLivingBase$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nme_EntityLivingBase], - returnType : $rt_voidcls(), - callable : null - }, { - name : "apply", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null - }, { - name : "apply", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }]; - nmt_TileEntityEnchantmentTable.$meta.methods = [ + nmt_TileEntityCommandBlock.$meta.methods = [ { name : "", modifiers : 0, @@ -104913,6 +106261,57 @@ parameterTypes : [nmn_NBTTagCompound], returnType : $rt_voidcls(), callable : null + }, { + name : "getDescriptionPacket", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmn_Packet, + callable : null + }, { + name : "func_183000_F", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getCommandBlockLogic", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmcs_CommandBlockLogic, + callable : null + }, { + name : "getCommandResultStats", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmc_CommandResultStats, + callable : null + }]; + nmt_TileEntityMobSpawner.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null }, { name : "update", modifiers : 0, @@ -104921,83 +106320,32 @@ returnType : $rt_voidcls(), callable : null }, { - name : "getName", + name : "getDescriptionPacket", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : jl_String, + returnType : nmn_Packet, callable : null }, { - name : "hasCustomName", + name : "receiveClientEvent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_183000_F", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_booleancls(), callable : null }, { - name : "setCustomName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDisplayName", + name : "getSpawnerBaseLogic", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "createContainer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_InventoryPlayer, nmep_EntityPlayer], - returnType : nmi_Container, - callable : null - }, { - name : "getGuiID", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcr_BlockModelRenderer$Orientation.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmcr_BlockModelRenderer$Orientation), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmcr_BlockModelRenderer$Orientation, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls(), nmu_EnumFacing, $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), + returnType : nmt_MobSpawnerBaseLogic, callable : null }]; nmt_TileEntityHopper.$meta.methods = [ @@ -105338,7 +106686,7 @@ returnType : $rt_voidcls(), callable : null }]; - nmb_BlockJukebox$TileEntityJukebox.$meta.methods = [ + nmt_TileEntityDropper.$meta.methods = [ { name : "", modifiers : 0, @@ -105347,10 +106695,26 @@ returnType : $rt_voidcls(), callable : null }, { - name : "readFromNBT", + name : "getName", modifiers : 0, accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getGuiID", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }]; + nmt_TileEntitySkull.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { @@ -105361,17 +106725,279 @@ returnType : $rt_voidcls(), callable : null }, { - name : "getRecord", + name : "readFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getPlayerProfile", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : nmi_ItemStack, + returnType : nlevma_GameProfile, callable : null }, { - name : "setRecord", + name : "getDescriptionPacket", modifiers : 0, accessLevel : 3, - parameterTypes : [nmi_ItemStack], + parameterTypes : [], + returnType : nmn_Packet, + callable : null + }, { + name : "setType", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setPlayerProfile", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevma_GameProfile], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updatePlayerProfile", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateGameprofile", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nlevma_GameProfile], + returnType : nlevma_GameProfile, + callable : null + }, { + name : "getSkullType", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getSkullRotation", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "setSkullRotation", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmcr_BlockModelRenderer$EnumNeighborInfo.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmcr_BlockModelRenderer$EnumNeighborInfo), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmcr_BlockModelRenderer$EnumNeighborInfo, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls(), $rt_arraycls(nmu_EnumFacing), $rt_floatcls(), $rt_booleancls(), $rt_arraycls(nmcr_BlockModelRenderer$Orientation), $rt_arraycls(nmcr_BlockModelRenderer$Orientation), $rt_arraycls(nmcr_BlockModelRenderer$Orientation), $rt_arraycls(nmcr_BlockModelRenderer$Orientation)], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getNeighbourInfo", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmu_EnumFacing], + returnType : nmcr_BlockModelRenderer$EnumNeighborInfo, + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmcr_BlockModelRenderer$EnumNeighborInfo), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmnps_S45PacketTitle$Type.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmnps_S45PacketTitle$Type), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmnps_S45PacketTitle$Type, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "byName", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmnps_S45PacketTitle$Type, + callable : null + }, { + name : "getNames", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(jl_String), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmnps_S45PacketTitle$Type), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nme_EntityLivingBase$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nme_EntityLivingBase], + returnType : $rt_voidcls(), + callable : null + }, { + name : "apply", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_booleancls(), + callable : null + }, { + name : "apply", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }]; + nmcr_BlockModelRenderer$Orientation.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmcr_BlockModelRenderer$Orientation), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmcr_BlockModelRenderer$Orientation, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls(), nmu_EnumFacing, $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmcr_BlockModelRenderer$Orientation), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nlevi_IServerQuery$QueryReadyState.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nlevi_IServerQuery$QueryReadyState), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nlevi_IServerQuery$QueryReadyState, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls(), $rt_booleancls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isOpen", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isClosed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nlevi_IServerQuery$QueryReadyState), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], returnType : $rt_voidcls(), callable : null }]; @@ -105397,6 +107023,13 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmnpc_C07PacketPlayerDigging$Action), + callable : null }, { name : "", modifiers : 512, @@ -105405,6 +107038,219 @@ returnType : $rt_voidcls(), callable : null }]; + nmnps_S08PacketPlayerPosLook$EnumFlags.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmnps_S08PacketPlayerPosLook$EnumFlags), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmnps_S08PacketPlayerPosLook$EnumFlags, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_180055_a", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "func_180054_b", + modifiers : 0, + accessLevel : 1, + parameterTypes : [$rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_180053_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : ju_Set, + callable : null + }, { + name : "func_180056_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_Set], + returnType : $rt_intcls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmnps_S08PacketPlayerPosLook$EnumFlags), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmnpc_C19PacketResourcePackStatus$Action.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmnpc_C19PacketResourcePackStatus$Action), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmnpc_C19PacketResourcePackStatus$Action, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmnpc_C19PacketResourcePackStatus$Action), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmnps_S3CPacketUpdateScore$Action.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmnps_S3CPacketUpdateScore$Action), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmnps_S3CPacketUpdateScore$Action, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmnps_S3CPacketUpdateScore$Action), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmnps_S42PacketCombatEvent$Event.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmnps_S42PacketCombatEvent$Event), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmnps_S42PacketCombatEvent$Event, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmnps_S42PacketCombatEvent$Event), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + cgcb_Predicates$AndPredicate.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [ju_List], + returnType : $rt_voidcls(), + callable : null + }, { + name : "apply", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hashCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }]; nmt_TileEntitySign.$meta.methods = [ { name : "", @@ -105484,121 +107330,89 @@ returnType : nmc_CommandResultStats, callable : null }]; - nmnps_S08PacketPlayerPosLook$EnumFlags.$meta.methods = [ + nmt_TileEntityDispenser.$meta.methods = [ { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmnps_S08PacketPlayerPosLook$EnumFlags), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmnps_S08PacketPlayerPosLook$EnumFlags, - callable : null - }, { name : "", modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls(), $rt_intcls()], + accessLevel : 3, + parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { - name : "func_180055_a", + name : "getSizeInventory", modifiers : 0, - accessLevel : 1, + accessLevel : 3, parameterTypes : [], returnType : $rt_intcls(), callable : null }, { - name : "func_180054_b", + name : "getStackInSlot", modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_180053_a", - modifiers : 512, accessLevel : 3, parameterTypes : [$rt_intcls()], - returnType : ju_Set, + returnType : nmi_ItemStack, callable : null }, { - name : "func_180056_a", - modifiers : 512, + name : "decrStackSize", + modifiers : 0, accessLevel : 3, - parameterTypes : [ju_Set], + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "removeStackFromSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "getDispenseSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], returnType : $rt_intcls(), callable : null }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], + name : "setInventorySlotContents", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nmi_ItemStack], returnType : $rt_voidcls(), callable : null - }]; - nlevi_IServerQuery$QueryReadyState.$meta.methods = [ - { - name : "values", - modifiers : 512, + }, { + name : "addItemStack", + modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nlevi_IServerQuery$QueryReadyState), + parameterTypes : [nmi_ItemStack], + returnType : $rt_intcls(), callable : null }, { - name : "valueOf", - modifiers : 512, + name : "getName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "setCustomName", + modifiers : 0, accessLevel : 3, parameterTypes : [jl_String], - returnType : nlevi_IServerQuery$QueryReadyState, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls(), $rt_booleancls(), $rt_booleancls()], returnType : $rt_voidcls(), callable : null }, { - name : "isOpen", + name : "hasCustomName", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_booleancls(), callable : null }, { - name : "isClosed", + name : "readFromNBT", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmt_TileEntityFlowerPot.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_Item, $rt_intcls()], + parameterTypes : [nmn_NBTTagCompound], returnType : $rt_voidcls(), callable : null }, { @@ -105609,40 +107423,89 @@ returnType : $rt_voidcls(), callable : null }, { - name : "readFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDescriptionPacket", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmn_Packet, - callable : null - }, { - name : "setFlowerPotData", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_Item, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFlowerPotItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmi_Item, - callable : null - }, { - name : "getFlowerPotData", + name : "getInventoryStackLimit", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_intcls(), callable : null + }, { + name : "isUseableByPlayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "openInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "closeInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isItemValidForSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getGuiID", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "createContainer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_InventoryPlayer, nmep_EntityPlayer], + returnType : nmi_Container, + callable : null + }, { + name : "getField", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "setField", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFieldCount", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "clear", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null }]; nmt_TileEntityChest.$meta.methods = [ { @@ -105870,7 +107733,7 @@ returnType : $rt_voidcls(), callable : null }]; - nmt_TileEntityDropper.$meta.methods = [ + nmt_TileEntityFlowerPot.$meta.methods = [ { name : "", modifiers : 0, @@ -105879,291 +107742,10 @@ returnType : $rt_voidcls(), callable : null }, { - name : "getName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getGuiID", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }]; - ju_IdentityHashMap$KeyIterator.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [ju_IdentityHashMap], - returnType : $rt_voidcls(), - callable : null - }, { - name : "next", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }]; - nmt_TileEntityBrewingStand.$meta.methods = [ - { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "hasCustomName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSizeInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "update", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canBrew", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "brewPotions", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getPotionResult", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_intcls(), nmi_ItemStack], - returnType : $rt_intcls(), - callable : null - }, { - name : "readFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getStackInSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "decrStackSize", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "removeStackFromSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "setInventorySlotContents", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getInventoryStackLimit", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "isUseableByPlayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "openInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "closeInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isItemValidForSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_174902_m", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls($rt_booleancls()), - callable : null - }, { - name : "getSlotsForFace", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_EnumFacing], - returnType : $rt_arraycls($rt_intcls()), - callable : null - }, { - name : "canInsertItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nmi_ItemStack, nmu_EnumFacing], - returnType : $rt_booleancls(), - callable : null - }, { - name : "canExtractItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nmi_ItemStack, nmu_EnumFacing], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getGuiID", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "createContainer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_InventoryPlayer, nmep_EntityPlayer], - returnType : nmi_Container, - callable : null - }, { - name : "getField", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "setField", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFieldCount", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "clear", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmnps_S3CPacketUpdateScore$Action.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmnps_S3CPacketUpdateScore$Action), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmnps_S3CPacketUpdateScore$Action, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmt_TileEntitySkull.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], + parameterTypes : [nmi_Item, $rt_intcls()], returnType : $rt_voidcls(), callable : null }, { @@ -106180,13 +107762,6 @@ parameterTypes : [nmn_NBTTagCompound], returnType : $rt_voidcls(), callable : null - }, { - name : "getPlayerProfile", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nlevma_GameProfile, - callable : null }, { name : "getDescriptionPacket", modifiers : 0, @@ -106195,86 +107770,28 @@ returnType : nmn_Packet, callable : null }, { - name : "setType", + name : "setFlowerPotData", modifiers : 0, accessLevel : 3, - parameterTypes : [$rt_intcls()], + parameterTypes : [nmi_Item, $rt_intcls()], returnType : $rt_voidcls(), callable : null }, { - name : "setPlayerProfile", + name : "getFlowerPotItem", modifiers : 0, accessLevel : 3, - parameterTypes : [nlevma_GameProfile], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updatePlayerProfile", - modifiers : 0, - accessLevel : 1, parameterTypes : [], - returnType : $rt_voidcls(), + returnType : nmi_Item, callable : null }, { - name : "updateGameprofile", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nlevma_GameProfile], - returnType : nlevma_GameProfile, - callable : null - }, { - name : "getSkullType", + name : "getFlowerPotData", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : $rt_intcls(), callable : null - }, { - name : "getSkullRotation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "setSkullRotation", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null }]; - ju_AbstractMap$Values$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [ju_AbstractMap$Values, ju_Iterator], - returnType : $rt_voidcls(), - callable : null - }, { - name : "hasNext", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "next", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "remove", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmt_TileEntityDispenser.$meta.methods = [ + nmt_TileEntityEnchantmentTable.$meta.methods = [ { name : "", modifiers : 0, @@ -106283,53 +107800,25 @@ returnType : $rt_voidcls(), callable : null }, { - name : "getSizeInventory", + name : "writeToNBT", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getStackInSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "decrStackSize", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "removeStackFromSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "getDispenseSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "setInventorySlotContents", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nmi_ItemStack], + parameterTypes : [nmn_NBTTagCompound], returnType : $rt_voidcls(), callable : null }, { - name : "addItemStack", + name : "readFromNBT", modifiers : 0, accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_intcls(), + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "update", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), callable : null }, { name : "getName", @@ -106338,6 +107827,13 @@ parameterTypes : [], returnType : jl_String, callable : null + }, { + name : "hasCustomName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null }, { name : "setCustomName", modifiers : 0, @@ -106346,12 +107842,65 @@ returnType : $rt_voidcls(), callable : null }, { - name : "hasCustomName", + name : "getDisplayName", modifiers : 0, accessLevel : 3, parameterTypes : [], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "createContainer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_InventoryPlayer, nmep_EntityPlayer], + returnType : nmi_Container, + callable : null + }, { + name : "getGuiID", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmc_PlayerSelector$11.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmu_AxisAlignedBB], + returnType : $rt_voidcls(), + callable : null + }, { + name : "apply", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], returnType : $rt_booleancls(), callable : null + }, { + name : "apply", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }]; + nmb_BlockJukebox$TileEntityJukebox.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null }, { name : "readFromNBT", modifiers : 0, @@ -106367,87 +107916,17 @@ returnType : $rt_voidcls(), callable : null }, { - name : "getInventoryStackLimit", + name : "getRecord", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : $rt_intcls(), + returnType : nmi_ItemStack, callable : null }, { - name : "isUseableByPlayer", + name : "setRecord", modifiers : 0, accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "openInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "closeInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isItemValidForSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getGuiID", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "createContainer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_InventoryPlayer, nmep_EntityPlayer], - returnType : nmi_Container, - callable : null - }, { - name : "getField", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "setField", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFieldCount", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "clear", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], + parameterTypes : [nmi_ItemStack], returnType : $rt_voidcls(), callable : null }]; @@ -106473,551 +107952,12 @@ parameterTypes : [jl_String, $rt_intcls()], returnType : $rt_voidcls(), callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmt_TileEntityBeacon.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "update", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateBeacon", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addEffectsToPlayers", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateSegmentColors", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getBeamSegments", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_List, - callable : null - }, { - name : "shouldBeamRender", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "getDescriptionPacket", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmn_Packet, - callable : null - }, { - name : "getMaxRenderDistanceSquared", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_doublecls(), - callable : null - }, { - name : "func_183001_h", - modifiers : 0, - accessLevel : 1, - parameterTypes : [$rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "readFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSizeInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getStackInSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "decrStackSize", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "removeStackFromSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "setInventorySlotContents", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "hasCustomName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getInventoryStackLimit", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "isUseableByPlayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "openInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "closeInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isItemValidForSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getGuiID", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "createContainer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_InventoryPlayer, nmep_EntityPlayer], - returnType : nmi_Container, - callable : null - }, { - name : "getField", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "setField", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFieldCount", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "clear", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "receiveClientEvent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcr_BlockModelRenderer$VertexTranslations.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmcr_BlockModelRenderer$VertexTranslations), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmcr_BlockModelRenderer$VertexTranslations, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getVertexTranslations", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmu_EnumFacing], - returnType : nmcr_BlockModelRenderer$VertexTranslations, - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmnps_S45PacketTitle$Type.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmnps_S45PacketTitle$Type), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmnps_S45PacketTitle$Type, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "byName", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmnps_S45PacketTitle$Type, - callable : null - }, { - name : "getNames", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(jl_String), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmt_TileEntityCommandBlock.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDescriptionPacket", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmn_Packet, - callable : null - }, { - name : "func_183000_F", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getCommandBlockLogic", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmcs_CommandBlockLogic, - callable : null - }, { - name : "getCommandResultStats", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmc_CommandResultStats, - callable : null - }]; - nmt_TileEntityEnderChest.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "update", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "receiveClientEvent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "invalidate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "openChest", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "closeChest", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canBeUsed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }]; - nmt_TileEntityDaylightDetector.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "update", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - juc_TimeUnit.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(juc_TimeUnit), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : juc_TimeUnit, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls(), $rt_longcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "convert", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_longcls(), juc_TimeUnit], - returnType : $rt_longcls(), - callable : null - }, { - name : "toNanos", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_longcls()], - returnType : $rt_longcls(), - callable : null - }, { - name : "toMicros", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_longcls()], - returnType : $rt_longcls(), - callable : null - }, { - name : "toMillis", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_longcls()], - returnType : $rt_longcls(), - callable : null - }, { - name : "toSeconds", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_longcls()], - returnType : $rt_longcls(), - callable : null - }, { - name : "toMinutes", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_longcls()], - returnType : $rt_longcls(), - callable : null - }, { - name : "toHours", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_longcls()], - returnType : $rt_longcls(), - callable : null - }, { - name : "toDays", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_longcls()], - returnType : $rt_longcls(), - callable : null - }, { - name : "timedWait", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object, $rt_longcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "timedJoin", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Thread, $rt_longcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "sleep", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_longcls()], - returnType : $rt_voidcls(), - callable : null }, { name : "$values", modifiers : 544, accessLevel : 1, parameterTypes : [], - returnType : $rt_arraycls(juc_TimeUnit), + returnType : $rt_arraycls(nmwgs_StructureStrongholdPieces$Stronghold$Door), callable : null }, { name : "", @@ -107078,50 +108018,6 @@ returnType : nmu_IChatComponent, callable : null }]; - nmwgs_ComponentScatteredFeaturePieces$JunglePyramid.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeStructureToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readStructureFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; nmwgs_ComponentScatteredFeaturePieces$DesertPyramid.$meta.methods = [ { name : "", @@ -107217,6 +108113,43 @@ returnType : $rt_voidcls(), callable : null }]; + nmwgs_ComponentScatteredFeaturePieces$SwampHut.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeStructureToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readStructureFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; nmwgs_StructureStrongholdPieces$Stairs2.$meta.methods = [ { name : "", @@ -107263,59 +108196,6 @@ returnType : nmwb_WorldChunkManager, callable : null }]; - nlevsl_LANPeerEvent$LANPeerDisconnectEvent.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getPeerId", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }]; - nmwgs_ComponentScatteredFeaturePieces$SwampHut.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeStructureToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readStructureFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; nmt_TileEntityBanner.$meta.methods = [ { name : "", @@ -107453,6 +108333,80 @@ returnType : $rt_voidcls(), callable : null }]; + nmwgs_ComponentScatteredFeaturePieces$JunglePyramid.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeStructureToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readStructureFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmwgs_StructureVillagePieces$Well.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureVillagePieces$Start, $rt_intcls(), nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "buildComponent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; nmwgs_StructureNetherBridgePieces$Crossing3.$meta.methods = [ { name : "", @@ -107497,94 +108451,6 @@ returnType : $rt_booleancls(), callable : null }]; - nmwgs_StructureVillagePieces$Well.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureVillagePieces$Start, $rt_intcls(), nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "buildComponent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureStrongholdPieces$Stairs.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeStructureToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readStructureFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "buildComponent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175863_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureStrongholdPieces$Stairs, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; nmwgs_ComponentScatteredFeaturePieces$Feature.$meta.methods = [ { name : "", @@ -107841,6 +108707,64 @@ returnType : $rt_voidcls(), callable : null }]; + nmwgs_StructureStrongholdPieces$Stairs.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeStructureToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readStructureFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "buildComponent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175863_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureStrongholdPieces$Stairs, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; nmwgs_StructureVillagePieces$Village.$meta.methods = [ { name : "", @@ -108106,6 +109030,351 @@ returnType : $rt_booleancls(), callable : null }]; + nmep_InventoryPlayer.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "loadModData", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nea_BaseData], + returnType : $rt_voidcls(), + callable : null + }, { + name : "makeModData", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nea_ModData, + callable : null + }, { + name : "getCurrentItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmi_ItemStack, + callable : null + }, { + name : "getHotbarSize", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getInventorySlotContainItem", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmi_Item], + returnType : $rt_intcls(), + callable : null + }, { + name : "getInventorySlotContainItemAndDamage", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmi_Item, $rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "storeItemStack", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmi_ItemStack], + returnType : $rt_intcls(), + callable : null + }, { + name : "getFirstEmptyStack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "setCurrentItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_Item, $rt_intcls(), $rt_booleancls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "changeCurrentItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "clearMatchingItems", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_Item, $rt_intcls(), $rt_intcls(), nmn_NBTTagCompound], + returnType : $rt_intcls(), + callable : null + }, { + name : "storePartialItemStack", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmi_ItemStack], + returnType : $rt_intcls(), + callable : null + }, { + name : "decrementAnimations", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "consumeInventoryItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_Item], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hasItem", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_Item], + returnType : $rt_booleancls(), + callable : null + }, { + name : "addItemStackToInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }, { + name : "decrStackSize", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "removeStackFromSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "setInventorySlotContents", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getStrVsBlock", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmb_Block], + returnType : $rt_floatcls(), + callable : null + }, { + name : "writeToNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagList], + returnType : nmn_NBTTagList, + callable : null + }, { + name : "readFromNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_NBTTagList], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSizeInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getStackInSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "getName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "hasCustomName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getDisplayName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "getInventoryStackLimit", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "canHeldItemHarvest", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmb_Block], + returnType : $rt_booleancls(), + callable : null + }, { + name : "armorItemInSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "getTotalArmorValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "damageArmor", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "dropAllItems", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "markDirty", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setItemStack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getItemStack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmi_ItemStack, + callable : null + }, { + name : "isUseableByPlayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "hasItemStack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }, { + name : "openInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "closeInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isItemValidForSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }, { + name : "copyInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_InventoryPlayer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getField", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "setField", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFieldCount", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "clear", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$makeModData$1", + modifiers : 32, + accessLevel : 1, + parameterTypes : [nea_ModData], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$makeModData$0", + modifiers : 32, + accessLevel : 1, + parameterTypes : [], + returnType : otj_JSObject, + callable : null + }]; nmu_Vec4b.$meta.methods = [ { name : "", @@ -108250,6 +109519,50 @@ returnType : $rt_voidcls(), callable : null }]; + nmi_ContainerPlayer.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_InventoryPlayer, $rt_booleancls(), nmep_EntityPlayer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onCraftMatrixChanged", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_IInventory], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onContainerClosed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canInteractWith", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "transferStackInSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer, $rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "canMergeSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack, nmi_Slot], + returnType : $rt_booleancls(), + callable : null + }]; nmep_EntityPlayerMP.$meta.methods = [ { name : "", @@ -108777,395 +110090,6 @@ returnType : $rt_voidcls(), callable : null }]; - nmi_ContainerPlayer.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_InventoryPlayer, $rt_booleancls(), nmep_EntityPlayer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onCraftMatrixChanged", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_IInventory], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onContainerClosed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canInteractWith", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "transferStackInSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer, $rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "canMergeSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack, nmi_Slot], - returnType : $rt_booleancls(), - callable : null - }]; - nmep_InventoryPlayer.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "loadModData", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nea_BaseData], - returnType : $rt_voidcls(), - callable : null - }, { - name : "makeModData", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nea_ModData, - callable : null - }, { - name : "getCurrentItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmi_ItemStack, - callable : null - }, { - name : "getHotbarSize", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getInventorySlotContainItem", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmi_Item], - returnType : $rt_intcls(), - callable : null - }, { - name : "getInventorySlotContainItemAndDamage", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmi_Item, $rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "storeItemStack", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmi_ItemStack], - returnType : $rt_intcls(), - callable : null - }, { - name : "getFirstEmptyStack", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "setCurrentItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_Item, $rt_intcls(), $rt_booleancls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "changeCurrentItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "clearMatchingItems", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_Item, $rt_intcls(), $rt_intcls(), nmn_NBTTagCompound], - returnType : $rt_intcls(), - callable : null - }, { - name : "storePartialItemStack", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmi_ItemStack], - returnType : $rt_intcls(), - callable : null - }, { - name : "decrementAnimations", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "consumeInventoryItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_Item], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hasItem", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_Item], - returnType : $rt_booleancls(), - callable : null - }, { - name : "addItemStackToInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }, { - name : "decrStackSize", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "removeStackFromSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "setInventorySlotContents", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getStrVsBlock", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmb_Block], - returnType : $rt_floatcls(), - callable : null - }, { - name : "writeToNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagList], - returnType : nmn_NBTTagList, - callable : null - }, { - name : "readFromNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_NBTTagList], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSizeInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getStackInSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "getName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "hasCustomName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getDisplayName", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "getInventoryStackLimit", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "canHeldItemHarvest", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmb_Block], - returnType : $rt_booleancls(), - callable : null - }, { - name : "armorItemInSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "getTotalArmorValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "damageArmor", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "dropAllItems", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "markDirty", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setItemStack", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getItemStack", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmi_ItemStack, - callable : null - }, { - name : "isUseableByPlayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "hasItemStack", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }, { - name : "openInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "closeInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isItemValidForSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }, { - name : "copyInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_InventoryPlayer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getField", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "setField", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFieldCount", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "clear", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$makeModData$1", - modifiers : 32, - accessLevel : 1, - parameterTypes : [nea_ModData], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$makeModData$0", - modifiers : 32, - accessLevel : 1, - parameterTypes : [], - returnType : otj_JSObject, - callable : null - }]; nmep_EntityPlayer.$meta.methods = [ { name : "", @@ -110822,16 +111746,7 @@ returnType : jl_Object, callable : null }]; - cgcc_LinkedListMultimap$KeyList.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [cgcc_LinkedListMultimap$Node], - returnType : $rt_voidcls(), - callable : null - }]; - nmwgs_StructureNetherBridgePieces$Corridor.$meta.methods = [ + nmwgs_StructureNetherBridgePieces$Crossing2.$meta.methods = [ { name : "", modifiers : 0, @@ -110846,20 +111761,6 @@ parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], returnType : $rt_voidcls(), callable : null - }, { - name : "readStructureFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeStructureToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null }, { name : "buildComponent", modifiers : 0, @@ -110868,11 +111769,11 @@ returnType : $rt_voidcls(), callable : null }, { - name : "func_175879_a", + name : "func_175878_a", modifiers : 512, accessLevel : 3, parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureNetherBridgePieces$Corridor, + returnType : nmwgs_StructureNetherBridgePieces$Crossing2, callable : null }, { name : "addComponentParts", @@ -110882,6 +111783,73 @@ returnType : $rt_booleancls(), callable : null }]; + nmwgs_StructureVillagePieces$Torch.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureVillagePieces$Start, $rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175856_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmwgs_StructureVillagePieces$Start, ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing], + returnType : nmwgs_StructureBoundingBox, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureVillagePieces$Church.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureVillagePieces$Start, $rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175854_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmwgs_StructureVillagePieces$Start, ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureVillagePieces$Church, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_180779_c", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_intcls(), + callable : null + }]; nmwgs_StructureMineshaftPieces$Cross.$meta.methods = [ { name : "", @@ -110933,7 +111901,7 @@ returnType : $rt_booleancls(), callable : null }]; - nmwgs_StructureStrongholdPieces$Prison.$meta.methods = [ + nmwgs_StructureNetherBridgePieces$Stairs.$meta.methods = [ { name : "", modifiers : 0, @@ -110956,57 +111924,11 @@ returnType : $rt_voidcls(), callable : null }, { - name : "func_175860_a", + name : "func_175872_a", modifiers : 512, accessLevel : 3, - parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureStrongholdPieces$Prison, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureOceanMonumentPieces$WingRoom.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_EnumFacing, nmwgs_StructureBoundingBox, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureOceanMonumentPieces$MonumentCoreRoom.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), + parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing], + returnType : nmwgs_StructureNetherBridgePieces$Stairs, callable : null }, { name : "addComponentParts", @@ -111060,374 +111982,6 @@ returnType : $rt_booleancls(), callable : null }]; - nmwgs_StructureVillagePieces$Field2.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureVillagePieces$Start, $rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeStructureToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readStructureFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_151560_a", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nlev_EaglercraftRandom], - returnType : nmb_Block, - callable : null - }, { - name : "func_175852_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmwgs_StructureVillagePieces$Start, ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureVillagePieces$Field2, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nlevf_ExecutionException.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, jl_Throwable], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Throwable], - returnType : $rt_voidcls(), - callable : null - }]; - nmwgs_StructureStrongholdPieces$LeftTurn.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "buildComponent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175867_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureStrongholdPieces$LeftTurn, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureVillagePieces$Path.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureVillagePieces$Start, $rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeStructureToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readStructureFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "buildComponent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175848_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmwgs_StructureVillagePieces$Start, ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing], - returnType : nmwgs_StructureBoundingBox, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureMineshaftPieces$Corridor.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeStructureToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readStructureFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175814_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing], - returnType : nmwgs_StructureBoundingBox, - callable : null - }, { - name : "buildComponent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "generateChestContents", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, nmwgs_StructureBoundingBox, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), ju_List, $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureStrongholdPieces$Straight.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeStructureToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readStructureFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "buildComponent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175862_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureStrongholdPieces$Straight, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureVillagePieces$House3.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureVillagePieces$Start, $rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175849_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmwgs_StructureVillagePieces$Start, ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureVillagePieces$House3, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureVillagePieces$House1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureVillagePieces$Start, $rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175850_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmwgs_StructureVillagePieces$Start, ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureVillagePieces$House1, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_180779_c", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_intcls(), - callable : null - }]; - nmwgs_StructureOceanMonumentPieces$Penthouse.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_EnumFacing, nmwgs_StructureBoundingBox], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; nmwgs_StructureNetherBridgePieces$Entrance.$meta.methods = [ { name : "", @@ -111465,431 +112019,6 @@ returnType : $rt_booleancls(), callable : null }]; - nmwgs_StructureStrongholdPieces$ChestCorridor.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeStructureToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readStructureFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "buildComponent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175868_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureStrongholdPieces$ChestCorridor, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmwgs_StructureVillagePieces$Church.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureVillagePieces$Start, $rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175854_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmwgs_StructureVillagePieces$Start, ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureVillagePieces$Church, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_180779_c", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_intcls(), - callable : null - }]; - nmwgs_StructureNetherBridgePieces$Corridor3.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "buildComponent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175883_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureNetherBridgePieces$Corridor3, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureNetherBridgePieces$Corridor2.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readStructureFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeStructureToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "buildComponent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175876_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureNetherBridgePieces$Corridor2, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureOceanMonumentPieces$EntryRoom.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureOceanMonumentPieces$DoubleZRoom.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureStrongholdPieces$StairsStraight.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "buildComponent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175861_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureStrongholdPieces$StairsStraight, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureNetherBridgePieces$Corridor4.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "buildComponent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175880_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureNetherBridgePieces$Corridor4, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureOceanMonumentPieces$SimpleRoom.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nlevsl_LANPeerEvent$LANPeerDataChannelEvent.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getPeerId", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }]; - nmwgs_StructureNetherBridgePieces$End.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175884_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureNetherBridgePieces$End, - callable : null - }, { - name : "readStructureFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeStructureToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureOceanMonumentPieces$DoubleXRoom.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmc_EntityNotFoundException.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, $rt_arraycls(jl_Object)], - returnType : $rt_voidcls(), - callable : null - }]; nmwgs_StructureStrongholdPieces$Crossing.$meta.methods = [ { name : "", @@ -111941,7 +112070,7 @@ returnType : $rt_booleancls(), callable : null }]; - nlev_EncoderException.$meta.methods = [ + nmwgs_StructureOceanMonumentPieces$EntryRoom.$meta.methods = [ { name : "", modifiers : 0, @@ -111953,375 +112082,7 @@ name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [jl_String, jl_Throwable], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Throwable], - returnType : $rt_voidcls(), - callable : null - }]; - nmwgs_StructureVillagePieces$WoodHut.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureVillagePieces$Start, $rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeStructureToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readStructureFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175853_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmwgs_StructureVillagePieces$Start, ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureVillagePieces$WoodHut, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureNetherBridgePieces$Stairs.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "buildComponent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175872_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing], - returnType : nmwgs_StructureNetherBridgePieces$Stairs, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureStrongholdPieces$Library.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeStructureToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readStructureFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175864_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureStrongholdPieces$Library, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmwgs_StructureNetherBridgePieces$Corridor5.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "buildComponent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175877_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureNetherBridgePieces$Corridor5, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureVillagePieces$Torch.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureVillagePieces$Start, $rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175856_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmwgs_StructureVillagePieces$Start, ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing], - returnType : nmwgs_StructureBoundingBox, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureMineshaftPieces$Stairs.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeStructureToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readStructureFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175812_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing], - returnType : nmwgs_StructureBoundingBox, - callable : null - }, { - name : "buildComponent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureVillagePieces$Field1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureVillagePieces$Start, $rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeStructureToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readStructureFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_151559_a", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nlev_EaglercraftRandom], - returnType : nmb_Block, - callable : null - }, { - name : "func_175851_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmwgs_StructureVillagePieces$Start, ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureVillagePieces$Field1, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureNetherBridgePieces$Straight.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "buildComponent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175882_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureNetherBridgePieces$Straight, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureOceanMonumentPieces$DoubleXYRoom.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], + parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition], returnType : $rt_voidcls(), callable : null }, { @@ -112355,7 +112116,30 @@ returnType : $rt_booleancls(), callable : null }]; - nmwgs_StructureVillagePieces$House2.$meta.methods = [ + nmwgs_StructureOceanMonumentPieces$WingRoom.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_EnumFacing, nmwgs_StructureBoundingBox, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureVillagePieces$House3.$meta.methods = [ { name : "", modifiers : 0, @@ -112371,122 +112155,11 @@ returnType : $rt_voidcls(), callable : null }, { - name : "func_175855_a", + name : "func_175849_a", modifiers : 512, accessLevel : 3, parameterTypes : [nmwgs_StructureVillagePieces$Start, ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureVillagePieces$House2, - callable : null - }, { - name : "writeStructureToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readStructureFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_180779_c", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmwgs_StructureStrongholdPieces$RightTurn.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "buildComponent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureVillagePieces$Hall.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureVillagePieces$Start, $rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175857_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmwgs_StructureVillagePieces$Start, ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureVillagePieces$Hall, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_180779_c", - modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_intcls(), - callable : null - }]; - nmwgs_StructureOceanMonumentPieces$DoubleYRoom.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), + returnType : nmwgs_StructureVillagePieces$House3, callable : null }, { name : "addComponentParts", @@ -112519,6 +112192,57 @@ returnType : $rt_booleancls(), callable : null }]; + nmwgs_StructureVillagePieces$Field2.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureVillagePieces$Start, $rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeStructureToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readStructureFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_151560_a", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nlev_EaglercraftRandom], + returnType : nmb_Block, + callable : null + }, { + name : "func_175852_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmwgs_StructureVillagePieces$Start, ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureVillagePieces$Field2, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; nmwgs_StructureStrongholdPieces$RoomCrossing.$meta.methods = [ { name : "", @@ -112577,7 +112301,7 @@ returnType : $rt_voidcls(), callable : null }]; - nmwgs_StructureNetherBridgePieces$Crossing2.$meta.methods = [ + nmwgs_StructureStrongholdPieces$Prison.$meta.methods = [ { name : "", modifiers : 0, @@ -112600,11 +112324,531 @@ returnType : $rt_voidcls(), callable : null }, { - name : "func_175878_a", + name : "func_175860_a", modifiers : 512, accessLevel : 3, parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureNetherBridgePieces$Crossing2, + returnType : nmwgs_StructureStrongholdPieces$Prison, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + cgcc_LinkedListMultimap$KeyList.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [cgcc_LinkedListMultimap$Node], + returnType : $rt_voidcls(), + callable : null + }]; + nmwgs_StructureOceanMonumentPieces$DoubleYRoom.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureNetherBridgePieces$End.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175884_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureNetherBridgePieces$End, + callable : null + }, { + name : "readStructureFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeStructureToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureOceanMonumentPieces$SimpleRoom.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nlevsl_LANPeerEvent$LANPeerDataChannelEvent.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getPeerId", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }]; + nmwgs_StructureVillagePieces$House2.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureVillagePieces$Start, $rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175855_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmwgs_StructureVillagePieces$Start, ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureVillagePieces$House2, + callable : null + }, { + name : "writeStructureToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readStructureFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_180779_c", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmwgs_StructureStrongholdPieces$Corridor.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeStructureToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readStructureFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175869_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing], + returnType : nmwgs_StructureBoundingBox, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureOceanMonumentPieces$DoubleZRoom.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureStrongholdPieces$PortalRoom.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeStructureToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readStructureFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "buildComponent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175865_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureStrongholdPieces$PortalRoom, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureNetherBridgePieces$Corridor3.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "buildComponent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175883_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureNetherBridgePieces$Corridor3, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureMineshaftPieces$Corridor.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeStructureToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readStructureFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175814_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing], + returnType : nmwgs_StructureBoundingBox, + callable : null + }, { + name : "buildComponent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "generateChestContents", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, nmwgs_StructureBoundingBox, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), ju_List, $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureVillagePieces$Field1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureVillagePieces$Start, $rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeStructureToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readStructureFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_151559_a", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nlev_EaglercraftRandom], + returnType : nmb_Block, + callable : null + }, { + name : "func_175851_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmwgs_StructureVillagePieces$Start, ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureVillagePieces$Field1, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureNetherBridgePieces$NetherStalkRoom.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "buildComponent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175875_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureNetherBridgePieces$NetherStalkRoom, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureOceanMonumentPieces$MonumentCoreRoom.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureOceanMonumentPieces$DoubleXYRoom.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), callable : null }, { name : "addComponentParts", @@ -112651,6 +112895,154 @@ returnType : $rt_booleancls(), callable : null }]; + nmc_EntityNotFoundException.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, $rt_arraycls(jl_Object)], + returnType : $rt_voidcls(), + callable : null + }]; + nmwgs_StructureNetherBridgePieces$Corridor.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readStructureFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeStructureToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "buildComponent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175879_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureNetherBridgePieces$Corridor, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureMineshaftPieces$Stairs.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeStructureToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readStructureFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175812_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing], + returnType : nmwgs_StructureBoundingBox, + callable : null + }, { + name : "buildComponent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nlev_EncoderException.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, jl_Throwable], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Throwable], + returnType : $rt_voidcls(), + callable : null + }]; nmwgs_StructureOceanMonumentPieces$MonumentBuilding.$meta.methods = [ { name : "", @@ -112730,6 +113122,619 @@ returnType : $rt_voidcls(), callable : null }]; + nmwgs_StructureVillagePieces$House1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureVillagePieces$Start, $rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175850_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmwgs_StructureVillagePieces$Start, ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureVillagePieces$House1, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_180779_c", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_intcls(), + callable : null + }]; + nmwgs_StructureStrongholdPieces$StairsStraight.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "buildComponent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175861_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureStrongholdPieces$StairsStraight, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureNetherBridgePieces$Corridor5.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "buildComponent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175877_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureNetherBridgePieces$Corridor5, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nlevf_ExecutionException.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, jl_Throwable], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Throwable], + returnType : $rt_voidcls(), + callable : null + }]; + nmwgs_StructureStrongholdPieces$ChestCorridor.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeStructureToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readStructureFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "buildComponent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175868_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureStrongholdPieces$ChestCorridor, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmwgs_StructureStrongholdPieces$LeftTurn.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "buildComponent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175867_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureStrongholdPieces$LeftTurn, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureNetherBridgePieces$Corridor2.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readStructureFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeStructureToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "buildComponent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175876_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureNetherBridgePieces$Corridor2, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureStrongholdPieces$Straight.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeStructureToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readStructureFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "buildComponent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175862_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureStrongholdPieces$Straight, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureVillagePieces$Hall.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureVillagePieces$Start, $rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175857_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmwgs_StructureVillagePieces$Start, ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureVillagePieces$Hall, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_180779_c", + modifiers : 0, + accessLevel : 2, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_intcls(), + callable : null + }]; + nmwgs_StructureNetherBridgePieces$Straight.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "buildComponent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175882_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureNetherBridgePieces$Straight, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureStrongholdPieces$Library.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeStructureToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readStructureFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175864_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureStrongholdPieces$Library, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmwgs_StructureVillagePieces$WoodHut.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureVillagePieces$Start, $rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writeStructureToNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readStructureFromNBT", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175853_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmwgs_StructureVillagePieces$Start, ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureVillagePieces$WoodHut, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureOceanMonumentPieces$DoubleXRoom.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureStrongholdPieces$RightTurn.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "buildComponent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureOceanMonumentPieces$Penthouse.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_EnumFacing, nmwgs_StructureBoundingBox], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureNetherBridgePieces$Corridor4.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + returnType : $rt_voidcls(), + callable : null + }, { + name : "buildComponent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175880_a", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], + returnType : nmwgs_StructureNetherBridgePieces$Corridor4, + callable : null + }, { + name : "addComponentParts", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], + returnType : $rt_booleancls(), + callable : null + }]; nmwgs_StructureVillagePieces$House4Garden.$meta.methods = [ { name : "", @@ -112774,7 +113779,7 @@ returnType : $rt_booleancls(), callable : null }]; - nmwgs_StructureStrongholdPieces$Corridor.$meta.methods = [ + nmwgs_StructureVillagePieces$Path.$meta.methods = [ { name : "", modifiers : 0, @@ -112786,7 +113791,7 @@ name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], + parameterTypes : [nmwgs_StructureVillagePieces$Start, $rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], returnType : $rt_voidcls(), callable : null }, { @@ -112804,10 +113809,17 @@ returnType : $rt_voidcls(), callable : null }, { - name : "func_175869_a", + name : "buildComponent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175848_a", modifiers : 512, accessLevel : 3, - parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing], + parameterTypes : [nmwgs_StructureVillagePieces$Start, ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing], returnType : nmwgs_StructureBoundingBox, callable : null }, { @@ -112818,94 +113830,6 @@ returnType : $rt_booleancls(), callable : null }]; - nmwgs_StructureStrongholdPieces$PortalRoom.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writeStructureToNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readStructureFromNBT", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "buildComponent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175865_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureStrongholdPieces$PortalRoom, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureNetherBridgePieces$NetherStalkRoom.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nlev_EaglercraftRandom, nmwgs_StructureBoundingBox, nmu_EnumFacing], - returnType : $rt_voidcls(), - callable : null - }, { - name : "buildComponent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureComponent, ju_List, nlev_EaglercraftRandom], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175875_a", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_List, nlev_EaglercraftRandom, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmu_EnumFacing, $rt_intcls()], - returnType : nmwgs_StructureNetherBridgePieces$NetherStalkRoom, - callable : null - }, { - name : "addComponentParts", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nlev_EaglercraftRandom, nmwgs_StructureBoundingBox], - returnType : $rt_booleancls(), - callable : null - }]; nmwgs_StructureOceanMonumentPieces$Piece.$meta.methods = [ { name : "func_175820_a", @@ -113031,110 +113955,20 @@ returnType : $rt_arraycls(jl_Object), callable : null }]; - nmc_PlayerSelector$2.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [jl_String, $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "apply", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null - }, { - name : "apply", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }]; - nmnps_S20PacketEntityProperties$Snapshot.$meta.methods = [ + nmwb_BiomeCache$Block.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [nmnps_S20PacketEntityProperties, jl_String, $rt_doublecls(), ju_Collection], + parameterTypes : [nmwb_BiomeCache, $rt_intcls(), $rt_intcls()], returnType : $rt_voidcls(), callable : null }, { - name : "func_151409_a", + name : "getBiomeGenAt", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "func_151410_b", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_doublecls(), - callable : null - }, { - name : "func_151408_c", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Collection, - callable : null - }]; - nmc_PlayerSelector$7.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [jl_String, $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "apply", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null - }, { - name : "apply", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureNetherBridgePieces$PieceWeight.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Class, $rt_intcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Class, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_78822_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_78823_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : nmwb_BiomeGenBase, callable : null }]; nmc_PlayerSelector$9.$meta.methods = [ @@ -113160,30 +113994,7 @@ returnType : $rt_booleancls(), callable : null }]; - nmc_PlayerSelector$5.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [jl_String, $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "apply", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null - }, { - name : "apply", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureStrongholdPieces$1.$meta.methods = [ + nmwgs_StructureStrongholdPieces$2.$meta.methods = [ { name : "", modifiers : 0, @@ -113199,282 +114010,6 @@ returnType : $rt_booleancls(), callable : null }]; - nmwgs_StructureOceanMonumentPieces$FitSimpleRoomTopHelper.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175969_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureOceanMonumentPieces$RoomDefinition], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_175968_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], - returnType : nmwgs_StructureOceanMonumentPieces$Piece, - callable : null - }]; - nmwgs_StructureStrongholdPieces$PieceWeight.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Class, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canSpawnMoreStructuresOfType", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "canSpawnMoreStructures", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureOceanMonumentPieces$YDoubleRoomFitHelper.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175969_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureOceanMonumentPieces$RoomDefinition], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_175968_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], - returnType : nmwgs_StructureOceanMonumentPieces$Piece, - callable : null - }]; - nmwgs_StructureOceanMonumentPieces$YZDoubleRoomFitHelper.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175969_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureOceanMonumentPieces$RoomDefinition], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_175968_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], - returnType : nmwgs_StructureOceanMonumentPieces$Piece, - callable : null - }]; - nmi_ContainerPlayer$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmi_ContainerPlayer, nmi_IInventory, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getSlotStackLimit", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "isItemValid", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getSlotTexture", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }]; - nmc_PlayerSelector$4.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "apply", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null - }, { - name : "apply", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }]; - nmc_PlayerSelector$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "apply", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null - }, { - name : "apply", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureOceanMonumentPieces$XYDoubleRoomFitHelper.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175969_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureOceanMonumentPieces$RoomDefinition], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_175968_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], - returnType : nmwgs_StructureOceanMonumentPieces$Piece, - callable : null - }]; - nmc_PlayerSelector$10.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "apply", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null - }, { - name : "apply", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureOceanMonumentPieces$XDoubleRoomFitHelper.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175969_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwgs_StructureOceanMonumentPieces$RoomDefinition], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_175968_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], - returnType : nmwgs_StructureOceanMonumentPieces$Piece, - callable : null - }]; - nmwgs_StructureVillagePieces$PieceWeight.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Class, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canSpawnMoreVillagePiecesOfType", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "canSpawnMoreVillagePieces", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nmcre_RendererLivingEntity$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmcre_RendererLivingEntity, nme_Entity, $rt_floatcls(), nlevv_Matrix4f, $rt_floatcls(), $rt_floatcls(), nme_EntityLivingBase, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "draw", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], - returnType : $rt_voidcls(), - callable : null - }]; nmv_MerchantRecipe.$meta.methods = [ { name : "", @@ -113603,78 +114138,11 @@ returnType : nmn_NBTTagCompound, callable : null }]; - nmwgs_StructureOceanMonumentPieces$RoomDefinition.$meta.methods = [ + nmwgs_StructureStrongholdPieces$PieceWeight.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175957_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175958_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175959_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_175961_b", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_175960_c", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }]; - nmc_PlayerSelector$3.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "apply", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null - }, { - name : "apply", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }]; - nmwgs_StructureStrongholdPieces$2.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, parameterTypes : [jl_Class, $rt_intcls(), $rt_intcls()], returnType : $rt_voidcls(), callable : null @@ -113685,47 +114153,15 @@ parameterTypes : [$rt_intcls()], returnType : $rt_booleancls(), callable : null - }]; - nmc_PlayerSelector$8.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmu_BlockPos, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null }, { - name : "apply", + name : "canSpawnMoreStructures", modifiers : 0, accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null - }, { - name : "apply", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], + parameterTypes : [], returnType : $rt_booleancls(), callable : null }]; - nmwb_BiomeCache$Block.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmwb_BiomeCache, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getBiomeGenAt", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : nmwb_BiomeGenBase, - callable : null - }]; - nmwgs_StructureOceanMonumentPieces$FitSimpleRoomHelper.$meta.methods = [ + nmwgs_StructureOceanMonumentPieces$FitSimpleRoomTopHelper.$meta.methods = [ { name : "", modifiers : 0, @@ -113748,6 +114184,52 @@ returnType : nmwgs_StructureOceanMonumentPieces$Piece, callable : null }]; + nmc_PlayerSelector$2.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [jl_String, $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "apply", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_booleancls(), + callable : null + }, { + name : "apply", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }]; + nmc_PlayerSelector$6.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [ju_Map], + returnType : $rt_voidcls(), + callable : null + }, { + name : "apply", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_booleancls(), + callable : null + }, { + name : "apply", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }]; nmi_SlotCrafting.$meta.methods = [ { name : "", @@ -113792,6 +114274,342 @@ returnType : $rt_voidcls(), callable : null }]; + nmnps_S20PacketEntityProperties$Snapshot.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmnps_S20PacketEntityProperties, jl_String, $rt_doublecls(), ju_Collection], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_151409_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "func_151410_b", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_doublecls(), + callable : null + }, { + name : "func_151408_c", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Collection, + callable : null + }]; + nmc_PlayerSelector$3.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "apply", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_booleancls(), + callable : null + }, { + name : "apply", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureNetherBridgePieces$PieceWeight.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Class, $rt_intcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Class, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_78822_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_78823_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + nmi_ContainerPlayer$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmi_ContainerPlayer, nmi_IInventory, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getSlotStackLimit", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "isItemValid", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getSlotTexture", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }]; + nmc_PlayerSelector$7.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [jl_String, $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "apply", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_booleancls(), + callable : null + }, { + name : "apply", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }]; + nmc_PlayerSelector$4.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "apply", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_booleancls(), + callable : null + }, { + name : "apply", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }]; + nmc_PlayerSelector$8.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmu_BlockPos, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "apply", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_booleancls(), + callable : null + }, { + name : "apply", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureOceanMonumentPieces$XDoubleRoomFitHelper.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175969_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureOceanMonumentPieces$RoomDefinition], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_175968_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], + returnType : nmwgs_StructureOceanMonumentPieces$Piece, + callable : null + }]; + nmwgs_StructureOceanMonumentPieces$XYDoubleRoomFitHelper.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175969_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureOceanMonumentPieces$RoomDefinition], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_175968_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], + returnType : nmwgs_StructureOceanMonumentPieces$Piece, + callable : null + }]; + nmwgs_StructureVillagePieces$PieceWeight.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Class, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canSpawnMoreVillagePiecesOfType", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "canSpawnMoreVillagePieces", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + nmc_PlayerSelector$5.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [jl_String, $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "apply", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_booleancls(), + callable : null + }, { + name : "apply", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }]; + nmwgs_StructureOceanMonumentPieces$FitSimpleRoomHelper.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175969_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureOceanMonumentPieces$RoomDefinition], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_175968_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], + returnType : nmwgs_StructureOceanMonumentPieces$Piece, + callable : null + }]; + nmwgs_StructureOceanMonumentPieces$YDoubleRoomFitHelper.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175969_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureOceanMonumentPieces$RoomDefinition], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_175968_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], + returnType : nmwgs_StructureOceanMonumentPieces$Piece, + callable : null + }]; + nmwgs_StructureStrongholdPieces$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [jl_Class, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canSpawnMoreStructuresOfType", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }]; nmwgs_StructureOceanMonumentPieces$ZDoubleRoomFitHelper.$meta.methods = [ { name : "", @@ -113815,12 +114633,141 @@ returnType : nmwgs_StructureOceanMonumentPieces$Piece, callable : null }]; - nmc_PlayerSelector$6.$meta.methods = [ + nmc_PlayerSelector$1.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 0, - parameterTypes : [ju_Map], + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "apply", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_booleancls(), + callable : null + }, { + name : "apply", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }]; + nmc_PlayerSelector$10.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "apply", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_booleancls(), + callable : null + }, { + name : "apply", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }]; + nmcre_RendererLivingEntity$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmcre_RendererLivingEntity, nme_Entity, $rt_floatcls(), nlevv_Matrix4f, $rt_floatcls(), $rt_floatcls(), nme_EntityLivingBase, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "draw", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], + returnType : $rt_voidcls(), + callable : null + }]; + nmwgs_StructureOceanMonumentPieces$RoomDefinition.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175957_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175958_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175959_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_175961_b", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_175960_c", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }]; + nmwgs_StructureOceanMonumentPieces$YZDoubleRoomFitHelper.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175969_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmwgs_StructureOceanMonumentPieces$RoomDefinition], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_175968_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_EnumFacing, nmwgs_StructureOceanMonumentPieces$RoomDefinition, nlev_EaglercraftRandom], + returnType : nmwgs_StructureOceanMonumentPieces$Piece, + callable : null + }]; + nmeb_EntityWither$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { @@ -113996,112 +114943,6 @@ returnType : ju_Collection, callable : null }]; - cgcc_DenseImmutableTable$Row.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [cgcc_DenseImmutableTable, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "keyToIndex", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : cgcc_ImmutableMap, - callable : null - }, { - name : "getValue", - modifiers : 0, - accessLevel : 0, - parameterTypes : [$rt_intcls()], - returnType : jl_Object, - callable : null - }, { - name : "isPartialView", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nmep_EntityPlayer$EnumStatus.$meta.methods = [ - { - name : "values", - modifiers : 512, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls(nmep_EntityPlayer$EnumStatus), - callable : null - }, { - name : "valueOf", - modifiers : 512, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : nmep_EntityPlayer$EnumStatus, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [jl_String, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmeb_EntityWither$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "apply", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null - }, { - name : "apply", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }]; - nlevi_PlatformWebRTC$LANClient$signalRemoteConnect$lambda$_4_1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [ju_List, $rt_arraycls(jl_Object)], - returnType : $rt_voidcls(), - callable : null - }, { - name : "handleEvent", - modifiers : 0, - accessLevel : 3, - parameterTypes : [otjde_Event], - returnType : $rt_voidcls(), - callable : null - }, { - name : "handleEvent$exported$0", - modifiers : 0, - accessLevel : 0, - parameterTypes : [otj_JSObject], - returnType : otj_JSObject, - callable : null - }]; nmu_WeightedRandomFishable.$meta.methods = [ { name : "", @@ -114132,49 +114973,72 @@ returnType : nmu_WeightedRandomFishable, callable : null }]; - nmw_GameRules$Value.$meta.methods = [ + nmep_EntityPlayer$EnumStatus.$meta.methods = [ + { + name : "values", + modifiers : 512, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls(nmep_EntityPlayer$EnumStatus), + callable : null + }, { + name : "valueOf", + modifiers : 512, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : nmep_EntityPlayer$EnumStatus, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(nmep_EntityPlayer$EnumStatus), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + cgcc_DenseImmutableTable$Row.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, nmw_GameRules$ValueType], + accessLevel : 0, + parameterTypes : [cgcc_DenseImmutableTable, $rt_intcls()], returnType : $rt_voidcls(), callable : null }, { - name : "setValue", + name : "keyToIndex", modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getString", - modifiers : 0, - accessLevel : 3, + accessLevel : 0, parameterTypes : [], - returnType : jl_String, + returnType : cgcc_ImmutableMap, callable : null }, { - name : "getBoolean", + name : "getValue", modifiers : 0, - accessLevel : 3, + accessLevel : 0, + parameterTypes : [$rt_intcls()], + returnType : jl_Object, + callable : null + }, { + name : "isPartialView", + modifiers : 0, + accessLevel : 0, parameterTypes : [], returnType : $rt_booleancls(), callable : null - }, { - name : "getInt", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getType", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmw_GameRules$ValueType, - callable : null }]; cgcb_Predicates$InstanceOfPredicate.$meta.methods = [ { @@ -114213,6 +115077,29 @@ returnType : jl_String, callable : null }]; + nlevi_PlatformWebRTC$LANClient$signalRemoteConnect$lambda$_4_1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [ju_List, $rt_arraycls(jl_Object)], + returnType : $rt_voidcls(), + callable : null + }, { + name : "handleEvent", + modifiers : 0, + accessLevel : 3, + parameterTypes : [otjde_Event], + returnType : $rt_voidcls(), + callable : null + }, { + name : "handleEvent$exported$0", + modifiers : 0, + accessLevel : 0, + parameterTypes : [otj_JSObject], + returnType : otj_JSObject, + callable : null + }]; ju_TreeMap$TreeNode.$meta.methods = [ { name : "", @@ -114359,6 +115246,50 @@ returnType : jl_Object, callable : null }]; + nmw_GameRules$Value.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, nmw_GameRules$ValueType], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getBoolean", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getInt", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getType", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmw_GameRules$ValueType, + callable : null + }]; nlevsl_LANPeerEvent$LANPeerICECandidateEvent.$meta.methods = [ { name : "", @@ -114375,122 +115306,6 @@ returnType : jl_String, callable : null }]; - nlev_DecoderException.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, jl_Throwable], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Throwable], - returnType : $rt_voidcls(), - callable : null - }]; - nms_StatisticsFile.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nms_MinecraftServer, nleviv_VFile2], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readStatFile", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "saveStatFile", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "unlockAchievement", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer, nms_StatBase, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_150878_c", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Set, - callable : null - }, { - name : "parseJson", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : ju_Map, - callable : null - }, { - name : "dumpJson", - modifiers : 512, - accessLevel : 3, - parameterTypes : [ju_Map], - returnType : jl_String, - callable : null - }, { - name : "func_150877_d", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_150876_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayerMP], - returnType : $rt_voidcls(), - callable : null - }, { - name : "sendAchievements", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayerMP], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_150879_e", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; nmwgs_StructureBoundingBox.$meta.methods = [ { name : "", @@ -114679,6 +115494,122 @@ returnType : jl_Object, callable : null }]; + nms_StatisticsFile.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nms_MinecraftServer, nleviv_VFile2], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readStatFile", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "saveStatFile", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "unlockAchievement", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer, nms_StatBase, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_150878_c", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Set, + callable : null + }, { + name : "parseJson", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : ju_Map, + callable : null + }, { + name : "dumpJson", + modifiers : 512, + accessLevel : 3, + parameterTypes : [ju_Map], + returnType : jl_String, + callable : null + }, { + name : "func_150877_d", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_150876_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayerMP], + returnType : $rt_voidcls(), + callable : null + }, { + name : "sendAchievements", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayerMP], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_150879_e", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nlev_DecoderException.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, jl_Throwable], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Throwable], + returnType : $rt_voidcls(), + callable : null + }]; nms_StatFileWriter.$meta.methods = [ { name : "", @@ -114744,6 +115675,542 @@ returnType : nmu_IJsonSerializable, callable : null }]; + nmt_MobSpawnerBaseLogic$WeightedRandomMinecart.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmt_MobSpawnerBaseLogic, nmn_NBTTagCompound], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmt_MobSpawnerBaseLogic, nmn_NBTTagCompound, jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmt_MobSpawnerBaseLogic, nmn_NBTTagCompound, jl_String, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "toNBT", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmn_NBTTagCompound, + callable : null + }]; + nmb_BlockEventData.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_BlockPos, nmb_Block, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getPosition", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_BlockPos, + callable : null + }, { + name : "getEventID", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getEventParameter", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "getBlock", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmb_Block, + callable : null + }, { + name : "equals", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }, { + name : "toString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }]; + nlevoedg_GuiShaderConfigList$2.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String, ju_List, nlevoed_EaglerDeferredConfig], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDisplayValue", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "toggleOption", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmcg_GuiButton, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDirty", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + nmcgi_CreativeCrafting.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmc_Minecraft], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateCraftingInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_Container, ju_List], + returnType : $rt_voidcls(), + callable : null + }, { + name : "sendSlotContents", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_Container, $rt_intcls(), nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "sendProgressBarUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_Container, $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_175173_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_Container, nmi_IInventory], + returnType : $rt_voidcls(), + callable : null + }]; + nmt_TileEntityBeacon$BeamSegment.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_arraycls($rt_floatcls())], + returnType : $rt_voidcls(), + callable : null + }, { + name : "incrementHeight", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getColors", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_arraycls($rt_floatcls()), + callable : null + }, { + name : "getHeight", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }]; + nlevoedg_GuiShaderConfigList$13.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String, ju_List, nlevoed_EaglerDeferredConfig], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDisplayValue", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "toggleOption", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmcg_GuiButton, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDirty", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + nlevoedg_GuiShaderConfigList$7.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String, ju_List, nlevoed_EaglerDeferredConfig], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDisplayValue", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "toggleOption", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmcg_GuiButton, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDirty", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + nlevoedg_GuiShaderConfigList$ListEntryPackInfo.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nlevoedg_GuiShaderConfigList], + returnType : $rt_voidcls(), + callable : null + }, { + name : "drawEntry", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setSelected", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "mousePressed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "mouseReleased", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }]; + nlevoedg_GuiShaderConfigList$3.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String, ju_List, nlevoed_EaglerDeferredConfig], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDisplayValue", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "toggleOption", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmcg_GuiButton, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDirty", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + nlevoedg_GuiShaderConfigList$6.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String, ju_List, nlevoed_EaglerDeferredConfig], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDisplayValue", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "toggleOption", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmcg_GuiButton, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDirty", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + nlevoedg_GuiShaderConfigList$10.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String, ju_List, nlevoed_EaglerDeferredConfig], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDisplayValue", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "toggleOption", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmcg_GuiButton, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDirty", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + nlevoedg_GuiShaderConfigList$ListEntryButtonRow.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nlevoedg_GuiShaderConfigList, nlevoedg_GuiShaderConfigList$ShaderOption, nlevoedg_GuiShaderConfigList$ShaderOption, nlevoedg_GuiShaderConfigList$ShaderOption], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setSelected", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "drawEntry", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "mousePressed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "mouseReleased", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmcrel_LayerArmorBase$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmcrel_LayerArmorBase, nme_Entity, $rt_floatcls(), nlevv_Matrix4f, $rt_floatcls(), $rt_floatcls(), nmcm_ModelBase, nme_EntityLivingBase, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_intcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "draw", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], + returnType : $rt_voidcls(), + callable : null + }]; + nmu_CombatEntry.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_DamageSource, $rt_intcls(), $rt_floatcls(), $rt_floatcls(), jl_String, $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDamageSrc", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_DamageSource, + callable : null + }, { + name : "func_94563_c", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }, { + name : "isLivingDamageSrc", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_94562_g", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getDamageSrcDisplayName", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_IChatComponent, + callable : null + }, { + name : "getDamageAmount", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_floatcls(), + callable : null + }]; + nlevoedg_GuiShaderConfigList$14.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String, ju_List, nlevoed_EaglerDeferredConfig], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDisplayValue", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "toggleOption", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmcg_GuiButton, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDirty", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + nlevoedg_GuiShaderConfigList$ListEntrySpacing.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nlevoedg_GuiShaderConfigList], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setSelected", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "drawEntry", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "mousePressed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "mouseReleased", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }]; nmnps_S3BPacketScoreboardObjective.$meta.methods = [ { name : "", @@ -114816,58 +116283,162 @@ returnType : $rt_voidcls(), callable : null }]; - nmu_CombatEntry.$meta.methods = [ + nmnps_S3DPacketDisplayScoreboard.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [nmu_DamageSource, $rt_intcls(), $rt_floatcls(), $rt_floatcls(), jl_String, $rt_floatcls()], + parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { - name : "getDamageSrc", + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), nms_ScoreObjective], + returnType : $rt_voidcls(), + callable : null + }, { + name : "readPacketData", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_PacketBuffer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "writePacketData", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmn_PacketBuffer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "processPacket", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmnp_INetHandlerPlayClient], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_149371_c", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : nmu_DamageSource, + returnType : $rt_intcls(), callable : null }, { - name : "func_94563_c", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), - callable : null - }, { - name : "isLivingDamageSrc", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_94562_g", + name : "func_149370_d", modifiers : 0, accessLevel : 3, parameterTypes : [], returnType : jl_String, callable : null }, { - name : "getDamageSrcDisplayName", - modifiers : 0, + name : "processPacket", + modifiers : 96, accessLevel : 3, - parameterTypes : [], - returnType : nmu_IChatComponent, - callable : null - }, { - name : "getDamageAmount", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_floatcls(), + parameterTypes : [nmn_INetHandler], + returnType : $rt_voidcls(), callable : null }]; - nlevoedg_GuiShaderConfigList$11.$meta.methods = [ + nlevoedg_GuiShaderConfigList$8.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String, ju_List, nlevoed_EaglerDeferredConfig], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDisplayValue", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "toggleOption", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmcg_GuiButton, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDirty", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + nlevoedg_GuiShaderConfigList$4.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String, ju_List, nlevoed_EaglerDeferredConfig], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDisplayValue", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "toggleOption", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmcg_GuiButton, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDirty", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; + nlevoedg_GuiShaderConfigList$ListEntryHeader.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setSelected", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "drawEntry", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "mousePressed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "mouseReleased", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }]; + nlevoedg_GuiShaderConfigList$12.$meta.methods = [ { name : "", modifiers : 0, @@ -114927,400 +116498,7 @@ returnType : $rt_booleancls(), callable : null }]; - nlevoedg_GuiShaderConfigList$ListEntryPackInfo.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nlevoedg_GuiShaderConfigList], - returnType : $rt_voidcls(), - callable : null - }, { - name : "drawEntry", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setSelected", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "mousePressed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "mouseReleased", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }]; - nlevoedg_GuiShaderConfigList$7.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String, ju_List, nlevoed_EaglerDeferredConfig], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDisplayValue", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "toggleOption", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmcg_GuiButton, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDirty", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nmnps_S3DPacketDisplayScoreboard.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), nms_ScoreObjective], - returnType : $rt_voidcls(), - callable : null - }, { - name : "readPacketData", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_PacketBuffer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "writePacketData", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmn_PacketBuffer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "processPacket", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmnp_INetHandlerPlayClient], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_149371_c", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "func_149370_d", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "processPacket", - modifiers : 96, - accessLevel : 3, - parameterTypes : [nmn_INetHandler], - returnType : $rt_voidcls(), - callable : null - }]; - nlevoedg_GuiShaderConfigList$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String, ju_List, nlevoed_EaglerDeferredConfig], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDisplayValue", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "toggleOption", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmcg_GuiButton, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDirty", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nmcgi_CreativeCrafting.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmc_Minecraft], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateCraftingInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_Container, ju_List], - returnType : $rt_voidcls(), - callable : null - }, { - name : "sendSlotContents", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_Container, $rt_intcls(), nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "sendProgressBarUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_Container, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_175173_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_Container, nmi_IInventory], - returnType : $rt_voidcls(), - callable : null - }]; - nlevoedg_GuiShaderConfigList$4.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String, ju_List, nlevoed_EaglerDeferredConfig], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDisplayValue", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "toggleOption", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmcg_GuiButton, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDirty", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nlevoedg_GuiShaderConfigList$6.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String, ju_List, nlevoed_EaglerDeferredConfig], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDisplayValue", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "toggleOption", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmcg_GuiButton, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDirty", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nlevoedg_GuiShaderConfigList$14.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String, ju_List, nlevoed_EaglerDeferredConfig], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDisplayValue", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "toggleOption", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmcg_GuiButton, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDirty", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nlevoedg_GuiShaderConfigList$10.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String, ju_List, nlevoed_EaglerDeferredConfig], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDisplayValue", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "toggleOption", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmcg_GuiButton, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDirty", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nmb_BlockEventData.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_BlockPos, nmb_Block, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getPosition", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_BlockPos, - callable : null - }, { - name : "getEventID", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getEventParameter", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "getBlock", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmb_Block, - callable : null - }, { - name : "equals", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }, { - name : "toString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }]; - nmt_TileEntityBeacon$BeamSegment.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_arraycls($rt_floatcls())], - returnType : $rt_voidcls(), - callable : null - }, { - name : "incrementHeight", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getColors", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_arraycls($rt_floatcls()), - callable : null - }, { - name : "getHeight", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }]; - nlevoedg_GuiShaderConfigList$12.$meta.methods = [ + nlevoedg_GuiShaderConfigList$11.$meta.methods = [ { name : "", modifiers : 0, @@ -115380,6 +116558,36 @@ returnType : $rt_booleancls(), callable : null }]; + nlevoedg_GuiShaderConfigList$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String, ju_List, nlevoed_EaglerDeferredConfig], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDisplayValue", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "toggleOption", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmcg_GuiButton, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getDirty", + modifiers : 0, + accessLevel : 2, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }]; nmnps_S3CPacketUpdateScore.$meta.methods = [ { name : "", @@ -115466,283 +116674,6 @@ returnType : $rt_voidcls(), callable : null }]; - nlevoedg_GuiShaderConfigList$2.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String, ju_List, nlevoed_EaglerDeferredConfig], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDisplayValue", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "toggleOption", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmcg_GuiButton, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDirty", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nlevoedg_GuiShaderConfigList$ListEntryHeader.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setSelected", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "drawEntry", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "mousePressed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "mouseReleased", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }]; - nlevoedg_GuiShaderConfigList$ListEntrySpacing.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nlevoedg_GuiShaderConfigList], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setSelected", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "drawEntry", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "mousePressed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "mouseReleased", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }]; - nlevoedg_GuiShaderConfigList$13.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String, ju_List, nlevoed_EaglerDeferredConfig], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDisplayValue", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "toggleOption", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmcg_GuiButton, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDirty", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nlevoedg_GuiShaderConfigList$8.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String, ju_List, nlevoed_EaglerDeferredConfig], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDisplayValue", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "toggleOption", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmcg_GuiButton, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDirty", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nmcrel_LayerArmorBase$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmcrel_LayerArmorBase, nme_Entity, $rt_floatcls(), nlevv_Matrix4f, $rt_floatcls(), $rt_floatcls(), nmcm_ModelBase, nme_EntityLivingBase, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_intcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "draw", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], - returnType : $rt_voidcls(), - callable : null - }]; - nlevoedg_GuiShaderConfigList$ListEntryButtonRow.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nlevoedg_GuiShaderConfigList, nlevoedg_GuiShaderConfigList$ShaderOption, nlevoedg_GuiShaderConfigList$ShaderOption, nlevoedg_GuiShaderConfigList$ShaderOption], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setSelected", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "drawEntry", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "mousePressed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "mouseReleased", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }]; - nlevoedg_GuiShaderConfigList$3.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nlevoedg_GuiShaderConfigList, jl_String, ju_List, nlevoed_EaglerDeferredConfig], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDisplayValue", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "toggleOption", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmcg_GuiButton, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getDirty", - modifiers : 0, - accessLevel : 2, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }]; - nmt_MobSpawnerBaseLogic$WeightedRandomMinecart.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmt_MobSpawnerBaseLogic, nmn_NBTTagCompound], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmt_MobSpawnerBaseLogic, nmn_NBTTagCompound, jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmt_MobSpawnerBaseLogic, nmn_NBTTagCompound, jl_String, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "toNBT", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmn_NBTTagCompound, - callable : null - }]; nlevoedg_GuiShaderConfigList$ShaderOption.$meta.methods = [ { name : "", @@ -115773,12 +116704,12 @@ returnType : $rt_booleancls(), callable : null }]; - nmem_EntityIronGolem$AINearestAttackableTargetNonCreeper$1.$meta.methods = [ + nmea_EntityAINearestAttackableTarget$1.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 0, - parameterTypes : [nmem_EntityIronGolem$AINearestAttackableTargetNonCreeper, cgcb_Predicate, nme_EntityCreature], + parameterTypes : [nmea_EntityAINearestAttackableTarget, cgcb_Predicate], returnType : $rt_voidcls(), callable : null }, { @@ -115819,12 +116750,12 @@ returnType : $rt_booleancls(), callable : null }]; - nmea_EntityAINearestAttackableTarget$1.$meta.methods = [ + nmem_EntityIronGolem$AINearestAttackableTargetNonCreeper$1.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 0, - parameterTypes : [nmea_EntityAINearestAttackableTarget, cgcb_Predicate], + parameterTypes : [nmem_EntityIronGolem$AINearestAttackableTargetNonCreeper, cgcb_Predicate, nme_EntityCreature], returnType : $rt_voidcls(), callable : null }, { @@ -115842,6 +116773,559 @@ returnType : $rt_booleancls(), callable : null }]; + nmea_EntityAIAvoidEntity$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmea_EntityAIAvoidEntity], + returnType : $rt_voidcls(), + callable : null + }, { + name : "apply", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nme_Entity], + returnType : $rt_booleancls(), + callable : null + }, { + name : "apply", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }]; + nmcp_EntityBreakingFX.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmi_Item], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmi_Item, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmi_Item, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFXLayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "renderParticle", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderAccelerated", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevm_IAcceleratedParticleEngine, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }]; + nmcp_EntitySuspendFX.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcp_EntityLargeExplodeFX.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmcrt_TextureManager, nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderParticle", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getBrightnessForRender", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFXLayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcp_Barrier.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmi_Item], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFXLayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "renderParticle", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderAccelerated", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevm_IAcceleratedParticleEngine, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_booleancls(), + callable : null + }]; + nmcp_EntityPortalFX.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderParticle", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getBrightnessForRender", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "getBrightness", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcp_EntitySpellParticleFX.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderParticle", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setBaseSpellTextureIndex", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcp_EntityFlameFX.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderParticle", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getBrightnessForRender", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "getBrightness", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcp_EntityRainFX.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcp_EntityDropParticleFX.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmbm_Material], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getBrightnessForRender", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "getBrightness", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcp_EntityBubbleFX.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcp_EntityExplodeFX.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcp_EntityHeartFX.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderParticle", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcp_EntityCritFX.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmcp_EntityHugeExplodeFX.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderParticle", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFXLayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }]; + nmcp_EntityFootStepFX.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmcrt_TextureManager, nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderParticle", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFXLayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcp_EntitySplashFX.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmcp_EntityBlockDustFX.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmbs_IBlockState], + returnType : $rt_voidcls(), + callable : null + }]; + nmcp_EntityLavaFX.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getBrightnessForRender", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "getBrightness", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_floatcls()], + returnType : $rt_floatcls(), + callable : null + }, { + name : "renderParticle", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcp_EntityFishWakeFX.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcp_MobAppearance.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFXLayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderParticle", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }]; nmcp_EntityReddustFX.$meta.methods = [ { name : "", @@ -115872,68 +117356,6 @@ returnType : $rt_voidcls(), callable : null }]; - nmcp_EntityCloudFX.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderParticle", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcp_EntitySplashFX.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmcp_EntityEnchantmentTableParticleFX.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getBrightnessForRender", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "getBrightness", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; nmcp_EntityCrit2FX.$meta.methods = [ { name : "", @@ -115994,27 +117416,27 @@ returnType : $rt_voidcls(), callable : null }]; - nmcp_EntityDropParticleFX.$meta.methods = [ + nmcp_EntitySnowShovelFX.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmbm_Material], + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], returnType : $rt_voidcls(), callable : null }, { - name : "getBrightnessForRender", + name : "", modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_intcls(), + accessLevel : 2, + parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls()], + returnType : $rt_voidcls(), callable : null }, { - name : "getBrightness", + name : "renderParticle", modifiers : 0, accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_floatcls(), + parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), callable : null }, { name : "onUpdate", @@ -116054,156 +117476,6 @@ returnType : $rt_voidcls(), callable : null }]; - nmcp_EntityFishWakeFX.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcp_EntitySpellParticleFX.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderParticle", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setBaseSpellTextureIndex", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcp_EntityRainFX.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcp_EntityFootStepFX.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmcrt_TextureManager, nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderParticle", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFXLayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcp_EntityBreakingFX.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmi_Item], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmi_Item, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmi_Item, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFXLayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "renderParticle", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderAccelerated", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevm_IAcceleratedParticleEngine, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }]; nmcp_EntityAuraFX.$meta.methods = [ { name : "", @@ -116220,12 +117492,12 @@ returnType : $rt_voidcls(), callable : null }]; - nmcp_EntityLargeExplodeFX.$meta.methods = [ + nmcp_EntityPickupFX.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 2, - parameterTypes : [nmcrt_TextureManager, nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], + accessLevel : 3, + parameterTypes : [nmw_World, nme_Entity, nme_Entity, $rt_floatcls()], returnType : $rt_voidcls(), callable : null }, { @@ -116235,13 +117507,6 @@ parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], returnType : $rt_voidcls(), callable : null - }, { - name : "getBrightnessForRender", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_intcls(), - callable : null }, { name : "onUpdate", modifiers : 0, @@ -116256,15 +117521,8 @@ parameterTypes : [], returnType : $rt_intcls(), callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null }]; - nmcp_EntityHeartFX.$meta.methods = [ + nmcp_EntityCloudFX.$meta.methods = [ { name : "", modifiers : 0, @@ -116272,80 +117530,6 @@ parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], returnType : $rt_voidcls(), callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderParticle", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcp_Barrier.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmi_Item], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFXLayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "renderParticle", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderAccelerated", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevm_IAcceleratedParticleEngine, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_booleancls(), - callable : null - }]; - nmcp_EntityLavaFX.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getBrightnessForRender", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "getBrightness", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_floatcls(), - callable : null }, { name : "renderParticle", modifiers : 0, @@ -116440,7 +117624,7 @@ returnType : $rt_floatcls(), callable : null }]; - nmcp_EntitySuspendFX.$meta.methods = [ + nmcp_EntityEnchantmentTableParticleFX.$meta.methods = [ { name : "", modifiers : 0, @@ -116448,220 +117632,6 @@ parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], returnType : $rt_voidcls(), callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcp_MobAppearance.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFXLayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderParticle", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmea_EntityAIAvoidEntity$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmea_EntityAIAvoidEntity], - returnType : $rt_voidcls(), - callable : null - }, { - name : "apply", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nme_Entity], - returnType : $rt_booleancls(), - callable : null - }, { - name : "apply", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }]; - nmcp_EntityHugeExplodeFX.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderParticle", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFXLayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }]; - nmcp_EntityBubbleFX.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcp_EntityFlameFX.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderParticle", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getBrightnessForRender", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "getBrightness", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_floatcls()], - returnType : $rt_floatcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcp_EntityCritFX.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmcp_EntityExplodeFX.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcp_EntitySnowShovelFX.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderParticle", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmcp_EntityPortalFX.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderParticle", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null }, { name : "getBrightnessForRender", modifiers : 0, @@ -116700,110 +117670,6 @@ returnType : $rt_intcls(), callable : null }]; - nmcp_EntityBlockDustFX.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmw_World, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmbs_IBlockState], - returnType : $rt_voidcls(), - callable : null - }]; - nmcpi_ContainerLocalMenu.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, nmu_IChatComponent, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getField", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_intcls(), - callable : null - }, { - name : "setField", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFieldCount", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "isLocked", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "setLockCode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_LockCode], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getLockCode", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmw_LockCode, - callable : null - }, { - name : "getGuiID", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "createContainer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_InventoryPlayer, nmep_EntityPlayer], - returnType : nmi_Container, - callable : null - }]; - nmcp_EntityPickupFX.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nme_Entity, nme_Entity, $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderParticle", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFXLayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }]; nmep_EntityFishHook.$meta.methods = [ { name : "func_174855_j", @@ -116939,6 +117805,71 @@ returnType : $rt_voidcls(), callable : null }]; + nmcpi_ContainerLocalMenu.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, nmu_IChatComponent, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getField", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_intcls(), + callable : null + }, { + name : "setField", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFieldCount", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "isLocked", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "setLockCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_LockCode], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getLockCode", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmw_LockCode, + callable : null + }, { + name : "getGuiID", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "createContainer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_InventoryPlayer, nmep_EntityPlayer], + returnType : nmi_Container, + callable : null + }]; nmce_EntityOtherPlayerMP.$meta.methods = [ { name : "", @@ -117118,217 +118049,6 @@ returnType : $rt_floatcls(), callable : null }]; - nmb_BlockBeacon$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmw_World, nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }, { - name : "run", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nlevi_QueryResponse.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [oj_JSONObject, $rt_longcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isResponseString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "isResponseJSON", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getResponseString", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : jl_String, - callable : null - }, { - name : "getResponseJSON", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : oj_JSONObject, - callable : null - }]; - nmcrt_LayeredTexture.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_arraycls(jl_String)], - returnType : $rt_voidcls(), - callable : null - }, { - name : "loadTexture", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcr_IResourceManager], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 512, - accessLevel : 0, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nlevi_PlatformVoiceClient$VoicePeer.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlev_EaglercraftUUID, otj_JSObject, $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "disconnect", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "mute", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setRemoteDescription", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "addICECandidate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$setRemoteDescription$13", - modifiers : 32, - accessLevel : 1, - parameterTypes : [otjc_JSError], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$setRemoteDescription$12", - modifiers : 32, - accessLevel : 1, - parameterTypes : [oj_JSONObject], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$setRemoteDescription$11", - modifiers : 32, - accessLevel : 1, - parameterTypes : [otjc_JSError], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$setRemoteDescription$10", - modifiers : 32, - accessLevel : 1, - parameterTypes : [otj_JSObject], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$setRemoteDescription$9", - modifiers : 32, - accessLevel : 1, - parameterTypes : [otjc_JSError], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$setRemoteDescription$8", - modifiers : 32, - accessLevel : 1, - parameterTypes : [otj_JSObject], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$new$7", - modifiers : 544, - accessLevel : 1, - parameterTypes : [otj_JSObject, nlev_EaglercraftUUID, otjde_Event], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$new$6", - modifiers : 544, - accessLevel : 1, - parameterTypes : [nlev_EaglercraftUUID, otjc_JSError], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$new$5", - modifiers : 544, - accessLevel : 1, - parameterTypes : [otj_JSObject, nlev_EaglercraftUUID, otj_JSObject], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$new$4", - modifiers : 544, - accessLevel : 1, - parameterTypes : [nlev_EaglercraftUUID, otjc_JSError], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$new$3", - modifiers : 544, - accessLevel : 1, - parameterTypes : [nlev_EaglercraftUUID, otj_JSObject], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$new$2", - modifiers : 32, - accessLevel : 1, - parameterTypes : [nlev_EaglercraftUUID, otjde_Event], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$new$1", - modifiers : 544, - accessLevel : 1, - parameterTypes : [otjdh_HTMLAudioElement, otjde_Event], - returnType : $rt_voidcls(), - callable : null - }, { - name : "lambda$new$0", - modifiers : 544, - accessLevel : 1, - parameterTypes : [nlev_EaglercraftUUID, otjde_Event], - returnType : $rt_voidcls(), - callable : null - }]; nmcrt_LayeredColorMaskTexture.$meta.methods = [ { name : "", @@ -117352,52 +118072,6 @@ returnType : $rt_voidcls(), callable : null }]; - nmca_PositionedSoundRecord.$meta.methods = [ - { - name : "create", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmu_ResourceLocation, $rt_floatcls()], - returnType : nmca_PositionedSoundRecord, - callable : null - }, { - name : "create", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmu_ResourceLocation], - returnType : nmca_PositionedSoundRecord, - callable : null - }, { - name : "create", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmu_ResourceLocation, $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : nmca_PositionedSoundRecord, - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_ResourceLocation, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmu_ResourceLocation, $rt_floatcls(), $rt_floatcls(), $rt_booleancls(), $rt_intcls(), nmca_ISound$AttenuationType, $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrt_TileEntityBannerRenderer$TimedBannerTexture.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 1, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; nmcn_NetworkPlayerInfo.$meta.methods = [ { name : "", @@ -117575,6 +118249,263 @@ returnType : $rt_voidcls(), callable : null }]; + nmcrt_LayeredTexture.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_arraycls(jl_String)], + returnType : $rt_voidcls(), + callable : null + }, { + name : "loadTexture", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcr_IResourceManager], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 512, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmcrt_TileEntityBannerRenderer$TimedBannerTexture.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmca_PositionedSoundRecord.$meta.methods = [ + { + name : "create", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmu_ResourceLocation, $rt_floatcls()], + returnType : nmca_PositionedSoundRecord, + callable : null + }, { + name : "create", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmu_ResourceLocation], + returnType : nmca_PositionedSoundRecord, + callable : null + }, { + name : "create", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmu_ResourceLocation, $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : nmca_PositionedSoundRecord, + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_ResourceLocation, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmu_ResourceLocation, $rt_floatcls(), $rt_floatcls(), $rt_booleancls(), $rt_intcls(), nmca_ISound$AttenuationType, $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }]; + nlevi_PlatformVoiceClient$VoicePeer.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlev_EaglercraftUUID, otj_JSObject, $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "disconnect", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "mute", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setRemoteDescription", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "addICECandidate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$setRemoteDescription$13", + modifiers : 32, + accessLevel : 1, + parameterTypes : [otjc_JSError], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$setRemoteDescription$12", + modifiers : 32, + accessLevel : 1, + parameterTypes : [oj_JSONObject], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$setRemoteDescription$11", + modifiers : 32, + accessLevel : 1, + parameterTypes : [otjc_JSError], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$setRemoteDescription$10", + modifiers : 32, + accessLevel : 1, + parameterTypes : [otj_JSObject], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$setRemoteDescription$9", + modifiers : 32, + accessLevel : 1, + parameterTypes : [otjc_JSError], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$setRemoteDescription$8", + modifiers : 32, + accessLevel : 1, + parameterTypes : [otj_JSObject], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$new$7", + modifiers : 544, + accessLevel : 1, + parameterTypes : [otj_JSObject, nlev_EaglercraftUUID, otjde_Event], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$new$6", + modifiers : 544, + accessLevel : 1, + parameterTypes : [nlev_EaglercraftUUID, otjc_JSError], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$new$5", + modifiers : 544, + accessLevel : 1, + parameterTypes : [otj_JSObject, nlev_EaglercraftUUID, otj_JSObject], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$new$4", + modifiers : 544, + accessLevel : 1, + parameterTypes : [nlev_EaglercraftUUID, otjc_JSError], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$new$3", + modifiers : 544, + accessLevel : 1, + parameterTypes : [nlev_EaglercraftUUID, otj_JSObject], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$new$2", + modifiers : 32, + accessLevel : 1, + parameterTypes : [nlev_EaglercraftUUID, otjde_Event], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$new$1", + modifiers : 544, + accessLevel : 1, + parameterTypes : [otjdh_HTMLAudioElement, otjde_Event], + returnType : $rt_voidcls(), + callable : null + }, { + name : "lambda$new$0", + modifiers : 544, + accessLevel : 1, + parameterTypes : [nlev_EaglercraftUUID, otjde_Event], + returnType : $rt_voidcls(), + callable : null + }]; + nlevi_QueryResponse.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [oj_JSONObject, $rt_longcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isResponseString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "isResponseJSON", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getResponseString", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : jl_String, + callable : null + }, { + name : "getResponseJSON", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : oj_JSONObject, + callable : null + }]; + nmb_BlockBeacon$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmw_World, nmu_BlockPos], + returnType : $rt_voidcls(), + callable : null + }, { + name : "run", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; nmca_PositionedSound.$meta.methods = [ { name : "", @@ -117647,81 +118578,6 @@ returnType : nmca_ISound$AttenuationType, callable : null }]; - nmcrel_LayerCreeperCharge$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmcrel_LayerCreeperCharge, nme_Entity, nmem_EntityCreeper, nlevv_Matrix4f, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "draw", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], - returnType : $rt_voidcls(), - callable : null - }]; - nmcg_GuiFlatPresets$LayerItem.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_Item, $rt_intcls(), jl_String, jl_String], - returnType : $rt_voidcls(), - callable : null - }]; - nmcg_GuiScreenCustomizePresets$Info.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, nmu_ResourceLocation, nmwg_ChunkProviderSettings$Factory], - returnType : $rt_voidcls(), - callable : null - }]; - nmv_Village$VillageAggressor.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmv_Village, nme_EntityLivingBase, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrt_TileEntityEndPortalRenderer$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmcrt_TileEntityEndPortalRenderer, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), nmt_TileEntityEndPortal, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "draw", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrel_LayerWitherAura$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmcrel_LayerWitherAura, nme_Entity, nmeb_EntityWither, nlevv_Matrix4f, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "draw", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], - returnType : $rt_voidcls(), - callable : null - }]; nmcrel_LayerEnderDragonDeath$1.$meta.methods = [ { name : "", @@ -117738,184 +118594,6 @@ returnType : $rt_voidcls(), callable : null }]; - nmcrel_LayerHeldBlock$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmcrel_LayerHeldBlock, nme_Entity, nlevv_Matrix4f, $rt_floatcls(), $rt_floatcls(), nmcr_BlockRendererDispatcher, nmbs_IBlockState], - returnType : $rt_voidcls(), - callable : null - }, { - name : "draw", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrt_TileEntityBeaconRenderer$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmcrt_TileEntityBeaconRenderer, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), nlevv_Matrix4f, $rt_floatcls(), $rt_floatcls(), nmt_TileEntityBeacon, $rt_floatcls(), $rt_floatcls(), nlevo_WorldRenderer, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmcr_Tessellator], - returnType : $rt_voidcls(), - callable : null - }, { - name : "draw", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrel_LayerSpiderEyes$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmcrel_LayerSpiderEyes, nme_Entity, nlevv_Matrix4f, nmem_EntitySpider, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "draw", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], - returnType : $rt_voidcls(), - callable : null - }]; - nmcrel_LayerEndermanEyes$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmcrel_LayerEndermanEyes, nme_Entity, nlevv_Matrix4f, nmem_EntityEnderman, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "draw", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], - returnType : $rt_voidcls(), - callable : null - }]; - nmcg_GuiPageButtonList$GuiEntry.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcg_Gui, nmcg_Gui], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178022_a", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmcg_Gui, - callable : null - }, { - name : "func_178021_b", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmcg_Gui, - callable : null - }, { - name : "drawEntry", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178017_a", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmcg_Gui, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178024_a", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmcg_GuiButton, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178027_a", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmcg_GuiTextField, $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178025_a", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmcg_GuiLabel, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setSelected", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "mousePressed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_178026_a", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmcg_Gui, $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_178023_a", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmcg_GuiButton, $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_booleancls(), - callable : null - }, { - name : "func_178018_a", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmcg_GuiTextField, $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "mouseReleased", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178016_b", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmcg_Gui, $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "func_178019_b", - modifiers : 0, - accessLevel : 1, - parameterTypes : [nmcg_GuiButton, $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }]; nmcg_GuiTextField.$meta.methods = [ { name : "", @@ -118191,6 +118869,161 @@ returnType : $rt_voidcls(), callable : null }]; + nmcrel_LayerEndermanEyes$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmcrel_LayerEndermanEyes, nme_Entity, nlevv_Matrix4f, nmem_EntityEnderman, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "draw", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], + returnType : $rt_voidcls(), + callable : null + }]; + nmcg_GuiPageButtonList$GuiEntry.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcg_Gui, nmcg_Gui], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178022_a", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmcg_Gui, + callable : null + }, { + name : "func_178021_b", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmcg_Gui, + callable : null + }, { + name : "drawEntry", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178017_a", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmcg_Gui, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178024_a", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmcg_GuiButton, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178027_a", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmcg_GuiTextField, $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178025_a", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmcg_GuiLabel, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setSelected", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "mousePressed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_178026_a", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmcg_Gui, $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_178023_a", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmcg_GuiButton, $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_booleancls(), + callable : null + }, { + name : "func_178018_a", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmcg_GuiTextField, $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "mouseReleased", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178016_b", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmcg_Gui, $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "func_178019_b", + modifiers : 0, + accessLevel : 1, + parameterTypes : [nmcg_GuiButton, $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }]; + nmcrt_TileEntityEndPortalRenderer$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmcrt_TileEntityEndPortalRenderer, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), nmt_TileEntityEndPortal, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), $rt_floatcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "draw", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], + returnType : $rt_voidcls(), + callable : null + }]; + nmcg_GuiScreenCustomizePresets$Info.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, nmu_ResourceLocation, nmwg_ChunkProviderSettings$Factory], + returnType : $rt_voidcls(), + callable : null + }]; nmcm_WorldClient.$meta.methods = [ { name : "", @@ -118375,6 +119208,47 @@ returnType : $rt_intcls(), callable : null }]; + nmcrel_LayerSpiderEyes$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmcrel_LayerSpiderEyes, nme_Entity, nlevv_Matrix4f, nmem_EntitySpider, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "draw", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], + returnType : $rt_voidcls(), + callable : null + }]; + nmcrel_LayerHeldBlock$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmcrel_LayerHeldBlock, nme_Entity, nlevv_Matrix4f, $rt_floatcls(), $rt_floatcls(), nmcr_BlockRendererDispatcher, nmbs_IBlockState], + returnType : $rt_voidcls(), + callable : null + }, { + name : "draw", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], + returnType : $rt_voidcls(), + callable : null + }]; + nmv_Village$VillageAggressor.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmv_Village, nme_EntityLivingBase, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }]; nmcrel_LayerSlimeGel$1.$meta.methods = [ { name : "", @@ -118391,6 +119265,63 @@ returnType : $rt_voidcls(), callable : null }]; + nmcrel_LayerCreeperCharge$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmcrel_LayerCreeperCharge, nme_Entity, nmem_EntityCreeper, nlevv_Matrix4f, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "draw", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], + returnType : $rt_voidcls(), + callable : null + }]; + nmcg_GuiFlatPresets$LayerItem.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_Item, $rt_intcls(), jl_String, jl_String], + returnType : $rt_voidcls(), + callable : null + }]; + nmcrel_LayerWitherAura$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmcrel_LayerWitherAura, nme_Entity, nmeb_EntityWither, nlevv_Matrix4f, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "draw", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], + returnType : $rt_voidcls(), + callable : null + }]; + nmcrt_TileEntityBeaconRenderer$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmcrt_TileEntityBeaconRenderer, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), nlevv_Matrix4f, $rt_floatcls(), $rt_floatcls(), nmt_TileEntityBeacon, $rt_floatcls(), $rt_floatcls(), nlevo_WorldRenderer, $rt_doublecls(), $rt_doublecls(), $rt_doublecls(), nmcr_Tessellator], + returnType : $rt_voidcls(), + callable : null + }, { + name : "draw", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevoed_ShadersRenderPassFuture$PassType], + returnType : $rt_voidcls(), + callable : null + }]; nme_EntityTrackerEntry.$meta.methods = [ { name : "", @@ -118563,36 +119494,6 @@ returnType : jl_String, callable : null }]; - nmcp_EntityParticleEmitter.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nme_Entity, nmu_EnumParticleTypes], - returnType : $rt_voidcls(), - callable : null - }, { - name : "renderParticle", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onUpdate", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getFXLayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }]; nmce_EntityPlayerSP.$meta.methods = [ { name : "", @@ -119197,6 +120098,36 @@ returnType : $rt_voidcls(), callable : null }]; + nmcp_EntityParticleEmitter.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nme_Entity, nmu_EnumParticleTypes], + returnType : $rt_voidcls(), + callable : null + }, { + name : "renderParticle", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nlevo_WorldRenderer, nme_Entity, $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls(), $rt_floatcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onUpdate", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getFXLayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }]; nmw_Teleporter$PortalPosition.$meta.methods = [ { name : "", @@ -119206,6 +120137,43 @@ returnType : $rt_voidcls(), callable : null }]; + nmu_TupleIntJsonSerializable.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getIntegerValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }, { + name : "setIntegerValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getJsonSerializableValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_IJsonSerializable, + callable : null + }, { + name : "setJsonSerializableValue", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmu_IJsonSerializable], + returnType : $rt_voidcls(), + callable : null + }]; nlevp_ServerCapeCache$CapeCacheEntry.$meta.methods = [ { name : "", @@ -119287,66 +120255,6 @@ returnType : $rt_voidcls(), callable : null }]; - nmbs_BlockWorldState$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [cgcb_Predicate], - returnType : $rt_voidcls(), - callable : null - }, { - name : "apply", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmbs_BlockWorldState], - returnType : $rt_booleancls(), - callable : null - }, { - name : "apply", - modifiers : 96, - accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), - callable : null - }]; - nmu_TupleIntJsonSerializable.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getIntegerValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "setIntegerValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getJsonSerializableValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_IJsonSerializable, - callable : null - }, { - name : "setJsonSerializableValue", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmu_IJsonSerializable], - returnType : $rt_voidcls(), - callable : null - }]; nmcr_DestroyBlockProgress.$meta.methods = [ { name : "", @@ -119407,6 +120315,29 @@ returnType : jl_String, callable : null }]; + nmbs_BlockWorldState$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [cgcb_Predicate], + returnType : $rt_voidcls(), + callable : null + }, { + name : "apply", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmbs_BlockWorldState], + returnType : $rt_booleancls(), + callable : null + }, { + name : "apply", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }]; nlevs_CompressionNotSupportedException.$meta.methods = [ { name : "", @@ -119511,114 +120442,26 @@ returnType : nlevma_TexturesProperty, callable : null }]; - nmi_ContainerBrewingStand.$meta.methods = [ + nmi_ContainerEnchantment$1.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_InventoryPlayer, nmi_IInventory], + accessLevel : 0, + parameterTypes : [nmi_ContainerEnchantment, jl_String, $rt_booleancls(), $rt_intcls()], returnType : $rt_voidcls(), callable : null }, { - name : "onCraftGuiOpened", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ICrafting], - returnType : $rt_voidcls(), - callable : null - }, { - name : "detectAndSendChanges", + name : "getInventoryStackLimit", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : $rt_voidcls(), + returnType : $rt_intcls(), callable : null }, { - name : "updateProgressBar", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canInteractWith", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "transferStackInSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer, $rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }]; - nmi_ContainerChest.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_IInventory, nmi_IInventory, nmep_EntityPlayer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canInteractWith", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "transferStackInSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer, $rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "onContainerClosed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getLowerChestInventory", + name : "markDirty", modifiers : 0, accessLevel : 3, parameterTypes : [], - returnType : nmi_IInventory, - callable : null - }]; - nmi_ContainerHorseInventory.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_IInventory, nmi_IInventory, nmep_EntityHorse, nmep_EntityPlayer], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canInteractWith", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "transferStackInSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer, $rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "onContainerClosed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], returnType : $rt_voidcls(), callable : null }]; @@ -119738,21 +120581,72 @@ returnType : $rt_voidcls(), callable : null }]; - nmi_ContainerRepair$1.$meta.methods = [ + nmi_ContainerDispenser.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 0, - parameterTypes : [nmi_ContainerRepair, jl_String, $rt_booleancls(), $rt_intcls()], + accessLevel : 3, + parameterTypes : [nmi_IInventory, nmi_IInventory], returnType : $rt_voidcls(), callable : null }, { - name : "markDirty", + name : "canInteractWith", modifiers : 0, accessLevel : 3, - parameterTypes : [], + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "transferStackInSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer, $rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }]; + nmi_ContainerWorkbench.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_InventoryPlayer, nmw_World, nmu_BlockPos], returnType : $rt_voidcls(), callable : null + }, { + name : "onCraftMatrixChanged", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_IInventory], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onContainerClosed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canInteractWith", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "transferStackInSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer, $rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "canMergeSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack, nmi_Slot], + returnType : $rt_booleancls(), + callable : null }]; nmi_ContainerFurnace.$meta.methods = [ { @@ -119798,54 +120692,12 @@ returnType : nmi_ItemStack, callable : null }]; - nmi_ContainerMerchant.$meta.methods = [ + nmi_ContainerHorseInventory.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [nmep_InventoryPlayer, nme_IMerchant, nmw_World], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getMerchantInventory", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmi_InventoryMerchant, - callable : null - }, { - name : "onCraftGuiOpened", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ICrafting], - returnType : $rt_voidcls(), - callable : null - }, { - name : "detectAndSendChanges", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onCraftMatrixChanged", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_IInventory], - returnType : $rt_voidcls(), - callable : null - }, { - name : "setCurrentRecipeIndex", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "updateProgressBar", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], + parameterTypes : [nmi_IInventory, nmi_IInventory, nmep_EntityHorse, nmep_EntityPlayer], returnType : $rt_voidcls(), callable : null }, { @@ -119921,49 +120773,12 @@ returnType : nmi_ItemStack, callable : null }]; - nmi_ContainerEnchantment$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmi_ContainerEnchantment, jl_String, $rt_booleancls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getInventoryStackLimit", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "markDirty", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }]; - nmi_ContainerWorkbench.$meta.methods = [ + nmi_ContainerChest.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [nmep_InventoryPlayer, nmw_World, nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onCraftMatrixChanged", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_IInventory], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onContainerClosed", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], + parameterTypes : [nmi_IInventory, nmi_IInventory, nmep_EntityPlayer], returnType : $rt_voidcls(), callable : null }, { @@ -119981,19 +120796,63 @@ returnType : nmi_ItemStack, callable : null }, { - name : "canMergeSlot", + name : "onContainerClosed", modifiers : 0, accessLevel : 3, - parameterTypes : [nmi_ItemStack, nmi_Slot], - returnType : $rt_booleancls(), + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getLowerChestInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmi_IInventory, callable : null }]; - nmi_ContainerDispenser.$meta.methods = [ + nmi_ContainerRepair$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmi_ContainerRepair, jl_String, $rt_booleancls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "markDirty", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + nmi_ContainerBrewingStand.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [nmi_IInventory, nmi_IInventory], + parameterTypes : [nmep_InventoryPlayer, nmi_IInventory], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onCraftGuiOpened", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ICrafting], + returnType : $rt_voidcls(), + callable : null + }, { + name : "detectAndSendChanges", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateProgressBar", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], returnType : $rt_voidcls(), callable : null }, { @@ -120090,27 +120949,76 @@ returnType : $rt_voidcls(), callable : null }]; - nmb_BlockSkull$1.$meta.methods = [ + nmi_ContainerMerchant.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 0, + accessLevel : 3, + parameterTypes : [nmep_InventoryPlayer, nme_IMerchant, nmw_World], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getMerchantInventory", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmi_InventoryMerchant, + callable : null + }, { + name : "onCraftGuiOpened", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ICrafting], + returnType : $rt_voidcls(), + callable : null + }, { + name : "detectAndSendChanges", + modifiers : 0, + accessLevel : 3, parameterTypes : [], returnType : $rt_voidcls(), callable : null }, { - name : "apply", + name : "onCraftMatrixChanged", modifiers : 0, accessLevel : 3, - parameterTypes : [nmbs_BlockWorldState], + parameterTypes : [nmi_IInventory], + returnType : $rt_voidcls(), + callable : null + }, { + name : "setCurrentRecipeIndex", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "updateProgressBar", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canInteractWith", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], returnType : $rt_booleancls(), callable : null }, { - name : "apply", - modifiers : 96, + name : "transferStackInSlot", + modifiers : 0, accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), + parameterTypes : [nmep_EntityPlayer, $rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "onContainerClosed", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_voidcls(), callable : null }]; nlevsss_CustomSkullData.$meta.methods = [ @@ -120152,6 +121060,126 @@ returnType : $rt_voidcls(), callable : null }]; + nmb_BlockSkull$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "apply", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmbs_BlockWorldState], + returnType : $rt_booleancls(), + callable : null + }, { + name : "apply", + modifiers : 96, + accessLevel : 3, + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), + callable : null + }]; + nmi_ContainerBeacon$BeaconSlot.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ContainerBeacon, nmi_IInventory, $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isItemValid", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getSlotStackLimit", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }]; + nmi_ContainerRepair$2.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmi_ContainerRepair, nmi_IInventory, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmw_World, nmu_BlockPos], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isItemValid", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }, { + name : "canTakeStack", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer], + returnType : $rt_booleancls(), + callable : null + }, { + name : "onPickupFromSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer, nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }]; + nmi_SlotFurnaceOutput.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer, nmi_IInventory, $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isItemValid", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }, { + name : "decrStackSize", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls()], + returnType : nmi_ItemStack, + callable : null + }, { + name : "onPickupFromSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer, nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onCrafting", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmi_ItemStack, $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "onCrafting", + modifiers : 0, + accessLevel : 2, + parameterTypes : [nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }]; nmi_SlotMerchantResult.$meta.methods = [ { name : "", @@ -120203,75 +121231,6 @@ returnType : $rt_booleancls(), callable : null }]; - nmi_ContainerBrewingStand$Potion.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer, nmi_IInventory, $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isItemValid", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getSlotStackLimit", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }, { - name : "onPickupFromSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer, nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "canHoldPotion", - modifiers : 512, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }]; - nmi_ContainerHorseInventory$1.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmi_ContainerHorseInventory, nmi_IInventory, $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isItemValid", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }]; - nmi_ContainerEnchantment$3.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmi_ContainerEnchantment, nmi_IInventory, $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isItemValid", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }]; nmi_SlotFurnaceFuel.$meta.methods = [ { name : "", @@ -120325,103 +121284,6 @@ returnType : $rt_intcls(), callable : null }]; - nmi_ContainerEnchantment$2.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmi_ContainerEnchantment, nmi_IInventory, $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isItemValid", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }, { - name : "getSlotStackLimit", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }]; - nmi_SlotFurnaceOutput.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer, nmi_IInventory, $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isItemValid", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }, { - name : "decrStackSize", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls()], - returnType : nmi_ItemStack, - callable : null - }, { - name : "onPickupFromSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer, nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onCrafting", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmi_ItemStack, $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "onCrafting", - modifiers : 0, - accessLevel : 2, - parameterTypes : [nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }]; - nmi_ContainerRepair$2.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [nmi_ContainerRepair, nmi_IInventory, $rt_intcls(), $rt_intcls(), $rt_intcls(), nmw_World, nmu_BlockPos], - returnType : $rt_voidcls(), - callable : null - }, { - name : "isItemValid", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmi_ItemStack], - returnType : $rt_booleancls(), - callable : null - }, { - name : "canTakeStack", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer], - returnType : $rt_booleancls(), - callable : null - }, { - name : "onPickupFromSlot", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmep_EntityPlayer, nmi_ItemStack], - returnType : $rt_voidcls(), - callable : null - }]; nmi_ContainerHorseInventory$2.$meta.methods = [ { name : "", @@ -120445,12 +121307,28 @@ returnType : $rt_booleancls(), callable : null }]; - nmi_ContainerBeacon$BeaconSlot.$meta.methods = [ + nmi_ContainerEnchantment$3.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmi_ContainerEnchantment, nmi_IInventory, $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isItemValid", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }]; + nmi_ContainerBrewingStand$Potion.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 3, - parameterTypes : [nmi_ContainerBeacon, nmi_IInventory, $rt_intcls(), $rt_intcls(), $rt_intcls()], + parameterTypes : [nmep_EntityPlayer, nmi_IInventory, $rt_intcls(), $rt_intcls(), $rt_intcls()], returnType : $rt_voidcls(), callable : null }, { @@ -120467,6 +121345,20 @@ parameterTypes : [], returnType : $rt_intcls(), callable : null + }, { + name : "onPickupFromSlot", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmep_EntityPlayer, nmi_ItemStack], + returnType : $rt_voidcls(), + callable : null + }, { + name : "canHoldPotion", + modifiers : 512, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null }]; nlevssv_IntegratedVoiceService$VoicePair.$meta.methods = [ { @@ -120498,6 +121390,82 @@ returnType : $rt_booleancls(), callable : null }]; + nmi_ContainerEnchantment$2.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmi_ContainerEnchantment, nmi_IInventory, $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isItemValid", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }, { + name : "getSlotStackLimit", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null + }]; + nmi_ContainerHorseInventory$1.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [nmi_ContainerHorseInventory, nmi_IInventory, $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "isItemValid", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmi_ItemStack], + returnType : $rt_booleancls(), + callable : null + }]; + nmbs_BlockWorldState.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmw_World, nmu_BlockPos, $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "getBlockState", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmbs_IBlockState, + callable : null + }, { + name : "getTileEntity", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmt_TileEntity, + callable : null + }, { + name : "getPos", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : nmu_BlockPos, + callable : null + }, { + name : "hasState", + modifiers : 512, + accessLevel : 3, + parameterTypes : [cgcb_Predicate], + returnType : cgcb_Predicate, + callable : null + }]; cgcb_Functions$ToStringFunction.$meta.methods = [ { name : "values", @@ -120541,6 +121509,13 @@ parameterTypes : [jl_Object], returnType : jl_Object, callable : null + }, { + name : "$values", + modifiers : 544, + accessLevel : 1, + parameterTypes : [], + returnType : $rt_arraycls(cgcb_Functions$ToStringFunction), + callable : null }, { name : "", modifiers : 512, @@ -120549,43 +121524,6 @@ returnType : $rt_voidcls(), callable : null }]; - nmbs_BlockWorldState.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmw_World, nmu_BlockPos, $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "getBlockState", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmbs_IBlockState, - callable : null - }, { - name : "getTileEntity", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmt_TileEntity, - callable : null - }, { - name : "getPos", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : nmu_BlockPos, - callable : null - }, { - name : "hasState", - modifiers : 512, - accessLevel : 3, - parameterTypes : [cgcb_Predicate], - returnType : cgcb_Predicate, - callable : null - }]; nmcp_EntityFirework$StarterFX.$meta.methods = [ { name : "", @@ -120695,28 +121633,14 @@ returnType : jl_Object, callable : null }]; - ju_AbstractMap$KeySet.$meta.methods = [ + nlevp_ServerSkinCache$WaitingSkin.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 1, - parameterTypes : [ju_AbstractMap], + accessLevel : 2, + parameterTypes : [$rt_longcls(), nlevp_SkinModel], returnType : $rt_voidcls(), callable : null - }, { - name : "iterator", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : ju_Iterator, - callable : null - }, { - name : "size", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null }]; ju_HashMap$1.$meta.methods = [ { @@ -120769,14 +121693,28 @@ returnType : $rt_voidcls(), callable : null }]; - nlev_EaglercraftSoundManager$WaitingSoundEvent.$meta.methods = [ + ju_AbstractMap$KeySet.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 1, - parameterTypes : [nmca_ISound, $rt_intcls()], + parameterTypes : [ju_AbstractMap], returnType : $rt_voidcls(), callable : null + }, { + name : "iterator", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Iterator, + callable : null + }, { + name : "size", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), + callable : null }]; ju_IdentityHashMap$1.$meta.methods = [ { @@ -120822,28 +121760,28 @@ returnType : ju_Iterator, callable : null }]; - nmcgi_GuiBeacon$PowerButton.$meta.methods = [ + nlev_EaglercraftSoundManager$WaitingSoundEvent.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 3, - parameterTypes : [nmcgi_GuiBeacon, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "drawButtonForegroundLayer", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls()], + accessLevel : 1, + parameterTypes : [nmca_ISound, $rt_intcls()], returnType : $rt_voidcls(), callable : null }]; - nlevp_ServerSkinCache$WaitingSkin.$meta.methods = [ + nmcg_GuiMerchant$MerchantButton.$meta.methods = [ { name : "", modifiers : 0, - accessLevel : 2, - parameterTypes : [$rt_longcls(), nlevp_SkinModel], + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "drawButton", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], returnType : $rt_voidcls(), callable : null }]; @@ -120879,6 +121817,22 @@ returnType : $rt_voidcls(), callable : null }]; + nmcgi_GuiBeacon$PowerButton.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [nmcgi_GuiBeacon, $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }, { + name : "drawButtonForegroundLayer", + modifiers : 0, + accessLevel : 3, + parameterTypes : [$rt_intcls(), $rt_intcls()], + returnType : $rt_voidcls(), + callable : null + }]; nmcg_GuiRepair.$meta.methods = [ { name : "", @@ -120986,22 +121940,6 @@ returnType : $rt_voidcls(), callable : null }]; - nmcg_GuiMerchant$MerchantButton.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [$rt_intcls(), $rt_intcls(), $rt_intcls(), $rt_booleancls()], - returnType : $rt_voidcls(), - callable : null - }, { - name : "drawButton", - modifiers : 0, - accessLevel : 3, - parameterTypes : [nmc_Minecraft, $rt_intcls(), $rt_intcls()], - returnType : $rt_voidcls(), - callable : null - }]; nmcgi_GuiBeacon$Button.$meta.methods = [ { name : "", @@ -121477,27 +122415,57 @@ returnType : $rt_voidcls(), callable : null }]; - nmcs_CommandAchievement$1.$meta.methods = [ + ju_Collections$11.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 0, - parameterTypes : [nmcs_CommandAchievement, nmep_EntityPlayerMP, nms_StatBase], + parameterTypes : [ju_Iterator], returnType : $rt_voidcls(), callable : null }, { - name : "apply", + name : "hasNext", modifiers : 0, accessLevel : 3, - parameterTypes : [nms_Achievement], + parameterTypes : [], returnType : $rt_booleancls(), callable : null }, { - name : "apply", - modifiers : 96, + name : "next", + modifiers : 0, accessLevel : 3, - parameterTypes : [jl_Object], - returnType : $rt_booleancls(), + parameterTypes : [], + returnType : jl_Object, + callable : null + }, { + name : "remove", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }]; + ju_Collections$12.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 0, + parameterTypes : [ju_Set], + returnType : $rt_voidcls(), + callable : null + }, { + name : "iterator", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : ju_Iterator, + callable : null + }, { + name : "size", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_intcls(), callable : null }]; jlr_Constructor.$meta.methods = [ @@ -121572,57 +122540,27 @@ returnType : $rt_booleancls(), callable : null }]; - ju_Collections$12.$meta.methods = [ + nmcs_CommandAchievement$1.$meta.methods = [ { name : "", modifiers : 0, accessLevel : 0, - parameterTypes : [ju_Set], + parameterTypes : [nmcs_CommandAchievement, nmep_EntityPlayerMP, nms_StatBase], returnType : $rt_voidcls(), callable : null }, { - name : "iterator", + name : "apply", modifiers : 0, accessLevel : 3, - parameterTypes : [], - returnType : ju_Iterator, - callable : null - }, { - name : "size", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_intcls(), - callable : null - }]; - ju_Collections$11.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 0, - parameterTypes : [ju_Iterator], - returnType : $rt_voidcls(), - callable : null - }, { - name : "hasNext", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], + parameterTypes : [nms_Achievement], returnType : $rt_booleancls(), callable : null }, { - name : "next", - modifiers : 0, + name : "apply", + modifiers : 96, accessLevel : 3, - parameterTypes : [], - returnType : jl_Object, - callable : null - }, { - name : "remove", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), + parameterTypes : [jl_Object], + returnType : $rt_booleancls(), callable : null }]; nmcp_EntityFirework$OverlayFX.$meta.methods = [ @@ -121648,16 +122586,7 @@ returnType : $rt_booleancls(), callable : null }]; - nmc_WrongUsageException.$meta.methods = [ - { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [jl_String, $rt_arraycls(jl_Object)], - returnType : $rt_voidcls(), - callable : null - }]; - nmc_PlayerNotFoundException.$meta.methods = [ + nmc_CommandNotFoundException.$meta.methods = [ { name : "", modifiers : 0, @@ -121689,6 +122618,22 @@ returnType : $rt_voidcls(), callable : null }]; + nmc_SyntaxErrorException.$meta.methods = [ + { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [], + returnType : $rt_voidcls(), + callable : null + }, { + name : "", + modifiers : 0, + accessLevel : 3, + parameterTypes : [jl_String, $rt_arraycls(jl_Object)], + returnType : $rt_voidcls(), + callable : null + }]; nmc_CommandSpreadPlayers$Position.$meta.methods = [ { name : "", @@ -121761,7 +122706,7 @@ returnType : $rt_voidcls(), callable : null }]; - nmc_SyntaxErrorException.$meta.methods = [ + nmc_PlayerNotFoundException.$meta.methods = [ { name : "", modifiers : 0, @@ -121777,15 +122722,8 @@ returnType : $rt_voidcls(), callable : null }]; - nmc_CommandNotFoundException.$meta.methods = [ + nmc_WrongUsageException.$meta.methods = [ { - name : "", - modifiers : 0, - accessLevel : 3, - parameterTypes : [], - returnType : $rt_voidcls(), - callable : null - }, { name : "", modifiers : 0, accessLevel : 3, @@ -123763,13 +124701,13 @@ nmcg_GuiGameOver[c] = nmcg_GuiGameOver__init_; ji_FileNotFoundException[c] = ji_FileNotFoundException__init_; ju_ConcurrentModificationException[c] = ju_ConcurrentModificationException__init_; - nlevsi_IPCPacket0FListFiles[c] = nlevsi_IPCPacket0FListFiles__init_; - nlevsi_IPCPacket10FileRead[c] = nlevsi_IPCPacket10FileRead__init_; - nlevsi_IPCPacket12FileWrite[c] = nlevsi_IPCPacket12FileWrite__init_; - nlevsi_IPCPacket01StopServer[c] = nlevsi_IPCPacket01StopServer__init_; nlevsi_IPCPacket19Autosave[c] = nlevsi_IPCPacket19Autosave__init_; + nlevsi_IPCPacket0FListFiles[c] = nlevsi_IPCPacket0FListFiles__init_; + nlevsi_IPCPacket12FileWrite[c] = nlevsi_IPCPacket12FileWrite__init_; nlevsi_IPCPacket0EListWorlds[c] = nlevsi_IPCPacket0EListWorlds__init_; + nlevsi_IPCPacket01StopServer[c] = nlevsi_IPCPacket01StopServer__init_; nlevsi_IPCPacket13FileCopyMove[c] = nlevsi_IPCPacket13FileCopyMove__init_; + nlevsi_IPCPacket10FileRead[c] = nlevsi_IPCPacket10FileRead__init_; nPs_Lagometer[c] = nPs_Lagometer__init_; nmcr_RenderHelper[c] = nmcr_RenderHelper__init_; otcic_Console[c] = otcic_Console__init_; @@ -124204,12 +125142,12 @@ nlevi_PlatformApplication$FileChooserCallbackImpl[c] = nlevi_PlatformApplication$FileChooserCallbackImpl__init_; nlevs_ConnectionHandshake[c] = nlevs_ConnectionHandshake__init_; nlevp_ProfileExporter[c] = nlevp_ProfileExporter__init_; - nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_0[c] = nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_0__init_; - nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_1[c] = nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_1__init_; - nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_2[c] = nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_2__init_; - nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_3[c] = nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_3__init_; - nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_4[c] = nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_4__init_; - nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_5[c] = nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_5__init_; + nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_0[c] = nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_0__init_; + nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_1[c] = nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_1__init_; + nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_2[c] = nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_2__init_; + nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_3[c] = nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_3__init_; + nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_4[c] = nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_4__init_; + nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_5[c] = nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_5__init_; nlevoedt_EaglerBitwisePackedTexture[c] = nlevoedt_EaglerBitwisePackedTexture__init_; nlevs_HandshakePacketTypes[c] = nlevs_HandshakePacketTypes__init_; nmeb_EntityWither$1[c] = nmeb_EntityWither$1__init_; @@ -124918,17 +125856,9 @@ jl_Exception__init_(var_0); return var_0; } - function jl_Exception__init_1(var_0) { - var var_1 = new jl_Exception(); - jl_Exception__init_2(var_1, var_0); - return var_1; - } function jl_Exception__init_($this) { jl_Throwable__init_0($this); } - function jl_Exception__init_2($this, $message) { - jl_Throwable__init_($this, $message); - } var jl_RuntimeException = $rt_classWithoutFields(jl_Exception); function jl_RuntimeException__init_1() { var var_0 = new jl_RuntimeException(); @@ -138154,7 +139084,7 @@ } if (!$rt_isInstance($value, ju_Map) && !$rt_isInstance($value, jl_Iterable) && !($value instanceof oj_JSONObject)) { var$5 = new oj_JSONException; - $ptr = 18; + $ptr = 19; continue main; } var$5 = new oj_JSONException; @@ -138217,56 +139147,63 @@ } $key = $tmp; $value = jl_Object_getClass($value); + $ptr = 10; + case 10: + $tmp = jl_String_valueOf($value); + if ($rt_suspending()) { + break main; + } + $value = $tmp; var$6 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$6); var$7 = $rt_s(177); - $ptr = 10; - case 10: + $ptr = 11; + case 11: jl_AbstractStringBuilder_append(var$6, var$7); if ($rt_suspending()) { break main; } - $ptr = 11; - case 11: - jl_AbstractStringBuilder_append(var$6, $key); - if ($rt_suspending()) { - break main; - } - $key = $rt_s(207); $ptr = 12; case 12: jl_AbstractStringBuilder_append(var$6, $key); if ($rt_suspending()) { break main; } + $key = $rt_s(207); $ptr = 13; case 13: + jl_AbstractStringBuilder_append(var$6, $key); + if ($rt_suspending()) { + break main; + } + $ptr = 14; + case 14: jl_AbstractStringBuilder_append(var$6, $valueType); if ($rt_suspending()) { break main; } $key = $rt_s(209); - $ptr = 14; - case 14: + $ptr = 15; + case 15: jl_AbstractStringBuilder_append(var$6, $key); if ($rt_suspending()) { break main; } - $ptr = 15; - case 15: + $ptr = 16; + case 16: jl_AbstractStringBuilder_append(var$6, $value); if ($rt_suspending()) { break main; } $key = $rt_s(210); - $ptr = 16; - case 16: + $ptr = 17; + case 17: jl_AbstractStringBuilder_append(var$6, $key); if ($rt_suspending()) { break main; } - $ptr = 17; - case 17: + $ptr = 18; + case 18: $tmp = jl_AbstractStringBuilder_toString(var$6); if ($rt_suspending()) { break main; @@ -138274,76 +139211,90 @@ $key = $tmp; jl_Throwable__init_4(var$5, $key, $cause); return var$5; - case 18: + case 19: $tmp = oj_JSONObject_quote($key); if ($rt_suspending()) { break main; } $key = $tmp; var$6 = jl_Object_getClass($value); + $ptr = 20; + case 20: + $tmp = jl_String_valueOf(var$6); + if ($rt_suspending()) { + break main; + } + var$6 = $tmp; + $ptr = 21; + case 21: + $tmp = jl_String_valueOf($value); + if ($rt_suspending()) { + break main; + } + $value = $tmp; var$7 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$7); var$8 = $rt_s(177); - $ptr = 19; - case 19: + $ptr = 22; + case 22: jl_AbstractStringBuilder_append(var$7, var$8); if ($rt_suspending()) { break main; } - $ptr = 20; - case 20: - jl_AbstractStringBuilder_append(var$7, $key); - if ($rt_suspending()) { - break main; - } - $key = $rt_s(207); - $ptr = 21; - case 21: - jl_AbstractStringBuilder_append(var$7, $key); - if ($rt_suspending()) { - break main; - } - $ptr = 22; - case 22: - jl_AbstractStringBuilder_append(var$7, $valueType); - if ($rt_suspending()) { - break main; - } - $key = $rt_s(209); $ptr = 23; case 23: jl_AbstractStringBuilder_append(var$7, $key); if ($rt_suspending()) { break main; } + $key = $rt_s(207); $ptr = 24; case 24: + jl_AbstractStringBuilder_append(var$7, $key); + if ($rt_suspending()) { + break main; + } + $ptr = 25; + case 25: + jl_AbstractStringBuilder_append(var$7, $valueType); + if ($rt_suspending()) { + break main; + } + $key = $rt_s(209); + $ptr = 26; + case 26: + jl_AbstractStringBuilder_append(var$7, $key); + if ($rt_suspending()) { + break main; + } + $ptr = 27; + case 27: jl_AbstractStringBuilder_append(var$7, var$6); if ($rt_suspending()) { break main; } $key = $rt_s(211); - $ptr = 25; - case 25: + $ptr = 28; + case 28: jl_AbstractStringBuilder_append(var$7, $key); if ($rt_suspending()) { break main; } - $ptr = 26; - case 26: + $ptr = 29; + case 29: jl_AbstractStringBuilder_append(var$7, $value); if ($rt_suspending()) { break main; } $key = $rt_s(210); - $ptr = 27; - case 27: + $ptr = 30; + case 30: jl_AbstractStringBuilder_append(var$7, $key); if ($rt_suspending()) { break main; } - $ptr = 28; - case 28: + $ptr = 31; + case 31: $tmp = jl_AbstractStringBuilder_toString(var$7); if ($rt_suspending()) { break main; @@ -157421,8 +158372,6 @@ var$17 = $inputstream; $textureManagerInstance = nmc_Minecraft_logger; $scaledresolution = nmc_Minecraft_locationMojangPng; - $tessellator = jl_StringBuilder__init_(); - $worldrenderer = $rt_s(451); $ptr = 20; continue main; } catch ($$e) { @@ -157431,7 +158380,7 @@ } try { - $ptr = 24; + $ptr = 25; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -157462,8 +158411,6 @@ var$17 = $inputstream; $textureManagerInstance = nmc_Minecraft_logger; $scaledresolution = nmc_Minecraft_locationMojangPng; - $tessellator = jl_StringBuilder__init_(); - $worldrenderer = $rt_s(451); $ptr = 20; continue main; } catch ($$e) { @@ -157472,7 +158419,7 @@ } try { - $ptr = 24; + $ptr = 25; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -157492,7 +158439,7 @@ $scaledresolution = $tmp; $inputstream = $scaledresolution; var$17 = $scaledresolution; - $tessellator = $rt_s(452); + $tessellator = $rt_s(451); $worldrenderer = new nmcrt_DynamicTexture; $ptr = 16; continue main; @@ -157507,8 +158454,6 @@ var$17 = $inputstream; $textureManagerInstance = nmc_Minecraft_logger; $scaledresolution = nmc_Minecraft_locationMojangPng; - $tessellator = jl_StringBuilder__init_(); - $worldrenderer = $rt_s(451); $ptr = 20; continue main; } catch ($$e) { @@ -157517,7 +158462,7 @@ } try { - $ptr = 24; + $ptr = 25; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -157548,8 +158493,6 @@ var$17 = $inputstream; $textureManagerInstance = nmc_Minecraft_logger; $scaledresolution = nmc_Minecraft_locationMojangPng; - $tessellator = jl_StringBuilder__init_(); - $worldrenderer = $rt_s(451); $ptr = 20; continue main; } catch ($$e) { @@ -157558,7 +158501,7 @@ } try { - $ptr = 24; + $ptr = 25; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -157588,8 +158531,6 @@ var$17 = $inputstream; $textureManagerInstance = nmc_Minecraft_logger; $scaledresolution = nmc_Minecraft_locationMojangPng; - $tessellator = jl_StringBuilder__init_(); - $worldrenderer = $rt_s(451); $ptr = 20; continue main; } catch ($$e) { @@ -157598,7 +158539,7 @@ } try { - $ptr = 24; + $ptr = 25; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -157630,8 +158571,6 @@ var$17 = $inputstream; $textureManagerInstance = nmc_Minecraft_logger; $scaledresolution = nmc_Minecraft_locationMojangPng; - $tessellator = jl_StringBuilder__init_(); - $worldrenderer = $rt_s(451); $ptr = 20; continue main; } catch ($$e) { @@ -157640,7 +158579,7 @@ } try { - $ptr = 24; + $ptr = 25; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -157669,7 +158608,7 @@ } } try { - $ptr = 25; + $ptr = 26; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -157678,15 +158617,13 @@ throw $$e; } } - $ptr = 27; + $ptr = 28; continue main; } try { var$17 = $inputstream; $textureManagerInstance = nmc_Minecraft_logger; $scaledresolution = nmc_Minecraft_locationMojangPng; - $tessellator = jl_StringBuilder__init_(); - $worldrenderer = $rt_s(451); $ptr = 20; continue main; } catch ($$e) { @@ -157696,7 +158633,7 @@ } } try { - $ptr = 24; + $ptr = 25; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -157708,11 +158645,13 @@ $rt_throw($textureManagerInstance); case 20: try { - $tmp = jl_StringBuilder_append($tessellator, $worldrenderer); + $tmp = jl_String_valueOf($scaledresolution); if ($rt_suspending()) { break main; } - $worldrenderer = $tmp; + $scaledresolution = $tmp; + $tessellator = jl_StringBuilder__init_(); + $worldrenderer = $rt_s(452); $ptr = 21; continue main; } catch ($$e) { @@ -157721,7 +158660,7 @@ } try { - $ptr = 24; + $ptr = 25; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -157733,10 +158672,11 @@ $rt_throw($textureManagerInstance); case 21: try { - jl_StringBuilder_append($worldrenderer, $scaledresolution); + $tmp = jl_StringBuilder_append($tessellator, $worldrenderer); if ($rt_suspending()) { break main; } + $worldrenderer = $tmp; $ptr = 22; continue main; } catch ($$e) { @@ -157745,7 +158685,7 @@ } try { - $ptr = 24; + $ptr = 25; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -157757,14 +158697,10 @@ $rt_throw($textureManagerInstance); case 22: try { - $tmp = jl_StringBuilder_toString($tessellator); + jl_StringBuilder_append($worldrenderer, $scaledresolution); if ($rt_suspending()) { break main; } - $scaledresolution = $tmp; - var$17 = $inputstream; - var$21 = $rt_createArray(jl_Object, 1); - var$21.data[0] = $ioexception; $ptr = 23; continue main; } catch ($$e) { @@ -157773,7 +158709,7 @@ } try { - $ptr = 24; + $ptr = 25; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -157784,6 +158720,34 @@ } $rt_throw($textureManagerInstance); case 23: + try { + $tmp = jl_StringBuilder_toString($tessellator); + if ($rt_suspending()) { + break main; + } + $scaledresolution = $tmp; + var$17 = $inputstream; + var$21 = $rt_createArray(jl_Object, 1); + var$21.data[0] = $ioexception; + $ptr = 24; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $textureManagerInstance = $$je; + + } + try { + $ptr = 25; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + } else { + throw $$e; + } + } + $rt_throw($textureManagerInstance); + case 24: a: { try { nlevl_Logger_error($textureManagerInstance, $scaledresolution, var$21); @@ -157797,7 +158761,7 @@ } try { - $ptr = 24; + $ptr = 25; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -157809,7 +158773,7 @@ $rt_throw($textureManagerInstance); } try { - $ptr = 26; + $ptr = 27; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -157818,9 +158782,9 @@ throw $$e; } } - $ptr = 27; + $ptr = 28; continue main; - case 24: + case 25: a: { try { var$17.$close(); @@ -157837,7 +158801,7 @@ } } $rt_throw($textureManagerInstance); - case 25: + case 26: a: { try { $scaledresolution.$close(); @@ -157853,9 +158817,9 @@ } } } - $ptr = 27; + $ptr = 28; continue main; - case 26: + case 27: a: { try { $inputstream.$close(); @@ -157871,8 +158835,8 @@ } } } - $ptr = 27; - case 27: + $ptr = 28; + case 28: $tmp = nmcr_Tessellator_getInstance(); if ($rt_suspending()) { break main; @@ -157882,8 +158846,8 @@ var$5 = 7; nmcrv_DefaultVertexFormats_$callClinit(); $textureManagerInstance = nmcrv_DefaultVertexFormats_POSITION_TEX_COLOR; - $ptr = 28; - case 28: + $ptr = 29; + case 29: nlevo_WorldRenderer_begin($worldrenderer, var$5, $textureManagerInstance); if ($rt_suspending()) { break main; @@ -157891,8 +158855,8 @@ var$11 = 0.0; var$12 = $this.$displayHeight; var$10 = 0.0; - $ptr = 29; - case 29: + $ptr = 30; + case 30: $tmp = nlevo_WorldRenderer_pos($worldrenderer, var$11, var$12, var$10); if ($rt_suspending()) { break main; @@ -157900,8 +158864,8 @@ $textureManagerInstance = $tmp; var$10 = 0.0; var$11 = 0.0; - $ptr = 30; - case 30: + $ptr = 31; + case 31: $tmp = nlevo_WorldRenderer_tex($textureManagerInstance, var$10, var$11); if ($rt_suspending()) { break main; @@ -157911,15 +158875,15 @@ var$4 = 255; $short1 = 255; $short2 = 255; - $ptr = 31; - case 31: + $ptr = 32; + case 32: $tmp = nlevo_WorldRenderer_color($textureManagerInstance, var$5, var$4, $short1, $short2); if ($rt_suspending()) { break main; } $textureManagerInstance = $tmp; - $ptr = 32; - case 32: + $ptr = 33; + case 33: nlevo_WorldRenderer_endVertex($textureManagerInstance); if ($rt_suspending()) { break main; @@ -157927,8 +158891,8 @@ var$12 = $this.$displayWidth; var$10 = $this.$displayHeight; var$11 = 0.0; - $ptr = 33; - case 33: + $ptr = 34; + case 34: $tmp = nlevo_WorldRenderer_pos($worldrenderer, var$12, var$10, var$11); if ($rt_suspending()) { break main; @@ -157936,8 +158900,8 @@ $textureManagerInstance = $tmp; var$10 = 0.0; var$11 = 0.0; - $ptr = 34; - case 34: + $ptr = 35; + case 35: $tmp = nlevo_WorldRenderer_tex($textureManagerInstance, var$10, var$11); if ($rt_suspending()) { break main; @@ -157947,15 +158911,15 @@ var$4 = 255; $short1 = 255; $short2 = 255; - $ptr = 35; - case 35: + $ptr = 36; + case 36: $tmp = nlevo_WorldRenderer_color($textureManagerInstance, var$5, var$4, $short1, $short2); if ($rt_suspending()) { break main; } $textureManagerInstance = $tmp; - $ptr = 36; - case 36: + $ptr = 37; + case 37: nlevo_WorldRenderer_endVertex($textureManagerInstance); if ($rt_suspending()) { break main; @@ -157963,8 +158927,8 @@ var$10 = $this.$displayWidth; var$11 = 0.0; var$12 = 0.0; - $ptr = 37; - case 37: + $ptr = 38; + case 38: $tmp = nlevo_WorldRenderer_pos($worldrenderer, var$10, var$11, var$12); if ($rt_suspending()) { break main; @@ -157972,8 +158936,8 @@ $textureManagerInstance = $tmp; var$10 = 0.0; var$11 = 0.0; - $ptr = 38; - case 38: + $ptr = 39; + case 39: $tmp = nlevo_WorldRenderer_tex($textureManagerInstance, var$10, var$11); if ($rt_suspending()) { break main; @@ -157983,15 +158947,15 @@ var$4 = 255; $short1 = 255; $short2 = 255; - $ptr = 39; - case 39: + $ptr = 40; + case 40: $tmp = nlevo_WorldRenderer_color($textureManagerInstance, var$5, var$4, $short1, $short2); if ($rt_suspending()) { break main; } $textureManagerInstance = $tmp; - $ptr = 40; - case 40: + $ptr = 41; + case 41: nlevo_WorldRenderer_endVertex($textureManagerInstance); if ($rt_suspending()) { break main; @@ -157999,8 +158963,8 @@ var$10 = 0.0; var$11 = 0.0; var$12 = 0.0; - $ptr = 41; - case 41: + $ptr = 42; + case 42: $tmp = nlevo_WorldRenderer_pos($worldrenderer, var$10, var$11, var$12); if ($rt_suspending()) { break main; @@ -158008,8 +158972,8 @@ $textureManagerInstance = $tmp; var$10 = 0.0; var$11 = 0.0; - $ptr = 42; - case 42: + $ptr = 43; + case 43: $tmp = nlevo_WorldRenderer_tex($textureManagerInstance, var$10, var$11); if ($rt_suspending()) { break main; @@ -158019,21 +158983,21 @@ var$4 = 255; $short1 = 255; $short2 = 255; - $ptr = 43; - case 43: + $ptr = 44; + case 44: $tmp = nlevo_WorldRenderer_color($textureManagerInstance, var$5, var$4, $short1, $short2); if ($rt_suspending()) { break main; } $textureManagerInstance = $tmp; - $ptr = 44; - case 44: + $ptr = 45; + case 45: nlevo_WorldRenderer_endVertex($textureManagerInstance); if ($rt_suspending()) { break main; } - $ptr = 45; - case 45: + $ptr = 46; + case 46: nmcr_Tessellator_draw($tessellator); if ($rt_suspending()) { break main; @@ -158042,8 +159006,8 @@ var$14 = 1.0; var$15 = 1.0; var$22 = 1.0; - $ptr = 46; - case 46: + $ptr = 47; + case 47: nlevo_GlStateManager_color(var$13, var$14, var$15, var$22); if ($rt_suspending()) { break main; @@ -158056,8 +159020,8 @@ var$25 = 255; var$4 = 255; var$26 = 255; - $ptr = 47; - case 47: + $ptr = 48; + case 48: $tmp = nmcr_Tessellator_getInstance(); if ($rt_suspending()) { break main; @@ -158066,8 +159030,8 @@ $scaledresolution = $textureManagerInstance.$worldRenderer; var$27 = 7; $textureManagerInstance = nmcrv_DefaultVertexFormats_POSITION_TEX_COLOR; - $ptr = 48; - case 48: + $ptr = 49; + case 49: nlevo_WorldRenderer_begin($scaledresolution, var$27, $textureManagerInstance); if ($rt_suspending()) { break main; @@ -158075,8 +159039,8 @@ var$11 = var$23; var$12 = var$24 + $short2 | 0; var$10 = 0.0; - $ptr = 49; - case 49: + $ptr = 50; + case 50: $tmp = nlevo_WorldRenderer_pos($scaledresolution, var$11, var$12, var$10); if ($rt_suspending()) { break main; @@ -158084,153 +159048,153 @@ $textureManagerInstance = $tmp; var$10 = 0.0; var$7 = 1.0; - $ptr = 50; - case 50: - $tmp = nlevo_WorldRenderer_tex($textureManagerInstance, var$10, var$7); - if ($rt_suspending()) { - break main; - } - $textureManagerInstance = $tmp; $ptr = 51; case 51: - $tmp = nlevo_WorldRenderer_color($textureManagerInstance, var$5, var$25, var$4, var$26); + $tmp = nlevo_WorldRenderer_tex($textureManagerInstance, var$10, var$7); if ($rt_suspending()) { break main; } $textureManagerInstance = $tmp; $ptr = 52; case 52: + $tmp = nlevo_WorldRenderer_color($textureManagerInstance, var$5, var$25, var$4, var$26); + if ($rt_suspending()) { + break main; + } + $textureManagerInstance = $tmp; + $ptr = 53; + case 53: nlevo_WorldRenderer_endVertex($textureManagerInstance); if ($rt_suspending()) { break main; } var$8 = var$23 + $short1 | 0; var$9 = 0.0; - $ptr = 53; - case 53: - $tmp = nlevo_WorldRenderer_pos($scaledresolution, var$8, var$12, var$9); - if ($rt_suspending()) { - break main; - } - $textureManagerInstance = $tmp; $ptr = 54; case 54: - $tmp = nlevo_WorldRenderer_tex($textureManagerInstance, var$7, var$7); + $tmp = nlevo_WorldRenderer_pos($scaledresolution, var$8, var$12, var$9); if ($rt_suspending()) { break main; } $textureManagerInstance = $tmp; $ptr = 55; case 55: - $tmp = nlevo_WorldRenderer_color($textureManagerInstance, var$5, var$25, var$4, var$26); + $tmp = nlevo_WorldRenderer_tex($textureManagerInstance, var$7, var$7); if ($rt_suspending()) { break main; } $textureManagerInstance = $tmp; $ptr = 56; case 56: + $tmp = nlevo_WorldRenderer_color($textureManagerInstance, var$5, var$25, var$4, var$26); + if ($rt_suspending()) { + break main; + } + $textureManagerInstance = $tmp; + $ptr = 57; + case 57: nlevo_WorldRenderer_endVertex($textureManagerInstance); if ($rt_suspending()) { break main; } var$12 = var$24; var$9 = 0.0; - $ptr = 57; - case 57: - $tmp = nlevo_WorldRenderer_pos($scaledresolution, var$8, var$12, var$9); - if ($rt_suspending()) { - break main; - } - $textureManagerInstance = $tmp; $ptr = 58; case 58: - $tmp = nlevo_WorldRenderer_tex($textureManagerInstance, var$7, var$10); + $tmp = nlevo_WorldRenderer_pos($scaledresolution, var$8, var$12, var$9); if ($rt_suspending()) { break main; } $textureManagerInstance = $tmp; $ptr = 59; case 59: - $tmp = nlevo_WorldRenderer_color($textureManagerInstance, var$5, var$25, var$4, var$26); + $tmp = nlevo_WorldRenderer_tex($textureManagerInstance, var$7, var$10); if ($rt_suspending()) { break main; } $textureManagerInstance = $tmp; $ptr = 60; case 60: + $tmp = nlevo_WorldRenderer_color($textureManagerInstance, var$5, var$25, var$4, var$26); + if ($rt_suspending()) { + break main; + } + $textureManagerInstance = $tmp; + $ptr = 61; + case 61: nlevo_WorldRenderer_endVertex($textureManagerInstance); if ($rt_suspending()) { break main; } var$7 = 0.0; - $ptr = 61; - case 61: - $tmp = nlevo_WorldRenderer_pos($scaledresolution, var$11, var$12, var$7); - if ($rt_suspending()) { - break main; - } - $textureManagerInstance = $tmp; $ptr = 62; case 62: - $tmp = nlevo_WorldRenderer_tex($textureManagerInstance, var$10, var$10); + $tmp = nlevo_WorldRenderer_pos($scaledresolution, var$11, var$12, var$7); if ($rt_suspending()) { break main; } $textureManagerInstance = $tmp; $ptr = 63; case 63: - $tmp = nlevo_WorldRenderer_color($textureManagerInstance, var$5, var$25, var$4, var$26); + $tmp = nlevo_WorldRenderer_tex($textureManagerInstance, var$10, var$10); if ($rt_suspending()) { break main; } $textureManagerInstance = $tmp; $ptr = 64; case 64: + $tmp = nlevo_WorldRenderer_color($textureManagerInstance, var$5, var$25, var$4, var$26); + if ($rt_suspending()) { + break main; + } + $textureManagerInstance = $tmp; + $ptr = 65; + case 65: nlevo_WorldRenderer_endVertex($textureManagerInstance); if ($rt_suspending()) { break main; } - $ptr = 65; - case 65: + $ptr = 66; + case 66: $tmp = nmcr_Tessellator_getInstance(); if ($rt_suspending()) { break main; } $textureManagerInstance = $tmp; - $ptr = 66; - case 66: - nmcr_Tessellator_draw($textureManagerInstance); - if ($rt_suspending()) { - break main; - } $ptr = 67; case 67: - nlevo_GlStateManager_disableLighting(); + nmcr_Tessellator_draw($textureManagerInstance); if ($rt_suspending()) { break main; } $ptr = 68; case 68: - nlevo_GlStateManager_disableFog(); + nlevo_GlStateManager_disableLighting(); if ($rt_suspending()) { break main; } $ptr = 69; case 69: + nlevo_GlStateManager_disableFog(); + if ($rt_suspending()) { + break main; + } + $ptr = 70; + case 70: nlevo_GlStateManager_enableAlpha(); if ($rt_suspending()) { break main; } var$5 = 516; var$13 = 0.10000000149011612; - $ptr = 70; - case 70: + $ptr = 71; + case 71: nlevo_GlStateManager_alphaFunc(var$5, var$13); if ($rt_suspending()) { break main; } - $ptr = 71; - case 71: + $ptr = 72; + case 72: nmc_Minecraft_updateDisplay($this); if ($rt_suspending()) { break main; @@ -162610,34 +163574,34 @@ } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindChat) && $flag) { $event = new nmcg_GuiChat; - $ptr = 170; + $ptr = 177; continue main; } if ($this.$currentScreen === null && nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindCommand) && $flag) { $throwable2 = new nmcg_GuiChat; $event = $rt_s(36); - $ptr = 181; + $ptr = 188; continue main; } d: { if (!nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { - $ptr = 179; + $ptr = 186; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { - $ptr = 185; + $ptr = 192; continue main; } if (!nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) break d; - $ptr = 190; + $ptr = 197; continue main; } if (!nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem)) { $event = $this.$playerController; $throwable2 = $this.$thePlayer; - $ptr = 180; + $ptr = 187; continue main; } while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { @@ -162650,11 +163614,11 @@ } } if (nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem) && !$this.$rightClickDelayTimer && !nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { - $ptr = 200; + $ptr = 207; continue main; } $isHostingLAN = $this.$currentScreen === null && nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindAttack) && $this.$inGameHasFocus ? 1 : 0; - $ptr = 199; + $ptr = 206; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindsHotbar.data[$l])) @@ -163094,34 +164058,34 @@ } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindChat) && $flag) { $event = new nmcg_GuiChat; - $ptr = 170; + $ptr = 177; continue main; } if ($this.$currentScreen === null && nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindCommand) && $flag) { $throwable2 = new nmcg_GuiChat; $event = $rt_s(36); - $ptr = 181; + $ptr = 188; continue main; } g: { if (!nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { - $ptr = 179; + $ptr = 186; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { - $ptr = 185; + $ptr = 192; continue main; } if (!nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) break g; - $ptr = 190; + $ptr = 197; continue main; } if (!nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem)) { $event = $this.$playerController; $throwable2 = $this.$thePlayer; - $ptr = 180; + $ptr = 187; continue main; } while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { @@ -163134,11 +164098,11 @@ } } if (nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem) && !$this.$rightClickDelayTimer && !nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { - $ptr = 200; + $ptr = 207; continue main; } $isHostingLAN = $this.$currentScreen === null && nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindAttack) && $this.$inGameHasFocus ? 1 : 0; - $ptr = 199; + $ptr = 206; continue main; } if (!nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindsHotbar.data[$l])) @@ -163312,34 +164276,34 @@ } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindChat) && $flag) { $event = new nmcg_GuiChat; - $ptr = 170; + $ptr = 177; continue main; } if ($this.$currentScreen === null && nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindCommand) && $flag) { $throwable2 = new nmcg_GuiChat; $event = $rt_s(36); - $ptr = 181; + $ptr = 188; continue main; } h: { if (!nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { - $ptr = 179; + $ptr = 186; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { - $ptr = 185; + $ptr = 192; continue main; } if (!nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) break h; - $ptr = 190; + $ptr = 197; continue main; } if (!nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem)) { $event = $this.$playerController; $throwable2 = $this.$thePlayer; - $ptr = 180; + $ptr = 187; continue main; } while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { @@ -163352,11 +164316,11 @@ } } if (nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem) && !$this.$rightClickDelayTimer && !nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { - $ptr = 200; + $ptr = 207; continue main; } $isHostingLAN = $this.$currentScreen === null && nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindAttack) && $this.$inGameHasFocus ? 1 : 0; - $ptr = 199; + $ptr = 206; continue main; } if (!nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindsHotbar.data[$l])) @@ -163604,7 +164568,7 @@ } try { nPs_Config_waterOpacityChanged = 0; - $ptr = 164; + $ptr = 171; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -163697,7 +164661,7 @@ } try { nPs_Config_waterOpacityChanged = 0; - $ptr = 164; + $ptr = 171; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -163728,34 +164692,34 @@ } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindChat) && $flag) { $event = new nmcg_GuiChat; - $ptr = 170; + $ptr = 177; continue main; } if ($this.$currentScreen === null && nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindCommand) && $flag) { $throwable2 = new nmcg_GuiChat; $event = $rt_s(36); - $ptr = 181; + $ptr = 188; continue main; } e: { if (!nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { - $ptr = 179; + $ptr = 186; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { - $ptr = 185; + $ptr = 192; continue main; } if (!nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) break e; - $ptr = 190; + $ptr = 197; continue main; } if (!nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem)) { $event = $this.$playerController; $throwable2 = $this.$thePlayer; - $ptr = 180; + $ptr = 187; continue main; } while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { @@ -163768,11 +164732,11 @@ } } if (nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem) && !$this.$rightClickDelayTimer && !nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { - $ptr = 200; + $ptr = 207; continue main; } $isHostingLAN = $this.$currentScreen === null && nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindAttack) && $this.$inGameHasFocus ? 1 : 0; - $ptr = 199; + $ptr = 206; continue main; case 102: $tmp = nmc_Minecraft_getNetHandler($this); @@ -163819,34 +164783,34 @@ } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindChat) && $flag) { $event = new nmcg_GuiChat; - $ptr = 170; + $ptr = 177; continue main; } if ($this.$currentScreen === null && nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindCommand) && $flag) { $throwable2 = new nmcg_GuiChat; $event = $rt_s(36); - $ptr = 181; + $ptr = 188; continue main; } c: { if (!nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { - $ptr = 179; + $ptr = 186; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { - $ptr = 185; + $ptr = 192; continue main; } if (!nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) break c; - $ptr = 190; + $ptr = 197; continue main; } if (!nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem)) { $event = $this.$playerController; $throwable2 = $this.$thePlayer; - $ptr = 180; + $ptr = 187; continue main; } while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { @@ -163859,11 +164823,11 @@ } } if (nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem) && !$this.$rightClickDelayTimer && !nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { - $ptr = 200; + $ptr = 207; continue main; } $isHostingLAN = $this.$currentScreen === null && nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindAttack) && $this.$inGameHasFocus ? 1 : 0; - $ptr = 199; + $ptr = 206; continue main; case 106: nmce_EntityPlayerSP_sendHorseInventory($event); @@ -163885,34 +164849,34 @@ } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindChat) && $flag) { $event = new nmcg_GuiChat; - $ptr = 170; + $ptr = 177; continue main; } if ($this.$currentScreen === null && nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindCommand) && $flag) { $throwable2 = new nmcg_GuiChat; $event = $rt_s(36); - $ptr = 181; + $ptr = 188; continue main; } c: { if (!nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { - $ptr = 179; + $ptr = 186; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { - $ptr = 185; + $ptr = 192; continue main; } if (!nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) break c; - $ptr = 190; + $ptr = 197; continue main; } if (!nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem)) { $event = $this.$playerController; $throwable2 = $this.$thePlayer; - $ptr = 180; + $ptr = 187; continue main; } while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { @@ -163925,11 +164889,11 @@ } } if (nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem) && !$this.$rightClickDelayTimer && !nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { - $ptr = 200; + $ptr = 207; continue main; } $isHostingLAN = $this.$currentScreen === null && nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindAttack) && $this.$inGameHasFocus ? 1 : 0; - $ptr = 199; + $ptr = 206; continue main; case 107: nlevoed_EaglerDeferredPipeline_$callClinit(); @@ -163946,14 +164910,14 @@ } $event = $this.$currentScreen; if ($event !== null) { - $ptr = 173; + $ptr = 180; continue main; } $event = nea_ModData__init_0(); $event["key"] = $k; $event["preventDefault"] = !!0; $throwable2 = "key"; - $ptr = 172; + $ptr = 179; continue main; case 108: $tmp = nmc_Minecraft_getSystemTime(); @@ -163988,13 +164952,13 @@ $event = new nlevi_IPCPacketData; $throwable2 = $rt_s(504); $crashreport2 = $rt_s(505); - $ptr = 166; + $ptr = 173; continue main; } $event = new nlevi_IPCPacketData; $throwable2 = $rt_s(504); $crashreport2 = $rt_s(506); - $ptr = 168; + $ptr = 175; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -164026,34 +164990,34 @@ } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindChat) && $flag) { $event = new nmcg_GuiChat; - $ptr = 170; + $ptr = 177; continue main; } if ($this.$currentScreen === null && nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindCommand) && $flag) { $throwable2 = new nmcg_GuiChat; $event = $rt_s(36); - $ptr = 181; + $ptr = 188; continue main; } k: { if (!nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { - $ptr = 179; + $ptr = 186; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { - $ptr = 185; + $ptr = 192; continue main; } if (!nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) break k; - $ptr = 190; + $ptr = 197; continue main; } if (!nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem)) { $event = $this.$playerController; $throwable2 = $this.$thePlayer; - $ptr = 180; + $ptr = 187; continue main; } while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { @@ -164066,11 +165030,11 @@ } } if (nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem) && !$this.$rightClickDelayTimer && !nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { - $ptr = 200; + $ptr = 207; continue main; } $isHostingLAN = $this.$currentScreen === null && nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindAttack) && $this.$inGameHasFocus ? 1 : 0; - $ptr = 199; + $ptr = 206; continue main; case 113: nmu_EnumChatFormatting_$callClinit(); @@ -164078,39 +165042,53 @@ break main; } $event = nmu_EnumChatFormatting_GOLD; - $throwable2 = nmu_EnumChatFormatting_AQUA; - $crashreport2 = jl_StringBuilder__init_(); $ptr = 114; case 114: + $tmp = jl_String_valueOf($event); + if ($rt_suspending()) { + break main; + } + $event = $tmp; + $throwable2 = nmu_EnumChatFormatting_AQUA; + $ptr = 115; + case 115: + $tmp = jl_String_valueOf($throwable2); + if ($rt_suspending()) { + break main; + } + $throwable2 = $tmp; + $crashreport2 = jl_StringBuilder__init_(); + $ptr = 116; + case 116: $tmp = jl_StringBuilder_append($crashreport2, $event); if ($rt_suspending()) { break main; } $event = $tmp; $pluginBrand = $rt_s(507); - $ptr = 115; - case 115: + $ptr = 117; + case 117: $tmp = jl_StringBuilder_append($event, $pluginBrand); if ($rt_suspending()) { break main; } $event = $tmp; - $ptr = 116; - case 116: + $ptr = 118; + case 118: jl_StringBuilder_append($event, $throwable2); if ($rt_suspending()) { break main; } - $ptr = 117; - case 117: + $ptr = 119; + case 119: $tmp = jl_StringBuilder_toString($crashreport2); if ($rt_suspending()) { break main; } $pfx = $tmp; $event = $this.$ingameGUI; - $ptr = 118; - case 118: + $ptr = 120; + case 120: $tmp = nmcg_GuiIngame_getChatGUI($event); if ($rt_suspending()) { break main; @@ -164118,37 +165096,37 @@ $event = $tmp; $throwable2 = new nmu_ChatComponentText; $crashreport2 = jl_StringBuilder__init_(); - $ptr = 119; - case 119: + $ptr = 121; + case 121: $tmp = jl_StringBuilder_append($crashreport2, $pfx); if ($rt_suspending()) { break main; } $pluginBrand = $tmp; $throwable = $rt_s(508); - $ptr = 120; - case 120: + $ptr = 122; + case 122: jl_StringBuilder_append($pluginBrand, $throwable); if ($rt_suspending()) { break main; } - $ptr = 121; - case 121: + $ptr = 123; + case 123: $tmp = jl_StringBuilder_toString($crashreport2); if ($rt_suspending()) { break main; } $crashreport2 = $tmp; nmu_ChatComponentText__init_0($throwable2, $crashreport2); - $ptr = 122; - case 122: + $ptr = 124; + case 124: nmcg_GuiNewChat_printChatMessage($event, $throwable2); if ($rt_suspending()) { break main; } $event = $this.$ingameGUI; - $ptr = 123; - case 123: + $ptr = 125; + case 125: $tmp = nmcg_GuiIngame_getChatGUI($event); if ($rt_suspending()) { break main; @@ -164156,52 +165134,59 @@ $event = $tmp; $throwable2 = new nmu_ChatComponentText; $crashreport2 = nmu_EnumChatFormatting_YELLOW; + $ptr = 126; + case 126: + $tmp = jl_String_valueOf($crashreport2); + if ($rt_suspending()) { + break main; + } + $crashreport2 = $tmp; $pluginBrand = jl_StringBuilder__init_(); - $ptr = 124; - case 124: + $ptr = 127; + case 127: $tmp = jl_StringBuilder_append($pluginBrand, $pfx); if ($rt_suspending()) { break main; } $throwable = $tmp; $crashreport1 = $rt_s(509); - $ptr = 125; - case 125: + $ptr = 128; + case 128: $tmp = jl_StringBuilder_append($throwable, $crashreport1); if ($rt_suspending()) { break main; } $throwable = $tmp; - $ptr = 126; - case 126: + $ptr = 129; + case 129: $tmp = jl_StringBuilder_append($throwable, $crashreport2); if ($rt_suspending()) { break main; } $crashreport2 = $tmp; - $ptr = 127; - case 127: + $ptr = 130; + case 130: jl_StringBuilder_append($crashreport2, $pluginVersion); if ($rt_suspending()) { break main; } - $ptr = 128; - case 128: + $ptr = 131; + case 131: $tmp = jl_StringBuilder_toString($pluginBrand); if ($rt_suspending()) { break main; } $crashreport2 = $tmp; nmu_ChatComponentText__init_0($throwable2, $crashreport2); - $ptr = 129; - case 129: + $ptr = 132; + case 132: nmcg_GuiNewChat_printChatMessage($event, $throwable2); if ($rt_suspending()) { break main; } $event = $this.$ingameGUI; - $ptr = 130; - case 130: + $ptr = 133; + case 133: $tmp = nmcg_GuiIngame_getChatGUI($event); if ($rt_suspending()) { break main; @@ -164209,52 +165194,52 @@ $event = $tmp; $throwable2 = new nmu_ChatComponentText; $crashreport2 = jl_StringBuilder__init_(); - $ptr = 131; - case 131: + $ptr = 134; + case 134: $tmp = jl_StringBuilder_append($crashreport2, $pfx); if ($rt_suspending()) { break main; } $pluginBrand = $tmp; $pluginVersion = $rt_s(510); - $ptr = 132; - case 132: + $ptr = 135; + case 135: jl_StringBuilder_append($pluginBrand, $pluginVersion); if ($rt_suspending()) { break main; } - $ptr = 133; - case 133: + $ptr = 136; + case 136: $tmp = jl_StringBuilder_toString($crashreport2); if ($rt_suspending()) { break main; } $crashreport2 = $tmp; nmu_ChatComponentText__init_0($throwable2, $crashreport2); - $ptr = 134; - case 134: + $ptr = 137; + case 137: nmcg_GuiNewChat_printChatMessage($event, $throwable2); if ($rt_suspending()) { break main; } $event = $this.$ingameGUI; - $ptr = 135; - case 135: + $ptr = 138; + case 138: $tmp = nmcg_GuiIngame_getChatGUI($event); if ($rt_suspending()) { break main; } $event = $tmp; $throwable2 = nmu_ChatComponentText__init_($pfx); - $ptr = 136; - case 136: + $ptr = 139; + case 139: nmcg_GuiNewChat_printChatMessage($event, $throwable2); if ($rt_suspending()) { break main; } $event = $this.$ingameGUI; - $ptr = 137; - case 137: + $ptr = 140; + case 140: $tmp = nmcg_GuiIngame_getChatGUI($event); if ($rt_suspending()) { break main; @@ -164262,84 +165247,98 @@ $event = $tmp; $throwable2 = new nmu_ChatComponentText; $crashreport2 = nmu_EnumChatFormatting_YELLOW; + $ptr = 141; + case 141: + $tmp = jl_String_valueOf($crashreport2); + if ($rt_suspending()) { + break main; + } + $crashreport2 = $tmp; $pluginBrand = nlev_EaglerXBungeeVersion_getPluginVersion(); $pluginVersion = nmu_EnumChatFormatting_AQUA; + $ptr = 142; + case 142: + $tmp = jl_String_valueOf($pluginVersion); + if ($rt_suspending()) { + break main; + } + $pluginVersion = $tmp; $throwable = jl_StringBuilder__init_(); - $ptr = 138; - case 138: + $ptr = 143; + case 143: $tmp = jl_StringBuilder_append($throwable, $pfx); if ($rt_suspending()) { break main; } $crashreport1 = $tmp; $crashreportcategory1 = $rt_s(511); - $ptr = 139; - case 139: + $ptr = 144; + case 144: $tmp = jl_StringBuilder_append($crashreport1, $crashreportcategory1); if ($rt_suspending()) { break main; } $crashreport1 = $tmp; - $ptr = 140; - case 140: + $ptr = 145; + case 145: $tmp = jl_StringBuilder_append($crashreport1, $crashreport2); if ($rt_suspending()) { break main; } $crashreport2 = $tmp; - $ptr = 141; - case 141: + $ptr = 146; + case 146: $tmp = jl_StringBuilder_append($crashreport2, $pluginBrand); if ($rt_suspending()) { break main; } $crashreport2 = $tmp; - $ptr = 142; - case 142: + $ptr = 147; + case 147: $tmp = jl_StringBuilder_append($crashreport2, $pluginVersion); if ($rt_suspending()) { break main; } $crashreport2 = $tmp; $pluginBrand = $rt_s(512); - $ptr = 143; - case 143: + $ptr = 148; + case 148: jl_StringBuilder_append($crashreport2, $pluginBrand); if ($rt_suspending()) { break main; } - $ptr = 144; - case 144: + $ptr = 149; + case 149: $tmp = jl_StringBuilder_toString($throwable); if ($rt_suspending()) { break main; } $crashreport2 = $tmp; nmu_ChatComponentText__init_0($throwable2, $crashreport2); - $ptr = 145; - case 145: + $ptr = 150; + case 150: nmcg_GuiNewChat_printChatMessage($event, $throwable2); if ($rt_suspending()) { break main; } $event = $this.$ingameGUI; - $ptr = 146; - case 146: + $ptr = 151; + case 151: $tmp = nmcg_GuiIngame_getChatGUI($event); if ($rt_suspending()) { break main; } $event = $tmp; $throwable2 = nmu_ChatComponentText__init_($pfx); - $ptr = 147; - case 147: + $ptr = 152; + case 152: nmcg_GuiNewChat_printChatMessage($event, $throwable2); if ($rt_suspending()) { break main; } $event = $this.$ingameGUI; - $ptr = 148; - case 148: + $ptr = 153; + case 153: $tmp = nmcg_GuiIngame_getChatGUI($event); if ($rt_suspending()) { break main; @@ -164347,22 +165346,22 @@ $throwable2 = $tmp; $crashreport2 = new nmu_ChatComponentText; $event = jl_StringBuilder__init_(); - $ptr = 149; - case 149: + $ptr = 154; + case 154: $tmp = jl_StringBuilder_append($event, $pfx); if ($rt_suspending()) { break main; } $pluginBrand = $tmp; $pluginVersion = $rt_s(513); - $ptr = 150; - case 150: + $ptr = 155; + case 155: jl_StringBuilder_append($pluginBrand, $pluginVersion); if ($rt_suspending()) { break main; } - $ptr = 151; - case 151: + $ptr = 156; + case 156: $tmp = jl_StringBuilder_toString($event); if ($rt_suspending()) { break main; @@ -164371,31 +165370,45 @@ nmu_ChatComponentText__init_0($crashreport2, $event); $pluginBrand = new nmu_ChatComponentText; $event = nmu_EnumChatFormatting_GREEN; + $ptr = 157; + case 157: + $tmp = jl_String_valueOf($event); + if ($rt_suspending()) { + break main; + } + $event = $tmp; $pluginVersion = nmu_EnumChatFormatting_UNDERLINE; + $ptr = 158; + case 158: + $tmp = jl_String_valueOf($pluginVersion); + if ($rt_suspending()) { + break main; + } + $pluginVersion = $tmp; $throwable = nlev_EaglerXBungeeVersion_getPluginButton(); $crashreport1 = jl_StringBuilder__init_(); - $ptr = 152; - case 152: + $ptr = 159; + case 159: $tmp = jl_StringBuilder_append($crashreport1, $event); if ($rt_suspending()) { break main; } $event = $tmp; - $ptr = 153; - case 153: + $ptr = 160; + case 160: $tmp = jl_StringBuilder_append($event, $pluginVersion); if ($rt_suspending()) { break main; } $event = $tmp; - $ptr = 154; - case 154: + $ptr = 161; + case 161: jl_StringBuilder_append($event, $throwable); if ($rt_suspending()) { break main; } - $ptr = 155; - case 155: + $ptr = 162; + case 162: $tmp = jl_StringBuilder_toString($crashreport1); if ($rt_suspending()) { break main; @@ -164404,31 +165417,31 @@ nmu_ChatComponentText__init_0($pluginBrand, $event); $pluginVersion = nmu_ChatStyle__init_0(); $throwable = new nme_ClickEvent; - $ptr = 156; - case 156: + $ptr = 163; + case 163: nme_ClickEvent$Action_$callClinit(); if ($rt_suspending()) { break main; } nme_ClickEvent__init_($throwable, nme_ClickEvent$Action_EAGLER_PLUGIN_DOWNLOAD, $rt_s(392)); $event = nmu_ChatStyle_setChatClickEvent($pluginVersion, $throwable); - $ptr = 157; - case 157: + $ptr = 164; + case 164: $tmp = nmu_ChatComponentStyle_setChatStyle($pluginBrand, $event); if ($rt_suspending()) { break main; } $event = $tmp; $event = nmu_ChatComponentStyle_appendSibling($crashreport2, $event); - $ptr = 158; - case 158: + $ptr = 165; + case 165: nmcg_GuiNewChat_printChatMessage($throwable2, $event); if ($rt_suspending()) { break main; } $event = $this.$ingameGUI; - $ptr = 159; - case 159: + $ptr = 166; + case 166: $tmp = nmcg_GuiIngame_getChatGUI($event); if ($rt_suspending()) { break main; @@ -164436,30 +165449,30 @@ $event = $tmp; $throwable2 = new nmu_ChatComponentText; $crashreport2 = jl_StringBuilder__init_(); - $ptr = 160; - case 160: + $ptr = 167; + case 167: $tmp = jl_StringBuilder_append($crashreport2, $pfx); if ($rt_suspending()) { break main; } $pluginBrand = $tmp; $pluginVersion = $rt_s(508); - $ptr = 161; - case 161: + $ptr = 168; + case 168: jl_StringBuilder_append($pluginBrand, $pluginVersion); if ($rt_suspending()) { break main; } - $ptr = 162; - case 162: + $ptr = 169; + case 169: $tmp = jl_StringBuilder_toString($crashreport2); if ($rt_suspending()) { break main; } $crashreport2 = $tmp; nmu_ChatComponentText__init_0($throwable2, $crashreport2); - $ptr = 163; - case 163: + $ptr = 170; + case 170: nmcg_GuiNewChat_printChatMessage($event, $throwable2); if ($rt_suspending()) { break main; @@ -164467,7 +165480,7 @@ $event = $this.$mcProfiler; $ptr = 73; continue main; - case 164: + case 171: try { $tmp = nPs_Config_getGameSettings(); if ($rt_suspending()) { @@ -164475,7 +165488,7 @@ } $event = $tmp; $throwable2 = $this.$theWorld; - $ptr = 165; + $ptr = 172; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -164488,7 +165501,7 @@ $event = $rt_s(494); $ptr = 93; continue main; - case 165: + case 172: a: { try { nPs_ClearWater_updateWaterOpacity($event, $throwable2); @@ -164512,320 +165525,34 @@ $throwable2 = $rt_s(495); $ptr = 64; continue main; - case 166: - try { - $tmp = jl_String_getBytes($crashreport2); - if ($rt_suspending()) { - break main; - } - var$6 = $tmp; - nlevi_IPCPacketData__init_0($event, $throwable2, var$6); - $ptr = 167; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $throwable2 = $$je; - } else { - throw $$e; - } - } - $event = $rt_s(494); - $ptr = 93; - continue main; - case 167: - try { - nlevsi_ClientPlatformSingleplayer_sendPacket($event); - if ($rt_suspending()) { - break main; - } - $ptr = 174; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $throwable2 = $$je; - } else { - throw $$e; - } - } - $event = $rt_s(494); - $ptr = 93; - continue main; - case 168: - try { - $tmp = jl_String_getBytes($crashreport2); - if ($rt_suspending()) { - break main; - } - var$6 = $tmp; - nlevi_IPCPacketData__init_0($event, $throwable2, var$6); - $ptr = 169; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $throwable2 = $$je; - } else { - throw $$e; - } - } - $event = $rt_s(494); - $ptr = 93; - continue main; - case 169: - try { - nlevsi_ClientPlatformSingleplayer_sendPacket($event); - if ($rt_suspending()) { - break main; - } - $ptr = 174; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $throwable2 = $$je; - } else { - throw $$e; - } - } - $event = $rt_s(494); - $ptr = 93; - continue main; - case 170: - nmcg_GuiChat__init_($event); - if ($rt_suspending()) { - break main; - } - $ptr = 171; - case 171: - nmc_Minecraft_displayGuiScreen($this, $event); - if ($rt_suspending()) { - break main; - } - if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindChat) && $flag) { - $event = new nmcg_GuiChat; - $ptr = 170; - continue main; - } - if ($this.$currentScreen === null && nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindCommand) && $flag) { - $throwable2 = new nmcg_GuiChat; - $event = $rt_s(36); - $ptr = 181; - continue main; - } - i: { - if (!nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { - if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { - $ptr = 179; - continue main; - } - if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { - $ptr = 185; - continue main; - } - if (!nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) - break i; - $ptr = 190; - continue main; - } - if (!nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem)) { - $event = $this.$playerController; - $throwable2 = $this.$thePlayer; - $ptr = 180; - continue main; - } - while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { - } - while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { - } - while (true) { - if (!nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) - break i; - } - } - if (nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem) && !$this.$rightClickDelayTimer && !nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { - $ptr = 200; - continue main; - } - $isHostingLAN = $this.$currentScreen === null && nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindAttack) && $this.$inGameHasFocus ? 1 : 0; - $ptr = 199; - continue main; - case 172: - $tmp = nea_ModAPI_callEvent$js_body$_2($throwable2, $event); - if ($rt_suspending()) { - break main; - } - $newEvent = $tmp; - if (("preventDefault" in $newEvent ? 1 : 0) && ($newEvent["preventDefault"] ? 1 : 0)) - return; - if ("key" in $newEvent ? 1 : 0) - $k = $newEvent["key"]; - i: { - if ($k != 1) { - if ($k <= (-1)) - break i; - if ($k != nmcs_KeyBinding_getKeyCode($this.$gameSettings.$keyBindClose)) - break i; - } - $ptr = 191; - continue main; - } - if ($k == 32 && nlev_Keyboard_isKeyDown(61)) { - $event = $this.$ingameGUI; - if ($event !== null) { - $ptr = 203; - continue main; - } - } - if ($k == 31 && nlev_Keyboard_isKeyDown(61)) { - $ptr = 202; - continue main; - } - if ($k == 19 && nlev_Keyboard_isKeyDown(61) && $this.$gameSettings.$shaders) { - $ptr = 205; - continue main; - } - $k == 17 && !nlev_Keyboard_isKeyDown(61); - $k == 18 && !nlev_Keyboard_isKeyDown(61); - $k == 47 && !nlev_Keyboard_isKeyDown(61); - $k == 38 && !nlev_Keyboard_isKeyDown(61); - $k == 22 && !nlev_Keyboard_isKeyDown(61); - if ($k == 20 && nlev_Keyboard_isKeyDown(61)) { - $ptr = 207; - continue main; - } - if ($k == 33 && nlev_Keyboard_isKeyDown(61)) { - $event = $this.$gameSettings; - nmcs_GameSettings$Options_$callClinit(); - $throwable2 = nmcs_GameSettings$Options_RENDER_DISTANCE; - $ptr = 208; - continue main; - } - if ($k == 30 && nlev_Keyboard_isKeyDown(61)) { - $ptr = 209; - continue main; - } - if ($k == 35 && nlev_Keyboard_isKeyDown(61)) { - $event = $this.$gameSettings; - $event.$advancedItemTooltips = $event.$advancedItemTooltips ? 0 : 1; - $ptr = 212; - continue main; - } - if ($k == 48 && nlev_Keyboard_isKeyDown(61)) { - $event = $this.$renderManager; - nmcre_RenderManager_setDebugBoundingBox($event, nmcre_RenderManager_isDebugBoundingBox($event) ? 0 : 1); - } - if ($k == 25 && nlev_Keyboard_isKeyDown(61)) { - $event = $this.$gameSettings; - $event.$pauseOnLostFocus = $event.$pauseOnLostFocus ? 0 : 1; - $ptr = 213; - continue main; - } - if ($k == 59) { - $event = $this.$gameSettings; - $event.$hideGUI = $event.$hideGUI ? 0 : 1; - } - if ($k == 61) { - $event = $this.$gameSettings; - $event.$showDebugInfo = $event.$showDebugInfo ? 0 : 1; - $ptr = 214; - continue main; - } - if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindTogglePerspective)) { - $event = $this.$gameSettings; - $isHostingLAN = $event.$thirdPersonView + 1 | 0; - $event.$thirdPersonView = $isHostingLAN; - if ($isHostingLAN > 2) - $event.$thirdPersonView = 0; - $isHostingLAN = $event.$thirdPersonView; - if (!$isHostingLAN) { - $event = $this.$entityRenderer; - $ptr = 216; - continue main; - } - if ($isHostingLAN != 1) { - $event = $this.$renderGlobal; - $ptr = 218; - continue main; - } - $event = $this.$entityRenderer; - $ptr = 219; - continue main; - } - if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindSmoothCamera)) { - $event = $this.$gameSettings; - $event.$smoothCamera = $event.$smoothCamera ? 0 : 1; - } - l: { - $event = $this.$gameSettings; - if ($event.$showDebugInfo && $event.$showDebugProfilerChart) { - if ($k == 11) { - $isHostingLAN = 0; - $ptr = 192; - continue main; - } - $j1 = 0; - while (true) { - if ($j1 >= 9) - break l; - if ($k == (2 + $j1 | 0)) { - $isHostingLAN = $j1 + 1 | 0; - $ptr = 201; - continue main; - } - $j1 = $j1 + 1 | 0; - } - } - } - $ptr = 48; - continue main; case 173: - nmcg_GuiScreen_handleKeyboardInput($event); - if ($rt_suspending()) { - break main; - } - f: { - $event = $this.$gameSettings; - if ($event.$showDebugInfo && $event.$showDebugProfilerChart) { - if ($k == 11) { - $isHostingLAN = 0; - $ptr = 192; - continue main; - } - $j1 = 0; - while (true) { - if ($j1 >= 9) - break f; - if ($k == (2 + $j1 | 0)) { - $isHostingLAN = $j1 + 1 | 0; - $ptr = 201; - continue main; - } - $j1 = $j1 + 1 | 0; - } + try { + $tmp = jl_String_getBytes($crashreport2); + if ($rt_suspending()) { + break main; + } + var$6 = $tmp; + nlevi_IPCPacketData__init_0($event, $throwable2, var$6); + $ptr = 174; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $throwable2 = $$je; + } else { + throw $$e; } } - $ptr = 48; + $event = $rt_s(494); + $ptr = 93; continue main; case 174: try { - $tmp = nPs_Config_isSmoothWorld(); + nlevsi_ClientPlatformSingleplayer_sendPacket($event); if ($rt_suspending()) { break main; } - $isHostingLAN = $tmp; - if (!$isHostingLAN) { - $event = new nlevi_IPCPacketData; - $throwable2 = $rt_s(504); - $crashreport2 = $rt_s(514); - $ptr = 175; - continue main; - } - $event = new nlevi_IPCPacketData; - $throwable2 = $rt_s(504); - $crashreport2 = $rt_s(515); - $ptr = 177; + $ptr = 181; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -164865,13 +165592,7 @@ if ($rt_suspending()) { break main; } - $event = new nlevi_IPCPacketData; - $throwable2 = $rt_s(504); - $crashreport2 = new jl_String; - $isHostingLAN = $this.$gameSettings.$ofTrees; - $pluginBrand = jl_StringBuilder__init_(); - $pluginVersion = $rt_s(516); - $ptr = 183; + $ptr = 181; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -164885,14 +165606,239 @@ $ptr = 93; continue main; case 177: + nmcg_GuiChat__init_($event); + if ($rt_suspending()) { + break main; + } + $ptr = 178; + case 178: + nmc_Minecraft_displayGuiScreen($this, $event); + if ($rt_suspending()) { + break main; + } + if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindChat) && $flag) { + $event = new nmcg_GuiChat; + $ptr = 177; + continue main; + } + if ($this.$currentScreen === null && nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindCommand) && $flag) { + $throwable2 = new nmcg_GuiChat; + $event = $rt_s(36); + $ptr = 188; + continue main; + } + i: { + if (!nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { + if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { + $ptr = 186; + continue main; + } + if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { + $ptr = 192; + continue main; + } + if (!nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) + break i; + $ptr = 197; + continue main; + } + if (!nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem)) { + $event = $this.$playerController; + $throwable2 = $this.$thePlayer; + $ptr = 187; + continue main; + } + while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { + } + while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { + } + while (true) { + if (!nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) + break i; + } + } + if (nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem) && !$this.$rightClickDelayTimer && !nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { + $ptr = 207; + continue main; + } + $isHostingLAN = $this.$currentScreen === null && nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindAttack) && $this.$inGameHasFocus ? 1 : 0; + $ptr = 206; + continue main; + case 179: + $tmp = nea_ModAPI_callEvent$js_body$_2($throwable2, $event); + if ($rt_suspending()) { + break main; + } + $newEvent = $tmp; + if (("preventDefault" in $newEvent ? 1 : 0) && ($newEvent["preventDefault"] ? 1 : 0)) + return; + if ("key" in $newEvent ? 1 : 0) + $k = $newEvent["key"]; + i: { + if ($k != 1) { + if ($k <= (-1)) + break i; + if ($k != nmcs_KeyBinding_getKeyCode($this.$gameSettings.$keyBindClose)) + break i; + } + $ptr = 198; + continue main; + } + if ($k == 32 && nlev_Keyboard_isKeyDown(61)) { + $event = $this.$ingameGUI; + if ($event !== null) { + $ptr = 210; + continue main; + } + } + if ($k == 31 && nlev_Keyboard_isKeyDown(61)) { + $ptr = 209; + continue main; + } + if ($k == 19 && nlev_Keyboard_isKeyDown(61) && $this.$gameSettings.$shaders) { + $ptr = 212; + continue main; + } + $k == 17 && !nlev_Keyboard_isKeyDown(61); + $k == 18 && !nlev_Keyboard_isKeyDown(61); + $k == 47 && !nlev_Keyboard_isKeyDown(61); + $k == 38 && !nlev_Keyboard_isKeyDown(61); + $k == 22 && !nlev_Keyboard_isKeyDown(61); + if ($k == 20 && nlev_Keyboard_isKeyDown(61)) { + $ptr = 214; + continue main; + } + if ($k == 33 && nlev_Keyboard_isKeyDown(61)) { + $event = $this.$gameSettings; + nmcs_GameSettings$Options_$callClinit(); + $throwable2 = nmcs_GameSettings$Options_RENDER_DISTANCE; + $ptr = 215; + continue main; + } + if ($k == 30 && nlev_Keyboard_isKeyDown(61)) { + $ptr = 216; + continue main; + } + if ($k == 35 && nlev_Keyboard_isKeyDown(61)) { + $event = $this.$gameSettings; + $event.$advancedItemTooltips = $event.$advancedItemTooltips ? 0 : 1; + $ptr = 219; + continue main; + } + if ($k == 48 && nlev_Keyboard_isKeyDown(61)) { + $event = $this.$renderManager; + nmcre_RenderManager_setDebugBoundingBox($event, nmcre_RenderManager_isDebugBoundingBox($event) ? 0 : 1); + } + if ($k == 25 && nlev_Keyboard_isKeyDown(61)) { + $event = $this.$gameSettings; + $event.$pauseOnLostFocus = $event.$pauseOnLostFocus ? 0 : 1; + $ptr = 220; + continue main; + } + if ($k == 59) { + $event = $this.$gameSettings; + $event.$hideGUI = $event.$hideGUI ? 0 : 1; + } + if ($k == 61) { + $event = $this.$gameSettings; + $event.$showDebugInfo = $event.$showDebugInfo ? 0 : 1; + $ptr = 221; + continue main; + } + if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindTogglePerspective)) { + $event = $this.$gameSettings; + $isHostingLAN = $event.$thirdPersonView + 1 | 0; + $event.$thirdPersonView = $isHostingLAN; + if ($isHostingLAN > 2) + $event.$thirdPersonView = 0; + $isHostingLAN = $event.$thirdPersonView; + if (!$isHostingLAN) { + $event = $this.$entityRenderer; + $ptr = 223; + continue main; + } + if ($isHostingLAN != 1) { + $event = $this.$renderGlobal; + $ptr = 225; + continue main; + } + $event = $this.$entityRenderer; + $ptr = 226; + continue main; + } + if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindSmoothCamera)) { + $event = $this.$gameSettings; + $event.$smoothCamera = $event.$smoothCamera ? 0 : 1; + } + l: { + $event = $this.$gameSettings; + if ($event.$showDebugInfo && $event.$showDebugProfilerChart) { + if ($k == 11) { + $isHostingLAN = 0; + $ptr = 199; + continue main; + } + $j1 = 0; + while (true) { + if ($j1 >= 9) + break l; + if ($k == (2 + $j1 | 0)) { + $isHostingLAN = $j1 + 1 | 0; + $ptr = 208; + continue main; + } + $j1 = $j1 + 1 | 0; + } + } + } + $ptr = 48; + continue main; + case 180: + nmcg_GuiScreen_handleKeyboardInput($event); + if ($rt_suspending()) { + break main; + } + f: { + $event = $this.$gameSettings; + if ($event.$showDebugInfo && $event.$showDebugProfilerChart) { + if ($k == 11) { + $isHostingLAN = 0; + $ptr = 199; + continue main; + } + $j1 = 0; + while (true) { + if ($j1 >= 9) + break f; + if ($k == (2 + $j1 | 0)) { + $isHostingLAN = $j1 + 1 | 0; + $ptr = 208; + continue main; + } + $j1 = $j1 + 1 | 0; + } + } + } + $ptr = 48; + continue main; + case 181: try { - $tmp = jl_String_getBytes($crashreport2); + $tmp = nPs_Config_isSmoothWorld(); if ($rt_suspending()) { break main; } - var$6 = $tmp; - nlevi_IPCPacketData__init_0($event, $throwable2, var$6); - $ptr = 178; + $isHostingLAN = $tmp; + if (!$isHostingLAN) { + $event = new nlevi_IPCPacketData; + $throwable2 = $rt_s(504); + $crashreport2 = $rt_s(514); + $ptr = 182; + continue main; + } + $event = new nlevi_IPCPacketData; + $throwable2 = $rt_s(504); + $crashreport2 = $rt_s(515); + $ptr = 184; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -164905,18 +165851,14 @@ $event = $rt_s(494); $ptr = 93; continue main; - case 178: + case 182: try { - nlevsi_ClientPlatformSingleplayer_sendPacket($event); + $tmp = jl_String_getBytes($crashreport2); if ($rt_suspending()) { break main; } - $event = new nlevi_IPCPacketData; - $throwable2 = $rt_s(504); - $crashreport2 = new jl_String; - $isHostingLAN = $this.$gameSettings.$ofTrees; - $pluginBrand = jl_StringBuilder__init_(); - $pluginVersion = $rt_s(516); + var$6 = $tmp; + nlevi_IPCPacketData__init_0($event, $throwable2, var$6); $ptr = 183; continue main; } catch ($$e) { @@ -164930,104 +165872,19 @@ $event = $rt_s(494); $ptr = 93; continue main; - case 179: - nmc_Minecraft_clickMouse($this); - if ($rt_suspending()) { - break main; - } - if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { - continue main; - } - if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { - $ptr = 185; - continue main; - } - if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) { - $ptr = 190; - continue main; - } - if (nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem) && !$this.$rightClickDelayTimer && !nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { - $ptr = 200; - continue main; - } - $isHostingLAN = $this.$currentScreen === null && nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindAttack) && $this.$inGameHasFocus ? 1 : 0; - $ptr = 199; - continue main; - case 180: - nmcm_PlayerControllerMP_onStoppedUsingItem($event, $throwable2); - if ($rt_suspending()) { - break main; - } - while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { - } - while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { - } - while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) { - } - if (nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem) && !$this.$rightClickDelayTimer && !nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { - $ptr = 200; - continue main; - } - $isHostingLAN = $this.$currentScreen === null && nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindAttack) && $this.$inGameHasFocus ? 1 : 0; - $ptr = 199; - continue main; - case 181: - nmcg_GuiChat__init_0($throwable2, $event); - if ($rt_suspending()) { - break main; - } - $ptr = 182; - case 182: - nmc_Minecraft_displayGuiScreen($this, $throwable2); - if ($rt_suspending()) { - break main; - } - f: { - if (!nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { - if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { - $ptr = 179; - continue main; - } - if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { - $ptr = 185; - continue main; - } - if (!nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) - break f; - $ptr = 190; - continue main; - } - if (!nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem)) { - $event = $this.$playerController; - $throwable2 = $this.$thePlayer; - $ptr = 180; - continue main; - } - while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { - } - while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { - } - while (true) { - if (!nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) - break f; - } - } - if (nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem) && !$this.$rightClickDelayTimer && !nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { - $ptr = 200; - continue main; - } - $isHostingLAN = $this.$currentScreen === null && nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindAttack) && $this.$inGameHasFocus ? 1 : 0; - $ptr = 199; - continue main; case 183: try { - $tmp = jl_StringBuilder_append($pluginBrand, $pluginVersion); + nlevsi_ClientPlatformSingleplayer_sendPacket($event); if ($rt_suspending()) { break main; } - $pluginVersion = $tmp; - jl_StringBuilder_append1($pluginVersion, $isHostingLAN); - $ptr = 184; + $event = new nlevi_IPCPacketData; + $throwable2 = $rt_s(504); + $crashreport2 = new jl_String; + $isHostingLAN = $this.$gameSettings.$ofTrees; + $pluginBrand = jl_StringBuilder__init_(); + $pluginVersion = $rt_s(516); + $ptr = 190; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -165042,13 +165899,13 @@ continue main; case 184: try { - $tmp = jl_StringBuilder_toString($pluginBrand); + $tmp = jl_String_getBytes($crashreport2); if ($rt_suspending()) { break main; } - $pluginBrand = $tmp; - jl_String__init_3($crashreport2, $pluginBrand); - $ptr = 186; + var$6 = $tmp; + nlevi_IPCPacketData__init_0($event, $throwable2, var$6); + $ptr = 185; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -165062,46 +165919,6 @@ $ptr = 93; continue main; case 185: - nmc_Minecraft_rightClickMouse($this); - if ($rt_suspending()) { - break main; - } - if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { - continue main; - } - if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) { - $ptr = 190; - continue main; - } - if (nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem) && !$this.$rightClickDelayTimer && !nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { - $ptr = 200; - continue main; - } - $isHostingLAN = $this.$currentScreen === null && nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindAttack) && $this.$inGameHasFocus ? 1 : 0; - $ptr = 199; - continue main; - case 186: - try { - $tmp = jl_String_getBytes($crashreport2); - if ($rt_suspending()) { - break main; - } - var$6 = $tmp; - nlevi_IPCPacketData__init_0($event, $throwable2, var$6); - $ptr = 187; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $throwable2 = $$je; - } else { - throw $$e; - } - } - $event = $rt_s(494); - $ptr = 93; - continue main; - case 187: try { nlevsi_ClientPlatformSingleplayer_sendPacket($event); if ($rt_suspending()) { @@ -165110,10 +165927,10 @@ $event = new nlevi_IPCPacketData; $throwable2 = $rt_s(504); $crashreport2 = new jl_String; - $isHostingLAN = $this.$gameSettings.$fancyGraphics; + $isHostingLAN = $this.$gameSettings.$ofTrees; $pluginBrand = jl_StringBuilder__init_(); - $pluginVersion = $rt_s(517); - $ptr = 188; + $pluginVersion = $rt_s(516); + $ptr = 190; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -165126,15 +165943,104 @@ $event = $rt_s(494); $ptr = 93; continue main; + case 186: + nmc_Minecraft_clickMouse($this); + if ($rt_suspending()) { + break main; + } + if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { + continue main; + } + if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { + $ptr = 192; + continue main; + } + if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) { + $ptr = 197; + continue main; + } + if (nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem) && !$this.$rightClickDelayTimer && !nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { + $ptr = 207; + continue main; + } + $isHostingLAN = $this.$currentScreen === null && nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindAttack) && $this.$inGameHasFocus ? 1 : 0; + $ptr = 206; + continue main; + case 187: + nmcm_PlayerControllerMP_onStoppedUsingItem($event, $throwable2); + if ($rt_suspending()) { + break main; + } + while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { + } + while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { + } + while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) { + } + if (nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem) && !$this.$rightClickDelayTimer && !nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { + $ptr = 207; + continue main; + } + $isHostingLAN = $this.$currentScreen === null && nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindAttack) && $this.$inGameHasFocus ? 1 : 0; + $ptr = 206; + continue main; case 188: + nmcg_GuiChat__init_0($throwable2, $event); + if ($rt_suspending()) { + break main; + } + $ptr = 189; + case 189: + nmc_Minecraft_displayGuiScreen($this, $throwable2); + if ($rt_suspending()) { + break main; + } + f: { + if (!nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { + if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { + $ptr = 186; + continue main; + } + if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { + $ptr = 192; + continue main; + } + if (!nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) + break f; + $ptr = 197; + continue main; + } + if (!nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem)) { + $event = $this.$playerController; + $throwable2 = $this.$thePlayer; + $ptr = 187; + continue main; + } + while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindAttack)) { + } + while (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { + } + while (true) { + if (!nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) + break f; + } + } + if (nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem) && !$this.$rightClickDelayTimer && !nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { + $ptr = 207; + continue main; + } + $isHostingLAN = $this.$currentScreen === null && nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindAttack) && $this.$inGameHasFocus ? 1 : 0; + $ptr = 206; + continue main; + case 190: try { $tmp = jl_StringBuilder_append($pluginBrand, $pluginVersion); if ($rt_suspending()) { break main; } $pluginVersion = $tmp; - jl_StringBuilder_append7($pluginVersion, $isHostingLAN); - $ptr = 189; + jl_StringBuilder_append1($pluginVersion, $isHostingLAN); + $ptr = 191; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -165147,7 +166053,7 @@ $event = $rt_s(494); $ptr = 93; continue main; - case 189: + case 191: try { $tmp = jl_StringBuilder_toString($pluginBrand); if ($rt_suspending()) { @@ -165168,150 +166074,24 @@ $event = $rt_s(494); $ptr = 93; continue main; - case 190: - nmc_Minecraft_middleClickMouse($this); + case 192: + nmc_Minecraft_rightClickMouse($this); if ($rt_suspending()) { break main; } + if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindUseItem)) { + continue main; + } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) { + $ptr = 197; continue main; } if (nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem) && !$this.$rightClickDelayTimer && !nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { - $ptr = 200; - continue main; - } - $isHostingLAN = $this.$currentScreen === null && nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindAttack) && $this.$inGameHasFocus ? 1 : 0; - $ptr = 199; - continue main; - case 191: - nmc_Minecraft_displayInGameMenu($this); - if ($rt_suspending()) { - break main; - } - if ($k == 32 && nlev_Keyboard_isKeyDown(61)) { - $event = $this.$ingameGUI; - if ($event !== null) { - $ptr = 203; - continue main; - } - } - if ($k == 31 && nlev_Keyboard_isKeyDown(61)) { - $ptr = 202; - continue main; - } - if ($k == 19 && nlev_Keyboard_isKeyDown(61) && $this.$gameSettings.$shaders) { - $ptr = 205; - continue main; - } - $k == 17 && !nlev_Keyboard_isKeyDown(61); - $k == 18 && !nlev_Keyboard_isKeyDown(61); - $k == 47 && !nlev_Keyboard_isKeyDown(61); - $k == 38 && !nlev_Keyboard_isKeyDown(61); - $k == 22 && !nlev_Keyboard_isKeyDown(61); - if ($k == 20 && nlev_Keyboard_isKeyDown(61)) { $ptr = 207; continue main; } - if ($k == 33 && nlev_Keyboard_isKeyDown(61)) { - $event = $this.$gameSettings; - nmcs_GameSettings$Options_$callClinit(); - $throwable2 = nmcs_GameSettings$Options_RENDER_DISTANCE; - $ptr = 208; - continue main; - } - if ($k == 30 && nlev_Keyboard_isKeyDown(61)) { - $ptr = 209; - continue main; - } - if ($k == 35 && nlev_Keyboard_isKeyDown(61)) { - $event = $this.$gameSettings; - $event.$advancedItemTooltips = $event.$advancedItemTooltips ? 0 : 1; - $ptr = 212; - continue main; - } - if ($k == 48 && nlev_Keyboard_isKeyDown(61)) { - $event = $this.$renderManager; - nmcre_RenderManager_setDebugBoundingBox($event, nmcre_RenderManager_isDebugBoundingBox($event) ? 0 : 1); - } - if ($k == 25 && nlev_Keyboard_isKeyDown(61)) { - $event = $this.$gameSettings; - $event.$pauseOnLostFocus = $event.$pauseOnLostFocus ? 0 : 1; - $ptr = 213; - continue main; - } - if ($k == 59) { - $event = $this.$gameSettings; - $event.$hideGUI = $event.$hideGUI ? 0 : 1; - } - if ($k == 61) { - $event = $this.$gameSettings; - $event.$showDebugInfo = $event.$showDebugInfo ? 0 : 1; - $ptr = 214; - continue main; - } - if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindTogglePerspective)) { - $event = $this.$gameSettings; - $isHostingLAN = $event.$thirdPersonView + 1 | 0; - $event.$thirdPersonView = $isHostingLAN; - if ($isHostingLAN > 2) - $event.$thirdPersonView = 0; - $isHostingLAN = $event.$thirdPersonView; - if (!$isHostingLAN) { - $event = $this.$entityRenderer; - $ptr = 216; - continue main; - } - if ($isHostingLAN != 1) { - $event = $this.$renderGlobal; - $ptr = 218; - continue main; - } - $event = $this.$entityRenderer; - $ptr = 219; - continue main; - } - if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindSmoothCamera)) { - $event = $this.$gameSettings; - $event.$smoothCamera = $event.$smoothCamera ? 0 : 1; - } - m: { - $event = $this.$gameSettings; - if ($event.$showDebugInfo && $event.$showDebugProfilerChart) { - if ($k == 11) { - $isHostingLAN = 0; - $ptr = 192; - continue main; - } - $j1 = 0; - while (true) { - if ($j1 >= 9) - break m; - if ($k == (2 + $j1 | 0)) { - $isHostingLAN = $j1 + 1 | 0; - $ptr = 201; - continue main; - } - $j1 = $j1 + 1 | 0; - } - } - } - $ptr = 48; - continue main; - case 192: - nmc_Minecraft_updateDebugProfilerName($this, $isHostingLAN); - if ($rt_suspending()) { - break main; - } - $j1 = 0; - while ($j1 < 9) { - if ($k == (2 + $j1 | 0)) { - $isHostingLAN = $j1 + 1 | 0; - $ptr = 201; - continue main; - } - $j1 = $j1 + 1 | 0; - } - $ptr = 48; + $isHostingLAN = $this.$currentScreen === null && nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindAttack) && $this.$inGameHasFocus ? 1 : 0; + $ptr = 206; continue main; case 193: try { @@ -165343,9 +166123,9 @@ $event = new nlevi_IPCPacketData; $throwable2 = $rt_s(504); $crashreport2 = new jl_String; - $isHostingLAN = $this.$gameSettings.$fullBright; + $isHostingLAN = $this.$gameSettings.$fancyGraphics; $pluginBrand = jl_StringBuilder__init_(); - $pluginVersion = $rt_s(518); + $pluginVersion = $rt_s(517); $ptr = 195; continue main; } catch ($$e) { @@ -165388,7 +166168,7 @@ } $pluginBrand = $tmp; jl_String__init_3($crashreport2, $pluginBrand); - $ptr = 197; + $ptr = 200; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -165402,6 +166182,151 @@ $ptr = 93; continue main; case 197: + nmc_Minecraft_middleClickMouse($this); + if ($rt_suspending()) { + break main; + } + if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindPickBlock)) { + continue main; + } + if (nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindUseItem) && !$this.$rightClickDelayTimer && !nmep_EntityPlayer_isUsingItem($this.$thePlayer)) { + $ptr = 207; + continue main; + } + $isHostingLAN = $this.$currentScreen === null && nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindAttack) && $this.$inGameHasFocus ? 1 : 0; + $ptr = 206; + continue main; + case 198: + nmc_Minecraft_displayInGameMenu($this); + if ($rt_suspending()) { + break main; + } + if ($k == 32 && nlev_Keyboard_isKeyDown(61)) { + $event = $this.$ingameGUI; + if ($event !== null) { + $ptr = 210; + continue main; + } + } + if ($k == 31 && nlev_Keyboard_isKeyDown(61)) { + $ptr = 209; + continue main; + } + if ($k == 19 && nlev_Keyboard_isKeyDown(61) && $this.$gameSettings.$shaders) { + $ptr = 212; + continue main; + } + $k == 17 && !nlev_Keyboard_isKeyDown(61); + $k == 18 && !nlev_Keyboard_isKeyDown(61); + $k == 47 && !nlev_Keyboard_isKeyDown(61); + $k == 38 && !nlev_Keyboard_isKeyDown(61); + $k == 22 && !nlev_Keyboard_isKeyDown(61); + if ($k == 20 && nlev_Keyboard_isKeyDown(61)) { + $ptr = 214; + continue main; + } + if ($k == 33 && nlev_Keyboard_isKeyDown(61)) { + $event = $this.$gameSettings; + nmcs_GameSettings$Options_$callClinit(); + $throwable2 = nmcs_GameSettings$Options_RENDER_DISTANCE; + $ptr = 215; + continue main; + } + if ($k == 30 && nlev_Keyboard_isKeyDown(61)) { + $ptr = 216; + continue main; + } + if ($k == 35 && nlev_Keyboard_isKeyDown(61)) { + $event = $this.$gameSettings; + $event.$advancedItemTooltips = $event.$advancedItemTooltips ? 0 : 1; + $ptr = 219; + continue main; + } + if ($k == 48 && nlev_Keyboard_isKeyDown(61)) { + $event = $this.$renderManager; + nmcre_RenderManager_setDebugBoundingBox($event, nmcre_RenderManager_isDebugBoundingBox($event) ? 0 : 1); + } + if ($k == 25 && nlev_Keyboard_isKeyDown(61)) { + $event = $this.$gameSettings; + $event.$pauseOnLostFocus = $event.$pauseOnLostFocus ? 0 : 1; + $ptr = 220; + continue main; + } + if ($k == 59) { + $event = $this.$gameSettings; + $event.$hideGUI = $event.$hideGUI ? 0 : 1; + } + if ($k == 61) { + $event = $this.$gameSettings; + $event.$showDebugInfo = $event.$showDebugInfo ? 0 : 1; + $ptr = 221; + continue main; + } + if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindTogglePerspective)) { + $event = $this.$gameSettings; + $isHostingLAN = $event.$thirdPersonView + 1 | 0; + $event.$thirdPersonView = $isHostingLAN; + if ($isHostingLAN > 2) + $event.$thirdPersonView = 0; + $isHostingLAN = $event.$thirdPersonView; + if (!$isHostingLAN) { + $event = $this.$entityRenderer; + $ptr = 223; + continue main; + } + if ($isHostingLAN != 1) { + $event = $this.$renderGlobal; + $ptr = 225; + continue main; + } + $event = $this.$entityRenderer; + $ptr = 226; + continue main; + } + if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindSmoothCamera)) { + $event = $this.$gameSettings; + $event.$smoothCamera = $event.$smoothCamera ? 0 : 1; + } + m: { + $event = $this.$gameSettings; + if ($event.$showDebugInfo && $event.$showDebugProfilerChart) { + if ($k == 11) { + $isHostingLAN = 0; + $ptr = 199; + continue main; + } + $j1 = 0; + while (true) { + if ($j1 >= 9) + break m; + if ($k == (2 + $j1 | 0)) { + $isHostingLAN = $j1 + 1 | 0; + $ptr = 208; + continue main; + } + $j1 = $j1 + 1 | 0; + } + } + } + $ptr = 48; + continue main; + case 199: + nmc_Minecraft_updateDebugProfilerName($this, $isHostingLAN); + if ($rt_suspending()) { + break main; + } + $j1 = 0; + while ($j1 < 9) { + if ($k == (2 + $j1 | 0)) { + $isHostingLAN = $j1 + 1 | 0; + $ptr = 208; + continue main; + } + $j1 = $j1 + 1 | 0; + } + $ptr = 48; + continue main; + case 200: try { $tmp = jl_String_getBytes($crashreport2); if ($rt_suspending()) { @@ -165409,7 +166334,7 @@ } var$6 = $tmp; nlevi_IPCPacketData__init_0($event, $throwable2, var$6); - $ptr = 198; + $ptr = 201; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -165422,7 +166347,95 @@ $event = $rt_s(494); $ptr = 93; continue main; - case 198: + case 201: + try { + nlevsi_ClientPlatformSingleplayer_sendPacket($event); + if ($rt_suspending()) { + break main; + } + $event = new nlevi_IPCPacketData; + $throwable2 = $rt_s(504); + $crashreport2 = new jl_String; + $isHostingLAN = $this.$gameSettings.$fullBright; + $pluginBrand = jl_StringBuilder__init_(); + $pluginVersion = $rt_s(518); + $ptr = 202; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $throwable2 = $$je; + } else { + throw $$e; + } + } + $event = $rt_s(494); + $ptr = 93; + continue main; + case 202: + try { + $tmp = jl_StringBuilder_append($pluginBrand, $pluginVersion); + if ($rt_suspending()) { + break main; + } + $pluginVersion = $tmp; + jl_StringBuilder_append7($pluginVersion, $isHostingLAN); + $ptr = 203; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $throwable2 = $$je; + } else { + throw $$e; + } + } + $event = $rt_s(494); + $ptr = 93; + continue main; + case 203: + try { + $tmp = jl_StringBuilder_toString($pluginBrand); + if ($rt_suspending()) { + break main; + } + $pluginBrand = $tmp; + jl_String__init_3($crashreport2, $pluginBrand); + $ptr = 204; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $throwable2 = $$je; + } else { + throw $$e; + } + } + $event = $rt_s(494); + $ptr = 93; + continue main; + case 204: + try { + $tmp = jl_String_getBytes($crashreport2); + if ($rt_suspending()) { + break main; + } + var$6 = $tmp; + nlevi_IPCPacketData__init_0($event, $throwable2, var$6); + $ptr = 205; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $throwable2 = $$je; + } else { + throw $$e; + } + } + $event = $rt_s(494); + $ptr = 93; + continue main; + case 205: a: { try { nlevsi_ClientPlatformSingleplayer_sendPacket($event); @@ -165459,7 +166472,7 @@ } try { nPs_Config_waterOpacityChanged = 0; - $ptr = 164; + $ptr = 171; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -165473,7 +166486,7 @@ $event = $rt_s(494); $ptr = 93; continue main; - case 199: + case 206: nmc_Minecraft_sendClickBlockToController($this, $isHostingLAN); if ($rt_suspending()) { break main; @@ -165498,15 +166511,15 @@ $throwable2 = $rt_s(474); $ptr = 47; continue main; - case 200: + case 207: nmc_Minecraft_rightClickMouse($this); if ($rt_suspending()) { break main; } $isHostingLAN = $this.$currentScreen === null && nmcs_KeyBinding_isKeyDown($this.$gameSettings.$keyBindAttack) && $this.$inGameHasFocus ? 1 : 0; - $ptr = 199; + $ptr = 206; continue main; - case 201: + case 208: nmc_Minecraft_updateDebugProfilerName($this, $isHostingLAN); if ($rt_suspending()) { break main; @@ -165524,13 +166537,13 @@ } $ptr = 48; continue main; - case 202: + case 209: nmc_Minecraft_refreshResources($this); if ($rt_suspending()) { break main; } if ($k == 19 && nlev_Keyboard_isKeyDown(61) && $this.$gameSettings.$shaders) { - $ptr = 205; + $ptr = 212; continue main; } $k == 17 && !nlev_Keyboard_isKeyDown(61); @@ -165539,24 +166552,24 @@ $k == 38 && !nlev_Keyboard_isKeyDown(61); $k == 22 && !nlev_Keyboard_isKeyDown(61); if ($k == 20 && nlev_Keyboard_isKeyDown(61)) { - $ptr = 207; + $ptr = 214; continue main; } if ($k == 33 && nlev_Keyboard_isKeyDown(61)) { $event = $this.$gameSettings; nmcs_GameSettings$Options_$callClinit(); $throwable2 = nmcs_GameSettings$Options_RENDER_DISTANCE; - $ptr = 208; + $ptr = 215; continue main; } if ($k == 30 && nlev_Keyboard_isKeyDown(61)) { - $ptr = 209; + $ptr = 216; continue main; } if ($k == 35 && nlev_Keyboard_isKeyDown(61)) { $event = $this.$gameSettings; $event.$advancedItemTooltips = $event.$advancedItemTooltips ? 0 : 1; - $ptr = 212; + $ptr = 219; continue main; } if ($k == 48 && nlev_Keyboard_isKeyDown(61)) { @@ -165566,7 +166579,7 @@ if ($k == 25 && nlev_Keyboard_isKeyDown(61)) { $event = $this.$gameSettings; $event.$pauseOnLostFocus = $event.$pauseOnLostFocus ? 0 : 1; - $ptr = 213; + $ptr = 220; continue main; } if ($k == 59) { @@ -165576,7 +166589,7 @@ if ($k == 61) { $event = $this.$gameSettings; $event.$showDebugInfo = $event.$showDebugInfo ? 0 : 1; - $ptr = 214; + $ptr = 221; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindTogglePerspective)) { @@ -165588,16 +166601,16 @@ $isHostingLAN = $event.$thirdPersonView; if (!$isHostingLAN) { $event = $this.$entityRenderer; - $ptr = 216; + $ptr = 223; continue main; } if ($isHostingLAN != 1) { $event = $this.$renderGlobal; - $ptr = 218; + $ptr = 225; continue main; } $event = $this.$entityRenderer; - $ptr = 219; + $ptr = 226; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindSmoothCamera)) { @@ -165609,7 +166622,7 @@ if ($event.$showDebugInfo && $event.$showDebugProfilerChart) { if ($k == 11) { $isHostingLAN = 0; - $ptr = 192; + $ptr = 199; continue main; } $j1 = 0; @@ -165618,7 +166631,7 @@ break n; if ($k == (2 + $j1 | 0)) { $isHostingLAN = $j1 + 1 | 0; - $ptr = 201; + $ptr = 208; continue main; } $j1 = $j1 + 1 | 0; @@ -165627,24 +166640,24 @@ } $ptr = 48; continue main; - case 203: + case 210: $tmp = nmcg_GuiIngame_getChatGUI($event); if ($rt_suspending()) { break main; } $event = $tmp; - $ptr = 204; - case 204: + $ptr = 211; + case 211: nmcg_GuiNewChat_clearChatMessages($event); if ($rt_suspending()) { break main; } if ($k == 31 && nlev_Keyboard_isKeyDown(61)) { - $ptr = 202; + $ptr = 209; continue main; } if ($k == 19 && nlev_Keyboard_isKeyDown(61) && $this.$gameSettings.$shaders) { - $ptr = 205; + $ptr = 212; continue main; } $k == 17 && !nlev_Keyboard_isKeyDown(61); @@ -165653,24 +166666,24 @@ $k == 38 && !nlev_Keyboard_isKeyDown(61); $k == 22 && !nlev_Keyboard_isKeyDown(61); if ($k == 20 && nlev_Keyboard_isKeyDown(61)) { - $ptr = 207; + $ptr = 214; continue main; } if ($k == 33 && nlev_Keyboard_isKeyDown(61)) { $event = $this.$gameSettings; nmcs_GameSettings$Options_$callClinit(); $throwable2 = nmcs_GameSettings$Options_RENDER_DISTANCE; - $ptr = 208; + $ptr = 215; continue main; } if ($k == 30 && nlev_Keyboard_isKeyDown(61)) { - $ptr = 209; + $ptr = 216; continue main; } if ($k == 35 && nlev_Keyboard_isKeyDown(61)) { $event = $this.$gameSettings; $event.$advancedItemTooltips = $event.$advancedItemTooltips ? 0 : 1; - $ptr = 212; + $ptr = 219; continue main; } if ($k == 48 && nlev_Keyboard_isKeyDown(61)) { @@ -165680,7 +166693,7 @@ if ($k == 25 && nlev_Keyboard_isKeyDown(61)) { $event = $this.$gameSettings; $event.$pauseOnLostFocus = $event.$pauseOnLostFocus ? 0 : 1; - $ptr = 213; + $ptr = 220; continue main; } if ($k == 59) { @@ -165690,7 +166703,7 @@ if ($k == 61) { $event = $this.$gameSettings; $event.$showDebugInfo = $event.$showDebugInfo ? 0 : 1; - $ptr = 214; + $ptr = 221; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindTogglePerspective)) { @@ -165702,16 +166715,16 @@ $isHostingLAN = $event.$thirdPersonView; if (!$isHostingLAN) { $event = $this.$entityRenderer; - $ptr = 216; + $ptr = 223; continue main; } if ($isHostingLAN != 1) { $event = $this.$renderGlobal; - $ptr = 218; + $ptr = 225; continue main; } $event = $this.$entityRenderer; - $ptr = 219; + $ptr = 226; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindSmoothCamera)) { @@ -165723,7 +166736,7 @@ if ($event.$showDebugInfo && $event.$showDebugProfilerChart) { if ($k == 11) { $isHostingLAN = 0; - $ptr = 192; + $ptr = 199; continue main; } $j1 = 0; @@ -165732,7 +166745,7 @@ break o; if ($k == (2 + $j1 | 0)) { $isHostingLAN = $j1 + 1 | 0; - $ptr = 201; + $ptr = 208; continue main; } $j1 = $j1 + 1 | 0; @@ -165741,14 +166754,14 @@ } $ptr = 48; continue main; - case 205: + case 212: nlevoedp_ShaderSource_clearCache(); if ($rt_suspending()) { break main; } $event = $this.$renderGlobal; - $ptr = 206; - case 206: + $ptr = 213; + case 213: nmcr_RenderGlobal_loadRenderers($event); if ($rt_suspending()) { break main; @@ -165759,24 +166772,24 @@ $k == 38 && !nlev_Keyboard_isKeyDown(61); $k == 22 && !nlev_Keyboard_isKeyDown(61); if ($k == 20 && nlev_Keyboard_isKeyDown(61)) { - $ptr = 207; + $ptr = 214; continue main; } if ($k == 33 && nlev_Keyboard_isKeyDown(61)) { $event = $this.$gameSettings; nmcs_GameSettings$Options_$callClinit(); $throwable2 = nmcs_GameSettings$Options_RENDER_DISTANCE; - $ptr = 208; + $ptr = 215; continue main; } if ($k == 30 && nlev_Keyboard_isKeyDown(61)) { - $ptr = 209; + $ptr = 216; continue main; } if ($k == 35 && nlev_Keyboard_isKeyDown(61)) { $event = $this.$gameSettings; $event.$advancedItemTooltips = $event.$advancedItemTooltips ? 0 : 1; - $ptr = 212; + $ptr = 219; continue main; } if ($k == 48 && nlev_Keyboard_isKeyDown(61)) { @@ -165786,7 +166799,7 @@ if ($k == 25 && nlev_Keyboard_isKeyDown(61)) { $event = $this.$gameSettings; $event.$pauseOnLostFocus = $event.$pauseOnLostFocus ? 0 : 1; - $ptr = 213; + $ptr = 220; continue main; } if ($k == 59) { @@ -165796,7 +166809,7 @@ if ($k == 61) { $event = $this.$gameSettings; $event.$showDebugInfo = $event.$showDebugInfo ? 0 : 1; - $ptr = 214; + $ptr = 221; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindTogglePerspective)) { @@ -165808,16 +166821,16 @@ $isHostingLAN = $event.$thirdPersonView; if (!$isHostingLAN) { $event = $this.$entityRenderer; - $ptr = 216; + $ptr = 223; continue main; } if ($isHostingLAN != 1) { $event = $this.$renderGlobal; - $ptr = 218; + $ptr = 225; continue main; } $event = $this.$entityRenderer; - $ptr = 219; + $ptr = 226; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindSmoothCamera)) { @@ -165829,7 +166842,7 @@ if ($event.$showDebugInfo && $event.$showDebugProfilerChart) { if ($k == 11) { $isHostingLAN = 0; - $ptr = 192; + $ptr = 199; continue main; } $j1 = 0; @@ -165838,7 +166851,7 @@ break p; if ($k == (2 + $j1 | 0)) { $isHostingLAN = $j1 + 1 | 0; - $ptr = 201; + $ptr = 208; continue main; } $j1 = $j1 + 1 | 0; @@ -165847,7 +166860,7 @@ } $ptr = 48; continue main; - case 207: + case 214: nmc_Minecraft_refreshResources($this); if ($rt_suspending()) { break main; @@ -165856,17 +166869,17 @@ $event = $this.$gameSettings; nmcs_GameSettings$Options_$callClinit(); $throwable2 = nmcs_GameSettings$Options_RENDER_DISTANCE; - $ptr = 208; + $ptr = 215; continue main; } if ($k == 30 && nlev_Keyboard_isKeyDown(61)) { - $ptr = 209; + $ptr = 216; continue main; } if ($k == 35 && nlev_Keyboard_isKeyDown(61)) { $event = $this.$gameSettings; $event.$advancedItemTooltips = $event.$advancedItemTooltips ? 0 : 1; - $ptr = 212; + $ptr = 219; continue main; } if ($k == 48 && nlev_Keyboard_isKeyDown(61)) { @@ -165876,7 +166889,7 @@ if ($k == 25 && nlev_Keyboard_isKeyDown(61)) { $event = $this.$gameSettings; $event.$pauseOnLostFocus = $event.$pauseOnLostFocus ? 0 : 1; - $ptr = 213; + $ptr = 220; continue main; } if ($k == 59) { @@ -165886,7 +166899,7 @@ if ($k == 61) { $event = $this.$gameSettings; $event.$showDebugInfo = $event.$showDebugInfo ? 0 : 1; - $ptr = 214; + $ptr = 221; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindTogglePerspective)) { @@ -165898,16 +166911,16 @@ $isHostingLAN = $event.$thirdPersonView; if (!$isHostingLAN) { $event = $this.$entityRenderer; - $ptr = 216; + $ptr = 223; continue main; } if ($isHostingLAN != 1) { $event = $this.$renderGlobal; - $ptr = 218; + $ptr = 225; continue main; } $event = $this.$entityRenderer; - $ptr = 219; + $ptr = 226; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindSmoothCamera)) { @@ -165919,7 +166932,7 @@ if ($event.$showDebugInfo && $event.$showDebugProfilerChart) { if ($k == 11) { $isHostingLAN = 0; - $ptr = 192; + $ptr = 199; continue main; } $j1 = 0; @@ -165928,7 +166941,7 @@ break q; if ($k == (2 + $j1 | 0)) { $isHostingLAN = $j1 + 1 | 0; - $ptr = 201; + $ptr = 208; continue main; } $j1 = $j1 + 1 | 0; @@ -165937,23 +166950,23 @@ } $ptr = 48; continue main; - case 208: + case 215: $tmp = nmcg_GuiScreen_isShiftKeyDown(); if ($rt_suspending()) { break main; } $isHostingLAN = $tmp; $isHostingLAN = !$isHostingLAN ? 1 : (-1); - $ptr = 211; + $ptr = 218; continue main; - case 209: + case 216: nlevo_GlStateManager_recompileShaders(); if ($rt_suspending()) { break main; } $event = $this.$renderGlobal; - $ptr = 210; - case 210: + $ptr = 217; + case 217: nmcr_RenderGlobal_loadRenderers($event); if ($rt_suspending()) { break main; @@ -165961,7 +166974,7 @@ if ($k == 35 && nlev_Keyboard_isKeyDown(61)) { $event = $this.$gameSettings; $event.$advancedItemTooltips = $event.$advancedItemTooltips ? 0 : 1; - $ptr = 212; + $ptr = 219; continue main; } if ($k == 48 && nlev_Keyboard_isKeyDown(61)) { @@ -165971,7 +166984,7 @@ if ($k == 25 && nlev_Keyboard_isKeyDown(61)) { $event = $this.$gameSettings; $event.$pauseOnLostFocus = $event.$pauseOnLostFocus ? 0 : 1; - $ptr = 213; + $ptr = 220; continue main; } if ($k == 59) { @@ -165981,7 +166994,7 @@ if ($k == 61) { $event = $this.$gameSettings; $event.$showDebugInfo = $event.$showDebugInfo ? 0 : 1; - $ptr = 214; + $ptr = 221; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindTogglePerspective)) { @@ -165993,16 +167006,16 @@ $isHostingLAN = $event.$thirdPersonView; if (!$isHostingLAN) { $event = $this.$entityRenderer; - $ptr = 216; + $ptr = 223; continue main; } if ($isHostingLAN != 1) { $event = $this.$renderGlobal; - $ptr = 218; + $ptr = 225; continue main; } $event = $this.$entityRenderer; - $ptr = 219; + $ptr = 226; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindSmoothCamera)) { @@ -166014,7 +167027,7 @@ if ($event.$showDebugInfo && $event.$showDebugProfilerChart) { if ($k == 11) { $isHostingLAN = 0; - $ptr = 192; + $ptr = 199; continue main; } $j1 = 0; @@ -166023,7 +167036,7 @@ break r; if ($k == (2 + $j1 | 0)) { $isHostingLAN = $j1 + 1 | 0; - $ptr = 201; + $ptr = 208; continue main; } $j1 = $j1 + 1 | 0; @@ -166032,19 +167045,19 @@ } $ptr = 48; continue main; - case 211: + case 218: nmcs_GameSettings_setOptionValue($event, $throwable2, $isHostingLAN); if ($rt_suspending()) { break main; } if ($k == 30 && nlev_Keyboard_isKeyDown(61)) { - $ptr = 209; + $ptr = 216; continue main; } if ($k == 35 && nlev_Keyboard_isKeyDown(61)) { $event = $this.$gameSettings; $event.$advancedItemTooltips = $event.$advancedItemTooltips ? 0 : 1; - $ptr = 212; + $ptr = 219; continue main; } if ($k == 48 && nlev_Keyboard_isKeyDown(61)) { @@ -166054,7 +167067,7 @@ if ($k == 25 && nlev_Keyboard_isKeyDown(61)) { $event = $this.$gameSettings; $event.$pauseOnLostFocus = $event.$pauseOnLostFocus ? 0 : 1; - $ptr = 213; + $ptr = 220; continue main; } if ($k == 59) { @@ -166064,7 +167077,7 @@ if ($k == 61) { $event = $this.$gameSettings; $event.$showDebugInfo = $event.$showDebugInfo ? 0 : 1; - $ptr = 214; + $ptr = 221; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindTogglePerspective)) { @@ -166076,16 +167089,16 @@ $isHostingLAN = $event.$thirdPersonView; if (!$isHostingLAN) { $event = $this.$entityRenderer; - $ptr = 216; + $ptr = 223; continue main; } if ($isHostingLAN != 1) { $event = $this.$renderGlobal; - $ptr = 218; + $ptr = 225; continue main; } $event = $this.$entityRenderer; - $ptr = 219; + $ptr = 226; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindSmoothCamera)) { @@ -166097,7 +167110,7 @@ if ($event.$showDebugInfo && $event.$showDebugProfilerChart) { if ($k == 11) { $isHostingLAN = 0; - $ptr = 192; + $ptr = 199; continue main; } $j1 = 0; @@ -166106,7 +167119,7 @@ break s; if ($k == (2 + $j1 | 0)) { $isHostingLAN = $j1 + 1 | 0; - $ptr = 201; + $ptr = 208; continue main; } $j1 = $j1 + 1 | 0; @@ -166115,7 +167128,7 @@ } $ptr = 48; continue main; - case 212: + case 219: nmcs_GameSettings_saveOptions($event); if ($rt_suspending()) { break main; @@ -166127,7 +167140,7 @@ if ($k == 25 && nlev_Keyboard_isKeyDown(61)) { $event = $this.$gameSettings; $event.$pauseOnLostFocus = $event.$pauseOnLostFocus ? 0 : 1; - $ptr = 213; + $ptr = 220; continue main; } if ($k == 59) { @@ -166137,7 +167150,7 @@ if ($k == 61) { $event = $this.$gameSettings; $event.$showDebugInfo = $event.$showDebugInfo ? 0 : 1; - $ptr = 214; + $ptr = 221; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindTogglePerspective)) { @@ -166149,16 +167162,16 @@ $isHostingLAN = $event.$thirdPersonView; if (!$isHostingLAN) { $event = $this.$entityRenderer; - $ptr = 216; + $ptr = 223; continue main; } if ($isHostingLAN != 1) { $event = $this.$renderGlobal; - $ptr = 218; + $ptr = 225; continue main; } $event = $this.$entityRenderer; - $ptr = 219; + $ptr = 226; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindSmoothCamera)) { @@ -166170,7 +167183,7 @@ if ($event.$showDebugInfo && $event.$showDebugProfilerChart) { if ($k == 11) { $isHostingLAN = 0; - $ptr = 192; + $ptr = 199; continue main; } $j1 = 0; @@ -166179,7 +167192,7 @@ break t; if ($k == (2 + $j1 | 0)) { $isHostingLAN = $j1 + 1 | 0; - $ptr = 201; + $ptr = 208; continue main; } $j1 = $j1 + 1 | 0; @@ -166188,7 +167201,7 @@ } $ptr = 48; continue main; - case 213: + case 220: nmcs_GameSettings_saveOptions($event); if ($rt_suspending()) { break main; @@ -166200,7 +167213,7 @@ if ($k == 61) { $event = $this.$gameSettings; $event.$showDebugInfo = $event.$showDebugInfo ? 0 : 1; - $ptr = 214; + $ptr = 221; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindTogglePerspective)) { @@ -166212,16 +167225,16 @@ $isHostingLAN = $event.$thirdPersonView; if (!$isHostingLAN) { $event = $this.$entityRenderer; - $ptr = 216; + $ptr = 223; continue main; } if ($isHostingLAN != 1) { $event = $this.$renderGlobal; - $ptr = 218; + $ptr = 225; continue main; } $event = $this.$entityRenderer; - $ptr = 219; + $ptr = 226; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindSmoothCamera)) { @@ -166233,7 +167246,7 @@ if ($event.$showDebugInfo && $event.$showDebugProfilerChart) { if ($k == 11) { $isHostingLAN = 0; - $ptr = 192; + $ptr = 199; continue main; } $j1 = 0; @@ -166242,7 +167255,7 @@ break u; if ($k == (2 + $j1 | 0)) { $isHostingLAN = $j1 + 1 | 0; - $ptr = 201; + $ptr = 208; continue main; } $j1 = $j1 + 1 | 0; @@ -166251,7 +167264,7 @@ } $ptr = 48; continue main; - case 214: + case 221: $tmp = nmcg_GuiScreen_isShiftKeyDown(); if ($rt_suspending()) { break main; @@ -166259,8 +167272,8 @@ $isHostingLAN = $tmp; $event.$showDebugProfilerChart = $isHostingLAN; $event = $this.$gameSettings; - $ptr = 215; - case 215: + $ptr = 222; + case 222: $tmp = nmcg_GuiScreen_isAltKeyDown(); if ($rt_suspending()) { break main; @@ -166276,16 +167289,16 @@ $isHostingLAN = $event.$thirdPersonView; if (!$isHostingLAN) { $event = $this.$entityRenderer; - $ptr = 216; + $ptr = 223; continue main; } if ($isHostingLAN != 1) { $event = $this.$renderGlobal; - $ptr = 218; + $ptr = 225; continue main; } $event = $this.$entityRenderer; - $ptr = 219; + $ptr = 226; continue main; } if (nmcs_KeyBinding_isPressed($this.$gameSettings.$keyBindSmoothCamera)) { @@ -166297,7 +167310,7 @@ if ($event.$showDebugInfo && $event.$showDebugProfilerChart) { if ($k == 11) { $isHostingLAN = 0; - $ptr = 192; + $ptr = 199; continue main; } $j1 = 0; @@ -166306,7 +167319,7 @@ break v; if ($k == (2 + $j1 | 0)) { $isHostingLAN = $j1 + 1 | 0; - $ptr = 201; + $ptr = 208; continue main; } $j1 = $j1 + 1 | 0; @@ -166315,21 +167328,21 @@ } $ptr = 48; continue main; - case 216: + case 223: $tmp = nmc_Minecraft_getRenderViewEntity($this); if ($rt_suspending()) { break main; } $throwable2 = $tmp; - $ptr = 217; - case 217: + $ptr = 224; + case 224: nmcr_EntityRenderer_loadEntityShader($event, $throwable2); if ($rt_suspending()) { break main; } $event = $this.$renderGlobal; - $ptr = 218; - case 218: + $ptr = 225; + case 225: nmcr_RenderGlobal_setDisplayListEntitiesDirty($event); if ($rt_suspending()) { break main; @@ -166343,7 +167356,7 @@ if ($event.$showDebugInfo && $event.$showDebugProfilerChart) { if ($k == 11) { $isHostingLAN = 0; - $ptr = 192; + $ptr = 199; continue main; } $j1 = 0; @@ -166352,7 +167365,7 @@ break e; if ($k == (2 + $j1 | 0)) { $isHostingLAN = $j1 + 1 | 0; - $ptr = 201; + $ptr = 208; continue main; } $j1 = $j1 + 1 | 0; @@ -166361,13 +167374,13 @@ } $ptr = 48; continue main; - case 219: + case 226: nmcr_EntityRenderer_loadEntityShader($event, $pluginBrand); if ($rt_suspending()) { break main; } $event = $this.$renderGlobal; - $ptr = 218; + $ptr = 225; continue main; default: $rt_invalidPointer(); }} @@ -167623,7 +168636,6 @@ var$2 = $theCrash.$theReportCategory; var$3 = $rt_s(528); var$4 = new nmc_Minecraft$5; - var$4.$this$00 = $this; $ptr = 2; case 2: nmc_CrashReportCategory_addCrashSectionCallable(var$2, var$3, var$4); @@ -167633,7 +168645,6 @@ var$2 = $theCrash.$theReportCategory; var$3 = $rt_s(529); var$4 = new nmc_Minecraft$6; - var$4.$this$01 = $this; $ptr = 3; case 3: nmc_CrashReportCategory_addCrashSectionCallable(var$2, var$3, var$4); @@ -167643,7 +168654,6 @@ var$2 = $theCrash.$theReportCategory; var$3 = $rt_s(530); var$4 = new nmc_Minecraft$7; - var$4.$this$02 = $this; $ptr = 4; case 4: nmc_CrashReportCategory_addCrashSectionCallable(var$2, var$3, var$4); @@ -167653,7 +168663,6 @@ var$2 = $theCrash.$theReportCategory; var$3 = $rt_s(531); var$4 = new nmc_Minecraft$8; - var$4.$this$03 = $this; $ptr = 5; case 5: nmc_CrashReportCategory_addCrashSectionCallable(var$2, var$3, var$4); @@ -167663,7 +168672,7 @@ var$2 = $theCrash.$theReportCategory; var$3 = $rt_s(532); var$4 = new nmc_Minecraft$9; - var$4.$this$04 = $this; + var$4.$this$00 = $this; $ptr = 6; case 6: nmc_CrashReportCategory_addCrashSectionCallable(var$2, var$3, var$4); @@ -167673,7 +168682,7 @@ var$2 = $theCrash.$theReportCategory; var$3 = $rt_s(533); var$4 = new nmc_Minecraft$10; - var$4.$this$05 = $this; + var$4.$this$01 = $this; $ptr = 7; case 7: nmc_CrashReportCategory_addCrashSectionCallable(var$2, var$3, var$4); @@ -167683,7 +168692,7 @@ var$2 = $theCrash.$theReportCategory; var$3 = $rt_s(534); var$4 = new nmc_Minecraft$11; - var$4.$this$06 = $this; + var$4.$this$02 = $this; $ptr = 8; case 8: nmc_CrashReportCategory_addCrashSectionCallable(var$2, var$3, var$4); @@ -167734,7 +168743,7 @@ main: while (true) { switch ($ptr) { case 0: var$1 = new nmc_Minecraft$12; - var$1.$this$07 = $this; + var$1.$this$03 = $this; $ptr = 1; case 1: oacl_Validate_notNull(var$1); @@ -176068,11 +177077,11 @@ $rt_nativeThread().push($this, $parString1, $file1, var$3, var$4, var$5, var$6, $i, var$8, var$9, var$10, $ptr); } function nmws_SaveFormatOld_deleteFiles($files, $progressString) { - var $totalSize, $lastUpdate, $i, $l, $file1, var$8, var$9, var$10, var$11, var$12, $ptr, $tmp; + var $totalSize, $lastUpdate, $i, $l, var$7, $file1, var$9, var$10, var$11, var$12, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();$file1 = $thread.pop();$l = $thread.pop();$i = $thread.pop();$lastUpdate = $thread.pop();$totalSize = $thread.pop();$progressString = $thread.pop();$files = $thread.pop(); + $ptr = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();$file1 = $thread.pop();var$7 = $thread.pop();$l = $thread.pop();$i = $thread.pop();$lastUpdate = $thread.pop();$totalSize = $thread.pop();$progressString = $thread.pop();$files = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -176094,25 +177103,25 @@ if ($rt_suspending()) { break main; } - $file1 = $tmp; - $file1 = $file1; + var$7 = $tmp; + $file1 = var$7; if ($progressString === null) - var$8 = $lastUpdate; + var$9 = $lastUpdate; else { if (!nleviv_VFile2_isRelative($file1)) { - var$9 = $file1.$path0; + var$7 = $file1.$path0; var$10 = nlevi_PlatformFilesystem_database; $ptr = 4; continue main; } - var$8 = Long_add($totalSize, Long_fromInt((-1))); - if (Long_gt(Long_sub(var$8, $lastUpdate), Long_fromInt(10000))) { - var$11 = Long_toNumber(var$8); - $ptr = 9; + var$9 = Long_add($totalSize, Long_fromInt((-1))); + if (Long_gt(Long_sub(var$9, $lastUpdate), Long_fromInt(10000))) { + var$11 = Long_toNumber(var$9); + $ptr = 10; continue main; } - $totalSize = var$8; - var$8 = $lastUpdate; + $totalSize = var$9; + var$9 = $lastUpdate; } $ptr = 3; case 3: @@ -176123,70 +177132,77 @@ var$12 = $tmp; if (!var$12) { $files = nmws_SaveFormatOld_logger; - $progressString = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($progressString); - var$9 = $rt_s(548); $ptr = 5; continue main; } $i = $i + 1 | 0; - $lastUpdate = var$8; + $lastUpdate = var$9; if ($i >= $l) return 1; $ptr = 2; continue main; case 4: - $tmp = nlevi_PlatformFilesystem$AsyncHandlers_readWholeFile(var$10, var$9); + $tmp = nlevi_PlatformFilesystem$AsyncHandlers_readWholeFile(var$10, var$7); if ($rt_suspending()) { break main; } - var$9 = $tmp; - var$8 = Long_add($totalSize, Long_fromInt(var$9 === null ? (-1) : var$9.byteLength)); - if (Long_gt(Long_sub(var$8, $lastUpdate), Long_fromInt(10000))) { - var$11 = Long_toNumber(var$8); - $ptr = 9; + var$7 = $tmp; + var$9 = Long_add($totalSize, Long_fromInt(var$7 === null ? (-1) : var$7.byteLength)); + if (Long_gt(Long_sub(var$9, $lastUpdate), Long_fromInt(10000))) { + var$11 = Long_toNumber(var$9); + $ptr = 10; continue main; } - $totalSize = var$8; - var$8 = $lastUpdate; + $totalSize = var$9; + var$9 = $lastUpdate; $ptr = 3; continue main; case 5: - jl_AbstractStringBuilder_append($progressString, var$9); + $tmp = jl_String_valueOf($file1); if ($rt_suspending()) { break main; } + $progressString = $tmp; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + var$10 = $rt_s(548); $ptr = 6; case 6: - jl_AbstractStringBuilder_append($progressString, $file1); + jl_AbstractStringBuilder_append(var$7, var$10); if ($rt_suspending()) { break main; } $ptr = 7; case 7: - $tmp = jl_AbstractStringBuilder_toString($progressString); + jl_AbstractStringBuilder_append(var$7, $progressString); + if ($rt_suspending()) { + break main; + } + $ptr = 8; + case 8: + $tmp = jl_AbstractStringBuilder_toString(var$7); if ($rt_suspending()) { break main; } $progressString = $tmp; - $ptr = 8; - case 8: + $ptr = 9; + case 9: nlevl_Logger_warn($files, $progressString); if ($rt_suspending()) { break main; } return 0; - case 9: + case 10: nlevss_EaglerIntegratedServerWorker_sendProgress($progressString, var$11); if ($rt_suspending()) { break main; } - $totalSize = var$8; + $totalSize = var$9; $ptr = 3; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($files, $progressString, $totalSize, $lastUpdate, $i, $l, $file1, var$8, var$9, var$10, var$11, var$12, $ptr); + $rt_nativeThread().push($files, $progressString, $totalSize, $lastUpdate, $i, $l, var$7, $file1, var$9, var$10, var$11, var$12, $ptr); } function nmws_SaveFormatOld__clinit_() { var var$1, $ptr, $tmp; @@ -176658,7 +177674,7 @@ var var$1; if ($this.$cachedKeySet === null) { var$1 = new ju_AbstractMap$KeySet; - var$1.$this$08 = $this; + var$1.$this$04 = $this; $this.$cachedKeySet = var$1; } return $this.$cachedKeySet; @@ -176667,7 +177683,7 @@ var var$1; if ($this.$cachedValues === null) { var$1 = new ju_AbstractMap$Values; - var$1.$this$09 = $this; + var$1.$this$05 = $this; $this.$cachedValues = var$1; } return $this.$cachedValues; @@ -177331,7 +178347,7 @@ var var$1; if ($this.$cachedKeySet === null) { var$1 = new ju_HashMap$1; - var$1.$this$010 = $this; + var$1.$this$06 = $this; $this.$cachedKeySet = var$1; } return $this.$cachedKeySet; @@ -177657,7 +178673,7 @@ var var$1; if ($this.$cachedValues === null) { var$1 = new ju_HashMap$2; - var$1.$this$011 = $this; + var$1.$this$07 = $this; $this.$cachedValues = var$1; } return $this.$cachedValues; @@ -178272,7 +179288,7 @@ function ju_AbstractList_iterator($this) { var var$1; var$1 = new ju_AbstractList$1; - var$1.$this$012 = $this; + var$1.$this$08 = $this; var$1.$modCount1 = $this.$modCount0; var$1.$size1 = $this.$size0(); var$1.$removeIndex = (-1); @@ -178340,7 +179356,7 @@ var$2 = new ju_AbstractList$TListIteratorImpl; var$3 = $this.$modCount0; var$4 = $this.$size0(); - var$2.$this$013 = $this; + var$2.$this$09 = $this; var$2.$i = $index; var$2.$j = $index; var$2.$lastModCount = var$3; @@ -178508,13 +179524,13 @@ if ($element !== null) $element.$next6 = var$4; else - $iter.$this$014.$firstEntry = var$4; + $iter.$this$010.$firstEntry = var$4; if (var$5 !== null) var$5.$previous0 = var$4; else - $iter.$this$014.$lastEntry = var$4; + $iter.$this$010.$lastEntry = var$4; $iter.$prevEntry = var$4; - $element = $iter.$this$014; + $element = $iter.$this$010; $element.$size2 = $element.$size2 + 1 | 0; $index = $element.$modCount0 + 1 | 0; $element.$modCount0 = $index; @@ -181419,7 +182435,7 @@ $isavehandler.$playerNBTManagerObj = $s1; $worldsettings = var$5[0].$worldBorder; $s1 = new nmsm_ServerConfigurationManager$1; - $s1.$this$015 = $isavehandler; + $s1.$this$011 = $isavehandler; nmwb_WorldBorder_addListener($worldsettings, $s1); if ($this.$worldServers.data[0].$worldInfo.$getDifficulty() === null) { $isavehandler = $this.$difficulty1; @@ -181470,7 +182486,7 @@ $s1.$delegate = var$4; var$11 = var$4.$worldBorder; var$4 = new nmw_WorldServerMulti$1; - var$4.$this$016 = $s1; + var$4.$this$012 = $s1; nmwb_WorldBorder_addListener(var$11, var$4); var$4 = $s1.$delegate; $s1.$mapStorage = var$4.$mapStorage; @@ -183719,7 +184735,6 @@ var$4 = $this.$theReportCategory; $descriptionIn = $rt_s(599); $causeThrowable = new nmc_CrashReport$1; - $causeThrowable.$this$017 = $this; $ptr = 3; case 3: nmc_CrashReportCategory_addCrashSectionCallable(var$4, $descriptionIn, $causeThrowable); @@ -183729,7 +184744,6 @@ $descriptionIn = $this.$theReportCategory; $causeThrowable = $rt_s(600); var$4 = new nmc_CrashReport$2; - var$4.$this$018 = $this; $ptr = 4; case 4: nmc_CrashReportCategory_addCrashSectionCallable($descriptionIn, $causeThrowable, var$4); @@ -183739,7 +184753,6 @@ $descriptionIn = $this.$theReportCategory; $causeThrowable = $rt_s(601); var$4 = new nmc_CrashReport$3; - var$4.$this$019 = $this; $ptr = 5; case 5: nmc_CrashReportCategory_addCrashSectionCallable($descriptionIn, $causeThrowable, var$4); @@ -183749,7 +184762,6 @@ $descriptionIn = $this.$theReportCategory; $causeThrowable = $rt_s(602); var$4 = new nmc_CrashReport$4; - var$4.$this$020 = $this; $ptr = 6; case 6: nmc_CrashReportCategory_addCrashSectionCallable($descriptionIn, $causeThrowable, var$4); @@ -183769,7 +184781,6 @@ $descriptionIn = $this.$theReportCategory; $causeThrowable = $rt_s(603); var$4 = new nmc_CrashReport$5; - var$4.$this$021 = $this; $ptr = 8; case 8: nmc_CrashReportCategory_addCrashSectionCallable($descriptionIn, $causeThrowable, var$4); @@ -201735,7 +202746,6 @@ var$3 = $this.$metadataSectionSerializerRegistry; var$4 = $parIMetadataSectionSerializer.$getSectionName(); var$5 = new nmcrd_IMetadataSerializer$Registration; - var$5.$this$022 = $this; var$5.$field_110502_a = $parIMetadataSectionSerializer; var$5.$field_110500_b = $parClass1; $ptr = 1; @@ -201795,14 +202805,14 @@ $imetadataserializer$registration = $tmp; $imetadataserializer$registration = $imetadataserializer$registration; if ($imetadataserializer$registration !== null) { - $ptr = 10; + $ptr = 11; continue main; } $parJsonObject = new jl_IllegalArgumentException; $imetadataserializer$registration = new jl_StringBuilder; jl_AbstractStringBuilder__init_($imetadataserializer$registration); var$5 = $rt_s(866); - $ptr = 12; + $ptr = 13; continue main; case 4: $tmp = oj_JSONObject_get($parJsonObject, $parString1); @@ -201810,36 +202820,43 @@ break main; } $parJsonObject = $tmp; + $ptr = 5; + case 5: + $tmp = jl_String_valueOf($parJsonObject); + if ($rt_suspending()) { + break main; + } + $parJsonObject = $tmp; var$5 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$5); var$6 = $rt_s(867); - $ptr = 5; - case 5: + $ptr = 6; + case 6: jl_AbstractStringBuilder_append(var$5, var$6); if ($rt_suspending()) { break main; } - $ptr = 6; - case 6: - jl_AbstractStringBuilder_append(var$5, $parString1); - if ($rt_suspending()) { - break main; - } - $parString1 = $rt_s(868); $ptr = 7; case 7: jl_AbstractStringBuilder_append(var$5, $parString1); if ($rt_suspending()) { break main; } + $parString1 = $rt_s(868); $ptr = 8; case 8: - jl_AbstractStringBuilder_append(var$5, $parJsonObject); + jl_AbstractStringBuilder_append(var$5, $parString1); if ($rt_suspending()) { break main; } $ptr = 9; case 9: + jl_AbstractStringBuilder_append(var$5, $parJsonObject); + if ($rt_suspending()) { + break main; + } + $ptr = 10; + case 10: $tmp = jl_AbstractStringBuilder_toString(var$5); if ($rt_suspending()) { break main; @@ -201847,35 +202864,35 @@ $parString1 = $tmp; jl_Throwable__init_($imetadataserializer$registration, $parString1); $rt_throw($imetadataserializer$registration); - case 10: + case 11: $tmp = oj_JSONObject_getJSONObject($parJsonObject, $parString1); if ($rt_suspending()) { break main; } $parString1 = $tmp; $parJsonObject = $imetadataserializer$registration.$field_110500_b; - $ptr = 11; - case 11: + $ptr = 12; + case 12: $tmp = nlevj_JSONTypeProvider_deserialize($parString1, $parJsonObject); if ($rt_suspending()) { break main; } $parString1 = $tmp; return $parString1; - case 12: + case 13: jl_AbstractStringBuilder_append($imetadataserializer$registration, var$5); if ($rt_suspending()) { break main; } - $ptr = 13; - case 13: + $ptr = 14; + case 14: jl_AbstractStringBuilder_append($imetadataserializer$registration, $parString1); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append0($imetadataserializer$registration, 39); - $ptr = 14; - case 14: + $ptr = 15; + case 15: $tmp = jl_AbstractStringBuilder_toString($imetadataserializer$registration); if ($rt_suspending()) { break main; @@ -204341,28 +205358,26 @@ $ptr = 13; continue main; } - if ($pkt !== null) { - try { - $ptr = 22; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } + if ($pkt === null) { $nettyBuffer = new ji_IOException; - $input = jl_Object_getClass($pkt); - $ptr = 27; + $input = $this.$packetState; + $ptr = 23; continue main; } + try { + $ptr = 22; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } $nettyBuffer = new ji_IOException; - $input = $this.$packetState; - $pkt = jl_StringBuilder__init_(); - $t = $rt_s(881); - $ptr = 23; + $input = jl_Object_getClass($pkt); + $ptr = 28; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -204380,7 +205395,7 @@ break main; } $nettyBuffer = nlevsss_IntegratedServerPlayerNetworkManager_logger; - $input = $rt_s(882); + $input = $rt_s(881); $fullData = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($f.length), jl_Integer_valueOf0($f[0] & 255)]); $ptr = 10; case 10: @@ -204519,7 +205534,7 @@ continue main; } $nettyBuffer = $this.$fragmentedPacket; - $ptr = 31; + $ptr = 32; continue main; case 13: try { @@ -204529,7 +205544,7 @@ } $pkt = $tmp; $pkt = jl_StringBuilder_append1($pkt, $pktId); - $t = $rt_s(883); + $t = $rt_s(882); $ptr = 14; continue main; } catch ($$e) { @@ -204635,7 +205650,7 @@ continue main; } $nettyBuffer = $this.$fragmentedPacket; - $ptr = 31; + $ptr = 32; continue main; case 18: try { @@ -204663,7 +205678,7 @@ if ($rt_suspending()) { break main; } - $msg = $rt_s(884); + $msg = $rt_s(883); $len = 0; $ptr = 20; continue main; @@ -204730,12 +205745,12 @@ } } $nettyBuffer = nlevi_IPCPacketData__init_($this.$playerChannel, nlev_EaglerOutputStream_toByteArray($kickPacketBAO)); - $ptr = 32; + $ptr = 33; continue main; } try { $len = 0; - $ptr = 34; + $ptr = 35; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -204768,7 +205783,7 @@ } try { $nettyBuffer = $this.$nethandler; - $ptr = 36; + $ptr = 37; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -204778,12 +205793,12 @@ throw $$e; } } - $ptr = 37; + $ptr = 38; continue main; } $nettyBuffer = new ji_IOException; $input = jl_Object_getClass($pkt); - $ptr = 27; + $ptr = 28; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -204797,13 +205812,13 @@ continue main; case 23: try { - $tmp = jl_StringBuilder_append($pkt, $t); + $tmp = jl_String_valueOf($input); if ($rt_suspending()) { break main; } - $t = $tmp; - $t = jl_StringBuilder_append1($t, $pktId); - $kickPacketBAO = $rt_s(885); + $input = $tmp; + $pkt = jl_StringBuilder__init_(); + $t = $rt_s(884); $ptr = 24; continue main; } catch ($$e) { @@ -204818,11 +205833,13 @@ continue main; case 24: try { - $tmp = jl_StringBuilder_append($t, $kickPacketBAO); + $tmp = jl_StringBuilder_append($pkt, $t); if ($rt_suspending()) { break main; } $t = $tmp; + $t = jl_StringBuilder_append1($t, $pktId); + $kickPacketBAO = $rt_s(885); $ptr = 25; continue main; } catch ($$e) { @@ -204837,10 +205854,11 @@ continue main; case 25: try { - jl_StringBuilder_append($t, $input); + $tmp = jl_StringBuilder_append($t, $kickPacketBAO); if ($rt_suspending()) { break main; } + $t = $tmp; $ptr = 26; continue main; } catch ($$e) { @@ -204854,6 +205872,24 @@ $ptr = 5; continue main; case 26: + try { + jl_StringBuilder_append($t, $input); + if ($rt_suspending()) { + break main; + } + $ptr = 27; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $ptr = 5; + continue main; + case 27: try { $tmp = jl_StringBuilder_toString($pkt); if ($rt_suspending()) { @@ -204872,7 +205908,7 @@ } $ptr = 5; continue main; - case 27: + case 28: try { $tmp = jl_Class_getSimpleName($input); if ($rt_suspending()) { @@ -204881,25 +205917,6 @@ $input = $tmp; $pkt = jl_StringBuilder__init_(); $kickPacketBAO = $rt_s(886); - $ptr = 28; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $ptr = 5; - continue main; - case 28: - try { - $tmp = jl_StringBuilder_append($pkt, $kickPacketBAO); - if ($rt_suspending()) { - break main; - } - $kickPacketBAO = $tmp; $ptr = 29; continue main; } catch ($$e) { @@ -204914,12 +205931,11 @@ continue main; case 29: try { - $tmp = jl_StringBuilder_append($kickPacketBAO, $input); + $tmp = jl_StringBuilder_append($pkt, $kickPacketBAO); if ($rt_suspending()) { break main; } - $input = $tmp; - jl_StringBuilder_append5($input, $l); + $kickPacketBAO = $tmp; $ptr = 30; continue main; } catch ($$e) { @@ -204933,6 +205949,26 @@ $ptr = 5; continue main; case 30: + try { + $tmp = jl_StringBuilder_append($kickPacketBAO, $input); + if ($rt_suspending()) { + break main; + } + $input = $tmp; + jl_StringBuilder_append5($input, $l); + $ptr = 31; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $ptr = 5; + continue main; + case 31: try { $tmp = jl_StringBuilder_toString($pkt); if ($rt_suspending()) { @@ -204951,7 +205987,7 @@ } $ptr = 5; continue main; - case 31: + case 32: $tmp = ju_ArrayList_get($nettyBuffer, $j_0); if ($rt_suspending()) { break main; @@ -204983,14 +206019,14 @@ } $nettyBuffer = $this.$fragmentedPacket; continue main; - case 32: + case 33: nlevssi_ServerPlatformSingleplayer_sendPacket($nettyBuffer); if ($rt_suspending()) { break main; } $nettyBuffer = nmu_ChatComponentText__init_($rt_s(887)); - $ptr = 33; - case 33: + $ptr = 34; + case 34: nlevsss_IntegratedServerPlayerNetworkManager_closeChannel($this, $nettyBuffer); if ($rt_suspending()) { break main; @@ -204998,14 +206034,14 @@ $this.$firstPacket = 0; $this.$recievedPacketBufferCounter = 0; return; - case 34: + case 35: try { ji_DataOutputStream_write($kickDAO, $len); if ($rt_suspending()) { break main; } $len = jl_String_codePointAt($msg, $j); - $ptr = 35; + $ptr = 36; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -205018,7 +206054,7 @@ $nettyBuffer = new jl_RuntimeException; jl_Throwable__init_6($nettyBuffer, $ex); $rt_throw($nettyBuffer); - case 35: + case 36: b: { try { ji_DataOutputStream_write($kickDAO, $len); @@ -205049,12 +206085,12 @@ } } $nettyBuffer = nlevi_IPCPacketData__init_($this.$playerChannel, nlev_EaglerOutputStream_toByteArray($kickPacketBAO)); - $ptr = 32; + $ptr = 33; continue main; } try { $len = 0; - $ptr = 34; + $ptr = 35; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -205068,7 +206104,7 @@ $nettyBuffer = new jl_RuntimeException; jl_Throwable__init_6($nettyBuffer, $ex); $rt_throw($nettyBuffer); - case 36: + case 37: a: { try { c: { @@ -205086,7 +206122,7 @@ throw $$e; } } - $ptr = 37; + $ptr = 38; continue main; } } catch ($$e) { @@ -205145,7 +206181,7 @@ } $ptr = 5; continue main; - case 37: + case 38: try { nlevsss_IntegratedServerPlayerNetworkManager_$callClinit(); if ($rt_suspending()) { @@ -205157,26 +206193,6 @@ $f = $fullData.data; $len = 0; $pkt = jl_Object_getClass($pkt); - $ptr = 38; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $ptr = 5; - continue main; - case 38: - try { - $tmp = jl_Class_getSimpleName($pkt); - if ($rt_suspending()) { - break main; - } - $pkt = $tmp; - $f[$len] = $pkt; $ptr = 39; continue main; } catch ($$e) { @@ -205191,11 +206207,12 @@ continue main; case 39: try { - nlevl_Logger_error($nettyBuffer, $input, $fullData); + $tmp = jl_Class_getSimpleName($pkt); if ($rt_suspending()) { break main; } - $nettyBuffer = nlevsss_IntegratedServerPlayerNetworkManager_logger; + $pkt = $tmp; + $f[$len] = $pkt; $ptr = 40; continue main; } catch ($$e) { @@ -205209,6 +206226,25 @@ $ptr = 5; continue main; case 40: + try { + nlevl_Logger_error($nettyBuffer, $input, $fullData); + if ($rt_suspending()) { + break main; + } + $nettyBuffer = nlevsss_IntegratedServerPlayerNetworkManager_logger; + $ptr = 41; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $ptr = 5; + continue main; + case 41: a: { try { nlevl_Logger_error0($nettyBuffer, $t); @@ -209533,9 +210569,7 @@ } function nlevi_PlatformInput$13__init_($this) {} function nlevi_PlatformInput$13_handleEvent$exported$0(var$0, var$1) { - var$1 = new nlevi_PlatformInput$13$1; - var$1.$this$023 = var$0; - $rt_globals.setTimeout(otji_JS_function(var$1, "onTimer"), 60); + $rt_globals.setTimeout(otji_JS_function(new nlevi_PlatformInput$13$1, "onTimer"), 60); nlevi_PlatformInput_mouseDX = 0.0; nlevi_PlatformInput_mouseDY = 0.0; } @@ -218064,7 +219098,7 @@ function ju_Hashtable_keySet($this) { var var$1; var$1 = new ju_Hashtable$4; - var$1.$this$024 = $this; + var$1.$this$013 = $this; return var$1; } function ju_Hashtable_put($this, $key, $value) { @@ -219441,11 +220475,11 @@ $rt_nativeThread().push($this, $object, var$2, $ptr); } function nmu_RegistrySimple_putObject($this, $object, $object1) { - var var$3, var$4, var$5, var$6, $ptr, $tmp; + var var$3, var$4, var$5, var$6, var$7, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();$object1 = $thread.pop();$object = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();$object1 = $thread.pop();$object = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -219487,37 +220521,44 @@ break main; } var$5 = nmu_RegistrySimple_logger; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - var$3 = $rt_s(988); $ptr = 6; case 6: - jl_AbstractStringBuilder_append(var$6, var$3); + $tmp = jl_String_valueOf($object); if ($rt_suspending()) { break main; } + var$6 = $tmp; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + var$3 = $rt_s(988); $ptr = 7; case 7: - jl_AbstractStringBuilder_append(var$6, $object); + jl_AbstractStringBuilder_append(var$7, var$3); + if ($rt_suspending()) { + break main; + } + $ptr = 8; + case 8: + jl_AbstractStringBuilder_append(var$7, var$6); if ($rt_suspending()) { break main; } var$3 = $rt_s(989); - $ptr = 8; - case 8: - jl_AbstractStringBuilder_append(var$6, var$3); + $ptr = 9; + case 9: + jl_AbstractStringBuilder_append(var$7, var$3); if ($rt_suspending()) { break main; } - $ptr = 9; - case 9: - $tmp = jl_AbstractStringBuilder_toString(var$6); + $ptr = 10; + case 10: + $tmp = jl_AbstractStringBuilder_toString(var$7); if ($rt_suspending()) { break main; } var$3 = $tmp; - $ptr = 10; - case 10: + $ptr = 11; + case 11: nlevl_Logger_debug(var$5, var$3); if ($rt_suspending()) { break main; @@ -219527,7 +220568,7 @@ continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $object, $object1, var$3, var$4, var$5, var$6, $ptr); + $rt_nativeThread().push($this, $object, $object1, var$3, var$4, var$5, var$6, var$7, $ptr); } function nmu_RegistrySimple_getKeys($this) { var var$1, $ptr, $tmp; @@ -222637,30 +223678,37 @@ if (var$3) return 0; var$2 = new jl_IllegalArgumentException; + $ptr = 2; + case 2: + $tmp = jl_String_valueOf($iblockstate); + if ($rt_suspending()) { + break main; + } + $iblockstate = $tmp; var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); var$5 = $rt_s(1012); - $ptr = 2; - case 2: + $ptr = 3; + case 3: jl_AbstractStringBuilder_append(var$4, var$5); if ($rt_suspending()) { break main; } - $ptr = 3; - case 3: - jl_AbstractStringBuilder_append(var$4, $iblockstate); - if ($rt_suspending()) { - break main; - } - $iblockstate = $rt_s(1013); $ptr = 4; case 4: jl_AbstractStringBuilder_append(var$4, $iblockstate); if ($rt_suspending()) { break main; } + $iblockstate = $rt_s(1013); $ptr = 5; case 5: + jl_AbstractStringBuilder_append(var$4, $iblockstate); + if ($rt_suspending()) { + break main; + } + $ptr = 6; + case 6: $tmp = jl_AbstractStringBuilder_toString(var$4); if ($rt_suspending()) { break main; @@ -225285,24 +226333,31 @@ break main; } var$1 = $tmp; + $ptr = 3; + case 3: + $tmp = jl_String_valueOf(var$1); + if ($rt_suspending()) { + break main; + } + var$1 = $tmp; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); var$3 = $rt_s(1017); - $ptr = 3; - case 3: + $ptr = 4; + case 4: jl_AbstractStringBuilder_append(var$2, var$3); if ($rt_suspending()) { break main; } - $ptr = 4; - case 4: + $ptr = 5; + case 5: jl_AbstractStringBuilder_append(var$2, var$1); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append0(var$2, 125); - $ptr = 5; - case 5: + $ptr = 6; + case 6: $tmp = jl_AbstractStringBuilder_toString(var$2); if ($rt_suspending()) { break main; @@ -249026,7 +250081,7 @@ case 0: var$2 = $rt_s(1436); var$3 = new nme_Entity$1; - var$3.$this$025 = $this; + var$3.$this$014 = $this; $ptr = 1; case 1: nmc_CrashReportCategory_addCrashSectionCallable($category, var$2, var$3); @@ -249043,7 +250098,7 @@ } var$2 = $rt_s(1438); var$3 = new nme_Entity$2; - var$3.$this$026 = $this; + var$3.$this$015 = $this; $ptr = 3; case 3: nmc_CrashReportCategory_addCrashSectionCallable($category, var$2, var$3); @@ -249101,7 +250156,7 @@ } var$2 = $rt_s(1443); var$3 = new nme_Entity$3; - var$3.$this$027 = $this; + var$3.$this$016 = $this; $ptr = 10; case 10: nmc_CrashReportCategory_addCrashSectionCallable($category, var$2, var$3); @@ -249110,7 +250165,7 @@ } var$2 = $rt_s(1444); var$3 = new nme_Entity$4; - var$3.$this$028 = $this; + var$3.$this$017 = $this; $ptr = 11; case 11: nmc_CrashReportCategory_addCrashSectionCallable($category, var$2, var$3); @@ -256001,20 +257056,17 @@ $rt_nativeThread().push($this, $ptr); } function nme_EntityLivingBase_collideWithNearbyEntities($this) { - var $entity, var$2, var$3, $list, $i, $ptr, $tmp; + var $entity, var$2, $list, $i, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$i = $thread.pop();$list = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();$entity = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();$i = $thread.pop();$list = $thread.pop();var$2 = $thread.pop();$entity = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: $entity = $this.$worldObj0; var$2 = nmu_AxisAlignedBB_expand($this.$boundingBox, 0.20000000298023224, 0.0, 0.20000000298023224); - var$3 = nmu_EntitySelectors_NOT_SPECTATING; - $list = new nme_EntityLivingBase$1; - $list.$this$029 = $this; - $list = cgcb_Predicates_and(var$3, $list); + $list = cgcb_Predicates_and(nmu_EntitySelectors_NOT_SPECTATING, new nme_EntityLivingBase$1); $ptr = 1; case 1: $tmp = nmw_World_getEntitiesInAABBexcluding($entity, $this, var$2, $list); @@ -256057,7 +257109,7 @@ continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $entity, var$2, var$3, $list, $i, $ptr); + $rt_nativeThread().push($this, $entity, var$2, $list, $i, $ptr); } function nme_EntityLivingBase_collideWithEntity($this, $parEntity) { var $ptr, $tmp; @@ -275830,7 +276882,6 @@ var$5 = var$2.$villageAgressors; var$6 = new nmv_Village$VillageAggressor; $b0 = var$2.$tickCounter0; - var$6.$this$030 = var$2; var$6.$agressor = $entitylivingbase; var$6.$agressionTime = $b0; $ptr = 2; @@ -275853,9 +276904,9 @@ break main; } var$5 = $tmp; - var$6 = var$5; - if (var$6.$agressor === $entitylivingbase) { - var$6.$agressionTime = var$2.$tickCounter0; + var$5 = var$5; + if (var$5.$agressor === $entitylivingbase) { + var$5.$agressionTime = var$2.$tickCounter0; if (!($entitylivingbase instanceof nmep_EntityPlayer)) return; $b0 = (-1); @@ -275870,7 +276921,6 @@ var$5 = var$2.$villageAgressors; var$6 = new nmv_Village$VillageAggressor; $b0 = var$2.$tickCounter0; - var$6.$this$030 = var$2; var$6.$agressor = $entitylivingbase; var$6.$agressionTime = $b0; $ptr = 2; @@ -286835,6 +287885,27 @@ }} $rt_nativeThread().push($id, $e, var$3, $ptr); } + function nlevp_DefaultSkins_$values() { + var $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + nlevp_DefaultSkins_$callClinit(); + if ($rt_suspending()) { + break main; + } + return $rt_createArrayFromData(nlevp_DefaultSkins, [nlevp_DefaultSkins_DEFAULT_STEVE, nlevp_DefaultSkins_DEFAULT_ALEX, nlevp_DefaultSkins_TENNIS_STEVE, nlevp_DefaultSkins_TENNIS_ALEX, nlevp_DefaultSkins_TUXEDO_STEVE, nlevp_DefaultSkins_TUXEDO_ALEX, nlevp_DefaultSkins_ATHLETE_STEVE, nlevp_DefaultSkins_ATHLETE_ALEX, nlevp_DefaultSkins_CYCLIST_STEVE, nlevp_DefaultSkins_CYCLIST_ALEX, nlevp_DefaultSkins_BOXER_STEVE, nlevp_DefaultSkins_BOXER_ALEX, nlevp_DefaultSkins_PRISONER_STEVE, nlevp_DefaultSkins_PRISONER_ALEX, + nlevp_DefaultSkins_SCOTTISH_STEVE, nlevp_DefaultSkins_SCOTTISH_ALEX, nlevp_DefaultSkins_DEVELOPER_STEVE, nlevp_DefaultSkins_DEVELOPER_ALEX, nlevp_DefaultSkins_HEROBRINE, nlevp_DefaultSkins_NOTCH, nlevp_DefaultSkins_CREEPER, nlevp_DefaultSkins_ZOMBIE, nlevp_DefaultSkins_PIG, nlevp_DefaultSkins_MOOSHROOM, nlevp_DefaultSkins_LONG_ARMS, nlevp_DefaultSkins_WEIRD_CLIMBER_DUDE, nlevp_DefaultSkins_LAXATIVE_DUDE, nlevp_DefaultSkins_BABY_CHARLES, nlevp_DefaultSkins_BABY_WINSTON]); + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($ptr); + } function nlevp_DefaultSkins__clinit_() { var var$1, var$2, $i, var$4, var$5, var$6, var$7, $skins, var$9, $ptr, $tmp; $ptr = 0; @@ -287459,11 +288530,17 @@ break main; } nlevp_DefaultSkins_BABY_WINSTON = var$1; - nlevp_DefaultSkins_$VALUES = $rt_createArrayFromData(nlevp_DefaultSkins, [nlevp_DefaultSkins_DEFAULT_STEVE, nlevp_DefaultSkins_DEFAULT_ALEX, nlevp_DefaultSkins_TENNIS_STEVE, nlevp_DefaultSkins_TENNIS_ALEX, nlevp_DefaultSkins_TUXEDO_STEVE, nlevp_DefaultSkins_TUXEDO_ALEX, nlevp_DefaultSkins_ATHLETE_STEVE, nlevp_DefaultSkins_ATHLETE_ALEX, nlevp_DefaultSkins_CYCLIST_STEVE, nlevp_DefaultSkins_CYCLIST_ALEX, nlevp_DefaultSkins_BOXER_STEVE, nlevp_DefaultSkins_BOXER_ALEX, nlevp_DefaultSkins_PRISONER_STEVE, - nlevp_DefaultSkins_PRISONER_ALEX, nlevp_DefaultSkins_SCOTTISH_STEVE, nlevp_DefaultSkins_SCOTTISH_ALEX, nlevp_DefaultSkins_DEVELOPER_STEVE, nlevp_DefaultSkins_DEVELOPER_ALEX, nlevp_DefaultSkins_HEROBRINE, nlevp_DefaultSkins_NOTCH, nlevp_DefaultSkins_CREEPER, nlevp_DefaultSkins_ZOMBIE, nlevp_DefaultSkins_PIG, nlevp_DefaultSkins_MOOSHROOM, nlevp_DefaultSkins_LONG_ARMS, nlevp_DefaultSkins_WEIRD_CLIMBER_DUDE, nlevp_DefaultSkins_LAXATIVE_DUDE, nlevp_DefaultSkins_BABY_CHARLES, var$1]); - nlevp_DefaultSkins_defaultSkinsMap = $rt_createArray(nlevp_DefaultSkins, 29); $ptr = 60; case 60: + $tmp = nlevp_DefaultSkins_$values(); + if ($rt_suspending()) { + break main; + } + $skins = $tmp; + nlevp_DefaultSkins_$VALUES = $skins; + nlevp_DefaultSkins_defaultSkinsMap = $rt_createArray(nlevp_DefaultSkins, 29); + $ptr = 61; + case 61: $tmp = nlevp_DefaultSkins_values(); if ($rt_suspending()) { break main; @@ -289593,7 +290670,7 @@ return {"root": {"value" : "#,##0.###"}, "en": {"value" : "#,##0.###"}}; } function otciu_CLDRHelper_getDecimalDataMap$$create() { - return {"root": {"exponentSeparator" : "E", "minusSign" : 45, "perMille" : 8240, "decimalSeparator" : 46, "listSeparator" : 59, "infinity" : "∞", "naN" : "NaN", "groupingSeparator" : 44, "percent" : 37}, "en": {"exponentSeparator" : "E", "minusSign" : 45, "perMille" : 8240, "decimalSeparator" : 46, "listSeparator" : 59, "infinity" : "∞", "naN" : "NaN", "groupingSeparator" : 44, "percent" : 37}}; + return {"root": {"exponentSeparator" : "E", "minusSign" : 45, "perMille" : 8240, "decimalSeparator" : 46, "listSeparator" : 59, "naN" : "NaN", "infinity" : "∞", "groupingSeparator" : 44, "percent" : 37}, "en": {"exponentSeparator" : "E", "minusSign" : 45, "perMille" : 8240, "decimalSeparator" : 46, "listSeparator" : 59, "naN" : "NaN", "infinity" : "∞", "groupingSeparator" : 44, "percent" : 37}}; } function otciu_CLDRHelper_getCurrencyMap$$create() { return {"root": {"UGS": {"symbol" : "UGS", "name" : "UGS"}, "FJD": {"symbol" : "FJD", "name" : "FJD"}, "MXN": {"symbol" : "MX$", "name" : "MXN"}, "STD": {"symbol" : "STD", "name" : "STD"}, "BRR": {"symbol" : "BRR", "name" : "BRR"}, "LVL": {"symbol" : "LVL", "name" : "LVL"}, "SCR": {"symbol" : "SCR", "name" : "SCR"}, "CDF": {"symbol" : "CDF", "name" : "CDF"}, "MXP": {"symbol" : "MXP", "name" : "MXP"}, "ZAL": {"symbol" : "ZAL", "name" : "ZAL"}, "BBD": {"symbol" : "BBD", "name" : "BBD"}, "HNL": {"symbol" @@ -290764,7 +291841,7 @@ var var$2; cgcb_Preconditions_checkNotNull($sequence); var$2 = new cgcb_Splitter$5; - var$2.$this$031 = $this; + var$2.$this$018 = $this; var$2.$val$sequence = $sequence; return var$2; } @@ -291158,23 +292235,30 @@ return var$2; var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - var$6 = $rt_s(2146); $ptr = 4; case 4: - jl_AbstractStringBuilder_append(var$5, var$6); + $tmp = jl_String_valueOf(var$2); if ($rt_suspending()) { break main; } + var$2 = $tmp; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + var$6 = $rt_s(2146); $ptr = 5; case 5: - jl_AbstractStringBuilder_append(var$5, var$2); + jl_AbstractStringBuilder_append(var$5, var$6); if ($rt_suspending()) { break main; } $ptr = 6; case 6: + jl_AbstractStringBuilder_append(var$5, var$2); + if ($rt_suspending()) { + break main; + } + $ptr = 7; + case 7: $tmp = jl_AbstractStringBuilder_toString(var$5); if ($rt_suspending()) { break main; @@ -291183,12 +292267,12 @@ jl_AbstractStringBuilder_append5(var$4, var$2); var$3 = 0; if (var$3 >= 4) { - $ptr = 7; + $ptr = 8; continue main; } - $ptr = 8; + $ptr = 9; continue main; - case 7: + case 8: $tmp = $iterable.$hasNext(); if ($rt_suspending()) { break main; @@ -291198,21 +292282,21 @@ jl_AbstractStringBuilder_append5(var$4, $rt_s(2147)); jl_AbstractStringBuilder_append0(var$4, 62); $iterable = new jl_IllegalArgumentException; - $ptr = 9; + $ptr = 10; continue main; - case 8: + case 9: $tmp = $iterable.$hasNext(); if ($rt_suspending()) { break main; } var$7 = $tmp; if (!var$7) { - $ptr = 7; + $ptr = 8; continue main; } - $ptr = 10; + $ptr = 11; continue main; - case 9: + case 10: $tmp = jl_AbstractStringBuilder_toString(var$4); if ($rt_suspending()) { break main; @@ -291220,29 +292304,36 @@ var$2 = $tmp; jl_Throwable__init_($iterable, var$2); $rt_throw($iterable); - case 10: + case 11: $tmp = $iterable.$next(); if ($rt_suspending()) { break main; } var$2 = $tmp; + $ptr = 12; + case 12: + $tmp = jl_String_valueOf(var$2); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; var$5 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$5); var$6 = $rt_s(554); - $ptr = 11; - case 11: + $ptr = 13; + case 13: jl_AbstractStringBuilder_append(var$5, var$6); if ($rt_suspending()) { break main; } - $ptr = 12; - case 12: + $ptr = 14; + case 14: jl_AbstractStringBuilder_append(var$5, var$2); if ($rt_suspending()) { break main; } - $ptr = 13; - case 13: + $ptr = 15; + case 15: $tmp = jl_AbstractStringBuilder_toString(var$5); if ($rt_suspending()) { break main; @@ -291251,10 +292342,10 @@ jl_AbstractStringBuilder_append5(var$4, var$2); var$3 = var$3 + 1 | 0; if (var$3 >= 4) { - $ptr = 7; + $ptr = 8; continue main; } - $ptr = 8; + $ptr = 9; continue main; default: $rt_invalidPointer(); }} @@ -291389,7 +292480,7 @@ var$3 = cgcc_EmptyImmutableSet_INSTANCE; else { var$3 = new cgcc_ImmutableMultiset$EntrySet; - var$3.$this$032 = $iterable; + var$3.$this$019 = $iterable; jl_Object__init_0(var$3); } $iterable.$entrySet0 = var$3; @@ -312752,7 +313843,7 @@ var$1 = $rt_s(1338); var$2 = $rt_cls(nmb_BlockFlower$EnumFlowerType); var$3 = new nmb_BlockFlower$1; - var$3.$this$033 = $this; + var$3.$this$020 = $this; $ptr = 1; case 1: $tmp = nmbp_PropertyEnum_create0(var$1, var$2, var$3); @@ -326456,7 +327547,7 @@ else { $world = $tileentity; $blockpos = new nmt_TileEntitySign$2; - $blockpos.$this$034 = $world; + $blockpos.$this$021 = $world; $blockpos.$val$playerIn = $entityplayer; var$10 = 0; while (true) { @@ -330560,137 +331651,130 @@ $rt_nativeThread().push($this, $world, $blockpos, $iblockstate, $var4, var$5, $ptr); } function nmb_BlockLever_setBlockBoundsBasedOnState($this, $iblockaccess, $blockpos) { - var var$3, var$4, var$5, var$6, var$7, var$8, var$9, $ptr, $tmp; + var var$3, var$4, var$5, var$6, var$7, var$8, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();$blockpos = $thread.pop();$iblockaccess = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();$blockpos = $thread.pop();$iblockaccess = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: $ptr = 1; case 1: - nmb_BlockLever$1_$callClinit(); - if ($rt_suspending()) { - break main; - } - var$3 = nmb_BlockLever$1_$SwitchMap$net$minecraft$block$BlockLever$EnumOrientation.data; - $ptr = 2; - case 2: $tmp = $iblockaccess.$getBlockState($blockpos); if ($rt_suspending()) { break main; } $iblockaccess = $tmp; - $ptr = 3; - case 3: + $ptr = 2; + case 2: nmb_BlockLever_$callClinit(); if ($rt_suspending()) { break main; } $blockpos = nmb_BlockLever_FACING; - $ptr = 4; - case 4: + $ptr = 3; + case 3: $tmp = nmbs_BlockState$StateImplementation_getValue($iblockaccess, $blockpos); if ($rt_suspending()) { break main; } $iblockaccess = $tmp; - switch (var$3[$iblockaccess.$ordinal]) { + switch ($iblockaccess.$ordinal) { + case 0: + case 7: + var$3 = 0.25; + var$4 = 0.4000000059604645; + var$5 = 0.75; + var$6 = 1.0; + $ptr = 4; + continue main; case 1: - var$4 = 0.0; - var$5 = 0.20000000298023224; - var$6 = 0.3125; - var$7 = 0.375; - var$8 = 0.800000011920929; - var$9 = 0.6875; + var$3 = 0.0; + var$4 = 0.20000000298023224; + var$5 = 0.3125; + var$6 = 0.375; + var$7 = 0.800000011920929; + var$8 = 0.6875; $ptr = 5; continue main; case 2: - var$4 = 0.625; - var$5 = 0.20000000298023224; - var$6 = 0.3125; - var$7 = 1.0; - var$8 = 0.800000011920929; - var$9 = 0.6875; + var$3 = 0.625; + var$4 = 0.20000000298023224; + var$5 = 0.3125; + var$6 = 1.0; + var$7 = 0.800000011920929; + var$8 = 0.6875; $ptr = 6; continue main; case 3: - var$4 = 0.3125; - var$5 = 0.20000000298023224; - var$6 = 0.0; - var$7 = 0.6875; - var$8 = 0.800000011920929; - var$9 = 0.375; + var$3 = 0.3125; + var$4 = 0.20000000298023224; + var$5 = 0.0; + var$6 = 0.6875; + var$7 = 0.800000011920929; + var$8 = 0.375; $ptr = 7; continue main; case 4: - var$4 = 0.3125; - var$5 = 0.20000000298023224; - var$6 = 0.625; - var$7 = 0.6875; - var$8 = 0.800000011920929; - var$9 = 1.0; + var$3 = 0.3125; + var$4 = 0.20000000298023224; + var$5 = 0.625; + var$6 = 0.6875; + var$7 = 0.800000011920929; + var$8 = 1.0; $ptr = 8; continue main; case 5: case 6: - var$4 = 0.25; - var$5 = 0.0; - var$6 = 0.75; - var$7 = 0.6000000238418579; + var$3 = 0.25; + var$4 = 0.0; + var$5 = 0.75; + var$6 = 0.6000000238418579; $ptr = 9; continue main; - case 7: - case 8: - var$4 = 0.25; - var$5 = 0.4000000059604645; - var$6 = 0.75; - var$7 = 1.0; - $ptr = 10; - continue main; default: } return; + case 4: + nmb_Block_setBlockBounds($this, var$3, var$4, var$3, var$5, var$6, var$5); + if ($rt_suspending()) { + break main; + } + return; case 5: - nmb_Block_setBlockBounds($this, var$4, var$5, var$6, var$7, var$8, var$9); + nmb_Block_setBlockBounds($this, var$3, var$4, var$5, var$6, var$7, var$8); if ($rt_suspending()) { break main; } return; case 6: - nmb_Block_setBlockBounds($this, var$4, var$5, var$6, var$7, var$8, var$9); + nmb_Block_setBlockBounds($this, var$3, var$4, var$5, var$6, var$7, var$8); if ($rt_suspending()) { break main; } return; case 7: - nmb_Block_setBlockBounds($this, var$4, var$5, var$6, var$7, var$8, var$9); + nmb_Block_setBlockBounds($this, var$3, var$4, var$5, var$6, var$7, var$8); if ($rt_suspending()) { break main; } return; case 8: - nmb_Block_setBlockBounds($this, var$4, var$5, var$6, var$7, var$8, var$9); + nmb_Block_setBlockBounds($this, var$3, var$4, var$5, var$6, var$7, var$8); if ($rt_suspending()) { break main; } return; case 9: - nmb_Block_setBlockBounds($this, var$4, var$5, var$4, var$6, var$7, var$6); - if ($rt_suspending()) { - break main; - } - return; - case 10: - nmb_Block_setBlockBounds($this, var$4, var$5, var$4, var$6, var$7, var$6); + nmb_Block_setBlockBounds($this, var$3, var$4, var$3, var$5, var$6, var$5); if ($rt_suspending()) { break main; } return; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $iblockaccess, $blockpos, var$3, var$4, var$5, var$6, var$7, var$8, var$9, $ptr); + $rt_nativeThread().push($this, $iblockaccess, $blockpos, var$3, var$4, var$5, var$6, var$7, var$8, $ptr); } function nmb_BlockLever_onBlockActivated($this, $world, $blockpos, $iblockstate, $var4, $var5, $var6, $var7, $var8) { var var$9, var$10, var$11, var$12, $enumfacing, $ptr, $tmp; @@ -331777,13 +332861,12 @@ main: while (true) { switch ($ptr) { case 0: $axisalignedbb = nmb_BlockBasePressurePlate_getSensitiveAABB($this, $blockpos); - nmb_BlockPressurePlate$1_$callClinit(); - switch (nmb_BlockPressurePlate$1_$SwitchMap$net$minecraft$block$BlockPressurePlate$Sensitivity.data[$this.$sensitivity.$ordinal]) { - case 1: + switch ($this.$sensitivity.$ordinal) { + case 0: $blockpos = null; $ptr = 1; continue main; - case 2: + case 1: $blockpos = $rt_cls(nme_EntityLivingBase); $ptr = 2; continue main; @@ -344725,104 +345808,102 @@ $rt_nativeThread().push($blockState, $block, var$3, var$4, var$5, $ptr); } function nmb_BlockSilverfish_createStackedBlock($this, $iblockstate) { - var var$2, var$3, var$4, var$5, var$6, $ptr, $tmp; + var var$2, var$3, var$4, var$5, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();$iblockstate = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();$iblockstate = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: - nmb_BlockSilverfish$1_$callClinit(); - var$2 = nmb_BlockSilverfish$1_$SwitchMap$net$minecraft$block$BlockSilverfish$EnumType.data; - var$3 = nmb_BlockSilverfish_VARIANT; + var$2 = nmb_BlockSilverfish_VARIANT; $ptr = 1; case 1: - $tmp = nmbs_BlockState$StateImplementation_getValue($iblockstate, var$3); + $tmp = nmbs_BlockState$StateImplementation_getValue($iblockstate, var$2); if ($rt_suspending()) { break main; } $iblockstate = $tmp; - switch (var$2[$iblockstate.$ordinal]) { + switch ($iblockstate.$ordinal) { case 1: break; case 2: $iblockstate = new nmi_ItemStack; - var$3 = nmi_Blocks_stonebrick; + var$2 = nmi_Blocks_stonebrick; $ptr = 3; continue main; case 3: - var$3 = new nmi_ItemStack; - var$4 = nmi_Blocks_stonebrick; - var$5 = 1; + var$2 = new nmi_ItemStack; + var$3 = nmi_Blocks_stonebrick; + var$4 = 1; nmb_BlockStoneBrick$EnumType_$callClinit(); - var$6 = nmb_BlockStoneBrick$EnumType_MOSSY.$meta8; + var$5 = nmb_BlockStoneBrick$EnumType_MOSSY.$meta8; $ptr = 4; continue main; case 4: $iblockstate = new nmi_ItemStack; - var$3 = nmi_Blocks_stonebrick; - var$5 = 1; + var$2 = nmi_Blocks_stonebrick; + var$4 = 1; nmb_BlockStoneBrick$EnumType_$callClinit(); - var$6 = nmb_BlockStoneBrick$EnumType_CRACKED.$meta8; + var$5 = nmb_BlockStoneBrick$EnumType_CRACKED.$meta8; $ptr = 5; continue main; case 5: $iblockstate = new nmi_ItemStack; - var$3 = nmi_Blocks_stonebrick; - var$5 = 1; + var$2 = nmi_Blocks_stonebrick; + var$4 = 1; nmb_BlockStoneBrick$EnumType_$callClinit(); - var$6 = nmb_BlockStoneBrick$EnumType_CHISELED.$meta8; + var$5 = nmb_BlockStoneBrick$EnumType_CHISELED.$meta8; $ptr = 6; continue main; default: $iblockstate = new nmi_ItemStack; - var$3 = nmi_Blocks_stone; + var$2 = nmi_Blocks_stone; $ptr = 7; continue main; } - $iblockstate = new nmi_ItemStack; - var$3 = nmi_Blocks_cobblestone; + var$2 = new nmi_ItemStack; + $iblockstate = nmi_Blocks_cobblestone; $ptr = 2; case 2: - nmi_ItemStack__init_1($iblockstate, var$3); + nmi_ItemStack__init_1(var$2, $iblockstate); if ($rt_suspending()) { break main; } - return $iblockstate; + return var$2; case 3: - nmi_ItemStack__init_1($iblockstate, var$3); + nmi_ItemStack__init_1($iblockstate, var$2); if ($rt_suspending()) { break main; } return $iblockstate; case 4: - nmi_ItemStack__init_3(var$3, var$4, var$5, var$6); + nmi_ItemStack__init_3(var$2, var$3, var$4, var$5); if ($rt_suspending()) { break main; } - return var$3; + return var$2; case 5: - nmi_ItemStack__init_3($iblockstate, var$3, var$5, var$6); + nmi_ItemStack__init_3($iblockstate, var$2, var$4, var$5); if ($rt_suspending()) { break main; } return $iblockstate; case 6: - nmi_ItemStack__init_3($iblockstate, var$3, var$5, var$6); + nmi_ItemStack__init_3($iblockstate, var$2, var$4, var$5); if ($rt_suspending()) { break main; } return $iblockstate; case 7: - nmi_ItemStack__init_1($iblockstate, var$3); + nmi_ItemStack__init_1($iblockstate, var$2); if ($rt_suspending()) { break main; } return $iblockstate; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $iblockstate, var$2, var$3, var$4, var$5, var$6, $ptr); + $rt_nativeThread().push($this, $iblockstate, var$2, var$3, var$4, var$5, $ptr); } function nmb_BlockSilverfish_dropBlockAsItemWithChance($this, $world, $blockpos, $var3, $var4, $var5) { var $entitysilverfish, var$7, var$8, var$9, var$10, $ptr, $tmp; @@ -345281,41 +346362,44 @@ return jl_Math_max(0, nlev_EaglercraftRandom_nextInt($random, 10) - 7 | 0); } function nmb_BlockHugeMushroom_getMapColor($this, $iblockstate) { - var var$2, var$3, $ptr, $tmp; + var var$2, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();$iblockstate = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$2 = $thread.pop();$iblockstate = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: - nmb_BlockHugeMushroom$1_$callClinit(); - var$2 = nmb_BlockHugeMushroom$1_$SwitchMap$net$minecraft$block$BlockHugeMushroom$EnumType.data; - var$3 = nmb_BlockHugeMushroom_VARIANT; + var$2 = nmb_BlockHugeMushroom_VARIANT; $ptr = 1; case 1: - $tmp = nmbs_BlockState$StateImplementation_getValue($iblockstate, var$3); - if ($rt_suspending()) { - break main; + a: { + $tmp = nmbs_BlockState$StateImplementation_getValue($iblockstate, var$2); + if ($rt_suspending()) { + break main; + } + $iblockstate = $tmp; + switch ($iblockstate.$ordinal) { + case 9: + break; + case 10: + nmbm_MapColor_$callClinit(); + return nmbm_MapColor_sandColor; + case 11: + break a; + case 12: + nmbm_MapColor_$callClinit(); + return nmbm_MapColor_clothColor; + default: + break a; + } + nmbm_MapColor_$callClinit(); + return nmbm_MapColor_sandColor; } - $iblockstate = $tmp; - switch (var$2[$iblockstate.$ordinal]) { - case 1: - break; - case 2: - nmbm_MapColor_$callClinit(); - return nmbm_MapColor_sandColor; - case 3: - nmbm_MapColor_$callClinit(); - return nmbm_MapColor_sandColor; - default: - return $this.$field_181083_K; - } - nmbm_MapColor_$callClinit(); - return nmbm_MapColor_clothColor; + return $this.$field_181083_K; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $iblockstate, var$2, var$3, $ptr); + $rt_nativeThread().push($this, $iblockstate, var$2, $ptr); } function nmb_BlockHugeMushroom_getItemDropped($this, $var1, $var2, $var3) { var $ptr, $tmp; @@ -349562,26 +350646,33 @@ return nmb_BlockVine_WEST; default: var$2 = new jl_IllegalArgumentException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); $ptr = 3; continue main; } return nmb_BlockVine_UP; case 3: - jl_AbstractStringBuilder_append(var$3, $side); + $tmp = jl_String_valueOf($side); if ($rt_suspending()) { break main; } - $side = $rt_s(2231); + $side = $tmp; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); $ptr = 4; case 4: jl_AbstractStringBuilder_append(var$3, $side); if ($rt_suspending()) { break main; } + $side = $rt_s(2231); $ptr = 5; case 5: + jl_AbstractStringBuilder_append(var$3, $side); + if ($rt_suspending()) { + break main; + } + $ptr = 6; + case 6: $tmp = jl_AbstractStringBuilder_toString(var$3); if ($rt_suspending()) { break main; @@ -365139,11 +366230,11 @@ $rt_nativeThread().push($this, $worldIn, $pos, $state, $i, $j, $ptr); } function nmb_BlockRedstoneComparator_calculateInputStrength($this, $worldIn, $pos, $state) { - var $i, $entityitemframe, $enumfacing, $blockpos, $block, var$9, $ptr, $tmp; + var $i, $enumfacing, $blockpos, $block, var$8, $entityitemframe, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$9 = $thread.pop();$block = $thread.pop();$blockpos = $thread.pop();$enumfacing = $thread.pop();$entityitemframe = $thread.pop();$i = $thread.pop();$state = $thread.pop();$pos = $thread.pop();$worldIn = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();$entityitemframe = $thread.pop();var$8 = $thread.pop();$block = $thread.pop();$blockpos = $thread.pop();$enumfacing = $thread.pop();$i = $thread.pop();$state = $thread.pop();$pos = $thread.pop();$worldIn = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -365160,10 +366251,10 @@ if ($rt_suspending()) { break main; } - $entityitemframe = nmb_BlockDirectional_FACING; + $enumfacing = nmb_BlockDirectional_FACING; $ptr = 3; case 3: - $tmp = nmbs_BlockState$StateImplementation_getValue($state, $entityitemframe); + $tmp = nmbs_BlockState$StateImplementation_getValue($state, $enumfacing); if ($rt_suspending()) { break main; } @@ -365190,8 +366281,8 @@ if ($rt_suspending()) { break main; } - var$9 = $tmp; - if (var$9) { + var$8 = $tmp; + if (var$8) { $ptr = 7; continue main; } @@ -365211,8 +366302,8 @@ if ($rt_suspending()) { break main; } - var$9 = $tmp; - if (!var$9) + var$8 = $tmp; + if (!var$8) return $i; $ptr = 9; case 9: @@ -365220,10 +366311,10 @@ if ($rt_suspending()) { break main; } - $block = $tmp; + $state = $tmp; $ptr = 10; case 10: - $tmp = nmw_World_getBlockState($worldIn, $block); + $tmp = nmw_World_getBlockState($worldIn, $state); if ($rt_suspending()) { break main; } @@ -365235,8 +366326,8 @@ if ($rt_suspending()) { break main; } - var$9 = $tmp; - if (var$9) { + var$8 = $tmp; + if (var$8) { $ptr = 12; continue main; } @@ -365244,28 +366335,27 @@ nmbm_Material_$callClinit(); if ($pos !== nmbm_Material_air) return $i; - $state = $rt_cls(nmei_EntityItemFrame); - $entityitemframe = nmu_AxisAlignedBB__init_0($block.$getX(), $block.$getY(), $block.$getZ(), $block.$getX() + 1 | 0, $block.$getY() + 1 | 0, $block.$getZ() + 1 | 0); + $block = $rt_cls(nmei_EntityItemFrame); + $blockpos = nmu_AxisAlignedBB__init_0($state.$getX(), $state.$getY(), $state.$getZ(), $state.$getX() + 1 | 0, $state.$getY() + 1 | 0, $state.$getZ() + 1 | 0); $pos = new nmb_BlockRedstoneComparator$1; - $pos.$this$035 = $this; $pos.$val$facing = $enumfacing; $ptr = 13; continue main; case 12: - $tmp = $pos.$getComparatorInputOverride($worldIn, $block); + $tmp = $pos.$getComparatorInputOverride($worldIn, $state); if ($rt_suspending()) { break main; } $i = $tmp; return $i; case 13: - $tmp = nmw_World_getEntitiesWithinAABB0($worldIn, $state, $entityitemframe, $pos); + $tmp = nmw_World_getEntitiesWithinAABB0($worldIn, $block, $blockpos, $pos); if ($rt_suspending()) { break main; } $worldIn = $tmp; if ($worldIn.$size == 1) { - var$9 = 0; + var$8 = 0; $ptr = 14; continue main; } @@ -365275,7 +366365,7 @@ $ptr = 15; continue main; case 14: - $tmp = ju_ArrayList_get($worldIn, var$9); + $tmp = ju_ArrayList_get($worldIn, var$8); if ($rt_suspending()) { break main; } @@ -365300,12 +366390,12 @@ if ($rt_suspending()) { break main; } - var$9 = $tmp; - $i = (var$9 % 8 | 0) + 1 | 0; + var$8 = $tmp; + $i = (var$8 % 8 | 0) + 1 | 0; return $i; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $worldIn, $pos, $state, $i, $entityitemframe, $enumfacing, $blockpos, $block, var$9, $ptr); + $rt_nativeThread().push($this, $worldIn, $pos, $state, $i, $enumfacing, $blockpos, $block, var$8, $entityitemframe, $ptr); } function nmb_BlockRedstoneComparator_onBlockActivated($this, $world, $blockpos, $iblockstate, $entityplayer, $var5, $var6, $var7, $var8) { var var$9, var$10, var$11, var$12, var$13, $ptr, $tmp; @@ -375434,12 +376524,10 @@ } if (var$2 != nmwb_BiomeGenBase_birchForest.$biomeID && var$2 != nmwb_BiomeGenBase_birchForestHills.$biomeID) { $biomegenforest = new nmwb_BiomeGenForest$1; - $biomegenforest.$this$036 = $this; $ptr = 6; continue main; } $biomegenforest = new nmwb_BiomeGenForest$2; - $biomegenforest.$this$037 = $this; $ptr = 5; continue main; case 2: @@ -390506,10 +391594,10 @@ $worldIn.$field_176105_d = 0; $player = new nmnps_S34PacketMaps; var$4 = $stack.$itemDamage; - $stack = $worldIn.$this$038; + $stack = $worldIn.$this$022; var$5 = $stack.$scale0; $stack = ju_LinkedHashMap_values($stack.$mapDecorations); - var$6 = $worldIn.$this$038.$colors; + var$6 = $worldIn.$this$022.$colors; var$7 = $worldIn.$minX1; var$8 = $worldIn.$minY1; var$9 = ($worldIn.$maxX1 + 1 | 0) - var$7 | 0; @@ -390522,10 +391610,10 @@ if (!(var$10 % 5 | 0)) { $player = new nmnps_S34PacketMaps; var$4 = $stack.$itemDamage; - $stack = $worldIn.$this$038; + $stack = $worldIn.$this$022; var$5 = $stack.$scale0; $stack = ju_LinkedHashMap_values($stack.$mapDecorations); - var$6 = $worldIn.$this$038.$colors; + var$6 = $worldIn.$this$022.$colors; var$10 = 0; var$7 = 0; var$8 = 0; @@ -391784,11 +392872,11 @@ $rt_nativeThread().push($this, $stack, var$2, $s, $list, var$5, var$6, var$7, var$8, var$9, $s2, $s1, $ptr); } function nmi_ItemPotion_addInformation($this, $itemstack, $var2, $list, $var4) { - var $list1, $hashmultimap, $s, $i, $l, var$10, $potioneffect, $s1, $potion, $map, var$15, $entry1, $attributemodifier2, $d0, $d1, $attributemodifier1, var$21, var$22, $entry, $attributemodifier, $ptr, $tmp; + var $list1, $hashmultimap, $s, $i, $l, var$10, $potioneffect, $s1, $potion, $map, var$15, $entry1, $attributemodifier2, $d0, $d1, var$20, var$21, $entry, $attributemodifier, $attributemodifier1, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$attributemodifier = $thread.pop();$entry = $thread.pop();var$22 = $thread.pop();var$21 = $thread.pop();$attributemodifier1 = $thread.pop();$d1 = $thread.pop();$d0 = $thread.pop();$attributemodifier2 = $thread.pop();$entry1 = $thread.pop();var$15 = $thread.pop();$map = $thread.pop();$potion = $thread.pop();$s1 = $thread.pop();$potioneffect = $thread.pop();var$10 = $thread.pop();$l = $thread.pop();$i = $thread.pop();$s = $thread.pop();$hashmultimap = $thread.pop();$list1 = $thread.pop();$var4 + $ptr = $thread.pop();$attributemodifier1 = $thread.pop();$attributemodifier = $thread.pop();$entry = $thread.pop();var$21 = $thread.pop();var$20 = $thread.pop();$d1 = $thread.pop();$d0 = $thread.pop();$attributemodifier2 = $thread.pop();$entry1 = $thread.pop();var$15 = $thread.pop();$map = $thread.pop();$potion = $thread.pop();$s1 = $thread.pop();$potioneffect = $thread.pop();var$10 = $thread.pop();$l = $thread.pop();$i = $thread.pop();$s = $thread.pop();$hashmultimap = $thread.pop();$list1 = $thread.pop();$var4 = $thread.pop();$list = $thread.pop();$var2 = $thread.pop();$itemstack = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { @@ -391805,7 +392893,7 @@ $list1 = $tmp; $hashmultimap = cgcc_HashMultimap_create(); if ($list1 !== null) { - $ptr = 8; + $ptr = 9; continue main; } $itemstack = $rt_s(2402); @@ -391824,29 +392912,36 @@ break main; } $itemstack = nmu_EnumChatFormatting_GRAY; - $var2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($var2); $ptr = 4; case 4: - jl_AbstractStringBuilder_append($var2, $itemstack); + $tmp = jl_String_valueOf($itemstack); if ($rt_suspending()) { break main; } + $itemstack = $tmp; + $var2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($var2); $ptr = 5; case 5: - jl_AbstractStringBuilder_append($var2, $s); + jl_AbstractStringBuilder_append($var2, $itemstack); if ($rt_suspending()) { break main; } $ptr = 6; case 6: + jl_AbstractStringBuilder_append($var2, $s); + if ($rt_suspending()) { + break main; + } + $ptr = 7; + case 7: $tmp = jl_AbstractStringBuilder_toString($var2); if ($rt_suspending()) { break main; } $itemstack = $tmp; - $ptr = 7; - case 7: + $ptr = 8; + case 8: ju_ArrayList_add($list, $itemstack); if ($rt_suspending()) { break main; @@ -391854,9 +392949,9 @@ if (cgcc_AbstractMultimap_isEmpty($hashmultimap)) return; $itemstack = $rt_s(14); - $ptr = 10; + $ptr = 11; continue main; - case 8: + case 9: $tmp = $list1.$isEmpty(); if ($rt_suspending()) { break main; @@ -391868,8 +392963,8 @@ continue main; } $i = 0; - $ptr = 9; - case 9: + $ptr = 10; + case 10: $tmp = $list1.$size0(); if ($rt_suspending()) { break main; @@ -391878,28 +392973,35 @@ $var4 = 32; var$10 = 41; if ($i < $l) { - $ptr = 19; + $ptr = 21; continue main; } if (cgcc_AbstractMultimap_isEmpty($hashmultimap)) return; $itemstack = $rt_s(14); - $ptr = 10; - case 10: + $ptr = 11; + case 11: ju_ArrayList_add($list, $itemstack); if ($rt_suspending()) { break main; } - $ptr = 11; - case 11: + $ptr = 12; + case 12: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } $itemstack = nmu_EnumChatFormatting_DARK_PURPLE; + $ptr = 13; + case 13: + $tmp = jl_String_valueOf($itemstack); + if ($rt_suspending()) { + break main; + } + $itemstack = $tmp; $var2 = $rt_s(2403); - $ptr = 12; - case 12: + $ptr = 14; + case 14: $tmp = nmu_StatCollector_translateToLocal($var2); if ($rt_suspending()) { break main; @@ -391907,41 +393009,41 @@ $var2 = $tmp; $list1 = new jl_StringBuilder; jl_AbstractStringBuilder__init_($list1); - $ptr = 13; - case 13: + $ptr = 15; + case 15: jl_AbstractStringBuilder_append($list1, $itemstack); if ($rt_suspending()) { break main; } - $ptr = 14; - case 14: + $ptr = 16; + case 16: jl_AbstractStringBuilder_append($list1, $var2); if ($rt_suspending()) { break main; } - $ptr = 15; - case 15: + $ptr = 17; + case 17: $tmp = jl_AbstractStringBuilder_toString($list1); if ($rt_suspending()) { break main; } $itemstack = $tmp; - $ptr = 16; - case 16: + $ptr = 18; + case 18: ju_ArrayList_add($list, $itemstack); if ($rt_suspending()) { break main; } $itemstack = cgcc_HashMultimap_entries($hashmultimap); - $ptr = 17; - case 17: + $ptr = 19; + case 19: $tmp = cgcc_AbstractMultimap$Entries_iterator($itemstack); if ($rt_suspending()) { break main; } $var2 = $tmp; - $ptr = 18; - case 18: + $ptr = 20; + case 20: $tmp = cgcc_AbstractMapBasedMultimap$Itr_hasNext($var2); if ($rt_suspending()) { break main; @@ -391949,32 +393051,32 @@ $var4 = $tmp; if (!$var4) return; - $ptr = 23; + $ptr = 25; continue main; - case 19: + case 21: $tmp = $list1.$get2($i); if ($rt_suspending()) { break main; } $itemstack = $tmp; $potioneffect = $itemstack; - $ptr = 20; - case 20: + $ptr = 22; + case 22: $tmp = nmp_PotionEffect_getEffectName($potioneffect); if ($rt_suspending()) { break main; } $itemstack = $tmp; - $ptr = 21; - case 21: + $ptr = 23; + case 23: $tmp = nmu_StatCollector_translateToLocal($itemstack); if ($rt_suspending()) { break main; } $itemstack = $tmp; $s1 = jl_String_trim($itemstack); - $ptr = 22; - case 22: + $ptr = 24; + case 24: nmp_Potion_$callClinit(); if ($rt_suspending()) { break main; @@ -391982,7 +393084,7 @@ $potion = nmp_Potion_potionTypes.data[$potioneffect.$potionID]; $map = $potion.$attributeModifierMap; if ($map !== null && $map.$elementCount > 0) { - $ptr = 30; + $ptr = 32; continue main; } var$15 = $potioneffect.$amplifier; @@ -391990,20 +393092,20 @@ $itemstack = new jl_StringBuilder; jl_AbstractStringBuilder__init_($itemstack); $var2 = $rt_s(2404); - $ptr = 24; + $ptr = 26; continue main; } if ($potioneffect.$duration > 20) { - $ptr = 46; + $ptr = 49; continue main; } if (!$potion.$isBadEffect) { - $ptr = 69; + $ptr = 73; continue main; } - $ptr = 74; + $ptr = 79; continue main; - case 23: + case 25: $tmp = cgcc_AbstractMapBasedMultimap$Itr_next($var2); if ($rt_suspending()) { break main; @@ -392017,38 +393119,32 @@ $var4 = $rt_compare($d0, 0.0); if ($var4 > 0) { $itemstack = nmu_EnumChatFormatting_BLUE; - $list1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($list1); - $hashmultimap = $rt_s(2405); - $ptr = 32; + $ptr = 34; continue main; } if ($var4 >= 0) { - $ptr = 18; + $ptr = 20; continue main; } $d1 = $d1 * (-1.0); - $list1 = nmu_EnumChatFormatting_RED; - $var4 = nmeaa_AttributeModifier_getOperation($attributemodifier2); - $itemstack = jl_StringBuilder__init_(); - $hashmultimap = $rt_s(2406); - $ptr = 55; + $itemstack = nmu_EnumChatFormatting_RED; + $ptr = 58; continue main; - case 24: + case 26: jl_AbstractStringBuilder_append($itemstack, $var2); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append1($itemstack, var$15); - $ptr = 25; - case 25: + $ptr = 27; + case 27: $tmp = jl_AbstractStringBuilder_toString($itemstack); if ($rt_suspending()) { break main; } $itemstack = $tmp; - $ptr = 26; - case 26: + $ptr = 28; + case 28: $tmp = nmu_StatCollector_translateToLocal($itemstack); if ($rt_suspending()) { break main; @@ -392057,51 +393153,51 @@ $var2 = jl_String_trim($itemstack); $itemstack = new jl_StringBuilder; jl_AbstractStringBuilder__init_($itemstack); - $ptr = 27; - case 27: + $ptr = 29; + case 29: jl_AbstractStringBuilder_append($itemstack, $s1); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append0($itemstack, $var4); - $ptr = 28; - case 28: + $ptr = 30; + case 30: jl_AbstractStringBuilder_append($itemstack, $var2); if ($rt_suspending()) { break main; } - $ptr = 29; - case 29: + $ptr = 31; + case 31: $tmp = jl_AbstractStringBuilder_toString($itemstack); if ($rt_suspending()) { break main; } $s1 = $tmp; if ($potioneffect.$duration > 20) { - $ptr = 46; + $ptr = 49; continue main; } if (!$potion.$isBadEffect) { - $ptr = 69; + $ptr = 73; continue main; } - $ptr = 74; + $ptr = 79; continue main; - case 30: + case 32: $tmp = ju_HashMap_entrySet($map); if ($rt_suspending()) { break main; } $itemstack = $tmp; - $ptr = 31; - case 31: + $ptr = 33; + case 33: $tmp = ju_HashMap$HashMapEntrySet_iterator($itemstack); if ($rt_suspending()) { break main; } $var2 = $tmp; if (ju_HashMap$AbstractMapIterator_hasNext($var2)) { - $ptr = 51; + $ptr = 54; continue main; } var$15 = $potioneffect.$amplifier; @@ -392109,53 +393205,64 @@ $itemstack = new jl_StringBuilder; jl_AbstractStringBuilder__init_($itemstack); $var2 = $rt_s(2404); - $ptr = 24; + $ptr = 26; continue main; } if ($potioneffect.$duration > 20) { - $ptr = 46; + $ptr = 49; continue main; } if (!$potion.$isBadEffect) { - $ptr = 69; + $ptr = 73; continue main; } - $ptr = 74; + $ptr = 79; continue main; - case 32: + case 34: + $tmp = jl_String_valueOf($itemstack); + if ($rt_suspending()) { + break main; + } + $itemstack = $tmp; + $var4 = $attributemodifier2.$operation; + $list1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($list1); + $hashmultimap = $rt_s(2405); + $ptr = 35; + case 35: jl_AbstractStringBuilder_append($list1, $hashmultimap); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append1($list1, $i); - $ptr = 33; - case 33: + jl_AbstractStringBuilder_append1($list1, $var4); + $ptr = 36; + case 36: $tmp = jl_AbstractStringBuilder_toString($list1); if ($rt_suspending()) { break main; } - $attributemodifier1 = $tmp; - var$21 = $rt_createArray(jl_Object, 2); - var$22 = var$21.data; + $map = $tmp; + var$20 = $rt_createArray(jl_Object, 2); + var$21 = var$20.data; $var4 = 0; - $ptr = 34; - case 34: + $ptr = 37; + case 37: nmi_ItemStack_$callClinit(); if ($rt_suspending()) { break main; } $list1 = nmi_ItemStack_DECIMALFORMAT; - $ptr = 35; - case 35: + $ptr = 38; + case 38: $tmp = jt_NumberFormat_format($list1, $d1); if ($rt_suspending()) { break main; } $list1 = $tmp; - var$22[$var4] = $list1; + var$21[$var4] = $list1; $var4 = 1; - $ptr = 36; - case 36: + $ptr = 39; + case 39: $tmp = $entry1.$getKey(); if ($rt_suspending()) { break main; @@ -392164,71 +393271,72 @@ $list1 = $list1; $hashmultimap = new jl_StringBuilder; jl_AbstractStringBuilder__init_($hashmultimap); - $s = $rt_s(2407); - $ptr = 37; - case 37: - jl_AbstractStringBuilder_append($hashmultimap, $s); + $s = $rt_s(2406); + $ptr = 40; + case 40: + $tmp = jl_StringBuilder_append($hashmultimap, $s); if ($rt_suspending()) { break main; } - $ptr = 38; - case 38: - jl_AbstractStringBuilder_append($hashmultimap, $list1); + $s = $tmp; + $ptr = 41; + case 41: + jl_StringBuilder_append($s, $list1); if ($rt_suspending()) { break main; } - $ptr = 39; - case 39: - $tmp = jl_AbstractStringBuilder_toString($hashmultimap); + $ptr = 42; + case 42: + $tmp = jl_StringBuilder_toString($hashmultimap); if ($rt_suspending()) { break main; } $list1 = $tmp; - $ptr = 40; - case 40: + $ptr = 43; + case 43: $tmp = nmu_StatCollector_translateToLocal($list1); if ($rt_suspending()) { break main; } $list1 = $tmp; - var$22[$var4] = $list1; - $ptr = 41; - case 41: - $tmp = nmu_StatCollector_translateToLocalFormatted($attributemodifier1, var$21); + var$21[$var4] = $list1; + $ptr = 44; + case 44: + $tmp = nmu_StatCollector_translateToLocalFormatted($map, var$20); if ($rt_suspending()) { break main; } $list1 = $tmp; - $hashmultimap = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($hashmultimap); - $ptr = 42; - case 42: - jl_AbstractStringBuilder_append($hashmultimap, $itemstack); + $hashmultimap = jl_StringBuilder__init_(); + $ptr = 45; + case 45: + $tmp = jl_StringBuilder_append($hashmultimap, $itemstack); if ($rt_suspending()) { break main; } - $ptr = 43; - case 43: - jl_AbstractStringBuilder_append($hashmultimap, $list1); + $itemstack = $tmp; + $ptr = 46; + case 46: + jl_StringBuilder_append($itemstack, $list1); if ($rt_suspending()) { break main; } - $ptr = 44; - case 44: + $ptr = 47; + case 47: $tmp = jl_StringBuilder_toString($hashmultimap); if ($rt_suspending()) { break main; } $itemstack = $tmp; - $ptr = 45; - case 45: + $ptr = 48; + case 48: ju_ArrayList_add($list, $itemstack); if ($rt_suspending()) { break main; } - $ptr = 18; + $ptr = 20; continue main; - case 46: + case 49: $tmp = nmp_Potion_getDurationString($potioneffect); if ($rt_suspending()) { break main; @@ -392236,40 +393344,40 @@ $s = $tmp; $itemstack = new jl_StringBuilder; jl_AbstractStringBuilder__init_($itemstack); - $ptr = 47; - case 47: + $ptr = 50; + case 50: jl_AbstractStringBuilder_append($itemstack, $s1); if ($rt_suspending()) { break main; } $var2 = $rt_s(209); - $ptr = 48; - case 48: + $ptr = 51; + case 51: jl_AbstractStringBuilder_append($itemstack, $var2); if ($rt_suspending()) { break main; } - $ptr = 49; - case 49: + $ptr = 52; + case 52: jl_AbstractStringBuilder_append($itemstack, $s); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append0($itemstack, var$10); - $ptr = 50; - case 50: + $ptr = 53; + case 53: $tmp = jl_AbstractStringBuilder_toString($itemstack); if ($rt_suspending()) { break main; } $s1 = $tmp; if (!$potion.$isBadEffect) { - $ptr = 69; + $ptr = 73; continue main; } - $ptr = 74; + $ptr = 79; continue main; - case 51: + case 54: $tmp = ju_HashMap$EntryIterator_next($var2); if ($rt_suspending()) { break main; @@ -392279,29 +393387,29 @@ $attributemodifier1 = new nmeaa_AttributeModifier; $itemstack = $attributemodifier.$name14; var$15 = $potioneffect.$amplifier; - $ptr = 52; - case 52: + $ptr = 55; + case 55: $tmp = $potion.$getAttributeModifierAmount(var$15, $attributemodifier); if ($rt_suspending()) { break main; } $d1 = $tmp; var$15 = $attributemodifier.$operation; - $ptr = 53; - case 53: + $ptr = 56; + case 56: nmeaa_AttributeModifier__init_0($attributemodifier1, $itemstack, $d1, var$15); if ($rt_suspending()) { break main; } $itemstack = $entry.$key.$unlocalizedName0; - $ptr = 54; - case 54: + $ptr = 57; + case 57: cgcc_AbstractMapBasedMultimap_put($hashmultimap, $itemstack, $attributemodifier1); if ($rt_suspending()) { break main; } if (ju_HashMap$AbstractMapIterator_hasNext($var2)) { - $ptr = 51; + $ptr = 54; continue main; } var$15 = $potioneffect.$amplifier; @@ -392309,54 +393417,64 @@ $itemstack = new jl_StringBuilder; jl_AbstractStringBuilder__init_($itemstack); $var2 = $rt_s(2404); - $ptr = 24; + $ptr = 26; continue main; } if ($potioneffect.$duration > 20) { - $ptr = 46; + $ptr = 49; continue main; } if (!$potion.$isBadEffect) { - $ptr = 69; + $ptr = 73; continue main; } - $ptr = 74; + $ptr = 79; continue main; - case 55: + case 58: + $tmp = jl_String_valueOf($itemstack); + if ($rt_suspending()) { + break main; + } + $list1 = $tmp; + $var4 = nmeaa_AttributeModifier_getOperation($attributemodifier2); + $itemstack = jl_StringBuilder__init_(); + $hashmultimap = $rt_s(2407); + $ptr = 59; + case 59: $tmp = jl_StringBuilder_append($itemstack, $hashmultimap); if ($rt_suspending()) { break main; } $hashmultimap = $tmp; jl_StringBuilder_append1($hashmultimap, $var4); - $ptr = 56; - case 56: + $ptr = 60; + case 60: $tmp = jl_StringBuilder_toString($itemstack); if ($rt_suspending()) { break main; } $hashmultimap = $tmp; - var$21 = $rt_createArray(jl_Object, 2); - var$22 = var$21.data; + var$20 = $rt_createArray(jl_Object, 2); + var$21 = var$20.data; $var4 = 0; - $ptr = 57; - case 57: + $ptr = 61; + case 61: nmi_ItemStack_$callClinit(); if ($rt_suspending()) { break main; } $itemstack = nmi_ItemStack_DECIMALFORMAT; - $ptr = 58; - case 58: + $ptr = 62; + case 62: $tmp = jt_NumberFormat_format($itemstack, $d1); if ($rt_suspending()) { break main; } $itemstack = $tmp; - var$22[$var4] = $itemstack; + var$21[$var4] = $itemstack; $var4 = 1; - $ptr = 59; - case 59: + $ptr = 63; + case 63: $tmp = $entry1.$getKey(); if ($rt_suspending()) { break main; @@ -392364,120 +393482,84 @@ $itemstack = $tmp; $itemstack = $itemstack; $s = jl_StringBuilder__init_(); - $attributemodifier1 = $rt_s(2407); - $ptr = 60; - case 60: - $tmp = jl_StringBuilder_append($s, $attributemodifier1); + $map = $rt_s(2406); + $ptr = 64; + case 64: + $tmp = jl_StringBuilder_append($s, $map); if ($rt_suspending()) { break main; } - $attributemodifier1 = $tmp; - $ptr = 61; - case 61: - jl_StringBuilder_append($attributemodifier1, $itemstack); + $map = $tmp; + $ptr = 65; + case 65: + jl_StringBuilder_append($map, $itemstack); if ($rt_suspending()) { break main; } - $ptr = 62; - case 62: + $ptr = 66; + case 66: $tmp = jl_StringBuilder_toString($s); if ($rt_suspending()) { break main; } $itemstack = $tmp; - $ptr = 63; - case 63: + $ptr = 67; + case 67: $tmp = nmu_StatCollector_translateToLocal($itemstack); if ($rt_suspending()) { break main; } $itemstack = $tmp; - var$22[$var4] = $itemstack; - $ptr = 64; - case 64: - $tmp = nmu_StatCollector_translateToLocalFormatted($hashmultimap, var$21); + var$21[$var4] = $itemstack; + $ptr = 68; + case 68: + $tmp = nmu_StatCollector_translateToLocalFormatted($hashmultimap, var$20); if ($rt_suspending()) { break main; } $itemstack = $tmp; $hashmultimap = jl_StringBuilder__init_(); - $ptr = 65; - case 65: + $ptr = 69; + case 69: $tmp = jl_StringBuilder_append($hashmultimap, $list1); if ($rt_suspending()) { break main; } $list1 = $tmp; - $ptr = 66; - case 66: - jl_StringBuilder_append($list1, $itemstack); - if ($rt_suspending()) { - break main; - } - $ptr = 67; - case 67: - $tmp = jl_StringBuilder_toString($hashmultimap); - if ($rt_suspending()) { - break main; - } - $itemstack = $tmp; - $ptr = 68; - case 68: - ju_ArrayList_add($list, $itemstack); - if ($rt_suspending()) { - break main; - } - $ptr = 18; - continue main; - case 69: - nmu_EnumChatFormatting_$callClinit(); - if ($rt_suspending()) { - break main; - } - $var2 = nmu_EnumChatFormatting_GRAY; - $itemstack = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itemstack); $ptr = 70; case 70: - jl_AbstractStringBuilder_append($itemstack, $var2); + jl_StringBuilder_append($list1, $itemstack); if ($rt_suspending()) { break main; } $ptr = 71; case 71: - jl_AbstractStringBuilder_append($itemstack, $s1); - if ($rt_suspending()) { - break main; - } - $ptr = 72; - case 72: - $tmp = jl_AbstractStringBuilder_toString($itemstack); + $tmp = jl_StringBuilder_toString($hashmultimap); if ($rt_suspending()) { break main; } $itemstack = $tmp; - $ptr = 73; - case 73: + $ptr = 72; + case 72: ju_ArrayList_add($list, $itemstack); if ($rt_suspending()) { break main; } - $i = $i + 1 | 0; - if ($i < $l) { - $ptr = 19; - continue main; - } - if (cgcc_AbstractMultimap_isEmpty($hashmultimap)) - return; - $itemstack = $rt_s(14); - $ptr = 10; + $ptr = 20; continue main; - case 74: + case 73: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } - $var2 = nmu_EnumChatFormatting_RED; + $itemstack = nmu_EnumChatFormatting_GRAY; + $ptr = 74; + case 74: + $tmp = jl_String_valueOf($itemstack); + if ($rt_suspending()) { + break main; + } + $var2 = $tmp; $itemstack = new jl_StringBuilder; jl_AbstractStringBuilder__init_($itemstack); $ptr = 75; @@ -392507,17 +393589,67 @@ } $i = $i + 1 | 0; if ($i < $l) { - $ptr = 19; + $ptr = 21; continue main; } if (cgcc_AbstractMultimap_isEmpty($hashmultimap)) return; $itemstack = $rt_s(14); - $ptr = 10; + $ptr = 11; + continue main; + case 79: + nmu_EnumChatFormatting_$callClinit(); + if ($rt_suspending()) { + break main; + } + $itemstack = nmu_EnumChatFormatting_RED; + $ptr = 80; + case 80: + $tmp = jl_String_valueOf($itemstack); + if ($rt_suspending()) { + break main; + } + $var2 = $tmp; + $itemstack = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($itemstack); + $ptr = 81; + case 81: + jl_AbstractStringBuilder_append($itemstack, $var2); + if ($rt_suspending()) { + break main; + } + $ptr = 82; + case 82: + jl_AbstractStringBuilder_append($itemstack, $s1); + if ($rt_suspending()) { + break main; + } + $ptr = 83; + case 83: + $tmp = jl_AbstractStringBuilder_toString($itemstack); + if ($rt_suspending()) { + break main; + } + $itemstack = $tmp; + $ptr = 84; + case 84: + ju_ArrayList_add($list, $itemstack); + if ($rt_suspending()) { + break main; + } + $i = $i + 1 | 0; + if ($i < $l) { + $ptr = 21; + continue main; + } + if (cgcc_AbstractMultimap_isEmpty($hashmultimap)) + return; + $itemstack = $rt_s(14); + $ptr = 11; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $itemstack, $var2, $list, $var4, $list1, $hashmultimap, $s, $i, $l, var$10, $potioneffect, $s1, $potion, $map, var$15, $entry1, $attributemodifier2, $d0, $d1, $attributemodifier1, var$21, var$22, $entry, $attributemodifier, $ptr); + $rt_nativeThread().push($this, $itemstack, $var2, $list, $var4, $list1, $hashmultimap, $s, $i, $l, var$10, $potioneffect, $s1, $potion, $map, var$15, $entry1, $attributemodifier2, $d0, $d1, var$20, var$21, $entry, $attributemodifier, $attributemodifier1, $ptr); } function nmi_ItemPotion_hasEffect($this, $stack) { var $list, var$3, $ptr, $tmp; @@ -394590,17 +395722,24 @@ $ptr = 4; continue main; } - $ptr = 13; + $ptr = 14; continue main; case 4: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } - $var2 = nmu_EnumChatFormatting_GRAY; - $itemstack = $rt_s(2413); + $itemstack = nmu_EnumChatFormatting_GRAY; $ptr = 5; case 5: + $tmp = jl_String_valueOf($itemstack); + if ($rt_suspending()) { + break main; + } + $var2 = $tmp; + $itemstack = $rt_s(2413); + $ptr = 6; + case 6: $tmp = nmn_NBTTagCompound_getInteger($nbttagcompound, $itemstack); if ($rt_suspending()) { break main; @@ -394609,22 +395748,22 @@ $itemstack = new jl_StringBuilder; jl_AbstractStringBuilder__init_($itemstack); $s = $rt_s(2414); - $ptr = 6; - case 6: + $ptr = 7; + case 7: jl_AbstractStringBuilder_append($itemstack, $s); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append1($itemstack, $var4); - $ptr = 7; - case 7: + $ptr = 8; + case 8: $tmp = jl_AbstractStringBuilder_toString($itemstack); if ($rt_suspending()) { break main; } $itemstack = $tmp; - $ptr = 8; - case 8: + $ptr = 9; + case 9: $tmp = nmu_StatCollector_translateToLocal($itemstack); if ($rt_suspending()) { break main; @@ -394632,43 +395771,50 @@ $itemstack = $tmp; $s = new jl_StringBuilder; jl_AbstractStringBuilder__init_($s); - $ptr = 9; - case 9: - jl_AbstractStringBuilder_append($s, $var2); - if ($rt_suspending()) { - break main; - } $ptr = 10; case 10: - jl_AbstractStringBuilder_append($s, $itemstack); + jl_AbstractStringBuilder_append($s, $var2); if ($rt_suspending()) { break main; } $ptr = 11; case 11: + jl_AbstractStringBuilder_append($s, $itemstack); + if ($rt_suspending()) { + break main; + } + $ptr = 12; + case 12: $tmp = jl_AbstractStringBuilder_toString($s); if ($rt_suspending()) { break main; } $itemstack = $tmp; - $ptr = 12; - case 12: + $ptr = 13; + case 13: ju_ArrayList_add($list, $itemstack); if ($rt_suspending()) { break main; } return; - case 13: + case 14: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } $itemstack = nmu_EnumChatFormatting_GRAY; + $ptr = 15; + case 15: + $tmp = jl_String_valueOf($itemstack); + if ($rt_suspending()) { + break main; + } + $itemstack = $tmp; $var2 = $rt_s(2415); var$7 = $rt_createArray(jl_Object, 1); var$7.data[0] = $s; - $ptr = 14; - case 14: + $ptr = 16; + case 16: $tmp = nmu_StatCollector_translateToLocalFormatted($var2, var$7); if ($rt_suspending()) { break main; @@ -394676,27 +395822,27 @@ $var2 = $tmp; $s = new jl_StringBuilder; jl_AbstractStringBuilder__init_($s); - $ptr = 15; - case 15: + $ptr = 17; + case 17: jl_AbstractStringBuilder_append($s, $itemstack); if ($rt_suspending()) { break main; } - $ptr = 16; - case 16: + $ptr = 18; + case 18: jl_AbstractStringBuilder_append($s, $var2); if ($rt_suspending()) { break main; } - $ptr = 17; - case 17: + $ptr = 19; + case 19: $tmp = jl_AbstractStringBuilder_toString($s); if ($rt_suspending()) { break main; } $itemstack = $tmp; - $ptr = 18; - case 18: + $ptr = 20; + case 20: ju_ArrayList_add($list, $itemstack); if ($rt_suspending()) { break main; @@ -402118,7 +403264,7 @@ $ptr = 3; continue main; } - $ptr = 7; + $ptr = 8; continue main; case 3: nmu_EnumChatFormatting_$callClinit(); @@ -402126,69 +403272,83 @@ break main; } $s1 = nmu_EnumChatFormatting_ITALIC; - $nbttaglist3 = jl_StringBuilder__init_(); $ptr = 4; case 4: + $tmp = jl_String_valueOf($s1); + if ($rt_suspending()) { + break main; + } + $s1 = $tmp; + $nbttaglist3 = jl_StringBuilder__init_(); + $ptr = 5; + case 5: $tmp = jl_StringBuilder_append($nbttaglist3, $s1); if ($rt_suspending()) { break main; } $s1 = $tmp; - $ptr = 5; - case 5: + $ptr = 6; + case 6: jl_StringBuilder_append($s1, $s); if ($rt_suspending()) { break main; } - $ptr = 6; - case 6: + $ptr = 7; + case 7: $tmp = jl_StringBuilder_toString($nbttaglist3); if ($rt_suspending()) { break main; } $s = $tmp; - $ptr = 7; - case 7: + $ptr = 8; + case 8: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } $s1 = nmu_EnumChatFormatting_RESET; + $ptr = 9; + case 9: + $tmp = jl_String_valueOf($s1); + if ($rt_suspending()) { + break main; + } + $s1 = $tmp; $nbttaglist3 = jl_StringBuilder__init_(); - $ptr = 8; - case 8: + $ptr = 10; + case 10: $tmp = jl_StringBuilder_append($nbttaglist3, $s); if ($rt_suspending()) { break main; } $s = $tmp; - $ptr = 9; - case 9: + $ptr = 11; + case 11: jl_StringBuilder_append($s, $s1); if ($rt_suspending()) { break main; } - $ptr = 10; - case 10: + $ptr = 12; + case 12: $tmp = jl_StringBuilder_toString($nbttaglist3); if ($rt_suspending()) { break main; } $s = $tmp; if (!$advanced) { - $ptr = 11; + $ptr = 13; continue main; } $s1 = $rt_s(14); if (jl_String_length($s) > 0) { $s1 = jl_StringBuilder__init_(); - $ptr = 12; + $ptr = 14; continue main; } $nbttaglist3 = $this.$item; - $ptr = 20; + $ptr = 22; continue main; - case 11: + case 13: $tmp = nmi_ItemStack_hasDisplayName($this); if ($rt_suspending()) { break main; @@ -402197,26 +403357,26 @@ if (!$j1 && $this.$item === nmi_Items_filled_map) { $j1 = $this.$itemDamage; $s1 = jl_StringBuilder__init_(); - $ptr = 17; + $ptr = 19; continue main; } - $ptr = 15; + $ptr = 17; continue main; - case 12: + case 14: $tmp = jl_StringBuilder_append($s1, $s); if ($rt_suspending()) { break main; } $s = $tmp; $nbttaglist3 = $rt_s(209); - $ptr = 13; - case 13: + $ptr = 15; + case 15: jl_StringBuilder_append($s, $nbttaglist3); if ($rt_suspending()) { break main; } - $ptr = 14; - case 14: + $ptr = 16; + case 16: $tmp = jl_StringBuilder_toString($s1); if ($rt_suspending()) { break main; @@ -402224,16 +403384,16 @@ $s = $tmp; $s1 = $rt_s(2460); $nbttaglist3 = $this.$item; - $ptr = 20; + $ptr = 22; continue main; - case 15: + case 17: ju_ArrayList_add($arraylist, $s); if ($rt_suspending()) { break main; } $k = 0; - $ptr = 16; - case 16: + $ptr = 18; + case 18: $tmp = nmi_ItemStack_hasTagCompound($this); if ($rt_suspending()) { break main; @@ -402243,48 +403403,48 @@ $s1 = $this.$stackTagCompound; $s = $rt_s(2461); $j1 = 99; - $ptr = 22; + $ptr = 24; continue main; } if ($k & 32) { - $ptr = 32; + $ptr = 34; continue main; } $s1 = $this.$item; - $ptr = 33; + $ptr = 35; continue main; - case 17: + case 19: $tmp = jl_StringBuilder_append($s1, $s); if ($rt_suspending()) { break main; } $s = $tmp; $nbttaglist3 = $rt_s(2462); - $ptr = 18; - case 18: + $ptr = 20; + case 20: $tmp = jl_StringBuilder_append($s, $nbttaglist3); if ($rt_suspending()) { break main; } $s = $tmp; jl_StringBuilder_append1($s, $j1); - $ptr = 19; - case 19: + $ptr = 21; + case 21: $tmp = jl_StringBuilder_toString($s1); if ($rt_suspending()) { break main; } $s = $tmp; - $ptr = 15; + $ptr = 17; continue main; - case 20: + case 22: $tmp = nmi_Item_getIdFromItem($nbttaglist3); if ($rt_suspending()) { break main; } $i = $tmp; - $ptr = 21; - case 21: + $ptr = 23; + case 23: $tmp = nmi_ItemStack_getHasSubtypes($this); if ($rt_suspending()) { break main; @@ -402293,14 +403453,14 @@ if (!$j1) { $nbttaglist3 = $rt_s(2463); var$10 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i), $s1]); - $ptr = 23; + $ptr = 25; continue main; } $nbttaglist3 = $rt_s(2464); var$10 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i), jl_Integer_valueOf0($this.$itemDamage), $s1]); - $ptr = 27; + $ptr = 29; continue main; - case 22: + case 24: $tmp = nmn_NBTTagCompound_hasKey0($s1, $s, $j1); if ($rt_suspending()) { break main; @@ -402309,114 +403469,114 @@ if ($j1) { $s1 = $this.$stackTagCompound; $s = $rt_s(2461); - $ptr = 31; + $ptr = 33; continue main; } if ($k & 32) { - $ptr = 32; + $ptr = 34; continue main; } $s1 = $this.$item; - $ptr = 33; + $ptr = 35; continue main; - case 23: + case 25: $tmp = nlev_HString_format($nbttaglist3, var$10); if ($rt_suspending()) { break main; } $s1 = $tmp; $nbttaglist3 = jl_StringBuilder__init_(); - $ptr = 24; - case 24: - $tmp = jl_StringBuilder_append($nbttaglist3, $s); - if ($rt_suspending()) { - break main; - } - $s = $tmp; - $ptr = 25; - case 25: - jl_StringBuilder_append($s, $s1); - if ($rt_suspending()) { - break main; - } $ptr = 26; case 26: + $tmp = jl_StringBuilder_append($nbttaglist3, $s); + if ($rt_suspending()) { + break main; + } + $s = $tmp; + $ptr = 27; + case 27: + jl_StringBuilder_append($s, $s1); + if ($rt_suspending()) { + break main; + } + $ptr = 28; + case 28: $tmp = jl_StringBuilder_toString($nbttaglist3); if ($rt_suspending()) { break main; } $s = $tmp; - $ptr = 15; + $ptr = 17; continue main; - case 27: + case 29: $tmp = nlev_HString_format($nbttaglist3, var$10); if ($rt_suspending()) { break main; } $s1 = $tmp; $nbttaglist3 = jl_StringBuilder__init_(); - $ptr = 28; - case 28: + $ptr = 30; + case 30: $tmp = jl_StringBuilder_append($nbttaglist3, $s); if ($rt_suspending()) { break main; } $s = $tmp; - $ptr = 29; - case 29: + $ptr = 31; + case 31: jl_StringBuilder_append($s, $s1); if ($rt_suspending()) { break main; } - $ptr = 30; - case 30: + $ptr = 32; + case 32: $tmp = jl_StringBuilder_toString($nbttaglist3); if ($rt_suspending()) { break main; } $s = $tmp; - $ptr = 15; + $ptr = 17; continue main; - case 31: + case 33: $tmp = nmn_NBTTagCompound_getInteger($s1, $s); if ($rt_suspending()) { break main; } $k = $tmp; if ($k & 32) { - $ptr = 32; + $ptr = 34; continue main; } $s1 = $this.$item; - $ptr = 33; + $ptr = 35; continue main; - case 32: + case 34: $tmp = nmi_ItemStack_hasTagCompound($this); if ($rt_suspending()) { break main; } $j1 = $tmp; if (!$j1) { - $ptr = 34; + $ptr = 36; continue main; } if (!($k & 1)) { - $ptr = 37; + $ptr = 39; continue main; } $playerIn = $this.$stackTagCompound; $s1 = $rt_s(466); $j1 = 10; - $ptr = 36; + $ptr = 38; continue main; - case 33: + case 35: $s1.$addInformation($this, $playerIn, $arraylist, $advanced); if ($rt_suspending()) { break main; } - $ptr = 32; + $ptr = 34; continue main; - case 34: + case 36: $tmp = nmi_ItemStack_getAttributeModifiers($this); if ($rt_suspending()) { break main; @@ -402424,37 +403584,37 @@ $multimap = $tmp; if (!cgcc_HashMultimap_isEmpty($multimap) && !($k & 2)) { $playerIn = $rt_s(14); - $ptr = 41; + $ptr = 43; continue main; } - $ptr = 35; - case 35: + $ptr = 37; + case 37: $tmp = nmi_ItemStack_hasTagCompound($this); if ($rt_suspending()) { break main; } $j1 = $tmp; if (!$j1) { - $ptr = 38; + $ptr = 40; continue main; } - $ptr = 39; + $ptr = 41; continue main; - case 36: + case 38: $tmp = nmn_NBTTagCompound_hasKey0($playerIn, $s1, $j1); if ($rt_suspending()) { break main; } $j1 = $tmp; if (!$j1) { - $ptr = 34; + $ptr = 36; continue main; } $playerIn = $this.$stackTagCompound; $s1 = $rt_s(466); - $ptr = 43; + $ptr = 45; continue main; - case 37: + case 39: $tmp = nmi_ItemStack_getEnchantmentTagList($this); if ($rt_suspending()) { break main; @@ -402464,36 +403624,36 @@ $playerIn = $this.$stackTagCompound; $s1 = $rt_s(466); $j1 = 10; - $ptr = 36; + $ptr = 38; continue main; } $j = 0; - $ptr = 49; + $ptr = 51; continue main; - case 38: + case 40: $tmp = nmi_ItemStack_hasTagCompound($this); if ($rt_suspending()) { break main; } $j1 = $tmp; if (!$j1) { - $ptr = 45; + $ptr = 47; continue main; } $playerIn = $this.$stackTagCompound; $s1 = $rt_s(2465); $j1 = 9; - $ptr = 46; + $ptr = 48; continue main; - case 39: + case 41: $tmp = nmi_ItemStack_getTagCompound($this); if ($rt_suspending()) { break main; } $playerIn = $tmp; $s1 = $rt_s(2458); - $ptr = 40; - case 40: + $ptr = 42; + case 42: $tmp = nmn_NBTTagCompound_getBoolean($playerIn, $s1); if ($rt_suspending()) { break main; @@ -402501,28 +403661,27 @@ $j1 = $tmp; if ($j1 && !($k & 4)) { $playerIn = nmu_EnumChatFormatting_BLUE; - $s1 = $rt_s(2466); - $ptr = 51; + $ptr = 53; continue main; } - $ptr = 38; + $ptr = 40; continue main; - case 41: + case 43: ju_ArrayList_add($arraylist, $playerIn); if ($rt_suspending()) { break main; } $playerIn = cgcc_AbstractSetMultimap_entries($multimap); - $ptr = 42; - case 42: + $ptr = 44; + case 44: $tmp = cgcc_AbstractMultimap$Entries_iterator($playerIn); if ($rt_suspending()) { break main; } $s1 = $tmp; - $ptr = 47; + $ptr = 49; continue main; - case 43: + case 45: $tmp = nmn_NBTTagCompound_getCompoundTag($playerIn, $s1); if ($rt_suspending()) { break main; @@ -402530,8 +403689,8 @@ $nbttagcompound = $tmp; $playerIn = $rt_s(2192); $j1 = 3; - $ptr = 44; - case 44: + $ptr = 46; + case 46: $tmp = nmn_NBTTagCompound_hasKey0($nbttagcompound, $playerIn, $j1); if ($rt_suspending()) { break main; @@ -402539,19 +403698,18 @@ $j1 = $tmp; if (!$j1) { $playerIn = $rt_s(525); - $ptr = 48; + $ptr = 50; continue main; } - if ($advanced) { - $playerIn = $rt_s(2192); - $ptr = 65; + if (!$advanced) { + $playerIn = nmu_EnumChatFormatting_ITALIC; + $ptr = 63; continue main; } - $playerIn = nmu_EnumChatFormatting_ITALIC; - $s1 = $rt_s(2467); - $ptr = 60; + $playerIn = $rt_s(2192); + $ptr = 69; continue main; - case 45: + case 47: $tmp = nmi_ItemStack_hasTagCompound($this); if ($rt_suspending()) { break main; @@ -402560,15 +403718,15 @@ if (!$j1) { if (!$advanced) return $arraylist; - $ptr = 75; + $ptr = 79; continue main; } $playerIn = $this.$stackTagCompound; - $s1 = $rt_s(2468); + $s1 = $rt_s(2466); $j1 = 9; - $ptr = 50; + $ptr = 52; continue main; - case 46: + case 48: $tmp = nmn_NBTTagCompound_hasKey0($playerIn, $s1, $j1); if ($rt_suspending()) { break main; @@ -402578,53 +403736,53 @@ $playerIn = $this.$stackTagCompound; $s1 = $rt_s(2465); $j1 = 8; - $ptr = 76; + $ptr = 80; continue main; } - $ptr = 45; + $ptr = 47; continue main; - case 47: + case 49: $tmp = cgcc_AbstractMapBasedMultimap$Itr_hasNext($s1); if ($rt_suspending()) { break main; } $j1 = $tmp; if (!$j1) { - $ptr = 35; + $ptr = 37; continue main; } - $ptr = 56; + $ptr = 59; continue main; - case 48: + case 50: $tmp = nmn_NBTTagCompound_getTagId($nbttagcompound, $playerIn); if ($rt_suspending()) { break main; } $j1 = $tmp; if ($j1 != 9) { - $ptr = 34; + $ptr = 36; continue main; } $playerIn = $rt_s(525); $j1 = 8; - $ptr = 58; + $ptr = 61; continue main; - case 49: + case 51: $tmp = nmn_NBTTagList_tagCount($nbttaglist); if ($rt_suspending()) { break main; } $j1 = $tmp; if ($j < $j1) { - $ptr = 70; + $ptr = 74; continue main; } $playerIn = $this.$stackTagCompound; $s1 = $rt_s(466); $j1 = 10; - $ptr = 36; + $ptr = 38; continue main; - case 50: + case 52: $tmp = nmn_NBTTagCompound_hasKey0($playerIn, $s1, $j1); if ($rt_suspending()) { break main; @@ -402632,51 +403790,59 @@ $j1 = $tmp; if ($j1 && !($k & 16)) { $playerIn = $this.$stackTagCompound; - $s1 = $rt_s(2468); + $s1 = $rt_s(2466); $j1 = 8; - $ptr = 97; + $ptr = 102; continue main; } if (!$advanced) return $arraylist; - $ptr = 75; + $ptr = 79; continue main; - case 51: + case 53: + $tmp = jl_String_valueOf($playerIn); + if ($rt_suspending()) { + break main; + } + $playerIn = $tmp; + $s1 = $rt_s(2467); + $ptr = 54; + case 54: $tmp = nmu_StatCollector_translateToLocal($s1); if ($rt_suspending()) { break main; } $s1 = $tmp; $s = jl_StringBuilder__init_(); - $ptr = 52; - case 52: + $ptr = 55; + case 55: $tmp = jl_StringBuilder_append($s, $playerIn); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 53; - case 53: + $ptr = 56; + case 56: jl_StringBuilder_append($playerIn, $s1); if ($rt_suspending()) { break main; } - $ptr = 54; - case 54: + $ptr = 57; + case 57: $tmp = jl_StringBuilder_toString($s); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 55; - case 55: + $ptr = 58; + case 58: ju_ArrayList_add($arraylist, $playerIn); if ($rt_suspending()) { break main; } - $ptr = 38; + $ptr = 40; continue main; - case 56: + case 59: $tmp = cgcc_AbstractMapBasedMultimap$Itr_next($s1); if ($rt_suspending()) { break main; @@ -402686,8 +403852,8 @@ $attributemodifier = $entry.$getValue(); $d0 = nmeaa_AttributeModifier_getAmount($attributemodifier); $playerIn = nmeaa_AttributeModifier_getID($attributemodifier); - $ptr = 57; - case 57: + $ptr = 60; + case 60: nmi_Item_$callClinit(); if ($rt_suspending()) { break main; @@ -402695,87 +403861,89 @@ if ($playerIn === nmi_Item_itemModifierUUID) { nme_EnumCreatureAttribute_$callClinit(); $playerIn = nme_EnumCreatureAttribute_UNDEFINED; - $ptr = 78; + $ptr = 82; continue main; } $d1 = nmeaa_AttributeModifier_getOperation($attributemodifier) != 1 && nmeaa_AttributeModifier_getOperation($attributemodifier) != 2 ? $d0 : $d0 * 100.0; $j1 = $rt_compare($d0, 0.0); if ($j1 > 0) { $playerIn = nmu_EnumChatFormatting_BLUE; - $j1 = nmeaa_AttributeModifier_getOperation($attributemodifier); - $s = jl_StringBuilder__init_(); - $nbttaglist3 = $rt_s(2405); - $ptr = 140; + $ptr = 152; continue main; } if ($j1 >= 0) { - $ptr = 47; + $ptr = 49; continue main; } $d0 = $d1 * (-1.0); - $s = nmu_EnumChatFormatting_RED; - $j1 = nmeaa_AttributeModifier_getOperation($attributemodifier); - $playerIn = jl_StringBuilder__init_(); - $nbttaglist3 = $rt_s(2406); - $ptr = 162; + $playerIn = nmu_EnumChatFormatting_RED; + $ptr = 177; continue main; - case 58: + case 61: $tmp = nmn_NBTTagCompound_getTagList($nbttagcompound, $playerIn, $j1); if ($rt_suspending()) { break main; } $nbttaglist1 = $tmp; - $ptr = 59; - case 59: + $ptr = 62; + case 62: $tmp = nmn_NBTTagList_tagCount($nbttaglist1); if ($rt_suspending()) { break main; } $j1 = $tmp; if ($j1 <= 0) { - $ptr = 34; + $ptr = 36; continue main; } $l = 0; - $ptr = 105; + $ptr = 111; continue main; - case 60: + case 63: + $tmp = jl_String_valueOf($playerIn); + if ($rt_suspending()) { + break main; + } + $playerIn = $tmp; + $s1 = $rt_s(2468); + $ptr = 64; + case 64: $tmp = nmu_StatCollector_translateToLocal($s1); if ($rt_suspending()) { break main; } $s1 = $tmp; $s = jl_StringBuilder__init_(); - $ptr = 61; - case 61: + $ptr = 65; + case 65: $tmp = jl_StringBuilder_append($s, $playerIn); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 62; - case 62: + $ptr = 66; + case 66: jl_StringBuilder_append($playerIn, $s1); if ($rt_suspending()) { break main; } - $ptr = 63; - case 63: + $ptr = 67; + case 67: $tmp = jl_StringBuilder_toString($s); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 64; - case 64: + $ptr = 68; + case 68: ju_ArrayList_add($arraylist, $playerIn); if ($rt_suspending()) { break main; } $playerIn = $rt_s(525); - $ptr = 48; + $ptr = 50; continue main; - case 65: + case 69: $tmp = nmn_NBTTagCompound_getInteger($nbttagcompound, $playerIn); if ($rt_suspending()) { break main; @@ -402784,112 +403952,112 @@ $playerIn = jl_String_toUpperCase(jl_Integer_toHexString($j1)); $s1 = jl_StringBuilder__init_(); $s = $rt_s(2469); - $ptr = 66; - case 66: + $ptr = 70; + case 70: $tmp = jl_StringBuilder_append($s1, $s); if ($rt_suspending()) { break main; } $s = $tmp; - $ptr = 67; - case 67: + $ptr = 71; + case 71: jl_StringBuilder_append($s, $playerIn); if ($rt_suspending()) { break main; } - $ptr = 68; - case 68: + $ptr = 72; + case 72: $tmp = jl_StringBuilder_toString($s1); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 69; - case 69: + $ptr = 73; + case 73: ju_ArrayList_add($arraylist, $playerIn); if ($rt_suspending()) { break main; } $playerIn = $rt_s(525); - $ptr = 48; + $ptr = 50; continue main; - case 70: + case 74: $tmp = nmn_NBTTagList_getCompoundTagAt($nbttaglist, $j); if ($rt_suspending()) { break main; } $playerIn = $tmp; $s1 = $rt_s(1010); - $ptr = 71; - case 71: + $ptr = 75; + case 75: $tmp = nmn_NBTTagCompound_getShort($playerIn, $s1); if ($rt_suspending()) { break main; } $short1 = $tmp; - $ptr = 72; - case 72: + $ptr = 76; + case 76: $tmp = nmn_NBTTagList_getCompoundTagAt($nbttaglist, $j); if ($rt_suspending()) { break main; } $playerIn = $tmp; $s1 = $rt_s(2442); - $ptr = 73; - case 73: + $ptr = 77; + case 77: $tmp = nmn_NBTTagCompound_getShort($playerIn, $s1); if ($rt_suspending()) { break main; } $short2 = $tmp; - $ptr = 74; - case 74: + $ptr = 78; + case 78: $tmp = nme_Enchantment_getEnchantmentById($short1); if ($rt_suspending()) { break main; } $playerIn = $tmp; if ($playerIn !== null) { - $ptr = 79; + $ptr = 83; continue main; } $j = $j + 1 | 0; - $ptr = 49; + $ptr = 51; continue main; - case 75: + case 79: $tmp = nmi_ItemStack_isItemDamaged($this); if ($rt_suspending()) { break main; } $advanced = $tmp; if ($advanced) { - $ptr = 90; + $ptr = 95; continue main; } $playerIn = nmu_EnumChatFormatting_DARK_GRAY; - $ptr = 82; + $ptr = 86; continue main; - case 76: + case 80: $tmp = nmn_NBTTagCompound_getTagList($playerIn, $s1, $j1); if ($rt_suspending()) { break main; } $nbttaglist2 = $tmp; - $ptr = 77; - case 77: + $ptr = 81; + case 81: $tmp = nmn_NBTTagList_tagCount($nbttaglist2); if ($rt_suspending()) { break main; } $j1 = $tmp; if ($j1 <= 0) { - $ptr = 45; + $ptr = 47; continue main; } $playerIn = $rt_s(14); - $ptr = 99; + $ptr = 104; continue main; - case 78: + case 82: $tmp = nme_EnchantmentHelper_func_152377_a($this, $playerIn); if ($rt_suspending()) { break main; @@ -402900,96 +404068,97 @@ $j1 = $rt_compare($d0, 0.0); if ($j1 > 0) { $playerIn = nmu_EnumChatFormatting_BLUE; - $j1 = nmeaa_AttributeModifier_getOperation($attributemodifier); - $s = jl_StringBuilder__init_(); - $nbttaglist3 = $rt_s(2405); - $ptr = 140; + $ptr = 152; continue main; } if ($j1 >= 0) { - $ptr = 47; + $ptr = 49; continue main; } $d0 = $d1 * (-1.0); - $s = nmu_EnumChatFormatting_RED; - $j1 = nmeaa_AttributeModifier_getOperation($attributemodifier); - $playerIn = jl_StringBuilder__init_(); - $nbttaglist3 = $rt_s(2406); - $ptr = 162; + $playerIn = nmu_EnumChatFormatting_RED; + $ptr = 177; continue main; - case 79: + case 83: $tmp = nme_Enchantment_getEnchantmentById($short1); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 80; - case 80: + $ptr = 84; + case 84: $tmp = nme_Enchantment_getTranslatedName($playerIn, $short2); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 81; - case 81: + $ptr = 85; + case 85: ju_ArrayList_add($arraylist, $playerIn); if ($rt_suspending()) { break main; } $j = $j + 1 | 0; - $ptr = 49; + $ptr = 51; continue main; - case 82: + case 86: + $tmp = jl_String_valueOf($playerIn); + if ($rt_suspending()) { + break main; + } + $playerIn = $tmp; + $ptr = 87; + case 87: nmi_Item_$callClinit(); if ($rt_suspending()) { break main; } $s1 = nmi_Item_itemRegistry; $s = $this.$item; - $ptr = 83; - case 83: + $ptr = 88; + case 88: $tmp = nmu_RegistryNamespaced_getNameForObject($s1, $s); if ($rt_suspending()) { break main; } $s1 = $tmp; $s1 = $s1; - $ptr = 84; - case 84: + $ptr = 89; + case 89: $tmp = $s1.$toString(); if ($rt_suspending()) { break main; } $s1 = $tmp; $s = jl_StringBuilder__init_(); - $ptr = 85; - case 85: + $ptr = 90; + case 90: $tmp = jl_StringBuilder_append($s, $playerIn); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 86; - case 86: + $ptr = 91; + case 91: jl_StringBuilder_append($playerIn, $s1); if ($rt_suspending()) { break main; } - $ptr = 87; - case 87: + $ptr = 92; + case 92: $tmp = jl_StringBuilder_toString($s); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 88; - case 88: + $ptr = 93; + case 93: ju_ArrayList_add($arraylist, $playerIn); if ($rt_suspending()) { break main; } - $ptr = 89; - case 89: + $ptr = 94; + case 94: $tmp = nmi_ItemStack_hasTagCompound($this); if ($rt_suspending()) { break main; @@ -402998,24 +404167,24 @@ if (!$advanced) return $arraylist; $playerIn = nmu_EnumChatFormatting_DARK_GRAY; - $ptr = 106; + $ptr = 112; continue main; - case 90: + case 95: $tmp = nmi_ItemStack_getMaxDamage($this); if ($rt_suspending()) { break main; } $advanced = $tmp; - $ptr = 91; - case 91: + $ptr = 96; + case 96: $tmp = nmi_ItemStack_getItemDamage($this); if ($rt_suspending()) { break main; } $j1 = $tmp; $advanced = $advanced - $j1 | 0; - $ptr = 92; - case 92: + $ptr = 97; + case 97: $tmp = nmi_ItemStack_getMaxDamage($this); if ($rt_suspending()) { break main; @@ -403023,8 +404192,8 @@ $j1 = $tmp; $playerIn = jl_StringBuilder__init_(); $s1 = $rt_s(2470); - $ptr = 93; - case 93: + $ptr = 98; + case 98: $tmp = jl_StringBuilder_append($playerIn, $s1); if ($rt_suspending()) { break main; @@ -403032,38 +404201,38 @@ $s1 = $tmp; $s1 = jl_StringBuilder_append1($s1, $advanced); $s = $rt_s(2471); - $ptr = 94; - case 94: + $ptr = 99; + case 99: $tmp = jl_StringBuilder_append($s1, $s); if ($rt_suspending()) { break main; } $s1 = $tmp; jl_StringBuilder_append1($s1, $j1); - $ptr = 95; - case 95: + $ptr = 100; + case 100: $tmp = jl_StringBuilder_toString($playerIn); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 96; - case 96: + $ptr = 101; + case 101: ju_ArrayList_add($arraylist, $playerIn); if ($rt_suspending()) { break main; } $playerIn = nmu_EnumChatFormatting_DARK_GRAY; - $ptr = 82; + $ptr = 86; continue main; - case 97: + case 102: $tmp = nmn_NBTTagCompound_getTagList($playerIn, $s1, $j1); if ($rt_suspending()) { break main; } $nbttaglist3 = $tmp; - $ptr = 98; - case 98: + $ptr = 103; + case 103: $tmp = nmn_NBTTagList_tagCount($nbttaglist3); if ($rt_suspending()) { break main; @@ -403071,96 +404240,109 @@ $j1 = $tmp; if ($j1 > 0) { $playerIn = $rt_s(14); - $ptr = 113; + $ptr = 120; continue main; } if (!$advanced) return $arraylist; - $ptr = 75; + $ptr = 79; continue main; - case 99: + case 104: ju_ArrayList_add($arraylist, $playerIn); if ($rt_suspending()) { break main; } $playerIn = nmu_EnumChatFormatting_GRAY; + $ptr = 105; + case 105: + $tmp = jl_String_valueOf($playerIn); + if ($rt_suspending()) { + break main; + } + $playerIn = $tmp; $s1 = $rt_s(2472); - $ptr = 100; - case 100: + $ptr = 106; + case 106: $tmp = nmu_StatCollector_translateToLocal($s1); if ($rt_suspending()) { break main; } $s1 = $tmp; $s = jl_StringBuilder__init_(); - $ptr = 101; - case 101: + $ptr = 107; + case 107: $tmp = jl_StringBuilder_append($s, $playerIn); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 102; - case 102: + $ptr = 108; + case 108: jl_StringBuilder_append($playerIn, $s1); if ($rt_suspending()) { break main; } - $ptr = 103; - case 103: + $ptr = 109; + case 109: $tmp = jl_StringBuilder_toString($s); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 104; - case 104: + $ptr = 110; + case 110: ju_ArrayList_add($arraylist, $playerIn); if ($rt_suspending()) { break main; } $i1 = 0; - $ptr = 119; + $ptr = 127; continue main; - case 105: + case 111: $tmp = nmn_NBTTagList_tagCount($nbttaglist1); if ($rt_suspending()) { break main; } $j1 = $tmp; if ($l >= $j1) { - $ptr = 34; + $ptr = 36; continue main; } - $s1 = nmu_EnumChatFormatting_DARK_PURPLE; - $playerIn = nmu_EnumChatFormatting_ITALIC; - $ptr = 120; + $playerIn = nmu_EnumChatFormatting_DARK_PURPLE; + $ptr = 128; continue main; - case 106: + case 112: + $tmp = jl_String_valueOf($playerIn); + if ($rt_suspending()) { + break main; + } + $playerIn = $tmp; + $ptr = 113; + case 113: $tmp = nmi_ItemStack_getTagCompound($this); if ($rt_suspending()) { break main; } $s1 = $tmp; $s1 = nmn_NBTTagCompound_getKeySet($s1); - $ptr = 107; - case 107: + $ptr = 114; + case 114: $tmp = $s1.$size0(); if ($rt_suspending()) { break main; } $advanced = $tmp; $s1 = jl_StringBuilder__init_(); - $ptr = 108; - case 108: + $ptr = 115; + case 115: $tmp = jl_StringBuilder_append($s1, $playerIn); if ($rt_suspending()) { break main; } $playerIn = $tmp; $s = $rt_s(2473); - $ptr = 109; - case 109: + $ptr = 116; + case 116: $tmp = jl_StringBuilder_append($playerIn, $s); if ($rt_suspending()) { break main; @@ -403168,257 +404350,302 @@ $playerIn = $tmp; $playerIn = jl_StringBuilder_append1($playerIn, $advanced); $s = $rt_s(2474); - $ptr = 110; - case 110: + $ptr = 117; + case 117: jl_StringBuilder_append($playerIn, $s); if ($rt_suspending()) { break main; } - $ptr = 111; - case 111: + $ptr = 118; + case 118: $tmp = jl_StringBuilder_toString($s1); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 112; - case 112: + $ptr = 119; + case 119: ju_ArrayList_add($arraylist, $playerIn); if ($rt_suspending()) { break main; } return $arraylist; - case 113: + case 120: ju_ArrayList_add($arraylist, $playerIn); if ($rt_suspending()) { break main; } $playerIn = nmu_EnumChatFormatting_GRAY; + $ptr = 121; + case 121: + $tmp = jl_String_valueOf($playerIn); + if ($rt_suspending()) { + break main; + } + $playerIn = $tmp; $s1 = $rt_s(2475); - $ptr = 114; - case 114: + $ptr = 122; + case 122: $tmp = nmu_StatCollector_translateToLocal($s1); if ($rt_suspending()) { break main; } $s1 = $tmp; $s = jl_StringBuilder__init_(); - $ptr = 115; - case 115: + $ptr = 123; + case 123: $tmp = jl_StringBuilder_append($s, $playerIn); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 116; - case 116: + $ptr = 124; + case 124: jl_StringBuilder_append($playerIn, $s1); if ($rt_suspending()) { break main; } - $ptr = 117; - case 117: + $ptr = 125; + case 125: $tmp = jl_StringBuilder_toString($s); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 118; - case 118: + $ptr = 126; + case 126: ju_ArrayList_add($arraylist, $playerIn); if ($rt_suspending()) { break main; } $j1 = 0; - $ptr = 126; + $ptr = 136; continue main; - case 119: + case 127: $tmp = nmn_NBTTagList_tagCount($nbttaglist2); if ($rt_suspending()) { break main; } $j1 = $tmp; if ($i1 >= $j1) { - $ptr = 45; + $ptr = 47; continue main; } - $ptr = 127; + $ptr = 137; continue main; - case 120: - $tmp = nmn_NBTTagList_getStringTagAt($nbttaglist1, $l); + case 128: + $tmp = jl_String_valueOf($playerIn); + if ($rt_suspending()) { + break main; + } + $s1 = $tmp; + $playerIn = nmu_EnumChatFormatting_ITALIC; + $ptr = 129; + case 129: + $tmp = jl_String_valueOf($playerIn); if ($rt_suspending()) { break main; } $s = $tmp; + $ptr = 130; + case 130: + $tmp = nmn_NBTTagList_getStringTagAt($nbttaglist1, $l); + if ($rt_suspending()) { + break main; + } + $playerIn = $tmp; $nbttaglist3 = jl_StringBuilder__init_(); - $ptr = 121; - case 121: + $ptr = 131; + case 131: $tmp = jl_StringBuilder_append($nbttaglist3, $s1); if ($rt_suspending()) { break main; } $s1 = $tmp; - $ptr = 122; - case 122: - $tmp = jl_StringBuilder_append($s1, $playerIn); + $ptr = 132; + case 132: + $tmp = jl_StringBuilder_append($s1, $s); if ($rt_suspending()) { break main; } - $playerIn = $tmp; - $ptr = 123; - case 123: - jl_StringBuilder_append($playerIn, $s); + $s1 = $tmp; + $ptr = 133; + case 133: + jl_StringBuilder_append($s1, $playerIn); if ($rt_suspending()) { break main; } - $ptr = 124; - case 124: + $ptr = 134; + case 134: $tmp = jl_StringBuilder_toString($nbttaglist3); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 125; - case 125: + $ptr = 135; + case 135: ju_ArrayList_add($arraylist, $playerIn); if ($rt_suspending()) { break main; } $l = $l + 1 | 0; - $ptr = 105; + $ptr = 111; continue main; - case 126: + case 136: $tmp = nmn_NBTTagList_tagCount($nbttaglist3); if ($rt_suspending()) { break main; } $i = $tmp; if ($j1 < $i) { - $ptr = 129; + $ptr = 139; continue main; } if (!$advanced) return $arraylist; - $ptr = 75; + $ptr = 79; continue main; - case 127: + case 137: $tmp = nmn_NBTTagList_getStringTagAt($nbttaglist2, $i1); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 128; - case 128: + $ptr = 138; + case 138: $tmp = nmb_Block_getBlockFromName($playerIn); if ($rt_suspending()) { break main; } $block = $tmp; - if ($block !== null) { + if ($block === null) { $playerIn = nmu_EnumChatFormatting_DARK_GRAY; - $ptr = 135; + $ptr = 141; continue main; } - $s1 = nmu_EnumChatFormatting_DARK_GRAY; - $playerIn = jl_StringBuilder__init_(); - $ptr = 131; + $playerIn = nmu_EnumChatFormatting_DARK_GRAY; + $ptr = 146; continue main; - case 129: + case 139: $tmp = nmn_NBTTagList_getStringTagAt($nbttaglist3, $j1); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 130; - case 130: + $ptr = 140; + case 140: $tmp = nmb_Block_getBlockFromName($playerIn); if ($rt_suspending()) { break main; } $block1 = $tmp; - if ($block1 !== null) { - $s1 = nmu_EnumChatFormatting_DARK_GRAY; - $ptr = 157; + if ($block1 === null) { + $playerIn = nmu_EnumChatFormatting_DARK_GRAY; + $ptr = 166; continue main; } - $s1 = nmu_EnumChatFormatting_DARK_GRAY; - $playerIn = jl_StringBuilder__init_(); - $ptr = 153; + $playerIn = nmu_EnumChatFormatting_DARK_GRAY; + $ptr = 171; continue main; - case 131: + case 141: + $tmp = jl_String_valueOf($playerIn); + if ($rt_suspending()) { + break main; + } + $s1 = $tmp; + $playerIn = jl_StringBuilder__init_(); + $ptr = 142; + case 142: $tmp = jl_StringBuilder_append($playerIn, $s1); if ($rt_suspending()) { break main; } $s1 = $tmp; $s = $rt_s(2476); - $ptr = 132; - case 132: + $ptr = 143; + case 143: jl_StringBuilder_append($s1, $s); if ($rt_suspending()) { break main; } - $ptr = 133; - case 133: + $ptr = 144; + case 144: $tmp = jl_StringBuilder_toString($playerIn); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 134; - case 134: + $ptr = 145; + case 145: ju_ArrayList_add($arraylist, $playerIn); if ($rt_suspending()) { break main; } $i1 = $i1 + 1 | 0; - $ptr = 119; + $ptr = 127; continue main; - case 135: + case 146: + $tmp = jl_String_valueOf($playerIn); + if ($rt_suspending()) { + break main; + } + $s = $tmp; + $ptr = 147; + case 147: $tmp = $block.$getLocalizedName(); if ($rt_suspending()) { break main; } - $s1 = $tmp; - $s = jl_StringBuilder__init_(); - $ptr = 136; - case 136: - $tmp = jl_StringBuilder_append($s, $playerIn); + $playerIn = $tmp; + $s1 = jl_StringBuilder__init_(); + $ptr = 148; + case 148: + $tmp = jl_StringBuilder_append($s1, $s); + if ($rt_suspending()) { + break main; + } + $s = $tmp; + $ptr = 149; + case 149: + jl_StringBuilder_append($s, $playerIn); + if ($rt_suspending()) { + break main; + } + $ptr = 150; + case 150: + $tmp = jl_StringBuilder_toString($s1); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 137; - case 137: - jl_StringBuilder_append($playerIn, $s1); - if ($rt_suspending()) { - break main; - } - $ptr = 138; - case 138: - $tmp = jl_StringBuilder_toString($s); - if ($rt_suspending()) { - break main; - } - $playerIn = $tmp; - $ptr = 139; - case 139: + $ptr = 151; + case 151: ju_ArrayList_add($arraylist, $playerIn); if ($rt_suspending()) { break main; } $i1 = $i1 + 1 | 0; - $ptr = 119; + $ptr = 127; continue main; - case 140: + case 152: + $tmp = jl_String_valueOf($playerIn); + if ($rt_suspending()) { + break main; + } + $playerIn = $tmp; + $j1 = nmeaa_AttributeModifier_getOperation($attributemodifier); + $s = jl_StringBuilder__init_(); + $nbttaglist3 = $rt_s(2405); + $ptr = 153; + case 153: $tmp = jl_StringBuilder_append($s, $nbttaglist3); if ($rt_suspending()) { break main; } $nbttaglist3 = $tmp; jl_StringBuilder_append1($nbttaglist3, $j1); - $ptr = 141; - case 141: + $ptr = 154; + case 154: $tmp = jl_StringBuilder_toString($s); if ($rt_suspending()) { break main; @@ -403428,8 +404655,8 @@ var$28 = var$10.data; $j1 = 0; $s = nmi_ItemStack_DECIMALFORMAT; - $ptr = 142; - case 142: + $ptr = 155; + case 155: $tmp = jt_NumberFormat_format($s, $d1); if ($rt_suspending()) { break main; @@ -403437,8 +404664,8 @@ $s = $tmp; var$28[$j1] = $s; $j1 = 1; - $ptr = 143; - case 143: + $ptr = 156; + case 156: $tmp = $entry.$getKey(); if ($rt_suspending()) { break main; @@ -403446,145 +404673,170 @@ $s = $tmp; $s = $s; $multimap = jl_StringBuilder__init_(); - $block1 = $rt_s(2407); - $ptr = 144; - case 144: + $block1 = $rt_s(2406); + $ptr = 157; + case 157: $tmp = jl_StringBuilder_append($multimap, $block1); if ($rt_suspending()) { break main; } $block1 = $tmp; - $ptr = 145; - case 145: + $ptr = 158; + case 158: jl_StringBuilder_append($block1, $s); if ($rt_suspending()) { break main; } - $ptr = 146; - case 146: + $ptr = 159; + case 159: $tmp = jl_StringBuilder_toString($multimap); if ($rt_suspending()) { break main; } $s = $tmp; - $ptr = 147; - case 147: + $ptr = 160; + case 160: $tmp = nmu_StatCollector_translateToLocal($s); if ($rt_suspending()) { break main; } $s = $tmp; var$28[$j1] = $s; - $ptr = 148; - case 148: + $ptr = 161; + case 161: $tmp = nmu_StatCollector_translateToLocalFormatted($nbttaglist3, var$10); if ($rt_suspending()) { break main; } $s = $tmp; $nbttaglist3 = jl_StringBuilder__init_(); - $ptr = 149; - case 149: + $ptr = 162; + case 162: $tmp = jl_StringBuilder_append($nbttaglist3, $playerIn); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 150; - case 150: + $ptr = 163; + case 163: jl_StringBuilder_append($playerIn, $s); if ($rt_suspending()) { break main; } - $ptr = 151; - case 151: + $ptr = 164; + case 164: $tmp = jl_StringBuilder_toString($nbttaglist3); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 152; - case 152: + $ptr = 165; + case 165: ju_ArrayList_add($arraylist, $playerIn); if ($rt_suspending()) { break main; } - $ptr = 47; + $ptr = 49; continue main; - case 153: + case 166: + $tmp = jl_String_valueOf($playerIn); + if ($rt_suspending()) { + break main; + } + $s1 = $tmp; + $playerIn = jl_StringBuilder__init_(); + $ptr = 167; + case 167: $tmp = jl_StringBuilder_append($playerIn, $s1); if ($rt_suspending()) { break main; } $s1 = $tmp; $s = $rt_s(2476); - $ptr = 154; - case 154: + $ptr = 168; + case 168: jl_StringBuilder_append($s1, $s); if ($rt_suspending()) { break main; } - $ptr = 155; - case 155: + $ptr = 169; + case 169: $tmp = jl_StringBuilder_toString($playerIn); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 156; - case 156: + $ptr = 170; + case 170: ju_ArrayList_add($arraylist, $playerIn); if ($rt_suspending()) { break main; } $j1 = $j1 + 1 | 0; - $ptr = 126; + $ptr = 136; continue main; - case 157: + case 171: + $tmp = jl_String_valueOf($playerIn); + if ($rt_suspending()) { + break main; + } + $s1 = $tmp; + $ptr = 172; + case 172: $tmp = $block1.$getLocalizedName(); if ($rt_suspending()) { break main; } $s = $tmp; $playerIn = jl_StringBuilder__init_(); - $ptr = 158; - case 158: + $ptr = 173; + case 173: $tmp = jl_StringBuilder_append($playerIn, $s1); if ($rt_suspending()) { break main; } $s1 = $tmp; - $ptr = 159; - case 159: + $ptr = 174; + case 174: jl_StringBuilder_append($s1, $s); if ($rt_suspending()) { break main; } - $ptr = 160; - case 160: + $ptr = 175; + case 175: $tmp = jl_StringBuilder_toString($playerIn); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 161; - case 161: + $ptr = 176; + case 176: ju_ArrayList_add($arraylist, $playerIn); if ($rt_suspending()) { break main; } $j1 = $j1 + 1 | 0; - $ptr = 126; + $ptr = 136; continue main; - case 162: + case 177: + $tmp = jl_String_valueOf($playerIn); + if ($rt_suspending()) { + break main; + } + $s = $tmp; + $j1 = nmeaa_AttributeModifier_getOperation($attributemodifier); + $playerIn = jl_StringBuilder__init_(); + $nbttaglist3 = $rt_s(2407); + $ptr = 178; + case 178: $tmp = jl_StringBuilder_append($playerIn, $nbttaglist3); if ($rt_suspending()) { break main; } $nbttaglist3 = $tmp; jl_StringBuilder_append1($nbttaglist3, $j1); - $ptr = 163; - case 163: + $ptr = 179; + case 179: $tmp = jl_StringBuilder_toString($playerIn); if ($rt_suspending()) { break main; @@ -403594,8 +404846,8 @@ var$28 = var$10.data; $j1 = 0; $playerIn = nmi_ItemStack_DECIMALFORMAT; - $ptr = 164; - case 164: + $ptr = 180; + case 180: $tmp = jt_NumberFormat_format($playerIn, $d0); if ($rt_suspending()) { break main; @@ -403603,8 +404855,8 @@ $playerIn = $tmp; var$28[$j1] = $playerIn; $j1 = 1; - $ptr = 165; - case 165: + $ptr = 181; + case 181: $tmp = $entry.$getKey(); if ($rt_suspending()) { break main; @@ -403612,70 +404864,70 @@ $playerIn = $tmp; $playerIn = $playerIn; $multimap = jl_StringBuilder__init_(); - $block1 = $rt_s(2407); - $ptr = 166; - case 166: + $block1 = $rt_s(2406); + $ptr = 182; + case 182: $tmp = jl_StringBuilder_append($multimap, $block1); if ($rt_suspending()) { break main; } $block1 = $tmp; - $ptr = 167; - case 167: + $ptr = 183; + case 183: jl_StringBuilder_append($block1, $playerIn); if ($rt_suspending()) { break main; } - $ptr = 168; - case 168: + $ptr = 184; + case 184: $tmp = jl_StringBuilder_toString($multimap); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 169; - case 169: + $ptr = 185; + case 185: $tmp = nmu_StatCollector_translateToLocal($playerIn); if ($rt_suspending()) { break main; } $playerIn = $tmp; var$28[$j1] = $playerIn; - $ptr = 170; - case 170: + $ptr = 186; + case 186: $tmp = nmu_StatCollector_translateToLocalFormatted($nbttaglist3, var$10); if ($rt_suspending()) { break main; } $playerIn = $tmp; $nbttaglist3 = jl_StringBuilder__init_(); - $ptr = 171; - case 171: + $ptr = 187; + case 187: $tmp = jl_StringBuilder_append($nbttaglist3, $s); if ($rt_suspending()) { break main; } $s = $tmp; - $ptr = 172; - case 172: + $ptr = 188; + case 188: jl_StringBuilder_append($s, $playerIn); if ($rt_suspending()) { break main; } - $ptr = 173; - case 173: + $ptr = 189; + case 189: $tmp = jl_StringBuilder_toString($nbttaglist3); if ($rt_suspending()) { break main; } $playerIn = $tmp; - $ptr = 174; - case 174: + $ptr = 190; + case 190: ju_ArrayList_add($arraylist, $playerIn); if ($rt_suspending()) { break main; } - $ptr = 47; + $ptr = 49; continue main; default: $rt_invalidPointer(); }} @@ -404294,7 +405546,7 @@ return 0; } $nbttaglist = $this.$stackTagCompound; - $block = $rt_s(2468); + $block = $rt_s(2466); $i = 9; $ptr = 2; case 2: @@ -404308,7 +405560,7 @@ return 0; } $nbttaglist = $this.$stackTagCompound; - $block = $rt_s(2468); + $block = $rt_s(2466); $i = 8; $ptr = 3; case 3: @@ -408465,7 +409717,6 @@ continue main; } var$3 = new nmi_Bootstrap$5$1; - var$3.$this$039 = $this; var$3.$val$itemstack = $itemstack; $ptr = 2; continue main; @@ -420133,7 +421384,7 @@ $crashreportcategory = $tmp; $ex = $rt_s(2681); var$4 = new nmn_NBTTagCompound$1; - var$4.$this$040 = $this; + var$4.$this$023 = $this; var$4.$val$key = $key; $ptr = 3; case 3: @@ -420143,7 +421394,6 @@ } $ex = $rt_s(2682); var$4 = new nmn_NBTTagCompound$2; - var$4.$this$041 = $this; var$4.$val$expectedType = $expectedType; $ptr = 4; case 4: @@ -421344,36 +422594,37 @@ case 0: var$1 = $this.$text; var$2 = $this.$siblings; + $ptr = 1; + case 1: + $tmp = jl_String_valueOf(var$2); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; var$3 = nmu_ChatComponentStyle_getChatStyle($this); + $ptr = 2; + case 2: + $tmp = jl_String_valueOf(var$3); + if ($rt_suspending()) { + break main; + } + var$3 = $tmp; var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); var$5 = $rt_s(2687); - $ptr = 1; - case 1: - jl_AbstractStringBuilder_append(var$4, var$5); - if ($rt_suspending()) { - break main; - } - $ptr = 2; - case 2: - jl_AbstractStringBuilder_append(var$4, var$1); - if ($rt_suspending()) { - break main; - } - var$1 = $rt_s(2688); $ptr = 3; case 3: - jl_AbstractStringBuilder_append(var$4, var$1); + jl_AbstractStringBuilder_append(var$4, var$5); if ($rt_suspending()) { break main; } $ptr = 4; case 4: - jl_AbstractStringBuilder_append(var$4, var$2); + jl_AbstractStringBuilder_append(var$4, var$1); if ($rt_suspending()) { break main; } - var$1 = $rt_s(2689); + var$1 = $rt_s(2688); $ptr = 5; case 5: jl_AbstractStringBuilder_append(var$4, var$1); @@ -421382,13 +422633,26 @@ } $ptr = 6; case 6: + jl_AbstractStringBuilder_append(var$4, var$2); + if ($rt_suspending()) { + break main; + } + var$1 = $rt_s(2689); + $ptr = 7; + case 7: + jl_AbstractStringBuilder_append(var$4, var$1); + if ($rt_suspending()) { + break main; + } + $ptr = 8; + case 8: jl_AbstractStringBuilder_append(var$4, var$3); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append0(var$4, 125); - $ptr = 7; - case 7: + $ptr = 9; + case 9: $tmp = jl_AbstractStringBuilder_toString(var$4); if ($rt_suspending()) { break main; @@ -421577,7 +422841,6 @@ } var$4 = $tmp; if (var$4) { - $object = $object.$inverse(); $ptr = 5; continue main; } @@ -421590,61 +422853,83 @@ } return $this; case 5: + $tmp = jl_String_valueOf($direction); + if ($rt_suspending()) { + break main; + } + $direction = $tmp; + $ptr = 6; + case 6: + $tmp = jl_String_valueOf($packetClass); + if ($rt_suspending()) { + break main; + } + var$5 = $tmp; + $object = $object.$inverse(); + $ptr = 7; + case 7: $tmp = $object.$get($packetClass); if ($rt_suspending()) { break main; } - $object = $tmp; - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - $ptr = 6; - case 6: - jl_AbstractStringBuilder_append(var$5, $direction); + $packetClass = $tmp; + $ptr = 8; + case 8: + $tmp = jl_String_valueOf($packetClass); + if ($rt_suspending()) { + break main; + } + $packetClass = $tmp; + $object = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($object); + $ptr = 9; + case 9: + jl_AbstractStringBuilder_append($object, $direction); if ($rt_suspending()) { break main; } $direction = $rt_s(2690); - $ptr = 7; - case 7: - jl_AbstractStringBuilder_append(var$5, $direction); - if ($rt_suspending()) { - break main; - } - $ptr = 8; - case 8: - jl_AbstractStringBuilder_append(var$5, $packetClass); - if ($rt_suspending()) { - break main; - } - $direction = $rt_s(2691); - $ptr = 9; - case 9: - jl_AbstractStringBuilder_append(var$5, $direction); - if ($rt_suspending()) { - break main; - } $ptr = 10; case 10: - jl_AbstractStringBuilder_append(var$5, $object); + jl_AbstractStringBuilder_append($object, $direction); if ($rt_suspending()) { break main; } $ptr = 11; case 11: - $tmp = jl_AbstractStringBuilder_toString(var$5); + jl_AbstractStringBuilder_append($object, var$5); + if ($rt_suspending()) { + break main; + } + $direction = $rt_s(2691); + $ptr = 12; + case 12: + jl_AbstractStringBuilder_append($object, $direction); + if ($rt_suspending()) { + break main; + } + $ptr = 13; + case 13: + jl_AbstractStringBuilder_append($object, $packetClass); + if ($rt_suspending()) { + break main; + } + $ptr = 14; + case 14: + $tmp = jl_AbstractStringBuilder_toString($object); if ($rt_suspending()) { break main; } $packetClass = $tmp; - $ptr = 12; - case 12: + $ptr = 15; + case 15: $tmp = nlevl_LogManager_getLogger0(); if ($rt_suspending()) { break main; } $direction = $tmp; - $ptr = 13; - case 13: + $ptr = 16; + case 16: nlevl_Logger_fatal($direction, $packetClass); if ($rt_suspending()) { break main; @@ -422005,9 +423290,6 @@ } } $enumconnectionstate = new jl_Error; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - $enumpacketdirection = $rt_s(2696); $ptr = 27; continue main; case 25: @@ -422026,13 +423308,10 @@ } } var$10 = nmn_EnumConnectionState_STATES_BY_CLASS; - $ptr = 32; + $ptr = 34; continue main; } $enumconnectionstate = new jl_Error; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - $enumpacketdirection = $rt_s(2696); $ptr = 27; continue main; case 26: @@ -422043,8 +423322,7 @@ var$10 = $tmp; if (var$10 !== $enumconnectionstate) { var$2 = new jl_Error; - $enumpacketdirection = nmn_EnumConnectionState_STATES_BY_CLASS; - $ptr = 33; + $ptr = 35; continue main; } try { @@ -422058,99 +423336,135 @@ } } $enumconnectionstate = new jl_Error; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - $enumpacketdirection = $rt_s(2696); $ptr = 27; case 27: - jl_AbstractStringBuilder_append(var$2, $enumpacketdirection); + $tmp = jl_String_valueOf($oclass); if ($rt_suspending()) { break main; } + var$2 = $tmp; $ptr = 28; case 28: - jl_AbstractStringBuilder_append(var$2, $oclass); + $tmp = jl_String_valueOf($oclass); if ($rt_suspending()) { break main; } - $enumpacketdirection = $rt_s(2697); + $enumpacketdirection = $tmp; + $oclass = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($oclass); + var$10 = $rt_s(2696); $ptr = 29; case 29: - jl_AbstractStringBuilder_append(var$2, $enumpacketdirection); + jl_AbstractStringBuilder_append($oclass, var$10); if ($rt_suspending()) { break main; } $ptr = 30; case 30: - jl_AbstractStringBuilder_append(var$2, $oclass); + jl_AbstractStringBuilder_append($oclass, var$2); if ($rt_suspending()) { break main; } + var$2 = $rt_s(2697); $ptr = 31; case 31: - $tmp = jl_AbstractStringBuilder_toString(var$2); + jl_AbstractStringBuilder_append($oclass, var$2); + if ($rt_suspending()) { + break main; + } + $ptr = 32; + case 32: + jl_AbstractStringBuilder_append($oclass, $enumpacketdirection); + if ($rt_suspending()) { + break main; + } + $ptr = 33; + case 33: + $tmp = jl_AbstractStringBuilder_toString($oclass); if ($rt_suspending()) { break main; } var$2 = $tmp; jl_Throwable__init_($enumconnectionstate, var$2); $rt_throw($enumconnectionstate); - case 32: + case 34: ju_HashMap_putImpl(var$10, $oclass, $enumconnectionstate); if ($rt_suspending()) { break main; } $ptr = 22; continue main; - case 33: - $tmp = ju_HashMap_get($enumpacketdirection, $oclass); + case 35: + $tmp = jl_String_valueOf($oclass); if ($rt_suspending()) { break main; } $enumpacketdirection = $tmp; + var$10 = nmn_EnumConnectionState_STATES_BY_CLASS; + $ptr = 36; + case 36: + $tmp = ju_HashMap_get(var$10, $oclass); + if ($rt_suspending()) { + break main; + } + $oclass = $tmp; + $ptr = 37; + case 37: + $tmp = jl_String_valueOf($oclass); + if ($rt_suspending()) { + break main; + } + $oclass = $tmp; + $ptr = 38; + case 38: + $tmp = jl_String_valueOf($enumconnectionstate); + if ($rt_suspending()) { + break main; + } + $enumconnectionstate = $tmp; var$10 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$10); var$11 = $rt_s(2696); - $ptr = 34; - case 34: - jl_AbstractStringBuilder_append(var$10, var$11); - if ($rt_suspending()) { - break main; - } - $ptr = 35; - case 35: - jl_AbstractStringBuilder_append(var$10, $oclass); - if ($rt_suspending()) { - break main; - } - $oclass = $rt_s(2698); - $ptr = 36; - case 36: - jl_AbstractStringBuilder_append(var$10, $oclass); - if ($rt_suspending()) { - break main; - } - $ptr = 37; - case 37: - jl_AbstractStringBuilder_append(var$10, $enumpacketdirection); - if ($rt_suspending()) { - break main; - } - $enumpacketdirection = $rt_s(2699); - $ptr = 38; - case 38: - jl_AbstractStringBuilder_append(var$10, $enumpacketdirection); - if ($rt_suspending()) { - break main; - } $ptr = 39; case 39: - jl_AbstractStringBuilder_append(var$10, $enumconnectionstate); + jl_AbstractStringBuilder_append(var$10, var$11); if ($rt_suspending()) { break main; } $ptr = 40; case 40: + jl_AbstractStringBuilder_append(var$10, $enumpacketdirection); + if ($rt_suspending()) { + break main; + } + $enumpacketdirection = $rt_s(2698); + $ptr = 41; + case 41: + jl_AbstractStringBuilder_append(var$10, $enumpacketdirection); + if ($rt_suspending()) { + break main; + } + $ptr = 42; + case 42: + jl_AbstractStringBuilder_append(var$10, $oclass); + if ($rt_suspending()) { + break main; + } + $enumpacketdirection = $rt_s(2699); + $ptr = 43; + case 43: + jl_AbstractStringBuilder_append(var$10, $enumpacketdirection); + if ($rt_suspending()) { + break main; + } + $ptr = 44; + case 44: + jl_AbstractStringBuilder_append(var$10, $enumconnectionstate); + if ($rt_suspending()) { + break main; + } + $ptr = 45; + case 45: $tmp = jl_AbstractStringBuilder_toString(var$10); if ($rt_suspending()) { break main; @@ -425524,7 +426838,7 @@ } var$3 = new ji_DataOutputStream; var$4 = new nmwcs_RegionFile$ChunkBuffer; - var$4.$this$042 = $this; + var$4.$this$024 = $this; var$5 = 8096; $ptr = 1; case 1: @@ -431878,68 +433192,82 @@ break main; } $ownerTagCompound = nmu_EnumChatFormatting_RESET; - $texturesTagList = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($texturesTagList); $ptr = 35; case 35: - jl_AbstractStringBuilder_append($texturesTagList, $ownerTagCompound); + $tmp = jl_String_valueOf($ownerTagCompound); if ($rt_suspending()) { break main; } - $ownerTagCompound = $rt_s(2768); + $ownerTagCompound = $tmp; + $texturesTagList = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($texturesTagList); $ptr = 36; case 36: jl_AbstractStringBuilder_append($texturesTagList, $ownerTagCompound); if ($rt_suspending()) { break main; } + $ownerTagCompound = $rt_s(2768); $ptr = 37; case 37: + jl_AbstractStringBuilder_append($texturesTagList, $ownerTagCompound); + if ($rt_suspending()) { + break main; + } + $ptr = 38; + case 38: $tmp = jl_AbstractStringBuilder_toString($texturesTagList); if ($rt_suspending()) { break main; } $ownerTagCompound = $tmp; - $ptr = 38; - case 38: + $ptr = 39; + case 39: nmn_NBTTagCompound_setString($displayTagCompound, $propertiesTagCompound, $ownerTagCompound); if ($rt_suspending()) { break main; } $loreList = new nmn_NBTTagList; - $ptr = 39; - case 39: + $ptr = 40; + case 40: nmn_NBTTagList__init_($loreList); if ($rt_suspending()) { break main; } $propertiesTagCompound = new nmn_NBTTagString; $ownerTagCompound = nmu_EnumChatFormatting_GRAY; + $ptr = 41; + case 41: + $tmp = jl_String_valueOf($ownerTagCompound); + if ($rt_suspending()) { + break main; + } + $ownerTagCompound = $tmp; if (jl_String_length($cc) <= 24) { $texturesTagList = $cc; $texturesTagCompound = new jl_StringBuilder; jl_AbstractStringBuilder__init_($texturesTagCompound); - $ptr = 43; + $ptr = 45; continue main; } $texturesTagList = jl_String_substring0($cc, 0, 22); $texturesTagCompound = new jl_StringBuilder; jl_AbstractStringBuilder__init_($texturesTagCompound); - $ptr = 40; - case 40: + $ptr = 42; + case 42: jl_AbstractStringBuilder_append($texturesTagCompound, $texturesTagList); if ($rt_suspending()) { break main; } $texturesTagList = $rt_s(545); - $ptr = 41; - case 41: + $ptr = 43; + case 43: jl_AbstractStringBuilder_append($texturesTagCompound, $texturesTagList); if ($rt_suspending()) { break main; } - $ptr = 42; - case 42: + $ptr = 44; + case 44: $tmp = jl_AbstractStringBuilder_toString($texturesTagCompound); if ($rt_suspending()) { break main; @@ -431947,42 +433275,42 @@ $texturesTagList = $tmp; $texturesTagCompound = new jl_StringBuilder; jl_AbstractStringBuilder__init_($texturesTagCompound); - $ptr = 43; - case 43: + $ptr = 45; + case 45: jl_AbstractStringBuilder_append($texturesTagCompound, $ownerTagCompound); if ($rt_suspending()) { break main; } - $ptr = 44; - case 44: + $ptr = 46; + case 46: jl_AbstractStringBuilder_append($texturesTagCompound, $texturesTagList); if ($rt_suspending()) { break main; } - $ptr = 45; - case 45: + $ptr = 47; + case 47: $tmp = jl_AbstractStringBuilder_toString($texturesTagCompound); if ($rt_suspending()) { break main; } $ownerTagCompound = $tmp; nmn_NBTTagString__init_1($propertiesTagCompound, $ownerTagCompound); - $ptr = 46; - case 46: + $ptr = 48; + case 48: nmn_NBTTagList_appendTag($loreList, $propertiesTagCompound); if ($rt_suspending()) { break main; } $propertiesTagCompound = $rt_s(525); - $ptr = 47; - case 47: + $ptr = 49; + case 49: nmn_NBTTagCompound_setTag($displayTagCompound, $propertiesTagCompound, $loreList); if ($rt_suspending()) { break main; } $propertiesTagCompound = $rt_s(466); - $ptr = 48; - case 48: + $ptr = 50; + case 50: nmn_NBTTagCompound_setTag($rootTagCompound, $propertiesTagCompound, $displayTagCompound); if ($rt_suspending()) { break main; @@ -431991,16 +433319,16 @@ $propertiesTagCompound = nmi_Items_skull; $flag = 1; var$17 = 3; - $ptr = 49; - case 49: + $ptr = 51; + case 51: nmi_ItemStack__init_0($stack, $propertiesTagCompound, $flag, var$17); if ($rt_suspending()) { break main; } $stack.$stackTagCompound = $rootTagCompound; $propertiesTagCompound = $sender.$inventory; - $ptr = 50; - case 50: + $ptr = 52; + case 52: $tmp = nmep_InventoryPlayer_addItemStackToInventory($propertiesTagCompound, $stack); if ($rt_suspending()) { break main; @@ -432011,35 +433339,35 @@ $rootTagCompound = $rt_s(2769); $skullData = $rt_createArray(jl_Object, 1); $skullData.data[0] = $cc; - $ptr = 51; + $ptr = 53; continue main; } $propertiesTagCompound = $sender.$worldObj0; $rootTagCompound = $rt_s(2770); var$18 = 0.20000000298023224; var$19 = ((nlev_EaglercraftRandom_nextFloat($sender.$rand1) - nlev_EaglercraftRandom_nextFloat($sender.$rand1)) * 0.699999988079071 + 1.0) * 2.0; - $ptr = 53; + $ptr = 55; continue main; - case 51: + case 53: nmu_ChatComponentTranslation__init_($propertiesTagCompound, $rootTagCompound, $skullData); if ($rt_suspending()) { break main; } - $ptr = 52; - case 52: + $ptr = 54; + case 54: nmep_EntityPlayerMP_addChatMessage($sender, $propertiesTagCompound); if ($rt_suspending()) { break main; } return; - case 53: + case 55: nmw_World_playSoundAtEntity($propertiesTagCompound, $sender, $rootTagCompound, var$18, var$19); if ($rt_suspending()) { break main; } $propertiesTagCompound = $sender.$inventoryContainer; - $ptr = 54; - case 54: + $ptr = 56; + case 56: nmi_Container_detectAndSendChanges($propertiesTagCompound); if ($rt_suspending()) { break main; @@ -432048,7 +433376,7 @@ $rootTagCompound = $rt_s(2769); $skullData = $rt_createArray(jl_Object, 1); $skullData.data[0] = $cc; - $ptr = 51; + $ptr = 53; continue main; default: $rt_invalidPointer(); }} @@ -432546,8 +433874,8 @@ if ($rt_suspending()) { break main; } - var$10 = $tmp; - var$8[var$4] = var$10; + var$9 = $tmp; + var$8[var$4] = var$9; $ptr = 13; continue main; } catch ($$e) { @@ -432599,10 +433927,10 @@ if ($rt_suspending()) { break main; } - var$10 = new nleviv_VFile2; - var$8 = $rt_createArray(jl_Object, 2); - var$7 = var$8.data; - var$7[0] = var$2.$playersDirectory; + var$9 = new nleviv_VFile2; + var$7 = $rt_createArray(jl_Object, 2); + var$8 = var$7.data; + var$8[0] = var$2.$playersDirectory; var$4 = 1; var$2 = jl_StringBuilder__init_(); $ptr = 14; @@ -432624,7 +433952,7 @@ break main; } var$5 = $tmp; - var$9 = $rt_s(1991); + var$10 = $rt_s(1991); $ptr = 15; continue main; } catch ($$e) { @@ -432639,7 +433967,7 @@ continue main; case 15: try { - jl_StringBuilder_append(var$5, var$9); + jl_StringBuilder_append(var$5, var$10); if ($rt_suspending()) { break main; } @@ -432662,7 +433990,7 @@ break main; } var$2 = $tmp; - var$7[var$4] = var$2; + var$8[var$4] = var$2; $ptr = 19; continue main; } catch ($$e) { @@ -432697,7 +434025,7 @@ continue main; case 19: try { - nleviv_VFile2__init_(var$10, var$8); + nleviv_VFile2__init_(var$9, var$7); if ($rt_suspending()) { break main; } @@ -432898,7 +434226,7 @@ continue main; case 30: try { - $tmp = nleviv_VFile2_exists(var$10); + $tmp = nleviv_VFile2_exists(var$9); if ($rt_suspending()) { break main; } @@ -432953,35 +434281,35 @@ if ($rt_suspending()) { break main; } - var$10 = $rt_s(2775); - var$9 = jl_Integer_valueOf0(var$5.$value4.$integerValue); + var$9 = $rt_s(2775); + var$10 = jl_Integer_valueOf0(var$5.$value4.$integerValue); $ptr = 34; case 34: - oj_JSONObject_put(var$6, var$10, var$9); + oj_JSONObject_put(var$6, var$9, var$10); if ($rt_suspending()) { break main; } try { - var$10 = $rt_s(2776); - var$9 = nmu_TupleIntJsonSerializable_getJsonSerializableValue(ju_MapEntry_getValue(var$5)); + var$9 = $rt_s(2776); + var$10 = nmu_TupleIntJsonSerializable_getJsonSerializableValue(ju_MapEntry_getValue(var$5)); $ptr = 37; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof jl_Throwable) { - var$10 = $$je; + var$9 = $$je; } else { throw $$e; } } - var$9 = nms_StatisticsFile_logger; + var$10 = nms_StatisticsFile_logger; var$11 = var$5.$key; $ptr = 39; continue main; case 35: b: { try { - nleviv_VFile2_renameTo(var$6, var$10); + nleviv_VFile2_renameTo(var$6, var$9); if ($rt_suspending()) { break main; } @@ -433002,7 +434330,7 @@ continue main; case 36: try { - nleviv_VFile2_delete(var$10); + nleviv_VFile2_delete(var$9); if ($rt_suspending()) { break main; } @@ -433020,46 +434348,46 @@ continue main; case 37: try { - $tmp = nmu_JsonSerializableSet_getSerializableElement(var$9); + $tmp = nmu_JsonSerializableSet_getSerializableElement(var$10); if ($rt_suspending()) { break main; } - var$9 = $tmp; + var$10 = $tmp; $ptr = 38; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof jl_Throwable) { - var$10 = $$je; + var$9 = $$je; } else { throw $$e; } } - var$9 = nms_StatisticsFile_logger; + var$10 = nms_StatisticsFile_logger; var$11 = var$5.$key; $ptr = 39; continue main; case 38: b: { try { - oj_JSONObject_put(var$6, var$10, var$9); + oj_JSONObject_put(var$6, var$9, var$10); if ($rt_suspending()) { break main; } } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof jl_Throwable) { - var$10 = $$je; + var$9 = $$je; break b; } else { throw $$e; } } var$5 = var$5.$key.$statId; - $ptr = 45; + $ptr = 46; continue main; } - var$9 = nms_StatisticsFile_logger; + var$10 = nms_StatisticsFile_logger; var$11 = var$5.$key; $ptr = 39; case 39: @@ -433068,46 +434396,53 @@ break main; } var$11 = $tmp; - var$12 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$12); - var$13 = $rt_s(2777); $ptr = 40; case 40: - jl_AbstractStringBuilder_append(var$12, var$13); + $tmp = jl_String_valueOf(var$11); if ($rt_suspending()) { break main; } + var$12 = $tmp; + var$11 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$11); + var$13 = $rt_s(2777); $ptr = 41; case 41: - jl_AbstractStringBuilder_append(var$12, var$11); + jl_AbstractStringBuilder_append(var$11, var$13); if ($rt_suspending()) { break main; } - var$11 = $rt_s(2778); $ptr = 42; case 42: - jl_AbstractStringBuilder_append(var$12, var$11); + jl_AbstractStringBuilder_append(var$11, var$12); if ($rt_suspending()) { break main; } + var$13 = $rt_s(2778); $ptr = 43; case 43: - $tmp = jl_AbstractStringBuilder_toString(var$12); + jl_AbstractStringBuilder_append(var$11, var$13); + if ($rt_suspending()) { + break main; + } + $ptr = 44; + case 44: + $tmp = jl_AbstractStringBuilder_toString(var$11); if ($rt_suspending()) { break main; } var$11 = $tmp; - var$7 = $rt_createArray(jl_Object, 1); - var$7.data[0] = var$10; - $ptr = 44; - case 44: - nlevl_Logger_warn0(var$9, var$11, var$7); + var$8 = $rt_createArray(jl_Object, 1); + var$8.data[0] = var$9; + $ptr = 45; + case 45: + nlevl_Logger_warn0(var$10, var$11, var$8); if ($rt_suspending()) { break main; } var$5 = var$5.$key.$statId; - $ptr = 45; - case 45: + $ptr = 46; + case 46: oj_JSONObject_put(var$3, var$5, var$6); if ($rt_suspending()) { break main; @@ -434843,7 +436178,7 @@ var$1 = cgcb_Joiner_on($rt_s(554)); cgcb_Preconditions_checkNotNull($rt_s(21)); var$2 = new cgcb_Joiner$1; - var$2.$this$043 = var$1; + var$2.$this$025 = var$1; var$2.$val$nullText = $rt_s(21); var$2.$separator = var$1.$separator; cgcc_Collections2_STANDARD_JOINER = var$2; @@ -435076,11 +436411,11 @@ $rt_nativeThread().push($this, $ptr); } function cgcb_CharMatcher__clinit_() { - var $builder, $i, var$3, var$4, var$5, var$6, var$7, var$8, var$9, $ptr, $tmp; + var $builder, $i, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();$i = $thread.pop();$builder = $thread.pop(); + $ptr = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();$i = $thread.pop();$builder = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -435194,44 +436529,58 @@ var$4 = $tmp; var$5 = new cgcb_CharMatcher$Or; var$4 = cgcb_Preconditions_checkNotNull(var$4); - var$8 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$8); - var$9 = $rt_s(2792); $ptr = 12; case 12: - jl_AbstractStringBuilder_append(var$8, var$9); + $tmp = jl_String_valueOf($builder); if ($rt_suspending()) { break main; } + var$8 = $tmp; $ptr = 13; case 13: - jl_AbstractStringBuilder_append(var$8, $builder); + $tmp = jl_String_valueOf(var$4); if ($rt_suspending()) { break main; } - var$9 = $rt_s(554); + var$9 = $tmp; + var$10 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$10); + var$11 = $rt_s(2792); $ptr = 14; case 14: - jl_AbstractStringBuilder_append(var$8, var$9); + jl_AbstractStringBuilder_append(var$10, var$11); if ($rt_suspending()) { break main; } $ptr = 15; case 15: - jl_AbstractStringBuilder_append(var$8, var$4); + jl_AbstractStringBuilder_append(var$10, var$8); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append0(var$8, 41); + var$8 = $rt_s(554); $ptr = 16; case 16: - $tmp = jl_AbstractStringBuilder_toString(var$8); + jl_AbstractStringBuilder_append(var$10, var$8); + if ($rt_suspending()) { + break main; + } + $ptr = 17; + case 17: + jl_AbstractStringBuilder_append(var$10, var$9); + if ($rt_suspending()) { + break main; + } + jl_AbstractStringBuilder_append0(var$10, 41); + $ptr = 18; + case 18: + $tmp = jl_AbstractStringBuilder_toString(var$10); if ($rt_suspending()) { break main; } var$8 = $tmp; - $ptr = 17; - case 17: + $ptr = 19; + case 19: cgcb_CharMatcher$Or__init_(var$5, $builder, var$4, var$8); if ($rt_suspending()) { break main; @@ -435240,8 +436589,8 @@ var$4 = new cgcb_CharMatcher$Or; var$8 = var$5.$first0; var$5 = var$5.$second; - $ptr = 18; - case 18: + $ptr = 20; + case 20: cgcb_CharMatcher$Or__init_(var$4, var$8, var$5, $builder); if ($rt_suspending()) { break main; @@ -435251,8 +436600,8 @@ var$4 = $rt_s(2794); var$6 = jl_String_toCharArray($rt_s(2795)); var$7 = jl_String_toCharArray($rt_s(2796)); - $ptr = 19; - case 19: + $ptr = 21; + case 21: cgcb_CharMatcher$RangesMatcher__init_($builder, var$4, var$6, var$7); if ($rt_suspending()) { break main; @@ -435262,8 +436611,8 @@ var$4 = $rt_s(2797); var$6 = jl_String_toCharArray($rt_s(2798)); var$7 = jl_String_toCharArray($rt_s(2799)); - $ptr = 20; - case 20: + $ptr = 22; + case 22: cgcb_CharMatcher$RangesMatcher__init_($builder, var$4, var$6, var$7); if ($rt_suspending()) { break main; @@ -435271,8 +436620,8 @@ cgcb_CharMatcher_SINGLE_WIDTH = $builder; $builder = new cgcb_CharMatcher$7; var$4 = $rt_s(2800); - $ptr = 21; - case 21: + $ptr = 23; + case 23: cgcb_CharMatcher__init_($builder, var$4); if ($rt_suspending()) { break main; @@ -435280,8 +436629,8 @@ cgcb_CharMatcher_ANY = $builder; $builder = new cgcb_CharMatcher$8; var$4 = $rt_s(2801); - $ptr = 22; - case 22: + $ptr = 24; + case 24: cgcb_CharMatcher__init_($builder, var$4); if ($rt_suspending()) { break main; @@ -435290,8 +436639,8 @@ cgcb_CharMatcher_WHITESPACE_SHIFT = jl_Integer_numberOfLeadingZeros(jl_String_length($rt_s(2802)) - 1 | 0); $builder = new cgcb_CharMatcher$15; var$4 = $rt_s(2803); - $ptr = 23; - case 23: + $ptr = 25; + case 25: cgcb_CharMatcher__init_($builder, var$4); if ($rt_suspending()) { break main; @@ -435300,7 +436649,7 @@ return; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($builder, $i, var$3, var$4, var$5, var$6, var$7, var$8, var$9, $ptr); + $rt_nativeThread().push($builder, $i, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, $ptr); } function ju_Arrays$ArrayAsList() { ju_AbstractList.call(this); @@ -436551,28 +437900,26 @@ $ptr = 13; continue main; } - if ($pkt !== null) { - try { - $ptr = 16; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $input = new ji_IOException; - $nettyBuffer = jl_Object_getClass($pkt); - $ptr = 21; + if ($pkt === null) { + $nettyBuffer = new ji_IOException; + $t = $this.$packetState0; + $ptr = 17; continue main; } - $nettyBuffer = new ji_IOException; - $t = $this.$packetState0; - $input = jl_StringBuilder__init_(); - $pkt = $rt_s(881); - $ptr = 17; + try { + $ptr = 16; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $input = new ji_IOException; + $nettyBuffer = jl_Object_getClass($pkt); + $ptr = 22; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -436592,7 +437939,7 @@ } $input = $tmp; $input = jl_StringBuilder_append1($input, $pktId); - $pkt = $rt_s(883); + $pkt = $rt_s(882); $ptr = 14; continue main; } catch ($$e) { @@ -436661,7 +438008,7 @@ } try { $nettyBuffer = $this.$nethandler0; - $ptr = 25; + $ptr = 26; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -436671,12 +438018,12 @@ throw $$e; } } - $ptr = 26; + $ptr = 27; continue main; } $input = new ji_IOException; $nettyBuffer = jl_Object_getClass($pkt); - $ptr = 21; + $ptr = 22; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -436690,13 +438037,13 @@ continue main; case 17: try { - $tmp = jl_StringBuilder_append($input, $pkt); + $tmp = jl_String_valueOf($t); if ($rt_suspending()) { break main; } - $pkt = $tmp; - $pkt = jl_StringBuilder_append1($pkt, $pktId); - var$12 = $rt_s(885); + $t = $tmp; + $input = jl_StringBuilder__init_(); + $pkt = $rt_s(884); $ptr = 18; continue main; } catch ($$e) { @@ -436711,11 +438058,13 @@ continue main; case 18: try { - $tmp = jl_StringBuilder_append($pkt, var$12); + $tmp = jl_StringBuilder_append($input, $pkt); if ($rt_suspending()) { break main; } $pkt = $tmp; + $pkt = jl_StringBuilder_append1($pkt, $pktId); + var$12 = $rt_s(885); $ptr = 19; continue main; } catch ($$e) { @@ -436730,10 +438079,11 @@ continue main; case 19: try { - jl_StringBuilder_append($pkt, $t); + $tmp = jl_StringBuilder_append($pkt, var$12); if ($rt_suspending()) { break main; } + $pkt = $tmp; $ptr = 20; continue main; } catch ($$e) { @@ -436747,6 +438097,24 @@ $ptr = 9; continue main; case 20: + try { + jl_StringBuilder_append($pkt, $t); + if ($rt_suspending()) { + break main; + } + $ptr = 21; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $ptr = 9; + continue main; + case 21: try { $tmp = jl_StringBuilder_toString($input); if ($rt_suspending()) { @@ -436765,7 +438133,7 @@ } $ptr = 9; continue main; - case 21: + case 22: try { $tmp = jl_Class_getSimpleName($nettyBuffer); if ($rt_suspending()) { @@ -436774,25 +438142,6 @@ $nettyBuffer = $tmp; $pkt = jl_StringBuilder__init_(); var$12 = $rt_s(886); - $ptr = 22; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $ptr = 9; - continue main; - case 22: - try { - $tmp = jl_StringBuilder_append($pkt, var$12); - if ($rt_suspending()) { - break main; - } - var$12 = $tmp; $ptr = 23; continue main; } catch ($$e) { @@ -436807,12 +438156,11 @@ continue main; case 23: try { - $tmp = jl_StringBuilder_append(var$12, $nettyBuffer); + $tmp = jl_StringBuilder_append($pkt, var$12); if ($rt_suspending()) { break main; } - $nettyBuffer = $tmp; - jl_StringBuilder_append5($nettyBuffer, var$7); + var$12 = $tmp; $ptr = 24; continue main; } catch ($$e) { @@ -436826,6 +438174,26 @@ $ptr = 9; continue main; case 24: + try { + $tmp = jl_StringBuilder_append(var$12, $nettyBuffer); + if ($rt_suspending()) { + break main; + } + $nettyBuffer = $tmp; + jl_StringBuilder_append5($nettyBuffer, var$7); + $ptr = 25; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $ptr = 9; + continue main; + case 25: try { $tmp = jl_StringBuilder_toString($pkt); if ($rt_suspending()) { @@ -436844,7 +438212,7 @@ } $ptr = 9; continue main; - case 25: + case 26: a: { try { c: { @@ -436862,7 +438230,7 @@ throw $$e; } } - $ptr = 26; + $ptr = 27; continue main; } break a; @@ -436882,7 +438250,7 @@ return; $ptr = 5; continue main; - case 26: + case 27: try { nlevs_EaglercraftNetworkManager_$callClinit(); if ($rt_suspending()) { @@ -436894,26 +438262,6 @@ $next = var$10.data; $pktId = 0; $pkt = jl_Object_getClass($pkt); - $ptr = 27; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $ptr = 9; - continue main; - case 27: - try { - $tmp = jl_Class_getSimpleName($pkt); - if ($rt_suspending()) { - break main; - } - $pkt = $tmp; - $next[$pktId] = $pkt; $ptr = 28; continue main; } catch ($$e) { @@ -436928,11 +438276,12 @@ continue main; case 28: try { - nlevl_Logger_error($nettyBuffer, $input, var$10); + $tmp = jl_Class_getSimpleName($pkt); if ($rt_suspending()) { break main; } - $nettyBuffer = nlevs_EaglercraftNetworkManager_logger; + $pkt = $tmp; + $next[$pktId] = $pkt; $ptr = 29; continue main; } catch ($$e) { @@ -436946,6 +438295,25 @@ $ptr = 9; continue main; case 29: + try { + nlevl_Logger_error($nettyBuffer, $input, var$10); + if ($rt_suspending()) { + break main; + } + $nettyBuffer = nlevs_EaglercraftNetworkManager_logger; + $ptr = 30; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $ptr = 9; + continue main; + case 30: a: { try { nlevl_Logger_error0($nettyBuffer, $t); @@ -437588,28 +438956,26 @@ $ptr = 8; continue main; } - if ($pkt !== null) { - try { - $ptr = 11; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $input = new ji_IOException; - $nettyBuffer = jl_Object_getClass($pkt); - $ptr = 16; + if ($pkt === null) { + $nettyBuffer = new ji_IOException; + $t = $this.$packetState0; + $ptr = 12; continue main; } - $nettyBuffer = new ji_IOException; - $t = $this.$packetState0; - $input = jl_StringBuilder__init_(); - $pkt = $rt_s(881); - $ptr = 12; + try { + $ptr = 11; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $input = new ji_IOException; + $nettyBuffer = jl_Object_getClass($pkt); + $ptr = 17; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -437629,7 +438995,7 @@ } $input = $tmp; $input = jl_StringBuilder_append1($input, $pktId); - $pkt = $rt_s(883); + $pkt = $rt_s(882); $ptr = 9; continue main; } catch ($$e) { @@ -437698,7 +439064,7 @@ } try { $nettyBuffer = $this.$nethandler0; - $ptr = 20; + $ptr = 21; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -437708,12 +439074,12 @@ throw $$e; } } - $ptr = 21; + $ptr = 22; continue main; } $input = new ji_IOException; $nettyBuffer = jl_Object_getClass($pkt); - $ptr = 16; + $ptr = 17; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -437727,13 +439093,13 @@ continue main; case 12: try { - $tmp = jl_StringBuilder_append($input, $pkt); + $tmp = jl_String_valueOf($t); if ($rt_suspending()) { break main; } - $pkt = $tmp; - $pkt = jl_StringBuilder_append1($pkt, $pktId); - var$10 = $rt_s(885); + $t = $tmp; + $input = jl_StringBuilder__init_(); + $pkt = $rt_s(884); $ptr = 13; continue main; } catch ($$e) { @@ -437748,11 +439114,13 @@ continue main; case 13: try { - $tmp = jl_StringBuilder_append($pkt, var$10); + $tmp = jl_StringBuilder_append($input, $pkt); if ($rt_suspending()) { break main; } $pkt = $tmp; + $pkt = jl_StringBuilder_append1($pkt, $pktId); + var$10 = $rt_s(885); $ptr = 14; continue main; } catch ($$e) { @@ -437767,10 +439135,11 @@ continue main; case 14: try { - jl_StringBuilder_append($pkt, $t); + $tmp = jl_StringBuilder_append($pkt, var$10); if ($rt_suspending()) { break main; } + $pkt = $tmp; $ptr = 15; continue main; } catch ($$e) { @@ -437784,6 +439153,24 @@ $ptr = 4; continue main; case 15: + try { + jl_StringBuilder_append($pkt, $t); + if ($rt_suspending()) { + break main; + } + $ptr = 16; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $ptr = 4; + continue main; + case 16: try { $tmp = jl_StringBuilder_toString($input); if ($rt_suspending()) { @@ -437802,7 +439189,7 @@ } $ptr = 4; continue main; - case 16: + case 17: try { $tmp = jl_Class_getSimpleName($nettyBuffer); if ($rt_suspending()) { @@ -437811,25 +439198,6 @@ $nettyBuffer = $tmp; $pkt = jl_StringBuilder__init_(); var$10 = $rt_s(886); - $ptr = 17; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $ptr = 4; - continue main; - case 17: - try { - $tmp = jl_StringBuilder_append($pkt, var$10); - if ($rt_suspending()) { - break main; - } - var$10 = $tmp; $ptr = 18; continue main; } catch ($$e) { @@ -437844,12 +439212,11 @@ continue main; case 18: try { - $tmp = jl_StringBuilder_append(var$10, $nettyBuffer); + $tmp = jl_StringBuilder_append($pkt, var$10); if ($rt_suspending()) { break main; } - $nettyBuffer = $tmp; - jl_StringBuilder_append5($nettyBuffer, var$2); + var$10 = $tmp; $ptr = 19; continue main; } catch ($$e) { @@ -437863,6 +439230,26 @@ $ptr = 4; continue main; case 19: + try { + $tmp = jl_StringBuilder_append(var$10, $nettyBuffer); + if ($rt_suspending()) { + break main; + } + $nettyBuffer = $tmp; + jl_StringBuilder_append5($nettyBuffer, var$2); + $ptr = 20; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $ptr = 4; + continue main; + case 20: try { $tmp = jl_StringBuilder_toString($pkt); if ($rt_suspending()) { @@ -437881,7 +439268,7 @@ } $ptr = 4; continue main; - case 20: + case 21: b: { try { a: { @@ -437899,7 +439286,7 @@ throw $$e; } } - $ptr = 21; + $ptr = 22; continue main; } } catch ($$e) { @@ -437935,7 +439322,7 @@ } $ptr = 4; continue main; - case 21: + case 22: try { nlevs_EaglercraftNetworkManager_$callClinit(); if ($rt_suspending()) { @@ -437947,26 +439334,6 @@ $next = var$3.data; $pktId = 0; $pkt = jl_Object_getClass($pkt); - $ptr = 22; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $ptr = 4; - continue main; - case 22: - try { - $tmp = jl_Class_getSimpleName($pkt); - if ($rt_suspending()) { - break main; - } - $pkt = $tmp; - $next[$pktId] = $pkt; $ptr = 23; continue main; } catch ($$e) { @@ -437981,11 +439348,12 @@ continue main; case 23: try { - nlevl_Logger_error($nettyBuffer, $input, var$3); + $tmp = jl_Class_getSimpleName($pkt); if ($rt_suspending()) { break main; } - $nettyBuffer = nlevs_EaglercraftNetworkManager_logger; + $pkt = $tmp; + $next[$pktId] = $pkt; $ptr = 24; continue main; } catch ($$e) { @@ -437999,6 +439367,25 @@ $ptr = 4; continue main; case 24: + try { + nlevl_Logger_error($nettyBuffer, $input, var$3); + if ($rt_suspending()) { + break main; + } + $nettyBuffer = nlevs_EaglercraftNetworkManager_logger; + $ptr = 25; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $ptr = 4; + continue main; + case 25: b: { try { nlevl_Logger_error0($nettyBuffer, $t); @@ -439633,31 +441020,22 @@ } main: while (true) { switch ($ptr) { case 0: - $ptr = 1; - case 1: - nmu_EnumFacing$1_$callClinit(); - if ($rt_suspending()) { - break main; - } - switch (nmu_EnumFacing$1_$SwitchMap$net$minecraft$util$EnumFacing$Axis.data[$axis.$ordinal]) { - case 1: + switch ($axis.$ordinal) { + case 0: break; + case 1: + $ptr = 2; + continue main; case 2: $ptr = 3; continue main; - case 3: - $ptr = 4; - continue main; default: var$2 = new jl_IllegalStateException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - var$4 = $rt_s(2860); - $ptr = 5; + $ptr = 4; continue main; } - $ptr = 2; - case 2: + $ptr = 1; + case 1: nmu_EnumFacing_$callClinit(); if ($rt_suspending()) { break main; @@ -439665,37 +441043,34 @@ if ($this !== nmu_EnumFacing_WEST && $this !== nmu_EnumFacing_EAST) { a: { b: { - switch (nmu_EnumFacing$1_$SwitchMap$net$minecraft$util$EnumFacing.data[$this.$ordinal]) { - case 1: + switch ($this.$ordinal) { + case 0: break; + case 1: + $axis = nmu_EnumFacing_NORTH; + break b; case 2: - case 4: - break a; + $axis = nmu_EnumFacing_DOWN; + break b; case 3: $axis = nmu_EnumFacing_UP; break b; + case 4: case 5: - $axis = nmu_EnumFacing_NORTH; - break b; - case 6: - $axis = nmu_EnumFacing_SOUTH; - break b; + break a; default: break a; } - $axis = nmu_EnumFacing_DOWN; + $axis = nmu_EnumFacing_SOUTH; } return $axis; } $axis = new jl_IllegalStateException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - var$3 = $rt_s(2861); $ptr = 9; continue main; } return $this; - case 3: + case 2: nmu_EnumFacing_$callClinit(); if ($rt_suspending()) { break main; @@ -439705,7 +441080,7 @@ continue main; } return $this; - case 4: + case 3: nmu_EnumFacing_$callClinit(); if ($rt_suspending()) { break main; @@ -439713,35 +441088,43 @@ if ($this !== nmu_EnumFacing_NORTH && $this !== nmu_EnumFacing_SOUTH) { a: { b: { - switch (nmu_EnumFacing$1_$SwitchMap$net$minecraft$util$EnumFacing.data[$this.$ordinal]) { - case 2: + switch ($this.$ordinal) { + case 0: break; + case 1: + $axis = nmu_EnumFacing_EAST; + break b; + case 2: case 3: break a; case 4: $axis = nmu_EnumFacing_UP; break b; case 5: - $axis = nmu_EnumFacing_EAST; - break b; - case 6: - $axis = nmu_EnumFacing_WEST; + $axis = nmu_EnumFacing_DOWN; break b; default: break a; } - $axis = nmu_EnumFacing_DOWN; + $axis = nmu_EnumFacing_WEST; } return $axis; } $axis = new jl_IllegalStateException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - var$3 = $rt_s(2862); - $ptr = 12; + $ptr = 13; continue main; } return $this; + case 4: + $tmp = jl_String_valueOf($axis); + if ($rt_suspending()) { + break main; + } + $axis = $tmp; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + var$4 = $rt_s(2860); + $ptr = 5; case 5: jl_AbstractStringBuilder_append(var$3, var$4); if ($rt_suspending()) { @@ -439770,39 +441153,59 @@ $axis = $tmp; return $axis; case 9: - jl_AbstractStringBuilder_append(var$2, var$3); + $tmp = jl_String_valueOf($this); if ($rt_suspending()) { break main; } + var$2 = $tmp; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + var$4 = $rt_s(2861); $ptr = 10; case 10: - jl_AbstractStringBuilder_append(var$2, $this); + jl_AbstractStringBuilder_append(var$3, var$4); if ($rt_suspending()) { break main; } $ptr = 11; case 11: - $tmp = jl_AbstractStringBuilder_toString(var$2); + jl_AbstractStringBuilder_append(var$3, var$2); + if ($rt_suspending()) { + break main; + } + $ptr = 12; + case 12: + $tmp = jl_AbstractStringBuilder_toString(var$3); if ($rt_suspending()) { break main; } var$2 = $tmp; jl_Throwable__init_($axis, var$2); $rt_throw($axis); - case 12: - jl_AbstractStringBuilder_append(var$2, var$3); - if ($rt_suspending()) { - break main; - } - $ptr = 13; case 13: - jl_AbstractStringBuilder_append(var$2, $this); + $tmp = jl_String_valueOf($this); if ($rt_suspending()) { break main; } + var$2 = $tmp; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + var$4 = $rt_s(2862); $ptr = 14; case 14: - $tmp = jl_AbstractStringBuilder_toString(var$2); + jl_AbstractStringBuilder_append(var$3, var$4); + if ($rt_suspending()) { + break main; + } + $ptr = 15; + case 15: + jl_AbstractStringBuilder_append(var$3, var$2); + if ($rt_suspending()) { + break main; + } + $ptr = 16; + case 16: + $tmp = jl_AbstractStringBuilder_toString(var$3); if ($rt_suspending()) { break main; } @@ -439814,79 +441217,80 @@ $rt_nativeThread().push($this, $axis, var$2, var$3, var$4, $ptr); } function nmu_EnumFacing_rotateY($this) { - var var$1, var$2, var$3, $ptr, $tmp; + var var$1, var$2, var$3, var$4, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: - $ptr = 1; - case 1: - nmu_EnumFacing$1_$callClinit(); - if ($rt_suspending()) { - break main; - } - switch (nmu_EnumFacing$1_$SwitchMap$net$minecraft$util$EnumFacing.data[$this.$ordinal]) { - case 1: - break; + switch ($this.$ordinal) { case 2: - $ptr = 3; - continue main; + break; case 3: - $ptr = 4; + $ptr = 2; continue main; case 4: - $ptr = 5; + $ptr = 3; + continue main; + case 5: + $ptr = 4; continue main; default: var$1 = new jl_IllegalStateException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - var$3 = $rt_s(2863); - $ptr = 6; + $ptr = 5; continue main; } - $ptr = 2; - case 2: + $ptr = 1; + case 1: nmu_EnumFacing_$callClinit(); if ($rt_suspending()) { break main; } return nmu_EnumFacing_EAST; - case 3: - nmu_EnumFacing_$callClinit(); - if ($rt_suspending()) { - break main; - } - return nmu_EnumFacing_SOUTH; - case 4: + case 2: nmu_EnumFacing_$callClinit(); if ($rt_suspending()) { break main; } return nmu_EnumFacing_WEST; - case 5: + case 3: nmu_EnumFacing_$callClinit(); if ($rt_suspending()) { break main; } return nmu_EnumFacing_NORTH; + case 4: + nmu_EnumFacing_$callClinit(); + if ($rt_suspending()) { + break main; + } + return nmu_EnumFacing_SOUTH; + case 5: + $tmp = jl_String_valueOf($this); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + var$4 = $rt_s(2863); + $ptr = 6; case 6: - jl_AbstractStringBuilder_append(var$2, var$3); + jl_AbstractStringBuilder_append(var$3, var$4); if ($rt_suspending()) { break main; } $ptr = 7; case 7: - jl_AbstractStringBuilder_append(var$2, $this); + jl_AbstractStringBuilder_append(var$3, var$2); if ($rt_suspending()) { break main; } $ptr = 8; case 8: - $tmp = jl_AbstractStringBuilder_toString(var$2); + $tmp = jl_AbstractStringBuilder_toString(var$3); if ($rt_suspending()) { break main; } @@ -439895,82 +441299,83 @@ $rt_throw(var$1); default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, var$1, var$2, var$3, $ptr); + $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); } function nmu_EnumFacing_rotateYCCW($this) { - var var$1, var$2, var$3, $ptr, $tmp; + var var$1, var$2, var$3, var$4, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: - $ptr = 1; - case 1: - nmu_EnumFacing$1_$callClinit(); - if ($rt_suspending()) { - break main; - } - switch (nmu_EnumFacing$1_$SwitchMap$net$minecraft$util$EnumFacing.data[$this.$ordinal]) { - case 1: - break; + switch ($this.$ordinal) { case 2: - $ptr = 3; - continue main; + break; case 3: - $ptr = 4; + $ptr = 2; continue main; case 4: - $ptr = 5; + $ptr = 3; + continue main; + case 5: + $ptr = 4; continue main; default: var$1 = new jl_IllegalStateException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - var$3 = $rt_s(2864); - $ptr = 6; + $ptr = 5; continue main; } - $ptr = 2; - case 2: + $ptr = 1; + case 1: nmu_EnumFacing_$callClinit(); if ($rt_suspending()) { break main; } return nmu_EnumFacing_WEST; - case 3: - nmu_EnumFacing_$callClinit(); - if ($rt_suspending()) { - break main; - } - return nmu_EnumFacing_NORTH; - case 4: + case 2: nmu_EnumFacing_$callClinit(); if ($rt_suspending()) { break main; } return nmu_EnumFacing_EAST; - case 5: + case 3: nmu_EnumFacing_$callClinit(); if ($rt_suspending()) { break main; } return nmu_EnumFacing_SOUTH; + case 4: + nmu_EnumFacing_$callClinit(); + if ($rt_suspending()) { + break main; + } + return nmu_EnumFacing_NORTH; + case 5: + $tmp = jl_String_valueOf($this); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + var$4 = $rt_s(2864); + $ptr = 6; case 6: - jl_AbstractStringBuilder_append(var$2, var$3); + jl_AbstractStringBuilder_append(var$3, var$4); if ($rt_suspending()) { break main; } $ptr = 7; case 7: - jl_AbstractStringBuilder_append(var$2, $this); + jl_AbstractStringBuilder_append(var$3, var$2); if ($rt_suspending()) { break main; } $ptr = 8; case 8: - $tmp = jl_AbstractStringBuilder_toString(var$2); + $tmp = jl_AbstractStringBuilder_toString(var$3); if ($rt_suspending()) { break main; } @@ -439979,7 +441384,7 @@ $rt_throw(var$1); default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, var$1, var$2, var$3, $ptr); + $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); } function nmu_EnumFacing_getFrontOffsetX($this) { var var$1, $ptr, $tmp; @@ -440266,9 +441671,6 @@ var$5 = $facings.data; if ($i >= var$5.length) { $enumfacing = new jl_IllegalArgumentException; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - var$8 = $rt_s(2865); $ptr = 2; continue main; } @@ -440279,25 +441681,42 @@ } return $enumfacing; case 2: - jl_AbstractStringBuilder_append(var$7, var$8); + $tmp = jl_String_valueOf($parAxisDirection); if ($rt_suspending()) { break main; } + $parAxisDirection = $tmp; $ptr = 3; case 3: - jl_AbstractStringBuilder_append(var$7, $parAxisDirection); + $tmp = jl_String_valueOf($parAxis); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append0(var$7, 32); + $parAxis = $tmp; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + var$8 = $rt_s(2865); $ptr = 4; case 4: - jl_AbstractStringBuilder_append(var$7, $parAxis); + jl_AbstractStringBuilder_append(var$7, var$8); if ($rt_suspending()) { break main; } $ptr = 5; case 5: + jl_AbstractStringBuilder_append(var$7, $parAxisDirection); + if ($rt_suspending()) { + break main; + } + jl_AbstractStringBuilder_append0(var$7, 32); + $ptr = 6; + case 6: + jl_AbstractStringBuilder_append(var$7, $parAxis); + if ($rt_suspending()) { + break main; + } + $ptr = 7; + case 7: $tmp = jl_AbstractStringBuilder_toString(var$7); if ($rt_suspending()) { break main; @@ -441023,10 +442442,7 @@ return nmb_BlockLever$EnumOrientation_DOWN_Z; default: var$3 = new jl_IllegalArgumentException; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - var$5 = $rt_s(2925); - $ptr = 6; + $ptr = 7; continue main; } return nmb_BlockLever$EnumOrientation_DOWN_X; @@ -441038,10 +442454,7 @@ return nmb_BlockLever$EnumOrientation_UP_Z; default: var$3 = new jl_IllegalArgumentException; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - var$5 = $rt_s(2925); - $ptr = 11; + $ptr = 14; continue main; } return nmb_BlockLever$EnumOrientation_UP_X; @@ -441055,26 +442468,33 @@ return nmb_BlockLever$EnumOrientation_EAST; default: $entityFacing = new jl_IllegalArgumentException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - var$4 = $rt_s(2926); $ptr = 3; continue main; } return nmb_BlockLever$EnumOrientation_NORTH; case 3: - jl_AbstractStringBuilder_append(var$3, var$4); + $tmp = jl_String_valueOf($clickedSide); if ($rt_suspending()) { break main; } + $clickedSide = $tmp; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + var$4 = $rt_s(2925); $ptr = 4; case 4: - jl_AbstractStringBuilder_append(var$3, $clickedSide); + jl_AbstractStringBuilder_append(var$3, var$4); if ($rt_suspending()) { break main; } $ptr = 5; case 5: + jl_AbstractStringBuilder_append(var$3, $clickedSide); + if ($rt_suspending()) { + break main; + } + $ptr = 6; + case 6: $tmp = jl_AbstractStringBuilder_toString(var$3); if ($rt_suspending()) { break main; @@ -441082,32 +442502,49 @@ $clickedSide = $tmp; jl_Throwable__init_($entityFacing, $clickedSide); $rt_throw($entityFacing); - case 6: - jl_AbstractStringBuilder_append(var$4, var$5); - if ($rt_suspending()) { - break main; - } - $ptr = 7; case 7: - jl_AbstractStringBuilder_append(var$4, $entityFacing); + $tmp = jl_String_valueOf($entityFacing); if ($rt_suspending()) { break main; } - $entityFacing = $rt_s(2927); + $entityFacing = $tmp; $ptr = 8; case 8: - jl_AbstractStringBuilder_append(var$4, $entityFacing); + $tmp = jl_String_valueOf($clickedSide); if ($rt_suspending()) { break main; } + $clickedSide = $tmp; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + var$5 = $rt_s(2926); $ptr = 9; case 9: - jl_AbstractStringBuilder_append(var$4, $clickedSide); + jl_AbstractStringBuilder_append(var$4, var$5); if ($rt_suspending()) { break main; } $ptr = 10; case 10: + jl_AbstractStringBuilder_append(var$4, $entityFacing); + if ($rt_suspending()) { + break main; + } + $entityFacing = $rt_s(2927); + $ptr = 11; + case 11: + jl_AbstractStringBuilder_append(var$4, $entityFacing); + if ($rt_suspending()) { + break main; + } + $ptr = 12; + case 12: + jl_AbstractStringBuilder_append(var$4, $clickedSide); + if ($rt_suspending()) { + break main; + } + $ptr = 13; + case 13: $tmp = jl_AbstractStringBuilder_toString(var$4); if ($rt_suspending()) { break main; @@ -441115,32 +442552,49 @@ $clickedSide = $tmp; jl_Throwable__init_(var$3, $clickedSide); $rt_throw(var$3); - case 11: + case 14: + $tmp = jl_String_valueOf($entityFacing); + if ($rt_suspending()) { + break main; + } + $entityFacing = $tmp; + $ptr = 15; + case 15: + $tmp = jl_String_valueOf($clickedSide); + if ($rt_suspending()) { + break main; + } + $clickedSide = $tmp; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + var$5 = $rt_s(2926); + $ptr = 16; + case 16: jl_AbstractStringBuilder_append(var$4, var$5); if ($rt_suspending()) { break main; } - $ptr = 12; - case 12: + $ptr = 17; + case 17: jl_AbstractStringBuilder_append(var$4, $entityFacing); if ($rt_suspending()) { break main; } $entityFacing = $rt_s(2927); - $ptr = 13; - case 13: + $ptr = 18; + case 18: jl_AbstractStringBuilder_append(var$4, $entityFacing); if ($rt_suspending()) { break main; } - $ptr = 14; - case 14: + $ptr = 19; + case 19: jl_AbstractStringBuilder_append(var$4, $clickedSide); if ($rt_suspending()) { break main; } - $ptr = 15; - case 15: + $ptr = 20; + case 20: $tmp = jl_AbstractStringBuilder_toString(var$4); if ($rt_suspending()) { break main; @@ -442137,7 +443591,6 @@ var$3 = $properties.data; $this.$block5 = $blockIn; $linkedhashmap = new nmbs_BlockState$2; - $linkedhashmap.$this$044 = $this; $ptr = 1; case 1: a: { @@ -442823,7 +444276,7 @@ var$6 = var$12.$rowKey; $ptr = 69; case 69: - cgcc_ImmutableSet$Builder_add(var$8, var$6); + cgcc_ImmutableCollection$ArrayBasedBuilder_add(var$8, var$6); if ($rt_suspending()) { break main; } @@ -443118,7 +444571,7 @@ break main; } var$3 = $tmp; - var$2.$this$045 = $this; + var$2.$this$026 = $this; $ptr = 2; case 2: cgcc_AbstractIndexedListIterator__init_(var$2, var$3, $index); @@ -455707,11 +457160,11 @@ return var_1; } function nmep_EntityWolf__init_0($this, $worldIn) { - var var$2, var$3, var$4, var$5, var$6, var$7, $ptr, $tmp; + var var$2, var$3, var$4, var$5, var$6, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();$worldIn = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();$worldIn = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -455859,10 +457312,7 @@ } $worldIn = $this.$targetTasks; var$4 = 4; - var$5 = new nmea_EntityAITargetNonTamed; - var$7 = new nmep_EntityWolf$1; - var$7.$this$046 = $this; - nmea_EntityAITargetNonTamed__init_(var$5, $this, $rt_cls(nmep_EntityAnimal), 0, var$7); + var$5 = nmea_EntityAITargetNonTamed__init_($this, $rt_cls(nmep_EntityAnimal), 0, new nmep_EntityWolf$1); $ptr = 16; case 16: nmea_EntityAITasks_addTask($worldIn, var$4, var$5); @@ -455888,7 +457338,7 @@ return; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $worldIn, var$2, var$3, var$4, var$5, var$6, var$7, $ptr); + $rt_nativeThread().push($this, $worldIn, var$2, var$3, var$4, var$5, var$6, $ptr); } function nmep_EntityWolf_applyEntityAttributes($this) { var var$1, var$2, var$3, var$4, $ptr, $tmp; @@ -457596,7 +459046,7 @@ continue main; } $worldIn = new nmea_EntityAIFindEntityNearest$1; - $worldIn.$this$047 = var$4; + $worldIn.$this$027 = var$4; var$4.$field_179443_c = $worldIn; var$4.$field_179440_d = nmea_EntityAINearestAttackableTarget$Sorter__init_($this); $ptr = 9; @@ -457612,7 +459062,7 @@ break main; } $worldIn = new nmea_EntityAIFindEntityNearest$1; - $worldIn.$this$047 = var$4; + $worldIn.$this$027 = var$4; var$4.$field_179443_c = $worldIn; var$4.$field_179440_d = nmea_EntityAINearestAttackableTarget$Sorter__init_($this); $ptr = 9; @@ -461114,7 +462564,6 @@ $ientitylivingdata = new nmem_EntityZombie$GroupData; var$4 = nlev_EaglercraftRandom_nextFloat($this.$worldObj0.$rand0) >= 0.05000000074505806 ? 0 : 1; var$5 = nlev_EaglercraftRandom_nextFloat($this.$worldObj0.$rand0) >= 0.05000000074505806 ? 0 : 1; - $ientitylivingdata.$this$048 = $this; $ientitylivingdata.$isChild0 = 0; $ientitylivingdata.$isVillager0 = 0; $ientitylivingdata.$isChild0 = var$4; @@ -465501,7 +466950,7 @@ } $worldIn = $this.$targetTasks; var$4 = 1; - var$5 = nmea_EntityAITargetNonTamed__init_0($this, $rt_cls(nmep_EntityChicken), 0, null); + var$5 = nmea_EntityAITargetNonTamed__init_($this, $rt_cls(nmep_EntityChicken), 0, null); $ptr = 13; case 13: nmea_EntityAITasks_addTask($worldIn, var$4, var$5); @@ -467086,62 +468535,69 @@ var$2 = $this.$operation; var$3 = $this.$name14; var$4 = $this.$id6; + $ptr = 1; + case 1: + $tmp = jl_String_valueOf(var$4); + if ($rt_suspending()) { + break main; + } + var$4 = $tmp; var$5 = $this.$isSaved; var$6 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$6); var$7 = $rt_s(3170); - $ptr = 1; - case 1: - jl_AbstractStringBuilder_append(var$6, var$7); - if ($rt_suspending()) { - break main; - } - jl_AbstractStringBuilder_append7(var$6, var$1); - var$7 = $rt_s(3171); $ptr = 2; case 2: jl_AbstractStringBuilder_append(var$6, var$7); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append1(var$6, var$2); - var$7 = $rt_s(3172); + jl_AbstractStringBuilder_append7(var$6, var$1); + var$7 = $rt_s(3171); $ptr = 3; case 3: jl_AbstractStringBuilder_append(var$6, var$7); if ($rt_suspending()) { break main; } + jl_AbstractStringBuilder_append1(var$6, var$2); + var$7 = $rt_s(3172); $ptr = 4; case 4: - jl_AbstractStringBuilder_append(var$6, var$3); + jl_AbstractStringBuilder_append(var$6, var$7); if ($rt_suspending()) { break main; } - var$3 = $rt_s(3173); $ptr = 5; case 5: jl_AbstractStringBuilder_append(var$6, var$3); if ($rt_suspending()) { break main; } + var$3 = $rt_s(3173); $ptr = 6; case 6: + jl_AbstractStringBuilder_append(var$6, var$3); + if ($rt_suspending()) { + break main; + } + $ptr = 7; + case 7: jl_AbstractStringBuilder_append(var$6, var$4); if ($rt_suspending()) { break main; } var$3 = $rt_s(3174); - $ptr = 7; - case 7: + $ptr = 8; + case 8: jl_AbstractStringBuilder_append(var$6, var$3); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append8(var$6, var$5); jl_AbstractStringBuilder_append0(var$6, 125); - $ptr = 8; - case 8: + $ptr = 9; + case 9: $tmp = jl_AbstractStringBuilder_toString(var$6); if ($rt_suspending()) { break main; @@ -467596,37 +469052,38 @@ } var$2 = $tmp; var$2 = var$2.$statName; + $ptr = 6; + case 6: + $tmp = jl_String_valueOf(var$2); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; var$4 = $this.$statName; + $ptr = 7; + case 7: + $tmp = jl_String_valueOf(var$4); + if ($rt_suspending()) { + break main; + } + var$4 = $tmp; var$5 = $this.$statId; var$6 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$6); var$7 = $rt_s(3175); - $ptr = 6; - case 6: - jl_AbstractStringBuilder_append(var$6, var$7); - if ($rt_suspending()) { - break main; - } - $ptr = 7; - case 7: - jl_AbstractStringBuilder_append(var$6, var$2); - if ($rt_suspending()) { - break main; - } - var$2 = $rt_s(3176); $ptr = 8; case 8: - jl_AbstractStringBuilder_append(var$6, var$2); + jl_AbstractStringBuilder_append(var$6, var$7); if ($rt_suspending()) { break main; } $ptr = 9; case 9: - jl_AbstractStringBuilder_append(var$6, var$4); + jl_AbstractStringBuilder_append(var$6, var$2); if ($rt_suspending()) { break main; } - var$2 = $rt_s(3177); + var$2 = $rt_s(3176); $ptr = 10; case 10: jl_AbstractStringBuilder_append(var$6, var$2); @@ -467635,12 +469092,25 @@ } $ptr = 11; case 11: + jl_AbstractStringBuilder_append(var$6, var$4); + if ($rt_suspending()) { + break main; + } + var$2 = $rt_s(3177); + $ptr = 12; + case 12: + jl_AbstractStringBuilder_append(var$6, var$2); + if ($rt_suspending()) { + break main; + } + $ptr = 13; + case 13: jl_AbstractStringBuilder_append(var$6, var$5); if ($rt_suspending()) { break main; } - $ptr = 12; - case 12: + $ptr = 14; + case 14: $tmp = jl_AbstractStringBuilder_toString(var$6); if ($rt_suspending()) { break main; @@ -467820,46 +469290,46 @@ case 0: var$1 = $this.$statId; var$2 = $this.$statName; + $ptr = 1; + case 1: + $tmp = jl_String_valueOf(var$2); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; var$3 = $this.$isIndependent; var$4 = $this.$type4; + $ptr = 2; + case 2: + $tmp = jl_String_valueOf(var$4); + if ($rt_suspending()) { + break main; + } + var$4 = $tmp; var$5 = $this.$field_150957_c; + $ptr = 3; + case 3: + $tmp = jl_String_valueOf(var$5); + if ($rt_suspending()) { + break main; + } + var$5 = $tmp; var$6 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$6); var$7 = $rt_s(3178); - $ptr = 1; - case 1: + $ptr = 4; + case 4: jl_AbstractStringBuilder_append(var$6, var$7); if ($rt_suspending()) { break main; } - $ptr = 2; - case 2: - jl_AbstractStringBuilder_append(var$6, var$1); - if ($rt_suspending()) { - break main; - } - var$1 = $rt_s(3179); - $ptr = 3; - case 3: - jl_AbstractStringBuilder_append(var$6, var$1); - if ($rt_suspending()) { - break main; - } - $ptr = 4; - case 4: - jl_AbstractStringBuilder_append(var$6, var$2); - if ($rt_suspending()) { - break main; - } - var$1 = $rt_s(3180); $ptr = 5; case 5: jl_AbstractStringBuilder_append(var$6, var$1); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append8(var$6, var$3); - var$1 = $rt_s(3181); + var$1 = $rt_s(3179); $ptr = 6; case 6: jl_AbstractStringBuilder_append(var$6, var$1); @@ -467868,26 +469338,47 @@ } $ptr = 7; case 7: - jl_AbstractStringBuilder_append(var$6, var$4); + jl_AbstractStringBuilder_append(var$6, var$2); if ($rt_suspending()) { break main; } - var$1 = $rt_s(3182); + var$1 = $rt_s(3180); $ptr = 8; case 8: jl_AbstractStringBuilder_append(var$6, var$1); if ($rt_suspending()) { break main; } + jl_AbstractStringBuilder_append8(var$6, var$3); + var$1 = $rt_s(3181); $ptr = 9; case 9: + jl_AbstractStringBuilder_append(var$6, var$1); + if ($rt_suspending()) { + break main; + } + $ptr = 10; + case 10: + jl_AbstractStringBuilder_append(var$6, var$4); + if ($rt_suspending()) { + break main; + } + var$1 = $rt_s(3182); + $ptr = 11; + case 11: + jl_AbstractStringBuilder_append(var$6, var$1); + if ($rt_suspending()) { + break main; + } + $ptr = 12; + case 12: jl_AbstractStringBuilder_append(var$6, var$5); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append0(var$6, 125); - $ptr = 10; - case 10: + $ptr = 13; + case 13: $tmp = jl_AbstractStringBuilder_toString(var$6); if ($rt_suspending()) { break main; @@ -469229,115 +470720,125 @@ if (var$2 === null) { var$3 = $rt_s(21); var$4 = $this.$siblings; - var$5 = nmu_ChatComponentStyle_getChatStyle($this); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - var$7 = $rt_s(3189); $ptr = 1; continue main; } var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); jl_AbstractStringBuilder_append5(var$3, $rt_s(2480)); - var$8 = 0; - var$9 = var$2.data; - if (var$8 >= var$9.length) { + var$5 = 0; + var$6 = var$2.data; + if (var$5 >= var$6.length) { jl_AbstractStringBuilder_append5(var$3, $rt_s(2481)); - $ptr = 10; + $ptr = 12; continue main; } - if (var$8 > 0) + if (var$5 > 0) jl_AbstractStringBuilder_append5(var$3, $rt_s(554)); - var$4 = var$9[var$8]; - $ptr = 11; + var$4 = var$6[var$5]; + $ptr = 13; continue main; case 1: - jl_AbstractStringBuilder_append(var$6, var$7); + $tmp = jl_String_valueOf(var$4); if ($rt_suspending()) { break main; } + var$4 = $tmp; + var$7 = nmu_ChatComponentStyle_getChatStyle($this); $ptr = 2; case 2: - jl_AbstractStringBuilder_append(var$6, var$1); + $tmp = jl_String_valueOf(var$7); if ($rt_suspending()) { break main; } - var$1 = $rt_s(3190); + var$7 = $tmp; + var$8 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$8); + var$9 = $rt_s(3189); $ptr = 3; case 3: - jl_AbstractStringBuilder_append(var$6, var$1); + jl_AbstractStringBuilder_append(var$8, var$9); if ($rt_suspending()) { break main; } $ptr = 4; case 4: - jl_AbstractStringBuilder_append(var$6, var$3); + jl_AbstractStringBuilder_append(var$8, var$1); if ($rt_suspending()) { break main; } - var$1 = $rt_s(3191); + var$1 = $rt_s(3190); $ptr = 5; case 5: - jl_AbstractStringBuilder_append(var$6, var$1); + jl_AbstractStringBuilder_append(var$8, var$1); if ($rt_suspending()) { break main; } $ptr = 6; case 6: - jl_AbstractStringBuilder_append(var$6, var$4); + jl_AbstractStringBuilder_append(var$8, var$3); if ($rt_suspending()) { break main; } - var$1 = $rt_s(2689); + var$1 = $rt_s(3191); $ptr = 7; case 7: - jl_AbstractStringBuilder_append(var$6, var$1); + jl_AbstractStringBuilder_append(var$8, var$1); if ($rt_suspending()) { break main; } $ptr = 8; case 8: - jl_AbstractStringBuilder_append(var$6, var$5); + jl_AbstractStringBuilder_append(var$8, var$4); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append0(var$6, 125); + var$1 = $rt_s(2689); $ptr = 9; case 9: - $tmp = jl_AbstractStringBuilder_toString(var$6); + jl_AbstractStringBuilder_append(var$8, var$1); + if ($rt_suspending()) { + break main; + } + $ptr = 10; + case 10: + jl_AbstractStringBuilder_append(var$8, var$7); + if ($rt_suspending()) { + break main; + } + jl_AbstractStringBuilder_append0(var$8, 125); + $ptr = 11; + case 11: + $tmp = jl_AbstractStringBuilder_toString(var$8); if ($rt_suspending()) { break main; } var$1 = $tmp; return var$1; - case 10: + case 12: $tmp = jl_AbstractStringBuilder_toString(var$3); if ($rt_suspending()) { break main; } var$3 = $tmp; var$4 = $this.$siblings; - var$5 = nmu_ChatComponentStyle_getChatStyle($this); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - var$7 = $rt_s(3189); $ptr = 1; continue main; - case 11: + case 13: jl_AbstractStringBuilder_append(var$3, var$4); if ($rt_suspending()) { break main; } - var$8 = var$8 + 1 | 0; - var$9 = var$2.data; - if (var$8 >= var$9.length) { + var$5 = var$5 + 1 | 0; + var$6 = var$2.data; + if (var$5 >= var$6.length) { jl_AbstractStringBuilder_append5(var$3, $rt_s(2481)); - $ptr = 10; + $ptr = 12; continue main; } - if (var$8 > 0) + if (var$5 > 0) jl_AbstractStringBuilder_append5(var$3, $rt_s(554)); - var$4 = var$9[var$8]; + var$4 = var$6[var$5]; continue main; default: $rt_invalidPointer(); }} @@ -474280,7 +475781,7 @@ var$3 = $rt_createArray(jl_Object, 1); var$4 = var$3.data; var$5 = 0; - var$6 = nmcs_KeyBinding_getKeyCode(var$1.$this$049.$gameSettings.$keyBindInventory); + var$6 = nmcs_KeyBinding_getKeyCode(var$1.$this$028.$gameSettings.$keyBindInventory); $ptr = 3; continue main; } catch ($$e) { @@ -482342,7 +483843,7 @@ function cgcb_Splitter$1_iterator($this, var$1, var$2) { var var$3; var$3 = new cgcb_Splitter$1$1; - var$3.$this$050 = $this; + var$3.$this$029 = $this; cgcb_Splitter$SplittingIterator__init_(var$3, var$1, var$2); return var$3; } @@ -483429,7 +484930,7 @@ var var$1; if ($this.$cachedKeySet === null) { var$1 = new ju_IdentityHashMap$1; - var$1.$this$051 = $this; + var$1.$this$030 = $this; $this.$cachedKeySet = var$1; } return $this.$cachedKeySet; @@ -489211,7 +490712,6 @@ } var$2 = new nmi_InventoryCrafting; $worldIn = new nmep_EntitySheep$1; - $worldIn.$this$052 = $this; nmi_Container__init_($worldIn); nmi_InventoryCrafting__init_(var$2, $worldIn, 2, 1); $this.$inventoryCrafting = var$2; @@ -490450,7 +491950,6 @@ break main; } $worldIn = new nmep_EntityRabbit$RabbitJumpHelper; - $worldIn.$this$053 = $this; nmea_EntityJumpHelper__init_0($worldIn, $this); $worldIn.$field_180068_d = 0; $worldIn.$theEntity2 = $this; @@ -520590,69 +522089,63 @@ } main: while (true) { switch ($ptr) { case 0: - $ptr = 1; - case 1: - nmei_EntityMinecart$1_$callClinit(); - if ($rt_suspending()) { - break main; - } - switch (nmei_EntityMinecart$1_$SwitchMap$net$minecraft$entity$item$EntityMinecart$EnumMinecartType.data[$parEnumMinecartType.$ordinal]) { + switch ($parEnumMinecartType.$ordinal) { case 1: break; case 2: $parEnumMinecartType = new nmei_EntityMinecartFurnace; - $ptr = 3; + $ptr = 2; continue main; case 3: $parEnumMinecartType = new nmei_EntityMinecartTNT; - $ptr = 4; + $ptr = 3; continue main; case 4: $parEnumMinecartType = new nmea_EntityMinecartMobSpawner; - $ptr = 5; + $ptr = 4; continue main; case 5: $parEnumMinecartType = new nmei_EntityMinecartHopper; - $ptr = 6; + $ptr = 5; continue main; case 6: $parEnumMinecartType = new nme_EntityMinecartCommandBlock; - $ptr = 7; + $ptr = 6; continue main; default: $parEnumMinecartType = new nmei_EntityMinecartEmpty; - $ptr = 9; + $ptr = 8; continue main; } $parEnumMinecartType = new nmei_EntityMinecartChest; - $ptr = 2; - case 2: + $ptr = 1; + case 1: nmei_EntityMinecartContainer__init_($parEnumMinecartType, $worldIn, $parDouble1, $parDouble2, $parDouble3); if ($rt_suspending()) { break main; } return $parEnumMinecartType; + case 2: + nmei_EntityMinecart__init_0($parEnumMinecartType, $worldIn, $parDouble1, $parDouble2, $parDouble3); + if ($rt_suspending()) { + break main; + } + return $parEnumMinecartType; case 3: nmei_EntityMinecart__init_0($parEnumMinecartType, $worldIn, $parDouble1, $parDouble2, $parDouble3); if ($rt_suspending()) { break main; } + $parEnumMinecartType.$minecartTNTFuse = (-1); return $parEnumMinecartType; case 4: - nmei_EntityMinecart__init_0($parEnumMinecartType, $worldIn, $parDouble1, $parDouble2, $parDouble3); - if ($rt_suspending()) { - break main; - } - $parEnumMinecartType.$minecartTNTFuse = (-1); - return $parEnumMinecartType; - case 5: nmei_EntityMinecart__init_0($parEnumMinecartType, $worldIn, $parDouble1, $parDouble2, $parDouble3); if ($rt_suspending()) { break main; } $parEnumMinecartType.$mobSpawnerLogic = nmea_EntityMinecartMobSpawner$1__init_($parEnumMinecartType); return $parEnumMinecartType; - case 6: + case 5: nmei_EntityMinecartContainer__init_($parEnumMinecartType, $worldIn, $parDouble1, $parDouble2, $parDouble3); if ($rt_suspending()) { break main; @@ -520662,14 +522155,14 @@ nmu_BlockPos_$callClinit(); $parEnumMinecartType.$field_174900_c = nmu_BlockPos_ORIGIN; return $parEnumMinecartType; - case 7: + case 6: nmei_EntityMinecart__init_0($parEnumMinecartType, $worldIn, $parDouble1, $parDouble2, $parDouble3); if ($rt_suspending()) { break main; } $worldIn = new nme_EntityMinecartCommandBlock$1; - $ptr = 8; - case 8: + $ptr = 7; + case 7: nme_EntityMinecartCommandBlock$1__init_($worldIn, $parEnumMinecartType); if ($rt_suspending()) { break main; @@ -520677,7 +522170,7 @@ $parEnumMinecartType.$commandBlockLogic = $worldIn; $parEnumMinecartType.$activatorRailCooldown = 0; return $parEnumMinecartType; - case 9: + case 8: nmei_EntityMinecart__init_0($parEnumMinecartType, $worldIn, $parDouble1, $parDouble2, $parDouble3); if ($rt_suspending()) { break main; @@ -521697,19 +523190,14 @@ $blockrailbase = $tmp; $ptr = 5; case 5: - $tmp = nmbs_BlockState$StateImplementation_getValue($parIBlockState, $blockrailbase); - if ($rt_suspending()) { - break main; - } - $parIBlockState = $tmp; - $blockrailbase$enumraildirection = $parIBlockState; - $ptr = 6; - case 6: a: { - nmei_EntityMinecart$1_$callClinit(); + $tmp = nmbs_BlockState$StateImplementation_getValue($parIBlockState, $blockrailbase); if ($rt_suspending()) { break main; } + $parIBlockState = $tmp; + $blockrailbase$enumraildirection = $parIBlockState; + nmei_EntityMinecart$1_$callClinit(); switch (nmei_EntityMinecart$1_$SwitchMap$net$minecraft$block$BlockRailBase$EnumRailDirection.data[jl_Enum_ordinal($blockrailbase$enumraildirection)]) { case 1: break; @@ -521793,8 +523281,8 @@ $d3 = $d20 + $d3 * $d5; $this.$posZ = $d3; $d5 = $this.$posY; - $ptr = 7; - case 7: + $ptr = 6; + case 6: nmei_EntityMinecart_setPosition($this, $d2, $d5, $d3); if ($rt_suspending()) { break main; @@ -521810,8 +523298,8 @@ $d3 = nmu_MathHelper_clamp_double($d22, $d2, $d13); $d2 = nmu_MathHelper_clamp_double($d23, $d2, $d13); $d5 = 0.0; - $ptr = 8; - case 8: + $ptr = 7; + case 7: nme_Entity_moveEntity($this, $d3, $d5, $d2); if ($rt_suspending()) { break main; @@ -521820,18 +523308,18 @@ $d2 = $this.$posX; $d3 = $this.$posY + var$11[0].data[1]; $d5 = $this.$posZ; - $ptr = 11; + $ptr = 10; continue main; } if (var$11[1].data[1] && (nmu_MathHelper_floor_double($this.$posX) - nmu_Vec3i_getX($parBlockPos) | 0) == var$11[1].data[0] && (nmu_MathHelper_floor_double($this.$posZ) - nmu_Vec3i_getZ($parBlockPos) | 0) == var$11[1].data[2]) { $d2 = $this.$posX; $d3 = $this.$posY + var$11[1].data[1]; $d5 = $this.$posZ; - $ptr = 12; + $ptr = 11; continue main; } - $ptr = 9; - case 9: + $ptr = 8; + case 8: $this.$applyDrag(); if ($rt_suspending()) { break main; @@ -521839,8 +523327,8 @@ $d2 = $this.$posX; $d3 = $this.$posY; $d5 = $this.$posZ; - $ptr = 10; - case 10: + $ptr = 9; + case 9: $tmp = nmei_EntityMinecart_func_70489_a($this, $d2, $d3, $d5); if ($rt_suspending()) { break main; @@ -521861,7 +523349,7 @@ $d2 = $this.$posX; $d3 = $vec31.$yCoord; $d5 = $this.$posZ; - $ptr = 13; + $ptr = 12; continue main; } $j = nmu_MathHelper_floor_double($this.$posX); @@ -521887,32 +523375,32 @@ } else { if ($blockrailbase$enumraildirection === nmb_BlockRailBase$EnumRailDirection_EAST_WEST) { $parIBlockState = $this.$worldObj0; - $ptr = 14; + $ptr = 13; continue main; } if ($blockrailbase$enumraildirection === nmb_BlockRailBase$EnumRailDirection_NORTH_SOUTH) { $parIBlockState = $this.$worldObj0; - $ptr = 17; + $ptr = 16; continue main; } } } return; + case 10: + nmei_EntityMinecart_setPosition($this, $d2, $d3, $d5); + if ($rt_suspending()) { + break main; + } + $ptr = 8; + continue main; case 11: nmei_EntityMinecart_setPosition($this, $d2, $d3, $d5); if ($rt_suspending()) { break main; } - $ptr = 9; + $ptr = 8; continue main; case 12: - nmei_EntityMinecart_setPosition($this, $d2, $d3, $d5); - if ($rt_suspending()) { - break main; - } - $ptr = 9; - continue main; - case 13: nmei_EntityMinecart_setPosition($this, $d2, $d3, $d5); if ($rt_suspending()) { break main; @@ -521940,33 +523428,33 @@ } else { if ($blockrailbase$enumraildirection === nmb_BlockRailBase$EnumRailDirection_EAST_WEST) { $parIBlockState = $this.$worldObj0; - $ptr = 14; + $ptr = 13; continue main; } if ($blockrailbase$enumraildirection === nmb_BlockRailBase$EnumRailDirection_NORTH_SOUTH) { $parIBlockState = $this.$worldObj0; - $ptr = 17; + $ptr = 16; continue main; } } } return; - case 14: + case 13: $tmp = nmu_BlockPos_west($parBlockPos); if ($rt_suspending()) { break main; } $vec3 = $tmp; - $ptr = 15; - case 15: + $ptr = 14; + case 14: $tmp = nmw_World_getBlockState($parIBlockState, $vec3); if ($rt_suspending()) { break main; } $parIBlockState = $tmp; $parIBlockState = nmbs_BlockState$StateImplementation_getBlock($parIBlockState); - $ptr = 16; - case 16: + $ptr = 15; + case 15: $tmp = nmb_Block_isNormalCube($parIBlockState); if ($rt_suspending()) { break main; @@ -521977,24 +523465,24 @@ return; } $parIBlockState = $this.$worldObj0; - $ptr = 20; + $ptr = 19; continue main; - case 17: + case 16: $tmp = nmu_BlockPos_north($parBlockPos); if ($rt_suspending()) { break main; } $vec3 = $tmp; - $ptr = 18; - case 18: + $ptr = 17; + case 17: $tmp = nmw_World_getBlockState($parIBlockState, $vec3); if ($rt_suspending()) { break main; } $parIBlockState = $tmp; $parIBlockState = nmbs_BlockState$StateImplementation_getBlock($parIBlockState); - $ptr = 19; - case 19: + $ptr = 18; + case 18: $tmp = nmb_Block_isNormalCube($parIBlockState); if ($rt_suspending()) { break main; @@ -522005,24 +523493,24 @@ return; } $parIBlockState = $this.$worldObj0; - $ptr = 23; + $ptr = 22; continue main; - case 20: + case 19: $tmp = nmu_BlockPos_east($parBlockPos); if ($rt_suspending()) { break main; } $parBlockPos = $tmp; - $ptr = 21; - case 21: + $ptr = 20; + case 20: $tmp = nmw_World_getBlockState($parIBlockState, $parBlockPos); if ($rt_suspending()) { break main; } $parBlockPos = $tmp; $parBlockPos = nmbs_BlockState$StateImplementation_getBlock($parBlockPos); - $ptr = 22; - case 22: + $ptr = 21; + case 21: $tmp = nmb_Block_isNormalCube($parBlockPos); if ($rt_suspending()) { break main; @@ -522031,22 +523519,22 @@ if ($j) $this.$motionX = (-0.02); return; - case 23: + case 22: $tmp = nmu_BlockPos_south($parBlockPos); if ($rt_suspending()) { break main; } $parBlockPos = $tmp; - $ptr = 24; - case 24: + $ptr = 23; + case 23: $tmp = nmw_World_getBlockState($parIBlockState, $parBlockPos); if ($rt_suspending()) { break main; } $parBlockPos = $tmp; $parBlockPos = nmbs_BlockState$StateImplementation_getBlock($parBlockPos); - $ptr = 25; - case 25: + $ptr = 24; + case 24: $tmp = nmb_Block_isNormalCube($parBlockPos); if ($rt_suspending()) { break main; @@ -526667,10 +528155,7 @@ } var$6 = var$2.$targetTasks; var$7 = 3; - var$8 = new nmea_EntityAINearestAttackableTarget; - var$1 = new nmem_EntityEnderman$1; - var$1.$this$054 = var$2; - nmea_EntityAINearestAttackableTarget__init_1(var$8, var$2, $rt_cls(nmem_EntityEndermite), 10, 1, 0, var$1); + var$8 = nmea_EntityAINearestAttackableTarget__init_1(var$2, $rt_cls(nmem_EntityEndermite), 10, 1, 0, new nmem_EntityEnderman$1); $ptr = 13; case 13: nmea_EntityAITasks_addTask(var$6, var$7, var$8); @@ -530113,7 +531598,7 @@ } var$5 = $this.$targetTasks; var$4 = 2; - var$7 = nmea_EntityAINearestAttackableTarget__init_2($this, $rt_cls(nme_EntityLiving), 0, 0, 0, nmeb_EntityWither_attackEntitySelector); + var$7 = nmea_EntityAINearestAttackableTarget__init_1($this, $rt_cls(nme_EntityLiving), 0, 0, 0, nmeb_EntityWither_attackEntitySelector); $ptr = 11; case 11: nmea_EntityAITasks_addTask(var$5, var$4, var$7); @@ -532655,7 +534140,7 @@ var$7 = new nmea_EntityAINearestAttackableTarget; $worldIn = new nmem_EntityGuardian$GuardianTargetSelector; $worldIn.$parentEntity3 = $this; - nmea_EntityAINearestAttackableTarget__init_1(var$7, $this, $rt_cls(nme_EntityLivingBase), 10, 1, 0, $worldIn); + nmea_EntityAINearestAttackableTarget__init_2(var$7, $this, $rt_cls(nme_EntityLivingBase), 10, 1, 0, $worldIn); $ptr = 9; case 9: nmea_EntityAITasks_addTask(var$5, var$4, var$7); @@ -533886,7 +535371,7 @@ $lst = $this.$worldObj0; var$4 = $rt_cls(nmep_EntityPlayerMP); $entityplayermp = new nmem_EntityGuardian$1; - $entityplayermp.$this$055 = $this; + $entityplayermp.$this$031 = $this; $ptr = 4; case 4: $tmp = nmw_World_getPlayers($lst, var$4, $entityplayermp); @@ -534704,7 +536189,7 @@ } var$5 = $this.$targetTasks; var$6 = 1; - var$7 = nmea_EntityAINearestAttackableTarget__init_2($this, $rt_cls(nme_EntityLiving), 10, 1, 0, nmem_IMob_mobSelector); + var$7 = nmea_EntityAINearestAttackableTarget__init_1($this, $rt_cls(nme_EntityLiving), 10, 1, 0, nmem_IMob_mobSelector); $ptr = 7; case 7: nmea_EntityAITasks_addTask(var$5, var$6, var$7); @@ -535239,9 +536724,9 @@ var$4 = 3; var$7 = new nmem_EntityIronGolem$AINearestAttackableTargetNonCreeper; $worldIn = nmem_IMob_VISIBLE_MOB_SELECTOR; - nmea_EntityAINearestAttackableTarget__init_1(var$7, $this, $rt_cls(nme_EntityLiving), 10, 0, 1, $worldIn); + nmea_EntityAINearestAttackableTarget__init_2(var$7, $this, $rt_cls(nme_EntityLiving), 10, 0, 1, $worldIn); var$8 = new nmem_EntityIronGolem$AINearestAttackableTargetNonCreeper$1; - var$8.$this$056 = var$7; + var$8.$this$032 = var$7; var$8.$val$parPredicate = $worldIn; var$8.$val$creature = $this; var$7.$targetEntitySelector = var$8; @@ -536307,7 +537792,7 @@ if ($this.$charClassWithSurrogates === null) { $lHS = $this.$getLowHighSurrogates(); var$2 = new jur_AbstractCharClass$1; - var$2.$this$057 = $this; + var$2.$this$033 = $this; var$2.$val$lHS = $lHS; jur_AbstractCharClass__init_(var$2); $this.$charClassWithSurrogates = var$2; @@ -536320,7 +537805,7 @@ if ($this.$charClassWithoutSurrogates === null) { $lHS = $this.$getLowHighSurrogates(); var$2 = new jur_AbstractCharClass$2; - var$2.$this$058 = $this; + var$2.$this$034 = $this; var$2.$val$lHS0 = $lHS; var$2.$val$thisClass = $this; jur_AbstractCharClass__init_(var$2); @@ -536505,7 +537990,7 @@ if ($nb !== null) { if (!$curAlt) { var$4 = new jur_CharClass$5; - var$4.$this$059 = $this; + var$4.$this$035 = $this; var$4.$val$curAlt = $curAlt; var$4.$val$nb = $nb; var$4.$val$cc = $cc; @@ -536513,7 +537998,7 @@ $this.$nonBitSet = var$4; } else { var$4 = new jur_CharClass$4; - var$4.$this$060 = $this; + var$4.$this$036 = $this; var$4.$val$curAlt0 = $curAlt; var$4.$val$nb0 = $nb; var$4.$val$cc0 = $cc; @@ -536523,20 +538008,20 @@ } else { if ($curAlt && !$this.$inverted0 && ju_BitSet_isEmpty($this.$bits0)) { $nb = new jur_CharClass$1; - $nb.$this$061 = $this; + $nb.$this$037 = $this; $nb.$val$cc1 = $cc; jur_AbstractCharClass__init_($nb); $this.$nonBitSet = $nb; } else if (!$curAlt) { $nb = new jur_CharClass$3; - $nb.$this$062 = $this; + $nb.$this$038 = $this; $nb.$val$curAlt1 = $curAlt; $nb.$val$cc2 = $cc; jur_AbstractCharClass__init_($nb); $this.$nonBitSet = $nb; } else { $nb = new jur_CharClass$2; - $nb.$this$063 = $this; + $nb.$this$039 = $this; $nb.$val$curAlt2 = $curAlt; $nb.$val$cc3 = $cc; jur_AbstractCharClass__init_($nb); @@ -536616,7 +538101,7 @@ if ($nb !== null) { if (!$curAlt) { var$4 = new jur_CharClass$11; - var$4.$this$064 = $this; + var$4.$this$040 = $this; var$4.$val$curAlt3 = $curAlt; var$4.$val$nb1 = $nb; var$4.$val$clazz = $clazz; @@ -536624,7 +538109,7 @@ $this.$nonBitSet = var$4; } else { var$4 = new jur_CharClass$10; - var$4.$this$065 = $this; + var$4.$this$041 = $this; var$4.$val$curAlt4 = $curAlt; var$4.$val$nb2 = $nb; var$4.$val$clazz0 = $clazz; @@ -536635,27 +538120,27 @@ if (!$this.$inverted0 && ju_BitSet_isEmpty($this.$bits0)) { if (!$curAlt) { $nb = new jur_CharClass$7; - $nb.$this$066 = $this; + $nb.$this$042 = $this; $nb.$val$clazz1 = $clazz; jur_AbstractCharClass__init_($nb); $this.$nonBitSet = $nb; } else { $nb = new jur_CharClass$6; - $nb.$this$067 = $this; + $nb.$this$043 = $this; $nb.$val$clazz2 = $clazz; jur_AbstractCharClass__init_($nb); $this.$nonBitSet = $nb; } } else if (!$curAlt) { $nb = new jur_CharClass$9; - $nb.$this$068 = $this; + $nb.$this$044 = $this; $nb.$val$clazz3 = $clazz; $nb.$val$curAlt5 = $curAlt; jur_AbstractCharClass__init_($nb); $this.$nonBitSet = $nb; } else { $nb = new jur_CharClass$8; - $nb.$this$069 = $this; + $nb.$this$045 = $this; $nb.$val$clazz4 = $clazz; $nb.$val$curAlt6 = $curAlt; jur_AbstractCharClass__init_($nb); @@ -536704,7 +538189,7 @@ if ($nb !== null) { if (!$curAlt) { var$4 = new jur_CharClass$17; - var$4.$this$070 = $this; + var$4.$this$046 = $this; var$4.$val$curAlt7 = $curAlt; var$4.$val$nb3 = $nb; var$4.$val$clazz5 = $clazz; @@ -536712,7 +538197,7 @@ $this.$nonBitSet = var$4; } else { var$4 = new jur_CharClass$16; - var$4.$this$071 = $this; + var$4.$this$047 = $this; var$4.$val$curAlt8 = $curAlt; var$4.$val$nb4 = $nb; var$4.$val$clazz6 = $clazz; @@ -536723,27 +538208,27 @@ if (!$this.$inverted0 && ju_BitSet_isEmpty($this.$bits0)) { if (!$curAlt) { $nb = new jur_CharClass$13; - $nb.$this$072 = $this; + $nb.$this$048 = $this; $nb.$val$clazz7 = $clazz; jur_AbstractCharClass__init_($nb); $this.$nonBitSet = $nb; } else { $nb = new jur_CharClass$12; - $nb.$this$073 = $this; + $nb.$this$049 = $this; $nb.$val$clazz8 = $clazz; jur_AbstractCharClass__init_($nb); $this.$nonBitSet = $nb; } } else if (!$curAlt) { $nb = new jur_CharClass$15; - $nb.$this$074 = $this; + $nb.$this$050 = $this; $nb.$val$clazz9 = $clazz; $nb.$val$curAlt9 = $curAlt; jur_AbstractCharClass__init_($nb); $this.$nonBitSet = $nb; } else { $nb = new jur_CharClass$14; - $nb.$this$075 = $this; + $nb.$this$051 = $this; $nb.$val$clazz10 = $clazz; $nb.$val$curAlt10 = $curAlt; jur_AbstractCharClass__init_($nb); @@ -536774,7 +538259,7 @@ return $this; $bs = jur_CharClass_getBits($this); $res = new jur_CharClass$18; - $res.$this$076 = $this; + $res.$this$052 = $this; $res.$val$bs = $bs; jur_AbstractCharClass__init_($res); return jur_AbstractCharClass_setNegative($res, $this.$alt0); @@ -538233,33 +539718,37 @@ case 0: if ($key === null) { $key = new jl_NullPointerException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - var$4 = $rt_s(3525); $ptr = 1; continue main; } if ($value !== null) return; $value = new jl_NullPointerException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - var$4 = $rt_s(3526); - $ptr = 4; + $ptr = 5; continue main; case 1: - jl_AbstractStringBuilder_append(var$3, var$4); + $tmp = jl_String_valueOf($value); if ($rt_suspending()) { break main; } + $value = $tmp; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + var$4 = $rt_s(3525); $ptr = 2; case 2: - jl_AbstractStringBuilder_append(var$3, $value); + jl_AbstractStringBuilder_append(var$3, var$4); if ($rt_suspending()) { break main; } $ptr = 3; case 3: + jl_AbstractStringBuilder_append(var$3, $value); + if ($rt_suspending()) { + break main; + } + $ptr = 4; + case 4: $tmp = jl_AbstractStringBuilder_toString(var$3); if ($rt_suspending()) { break main; @@ -538267,26 +539756,36 @@ $value = $tmp; jl_Throwable__init_($key, $value); $rt_throw($key); - case 4: - jl_AbstractStringBuilder_append(var$3, var$4); - if ($rt_suspending()) { - break main; - } - $ptr = 5; case 5: - jl_AbstractStringBuilder_append(var$3, $key); + $tmp = jl_String_valueOf($key); if ($rt_suspending()) { break main; } - $key = $rt_s(3527); + $key = $tmp; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + var$4 = $rt_s(3526); $ptr = 6; case 6: - jl_AbstractStringBuilder_append(var$3, $key); + jl_AbstractStringBuilder_append(var$3, var$4); if ($rt_suspending()) { break main; } $ptr = 7; case 7: + jl_AbstractStringBuilder_append(var$3, $key); + if ($rt_suspending()) { + break main; + } + $key = $rt_s(3527); + $ptr = 8; + case 8: + jl_AbstractStringBuilder_append(var$3, $key); + if ($rt_suspending()) { + break main; + } + $ptr = 9; + case 9: $tmp = jl_AbstractStringBuilder_toString(var$3); if ($rt_suspending()) { break main; @@ -554921,76 +556420,76 @@ return $rt_s(3819); } function nmc_CommandExecuteAt_processCommand($this, $parICommandSender, $parArrayOfString) { - var var$3, $i, $blockpos, $block, $entity, $d0, $j, $d1, $d2, $b0, $blockpos1, $world, $s, $icommandsender, $icommandmanager, $d3, $d4, $d5, $iblockstate, $$je, $ptr, $tmp; + var var$3, $j, $entity, $iblockstate, $d0, $b0, $d1, $d2, $blockpos, $world, $i, $s, $icommandsender, $icommandmanager, $d3, $d4, $d5, $block, $blockpos1, $$je, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$iblockstate = $thread.pop();$d5 = $thread.pop();$d4 = $thread.pop();$d3 = $thread.pop();$icommandmanager = $thread.pop();$icommandsender = $thread.pop();$s = $thread.pop();$world = $thread.pop();$blockpos1 = $thread.pop();$b0 = $thread.pop();$d2 = $thread.pop();$d1 = $thread.pop();$j = $thread.pop();$d0 = $thread.pop();$entity = $thread.pop();$block = $thread.pop();$blockpos = $thread.pop();$i = $thread.pop();var$3 = $thread.pop();$parArrayOfString = $thread.pop();$parICommandSender + $ptr = $thread.pop();$blockpos1 = $thread.pop();$block = $thread.pop();$d5 = $thread.pop();$d4 = $thread.pop();$d3 = $thread.pop();$icommandmanager = $thread.pop();$icommandsender = $thread.pop();$s = $thread.pop();$i = $thread.pop();$world = $thread.pop();$blockpos = $thread.pop();$d2 = $thread.pop();$d1 = $thread.pop();$b0 = $thread.pop();$d0 = $thread.pop();$iblockstate = $thread.pop();$entity = $thread.pop();$j = $thread.pop();var$3 = $thread.pop();$parArrayOfString = $thread.pop();$parICommandSender = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: var$3 = $parArrayOfString.data; - $i = var$3.length; - if ($i < 5) { + $j = var$3.length; + if ($j < 5) { $parICommandSender = new nmc_WrongUsageException; nmc_CommandException__init_($parICommandSender, $rt_s(3819), $rt_createArray(jl_Object, 0)); $rt_throw($parICommandSender); } - $blockpos = var$3[0]; - $block = $rt_cls(nme_Entity); + $entity = var$3[0]; + $iblockstate = $rt_cls(nme_Entity); $ptr = 1; case 1: - $tmp = nmc_CommandBase_getEntity($parICommandSender, $blockpos, $block); + $tmp = nmc_CommandBase_getEntity($parICommandSender, $entity, $iblockstate); if ($rt_suspending()) { break main; } $entity = $tmp; $d0 = $entity.$posX; - $blockpos = var$3[1]; - $j = 0; + $iblockstate = var$3[1]; + $b0 = 0; $ptr = 2; case 2: - $tmp = nmc_CommandBase_parseDouble3($d0, $blockpos, $j); + $tmp = nmc_CommandBase_parseDouble3($d0, $iblockstate, $b0); if ($rt_suspending()) { break main; } $d0 = $tmp; $d1 = $entity.$posY; - $blockpos = var$3[2]; - $j = 0; + $iblockstate = var$3[2]; + $b0 = 0; $ptr = 3; case 3: - $tmp = nmc_CommandBase_parseDouble3($d1, $blockpos, $j); + $tmp = nmc_CommandBase_parseDouble3($d1, $iblockstate, $b0); if ($rt_suspending()) { break main; } $d1 = $tmp; $d2 = $entity.$posZ; - $blockpos = var$3[3]; - $j = 0; + $iblockstate = var$3[3]; + $b0 = 0; $ptr = 4; case 4: - $tmp = nmc_CommandBase_parseDouble3($d2, $blockpos, $j); + $tmp = nmc_CommandBase_parseDouble3($d2, $iblockstate, $b0); if ($rt_suspending()) { break main; } $d2 = $tmp; $blockpos = nmu_BlockPos__init_1($d0, $d1, $d2); $b0 = 4; - $block = $rt_s(3820); - $blockpos1 = var$3[4]; + $iblockstate = $rt_s(3820); + $world = var$3[4]; $ptr = 5; case 5: - $tmp = jl_String_equals($block, $blockpos1); + $tmp = jl_String_equals($iblockstate, $world); if ($rt_suspending()) { break main; } - $j = $tmp; - if ($j && $i > 10) { + $i = $tmp; + if ($i && $j > 10) { $world = $entity.$worldObj0; - $block = var$3[5]; - $j = 0; + $iblockstate = var$3[5]; + $b0 = 0; $ptr = 8; continue main; } @@ -555002,7 +556501,6 @@ } $s = $tmp; $icommandsender = new nmc_CommandExecuteAt$1; - $icommandsender.$this$077 = $this; $icommandsender.$val$entity = $entity; $icommandsender.$val$parICommandSender = $parICommandSender; $icommandsender.$val$blockpos0 = $blockpos; @@ -555028,51 +556526,51 @@ } } $parICommandSender = new nmc_CommandException; - $blockpos = $rt_s(3821); + $iblockstate = $rt_s(3821); $parArrayOfString = $rt_createArray(jl_Object, 2); var$3 = $parArrayOfString.data; var$3[0] = $s; - $j = 1; + $b0 = 1; $ptr = 16; continue main; case 8: - $tmp = nmc_CommandBase_parseDouble3($d0, $block, $j); + $tmp = nmc_CommandBase_parseDouble3($d0, $iblockstate, $b0); if ($rt_suspending()) { break main; } $d3 = $tmp; - $block = var$3[6]; - $j = 0; + $iblockstate = var$3[6]; + $b0 = 0; $ptr = 9; case 9: - $tmp = nmc_CommandBase_parseDouble3($d1, $block, $j); + $tmp = nmc_CommandBase_parseDouble3($d1, $iblockstate, $b0); if ($rt_suspending()) { break main; } $d4 = $tmp; - $block = var$3[7]; - $j = 0; + $iblockstate = var$3[7]; + $b0 = 0; $ptr = 10; case 10: - $tmp = nmc_CommandBase_parseDouble3($d2, $block, $j); + $tmp = nmc_CommandBase_parseDouble3($d2, $iblockstate, $b0); if ($rt_suspending()) { break main; } $d5 = $tmp; - $block = var$3[8]; + $iblockstate = var$3[8]; $ptr = 11; case 11: - $tmp = nmc_CommandBase_getBlockByText($parICommandSender, $block); + $tmp = nmc_CommandBase_getBlockByText($parICommandSender, $iblockstate); if ($rt_suspending()) { break main; } $block = $tmp; - $blockpos1 = var$3[9]; - $j = (-1); - $i = 15; + $iblockstate = var$3[9]; + $b0 = (-1); + $j = 15; $ptr = 12; case 12: - $tmp = nmc_CommandBase_parseInt1($blockpos1, $j, $i); + $tmp = nmc_CommandBase_parseInt1($iblockstate, $b0, $j); if ($rt_suspending()) { break main; } @@ -555085,8 +556583,8 @@ break main; } $iblockstate = $tmp; - $blockpos1 = $iblockstate.$block; - if ($blockpos1 === $block) { + $world = $iblockstate.$block; + if ($world === $block) { if ($j >= 0) { $ptr = 17; continue main; @@ -555096,11 +556594,11 @@ continue main; } $parICommandSender = new nmc_CommandException; - $blockpos = $rt_s(3821); + $iblockstate = $rt_s(3821); $parArrayOfString = $rt_createArray(jl_Object, 2); var$3 = $parArrayOfString.data; var$3[0] = $rt_s(3820); - $j = 1; + $b0 = 1; $ptr = 15; continue main; case 14: @@ -555139,11 +556637,11 @@ } } $parICommandSender = new nmc_CommandException; - $blockpos = $rt_s(3821); + $iblockstate = $rt_s(3821); $parArrayOfString = $rt_createArray(jl_Object, 2); var$3 = $parArrayOfString.data; var$3[0] = $s; - $j = 1; + $b0 = 1; $ptr = 16; continue main; case 15: @@ -555151,41 +556649,41 @@ if ($rt_suspending()) { break main; } - $block = $tmp; - var$3[$j] = $block; - nmc_CommandException__init_($parICommandSender, $blockpos, $parArrayOfString); + $entity = $tmp; + var$3[$b0] = $entity; + nmc_CommandException__init_($parICommandSender, $iblockstate, $parArrayOfString); $rt_throw($parICommandSender); case 16: $tmp = $entity.$getName(); if ($rt_suspending()) { break main; } - $block = $tmp; - var$3[$j] = $block; - nmc_CommandException__init_($parICommandSender, $blockpos, $parArrayOfString); + $entity = $tmp; + var$3[$b0] = $entity; + nmc_CommandException__init_($parICommandSender, $iblockstate, $parArrayOfString); $rt_throw($parICommandSender); case 17: - $tmp = $blockpos1.$getMetaFromState($iblockstate); + $tmp = $world.$getMetaFromState($iblockstate); if ($rt_suspending()) { break main; } - $i = $tmp; - if ($i == $j) { + $b0 = $tmp; + if ($b0 == $j) { $b0 = 10; $ptr = 6; continue main; } $parICommandSender = new nmc_CommandException; - $blockpos = $rt_s(3821); + $iblockstate = $rt_s(3821); $parArrayOfString = $rt_createArray(jl_Object, 2); var$3 = $parArrayOfString.data; var$3[0] = $rt_s(3820); - $j = 1; + $b0 = 1; $ptr = 15; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $parICommandSender, $parArrayOfString, var$3, $i, $blockpos, $block, $entity, $d0, $j, $d1, $d2, $b0, $blockpos1, $world, $s, $icommandsender, $icommandmanager, $d3, $d4, $d5, $iblockstate, $ptr); + $rt_nativeThread().push($this, $parICommandSender, $parArrayOfString, var$3, $j, $entity, $iblockstate, $d0, $b0, $d1, $d2, $blockpos, $world, $i, $s, $icommandsender, $icommandmanager, $d3, $d4, $d5, $block, $blockpos1, $ptr); } function nmc_CommandExecuteAt_addTabCompletionOptions($this, $var1, $astring, $blockpos) { var var$4, var$5, var$6, var$7, $ptr, $tmp; @@ -556038,7 +557536,6 @@ } $arraylist1 = $tmp; $arraylist2 = new nmcs_CommandAchievement$1; - $arraylist2.$this$078 = $this; $arraylist2.$val$entityplayermp = $entityplayermp; $arraylist2.$val$statbase = $statbase; $arraylist1 = cgcc_Iterators_filter($arraylist1, $arraylist2); @@ -568737,131 +570234,152 @@ case 0: var$1 = $this.$parentStyle === null ? 0 : 1; var$2 = $this.$color2; + $ptr = 1; + case 1: + $tmp = jl_String_valueOf(var$2); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; var$3 = $this.$bold; var$4 = $this.$italic; var$5 = $this.$underlined; var$6 = $this.$obfuscated; var$7 = nmu_ChatStyle_getChatClickEvent($this); - var$8 = nmu_ChatStyle_getChatHoverEvent($this); - var$9 = nmu_ChatStyle_getInsertion($this); - var$10 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$10); - var$11 = $rt_s(3960); - $ptr = 1; - case 1: - jl_AbstractStringBuilder_append(var$10, var$11); - if ($rt_suspending()) { - break main; - } - jl_AbstractStringBuilder_append8(var$10, var$1); - var$11 = $rt_s(3961); $ptr = 2; case 2: - jl_AbstractStringBuilder_append(var$10, var$11); + $tmp = jl_String_valueOf(var$7); if ($rt_suspending()) { break main; } + var$8 = $tmp; + var$7 = nmu_ChatStyle_getChatHoverEvent($this); $ptr = 3; case 3: - jl_AbstractStringBuilder_append(var$10, var$2); + $tmp = jl_String_valueOf(var$7); + if ($rt_suspending()) { + break main; + } + var$9 = $tmp; + var$10 = nmu_ChatStyle_getInsertion($this); + var$11 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$11); + var$7 = $rt_s(3960); + $ptr = 4; + case 4: + jl_AbstractStringBuilder_append(var$11, var$7); + if ($rt_suspending()) { + break main; + } + jl_AbstractStringBuilder_append8(var$11, var$1); + var$7 = $rt_s(3961); + $ptr = 5; + case 5: + jl_AbstractStringBuilder_append(var$11, var$7); + if ($rt_suspending()) { + break main; + } + $ptr = 6; + case 6: + jl_AbstractStringBuilder_append(var$11, var$2); if ($rt_suspending()) { break main; } var$2 = $rt_s(3962); - $ptr = 4; - case 4: - jl_AbstractStringBuilder_append(var$10, var$2); + $ptr = 7; + case 7: + jl_AbstractStringBuilder_append(var$11, var$2); if ($rt_suspending()) { break main; } - $ptr = 5; - case 5: - jl_AbstractStringBuilder_append(var$10, var$3); + $ptr = 8; + case 8: + jl_AbstractStringBuilder_append(var$11, var$3); if ($rt_suspending()) { break main; } var$2 = $rt_s(3963); - $ptr = 6; - case 6: - jl_AbstractStringBuilder_append(var$10, var$2); + $ptr = 9; + case 9: + jl_AbstractStringBuilder_append(var$11, var$2); if ($rt_suspending()) { break main; } - $ptr = 7; - case 7: - jl_AbstractStringBuilder_append(var$10, var$4); + $ptr = 10; + case 10: + jl_AbstractStringBuilder_append(var$11, var$4); if ($rt_suspending()) { break main; } var$2 = $rt_s(3964); - $ptr = 8; - case 8: - jl_AbstractStringBuilder_append(var$10, var$2); + $ptr = 11; + case 11: + jl_AbstractStringBuilder_append(var$11, var$2); if ($rt_suspending()) { break main; } - $ptr = 9; - case 9: - jl_AbstractStringBuilder_append(var$10, var$5); + $ptr = 12; + case 12: + jl_AbstractStringBuilder_append(var$11, var$5); if ($rt_suspending()) { break main; } var$2 = $rt_s(3965); - $ptr = 10; - case 10: - jl_AbstractStringBuilder_append(var$10, var$2); + $ptr = 13; + case 13: + jl_AbstractStringBuilder_append(var$11, var$2); if ($rt_suspending()) { break main; } - $ptr = 11; - case 11: - jl_AbstractStringBuilder_append(var$10, var$6); + $ptr = 14; + case 14: + jl_AbstractStringBuilder_append(var$11, var$6); if ($rt_suspending()) { break main; } var$2 = $rt_s(3966); - $ptr = 12; - case 12: - jl_AbstractStringBuilder_append(var$10, var$2); + $ptr = 15; + case 15: + jl_AbstractStringBuilder_append(var$11, var$2); if ($rt_suspending()) { break main; } - $ptr = 13; - case 13: - jl_AbstractStringBuilder_append(var$10, var$7); + $ptr = 16; + case 16: + jl_AbstractStringBuilder_append(var$11, var$8); if ($rt_suspending()) { break main; } var$2 = $rt_s(3967); - $ptr = 14; - case 14: - jl_AbstractStringBuilder_append(var$10, var$2); + $ptr = 17; + case 17: + jl_AbstractStringBuilder_append(var$11, var$2); if ($rt_suspending()) { break main; } - $ptr = 15; - case 15: - jl_AbstractStringBuilder_append(var$10, var$8); + $ptr = 18; + case 18: + jl_AbstractStringBuilder_append(var$11, var$9); if ($rt_suspending()) { break main; } var$2 = $rt_s(3968); - $ptr = 16; - case 16: - jl_AbstractStringBuilder_append(var$10, var$2); + $ptr = 19; + case 19: + jl_AbstractStringBuilder_append(var$11, var$2); if ($rt_suspending()) { break main; } - $ptr = 17; - case 17: - jl_AbstractStringBuilder_append(var$10, var$9); + $ptr = 20; + case 20: + jl_AbstractStringBuilder_append(var$11, var$10); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append0(var$10, 125); - $ptr = 18; - case 18: - $tmp = jl_AbstractStringBuilder_toString(var$10); + jl_AbstractStringBuilder_append0(var$11, 125); + $ptr = 21; + case 21: + $tmp = jl_AbstractStringBuilder_toString(var$11); if ($rt_suspending()) { break main; } @@ -575476,18 +576994,13 @@ }} $rt_nativeThread().push($this, $parCraftingManager, $colors, $i, var$4, $enumdyecolor, var$6, var$7, var$8, var$9, var$10, var$11, var$12, $ptr); } - function nmic_CraftingManager$1() { - jl_Object.call(this); - this.$this$079 = null; - } + var nmic_CraftingManager$1 = $rt_classWithoutFields(); function nmic_CraftingManager$1__init_(var_0) { var var_1 = new nmic_CraftingManager$1(); nmic_CraftingManager$1__init_0(var_1, var_0); return var_1; } - function nmic_CraftingManager$1__init_0($this, $this$0) { - $this.$this$079 = $this$0; - } + function nmic_CraftingManager$1__init_0($this, $this$0) {} function nmic_CraftingManager$1_compare($this, var$1, var$2) { var$1 = var$1; var$2 = var$2; @@ -590689,9 +592202,6 @@ continue main; } var$2 = new jl_IllegalStateException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - var$4 = $rt_s(4077); $ptr = 2; continue main; case 1: @@ -590700,164 +592210,174 @@ break main; } var$1 = $tmp; - var$5 = $this.$field_149444_b; - var$6 = 0; - var$7 = var$5.$size; - var$8 = null; - if (var$6 >= var$7) + var$3 = $this.$field_149444_b; + var$4 = 0; + var$5 = var$3.$size; + var$6 = null; + if (var$4 >= var$5) return; - $ptr = 5; + $ptr = 6; continue main; case 2: - jl_AbstractStringBuilder_append(var$3, var$4); + $tmp = jl_String_valueOf(var$1); if ($rt_suspending()) { break main; } + var$1 = $tmp; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + var$3 = $rt_s(4077); $ptr = 3; case 3: - jl_AbstractStringBuilder_append(var$3, var$1); + jl_AbstractStringBuilder_append(var$7, var$3); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append0(var$3, 41); $ptr = 4; case 4: - $tmp = jl_AbstractStringBuilder_toString(var$3); + jl_AbstractStringBuilder_append(var$7, var$1); + if ($rt_suspending()) { + break main; + } + jl_AbstractStringBuilder_append0(var$7, 41); + $ptr = 5; + case 5: + $tmp = jl_AbstractStringBuilder_toString(var$7); if ($rt_suspending()) { break main; } var$1 = $tmp; jl_Throwable__init_(var$2, var$1); $rt_throw(var$2); - case 5: - $tmp = ju_ArrayList_get(var$5, var$6); + case 6: + $tmp = ju_ArrayList_get(var$3, var$4); if ($rt_suspending()) { break main; } var$2 = $tmp; var$2 = var$2; - var$3 = var$2.$field_151412_b; - $ptr = 6; - case 6: - $tmp = nmeaa_ServersideAttributeMap_getAttributeInstanceByName(var$1, var$3); - if ($rt_suspending()) { - break main; - } - var$9 = $tmp; - if (var$9 !== null) { - var$10 = var$2.$field_151413_c; - $ptr = 8; - continue main; - } - var$3 = nmeaa_RangedAttribute__init_(var$8, var$2.$field_151412_b, 0.0, 2.2250738585072014E-308, 1.7976931348623157E308); + var$7 = var$2.$field_151412_b; $ptr = 7; case 7: - $tmp = nmeaa_ServersideAttributeMap_registerAttribute(var$1, var$3); + $tmp = nmeaa_ServersideAttributeMap_getAttributeInstanceByName(var$1, var$7); if ($rt_suspending()) { break main; } - var$9 = $tmp; - var$10 = var$2.$field_151413_c; + var$8 = $tmp; + if (var$8 !== null) { + var$9 = var$2.$field_151413_c; + $ptr = 9; + continue main; + } + var$7 = nmeaa_RangedAttribute__init_(var$6, var$2.$field_151412_b, 0.0, 2.2250738585072014E-308, 1.7976931348623157E308); $ptr = 8; case 8: - nmeaa_ModifiableAttributeInstance_setBaseValue(var$9, var$10); + $tmp = nmeaa_ServersideAttributeMap_registerAttribute(var$1, var$7); if ($rt_suspending()) { break main; } + var$8 = $tmp; + var$9 = var$2.$field_151413_c; $ptr = 9; case 9: - $tmp = nmeaa_ModifiableAttributeInstance_func_111122_c(var$9); + nmeaa_ModifiableAttributeInstance_setBaseValue(var$8, var$9); if ($rt_suspending()) { break main; } - var$3 = $tmp; - if (var$3 !== null) { - $ptr = 11; + $ptr = 10; + case 10: + $tmp = nmeaa_ModifiableAttributeInstance_func_111122_c(var$8); + if ($rt_suspending()) { + break main; + } + var$7 = $tmp; + if (var$7 !== null) { + $ptr = 12; continue main; } var$2 = var$2.$field_151411_d; - $ptr = 10; - case 10: + $ptr = 11; + case 11: $tmp = var$2.$iterator(); if ($rt_suspending()) { break main; } var$2 = $tmp; - $ptr = 13; - continue main; - case 11: - $tmp = cgcc_Lists_newArrayList0(var$3); - if ($rt_suspending()) { - break main; - } - var$3 = $tmp; - $ptr = 12; - case 12: - $tmp = ju_AbstractList_iterator(var$3); - if ($rt_suspending()) { - break main; - } - var$3 = $tmp; $ptr = 14; continue main; + case 12: + $tmp = cgcc_Lists_newArrayList0(var$7); + if ($rt_suspending()) { + break main; + } + var$7 = $tmp; + $ptr = 13; case 13: + $tmp = ju_AbstractList_iterator(var$7); + if ($rt_suspending()) { + break main; + } + var$10 = $tmp; + $ptr = 15; + continue main; + case 14: $tmp = var$2.$hasNext(); if ($rt_suspending()) { break main; } var$11 = $tmp; if (var$11) { - $ptr = 15; + $ptr = 16; continue main; } - var$6 = var$6 + 1 | 0; - if (var$6 >= var$7) + var$4 = var$4 + 1 | 0; + if (var$4 >= var$5) return; - $ptr = 5; + $ptr = 6; continue main; - case 14: - $tmp = ju_AbstractList$1_hasNext(var$3); + case 15: + $tmp = ju_AbstractList$1_hasNext(var$10); if ($rt_suspending()) { break main; } var$11 = $tmp; if (var$11) { - $ptr = 17; + $ptr = 18; continue main; } var$2 = var$2.$field_151411_d; - $ptr = 10; + $ptr = 11; continue main; - case 15: + case 16: $tmp = var$2.$next(); if ($rt_suspending()) { break main; } - var$3 = $tmp; - var$3 = var$3; - $ptr = 16; - case 16: - nmeaa_ModifiableAttributeInstance_applyModifier(var$9, var$3); - if ($rt_suspending()) { - break main; - } - $ptr = 13; - continue main; + var$7 = $tmp; + var$7 = var$7; + $ptr = 17; case 17: - $tmp = ju_AbstractList$1_next(var$3); - if ($rt_suspending()) { - break main; - } - var$4 = $tmp; - var$4 = var$4; - $ptr = 18; - case 18: - nmeaa_ModifiableAttributeInstance_removeModifier(var$9, var$4); + nmeaa_ModifiableAttributeInstance_applyModifier(var$8, var$7); if ($rt_suspending()) { break main; } $ptr = 14; continue main; + case 18: + $tmp = ju_AbstractList$1_next(var$10); + if ($rt_suspending()) { + break main; + } + var$7 = $tmp; + var$7 = var$7; + $ptr = 19; + case 19: + nmeaa_ModifiableAttributeInstance_removeModifier(var$8, var$7); + if ($rt_suspending()) { + break main; + } + $ptr = 15; + continue main; default: $rt_invalidPointer(); }} $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, $ptr); @@ -591364,7 +592884,7 @@ } var$7 = $tmp; var$2 = nmu_ObjectIntIdentityMap_getByValue(var$2, var$7); - var$6.$this$080 = $this; + var$6.$this$053 = $this; var$6.$chunkPosCrammed = var$4; var$6.$blockState1 = var$2; var$5[$i] = var$6; @@ -593073,11 +594593,11 @@ return $this.$particleArguments; } function nmnps_S2APacketParticles_processPacket($this, var$1) { - var var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15, $$je, $ptr, $tmp; + var var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, $$je, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$15 = $thread.pop();var$14 = $thread.pop();var$13 = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$14 = $thread.pop();var$13 = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -593111,20 +594631,20 @@ if (var$7 >= $this.$particleCount) return; var$3 = nlev_EaglercraftRandom_nextGaussian(var$1.$avRandomizer) * $this.$xOffset; - var$12 = nlev_EaglercraftRandom_nextGaussian(var$1.$avRandomizer) * $this.$yOffset; - var$4 = nlev_EaglercraftRandom_nextGaussian(var$1.$avRandomizer) * $this.$zOffset; - var$5 = nlev_EaglercraftRandom_nextGaussian(var$1.$avRandomizer) * $this.$particleSpeed; + var$4 = nlev_EaglercraftRandom_nextGaussian(var$1.$avRandomizer) * $this.$yOffset; + var$5 = nlev_EaglercraftRandom_nextGaussian(var$1.$avRandomizer) * $this.$zOffset; var$8 = nlev_EaglercraftRandom_nextGaussian(var$1.$avRandomizer) * $this.$particleSpeed; var$9 = nlev_EaglercraftRandom_nextGaussian(var$1.$avRandomizer) * $this.$particleSpeed; + var$10 = nlev_EaglercraftRandom_nextGaussian(var$1.$avRandomizer) * $this.$particleSpeed; try { var$6 = var$1.$clientWorldController; - var$13 = nmnps_S2APacketParticles_getParticleType($this); - var$14 = nmnps_S2APacketParticles_isLongDistance($this); - var$10 = nmnps_S2APacketParticles_getXCoordinate($this) + var$3; - var$12 = nmnps_S2APacketParticles_getYCoordinate($this) + var$12; - var$3 = nmnps_S2APacketParticles_getZCoordinate($this) + var$4; + var$12 = nmnps_S2APacketParticles_getParticleType($this); + var$13 = nmnps_S2APacketParticles_isLongDistance($this); + var$3 = nmnps_S2APacketParticles_getXCoordinate($this) + var$3; + var$4 = nmnps_S2APacketParticles_getYCoordinate($this) + var$4; + var$5 = nmnps_S2APacketParticles_getZCoordinate($this) + var$5; var$11 = nmnps_S2APacketParticles_getParticleArgs($this); - $ptr = 7; + $ptr = 8; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -593133,7 +594653,7 @@ throw $$e; } } - $ptr = 8; + $ptr = 9; continue main; case 1: a: { @@ -593159,40 +594679,47 @@ break main; } var$1 = nmcn_NetHandlerPlayClient_logger; - var$15 = $this.$particleType; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - var$13 = $rt_s(4078); + var$6 = $this.$particleType; $ptr = 3; case 3: - jl_AbstractStringBuilder_append(var$6, var$13); + $tmp = jl_String_valueOf(var$6); if ($rt_suspending()) { break main; } + var$6 = $tmp; + var$12 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$12); + var$14 = $rt_s(4078); $ptr = 4; case 4: - jl_AbstractStringBuilder_append(var$6, var$15); + jl_AbstractStringBuilder_append(var$12, var$14); if ($rt_suspending()) { break main; } $ptr = 5; case 5: - $tmp = jl_AbstractStringBuilder_toString(var$6); + jl_AbstractStringBuilder_append(var$12, var$6); + if ($rt_suspending()) { + break main; + } + $ptr = 6; + case 6: + $tmp = jl_AbstractStringBuilder_toString(var$12); if ($rt_suspending()) { break main; } var$6 = $tmp; - $ptr = 6; - case 6: + $ptr = 7; + case 7: nlevl_Logger_warn(var$1, var$6); if ($rt_suspending()) { break main; } return; - case 7: + case 8: a: { try { - nmw_World_spawnParticle0(var$6, var$13, var$14, var$10, var$12, var$3, var$5, var$8, var$9, var$11); + nmw_World_spawnParticle0(var$6, var$12, var$13, var$3, var$4, var$5, var$8, var$9, var$10, var$11); if ($rt_suspending()) { break main; } @@ -593208,18 +594735,18 @@ if (var$7 >= $this.$particleCount) return; var$3 = nlev_EaglercraftRandom_nextGaussian(var$1.$avRandomizer) * $this.$xOffset; - var$12 = nlev_EaglercraftRandom_nextGaussian(var$1.$avRandomizer) * $this.$yOffset; - var$4 = nlev_EaglercraftRandom_nextGaussian(var$1.$avRandomizer) * $this.$zOffset; - var$5 = nlev_EaglercraftRandom_nextGaussian(var$1.$avRandomizer) * $this.$particleSpeed; + var$4 = nlev_EaglercraftRandom_nextGaussian(var$1.$avRandomizer) * $this.$yOffset; + var$5 = nlev_EaglercraftRandom_nextGaussian(var$1.$avRandomizer) * $this.$zOffset; var$8 = nlev_EaglercraftRandom_nextGaussian(var$1.$avRandomizer) * $this.$particleSpeed; var$9 = nlev_EaglercraftRandom_nextGaussian(var$1.$avRandomizer) * $this.$particleSpeed; + var$10 = nlev_EaglercraftRandom_nextGaussian(var$1.$avRandomizer) * $this.$particleSpeed; try { var$6 = var$1.$clientWorldController; - var$13 = nmnps_S2APacketParticles_getParticleType($this); - var$14 = nmnps_S2APacketParticles_isLongDistance($this); - var$10 = nmnps_S2APacketParticles_getXCoordinate($this) + var$3; - var$12 = nmnps_S2APacketParticles_getYCoordinate($this) + var$12; - var$3 = nmnps_S2APacketParticles_getZCoordinate($this) + var$4; + var$12 = nmnps_S2APacketParticles_getParticleType($this); + var$13 = nmnps_S2APacketParticles_isLongDistance($this); + var$3 = nmnps_S2APacketParticles_getXCoordinate($this) + var$3; + var$4 = nmnps_S2APacketParticles_getYCoordinate($this) + var$4; + var$5 = nmnps_S2APacketParticles_getZCoordinate($this) + var$5; var$11 = nmnps_S2APacketParticles_getParticleArgs($this); continue main; } catch ($$e) { @@ -593230,38 +594757,45 @@ } } } - $ptr = 8; - case 8: + $ptr = 9; + case 9: nmcn_NetHandlerPlayClient_$callClinit(); if ($rt_suspending()) { break main; } var$1 = nmcn_NetHandlerPlayClient_logger; - var$15 = $this.$particleType; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - var$13 = $rt_s(4078); - $ptr = 9; - case 9: - jl_AbstractStringBuilder_append(var$6, var$13); - if ($rt_suspending()) { - break main; - } + var$6 = $this.$particleType; $ptr = 10; case 10: - jl_AbstractStringBuilder_append(var$6, var$15); - if ($rt_suspending()) { - break main; - } - $ptr = 11; - case 11: - $tmp = jl_AbstractStringBuilder_toString(var$6); + $tmp = jl_String_valueOf(var$6); if ($rt_suspending()) { break main; } var$6 = $tmp; + var$12 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$12); + var$14 = $rt_s(4078); + $ptr = 11; + case 11: + jl_AbstractStringBuilder_append(var$12, var$14); + if ($rt_suspending()) { + break main; + } $ptr = 12; case 12: + jl_AbstractStringBuilder_append(var$12, var$6); + if ($rt_suspending()) { + break main; + } + $ptr = 13; + case 13: + $tmp = jl_AbstractStringBuilder_toString(var$12); + if ($rt_suspending()) { + break main; + } + var$6 = $tmp; + $ptr = 14; + case 14: nlevl_Logger_warn(var$1, var$6); if ($rt_suspending()) { break main; @@ -593269,7 +594803,7 @@ return; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15, $ptr); + $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, $ptr); } function nmnps_S2BPacketChangeGameState() { var a = this; jl_Object.call(a); @@ -595910,11 +597444,11 @@ $rt_nativeThread().push($this, $actionIn, $players, $i, var$4, var$5, $entityplayermp, var$7, var$8, $ptr); } function nmnps_S38PacketPlayerListItem_readPacketData($this, $parPacketBuffer) { - var var$2, $i, $j, var$5, var$6, var$7, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent, $s, $s1, $i1, $l, var$16, var$17, $ptr, $tmp; + var var$2, $i, $j, var$5, var$6, var$7, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent, $s1, $s, var$14, $l, $i1, var$17, var$18, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$17 = $thread.pop();var$16 = $thread.pop();$l = $thread.pop();$i1 = $thread.pop();$s1 = $thread.pop();$s = $thread.pop();$ichatcomponent = $thread.pop();$worldsettings$gametype = $thread.pop();$k = $thread.pop();$gameprofile = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();$j = $thread.pop();$i = $thread.pop();var$2 = $thread.pop();$parPacketBuffer = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$18 = $thread.pop();var$17 = $thread.pop();$i1 = $thread.pop();$l = $thread.pop();var$14 = $thread.pop();$s = $thread.pop();$s1 = $thread.pop();$ichatcomponent = $thread.pop();$worldsettings$gametype = $thread.pop();$k = $thread.pop();$gameprofile = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();$j = $thread.pop();$i = $thread.pop();var$2 = $thread.pop();$parPacketBuffer = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -595945,29 +597479,28 @@ $k = 0; $worldsettings$gametype = null; $ichatcomponent = null; - nmnps_S38PacketPlayerListItem$1_$callClinit(); - switch (nmnps_S38PacketPlayerListItem$1_$SwitchMap$net$minecraft$network$play$server$S38PacketPlayerListItem$Action.data[$this.$action.$ordinal]) { - case 1: + switch ($this.$action.$ordinal) { + case 0: break; - case 2: + case 1: $gameprofile = new nlevma_GameProfile; $ptr = 7; continue main; - case 3: + case 2: $gameprofile = new nlevma_GameProfile; $ptr = 10; continue main; - case 4: + case 3: $gameprofile = new nlevma_GameProfile; $ptr = 13; continue main; - case 5: + case 4: $gameprofile = new nlevma_GameProfile; $ptr = 16; continue main; default: - $s = $this.$players; - $s1 = nmnps_S38PacketPlayerListItem$AddPlayerData__init_($this, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent); + $s1 = $this.$players; + $s = nmnps_S38PacketPlayerListItem$AddPlayerData__init_($this, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent); $ptr = 18; continue main; } @@ -595979,10 +597512,10 @@ break main; } $s = $tmp; - $i1 = 16; + var$14 = 16; $ptr = 4; case 4: - $tmp = nmn_PacketBuffer_readStringFromBuffer($parPacketBuffer, $i1); + $tmp = nmn_PacketBuffer_readStringFromBuffer($parPacketBuffer, var$14); if ($rt_suspending()) { break main; } @@ -596005,7 +597538,7 @@ $ptr = 20; continue main; } - $k = 32767; + var$14 = 32767; $ptr = 23; continue main; case 7: @@ -596026,10 +597559,10 @@ if ($rt_suspending()) { break main; } - $i1 = $tmp; - $worldsettings$gametype = nmw_WorldSettings$GameType_getByID($i1); - $s = $this.$players; - $s1 = nmnps_S38PacketPlayerListItem$AddPlayerData__init_($this, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent); + var$14 = $tmp; + $worldsettings$gametype = nmw_WorldSettings$GameType_getByID(var$14); + $s1 = $this.$players; + $s = nmnps_S38PacketPlayerListItem$AddPlayerData__init_($this, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent); $ptr = 18; continue main; case 10: @@ -596051,8 +597584,8 @@ break main; } $k = $tmp; - $s = $this.$players; - $s1 = nmnps_S38PacketPlayerListItem$AddPlayerData__init_($this, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent); + $s1 = $this.$players; + $s = nmnps_S38PacketPlayerListItem$AddPlayerData__init_($this, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent); $ptr = 18; continue main; case 13: @@ -596073,13 +597606,13 @@ if ($rt_suspending()) { break main; } - $i1 = $tmp; - if ($i1) { + var$14 = $tmp; + if (var$14) { $ptr = 19; continue main; } - $s = $this.$players; - $s1 = nmnps_S38PacketPlayerListItem$AddPlayerData__init_($this, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent); + $s1 = $this.$players; + $s = nmnps_S38PacketPlayerListItem$AddPlayerData__init_($this, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent); $ptr = 18; continue main; case 16: @@ -596094,11 +597627,11 @@ if ($rt_suspending()) { break main; } - $s = $this.$players; - $s1 = nmnps_S38PacketPlayerListItem$AddPlayerData__init_($this, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent); + $s1 = $this.$players; + $s = nmnps_S38PacketPlayerListItem$AddPlayerData__init_($this, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent); $ptr = 18; case 18: - ju_ArrayList_add($s, $s1); + ju_ArrayList_add($s1, $s); if ($rt_suspending()) { break main; } @@ -596109,29 +597642,28 @@ $k = 0; $worldsettings$gametype = null; $ichatcomponent = null; - nmnps_S38PacketPlayerListItem$1_$callClinit(); - switch (nmnps_S38PacketPlayerListItem$1_$SwitchMap$net$minecraft$network$play$server$S38PacketPlayerListItem$Action.data[$this.$action.$ordinal]) { - case 1: + switch ($this.$action.$ordinal) { + case 0: break; - case 2: + case 1: $gameprofile = new nlevma_GameProfile; $ptr = 7; continue main; - case 3: + case 2: $gameprofile = new nlevma_GameProfile; $ptr = 10; continue main; - case 4: + case 3: $gameprofile = new nlevma_GameProfile; $ptr = 13; continue main; - case 5: + case 4: $gameprofile = new nlevma_GameProfile; $ptr = 16; continue main; default: - $s = $this.$players; - $s1 = nmnps_S38PacketPlayerListItem$AddPlayerData__init_($this, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent); + $s1 = $this.$players; + $s = nmnps_S38PacketPlayerListItem$AddPlayerData__init_($this, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent); continue main; } $gameprofile = new nlevma_GameProfile; @@ -596143,8 +597675,8 @@ break main; } $ichatcomponent = $tmp; - $s = $this.$players; - $s1 = nmnps_S38PacketPlayerListItem$AddPlayerData__init_($this, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent); + $s1 = $this.$players; + $s = nmnps_S38PacketPlayerListItem$AddPlayerData__init_($this, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent); $ptr = 18; continue main; case 20: @@ -596152,8 +597684,8 @@ if ($rt_suspending()) { break main; } - $i1 = $tmp; - $worldsettings$gametype = nmw_WorldSettings$GameType_getByID($i1); + var$14 = $tmp; + $worldsettings$gametype = nmw_WorldSettings$GameType_getByID(var$14); $ptr = 21; case 21: $tmp = nmn_PacketBuffer_readVarIntFromBuffer($parPacketBuffer); @@ -596167,25 +597699,25 @@ if ($rt_suspending()) { break main; } - $i1 = $tmp; - if ($i1) { + var$14 = $tmp; + if (var$14) { $ptr = 26; continue main; } - $s = $this.$players; - $s1 = nmnps_S38PacketPlayerListItem$AddPlayerData__init_($this, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent); + $s1 = $this.$players; + $s = nmnps_S38PacketPlayerListItem$AddPlayerData__init_($this, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent); $ptr = 18; continue main; case 23: - $tmp = nmn_PacketBuffer_readStringFromBuffer($parPacketBuffer, $k); + $tmp = nmn_PacketBuffer_readStringFromBuffer($parPacketBuffer, var$14); if ($rt_suspending()) { break main; } $s = $tmp; - $k = 32767; + var$14 = 32767; $ptr = 24; case 24: - $tmp = nmn_PacketBuffer_readStringFromBuffer($parPacketBuffer, $k); + $tmp = nmn_PacketBuffer_readStringFromBuffer($parPacketBuffer, var$14); if ($rt_suspending()) { break main; } @@ -596196,15 +597728,15 @@ if ($rt_suspending()) { break main; } - $k = $tmp; - if ($k) { - var$16 = $gameprofile.$properties; + var$14 = $tmp; + if (var$14) { + var$17 = $gameprofile.$properties; $worldsettings$gametype = new nlevma_Property; - $k = 32767; + var$14 = 32767; $ptr = 28; continue main; } - var$17 = $gameprofile.$properties; + var$18 = $gameprofile.$properties; $worldsettings$gametype = nlevma_Property__init_($s, $s1); $ptr = 27; continue main; @@ -596214,11 +597746,32 @@ break main; } $ichatcomponent = $tmp; - $s = $this.$players; - $s1 = nmnps_S38PacketPlayerListItem$AddPlayerData__init_($this, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent); + $s1 = $this.$players; + $s = nmnps_S38PacketPlayerListItem$AddPlayerData__init_($this, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent); $ptr = 18; continue main; case 27: + cgcc_AbstractMapBasedMultimap_put(var$18, $s, $worldsettings$gametype); + if ($rt_suspending()) { + break main; + } + $i1 = $i1 + 1 | 0; + if ($i1 >= $l) { + $ptr = 20; + continue main; + } + var$14 = 32767; + $ptr = 23; + continue main; + case 28: + $tmp = nmn_PacketBuffer_readStringFromBuffer($parPacketBuffer, var$14); + if ($rt_suspending()) { + break main; + } + var$18 = $tmp; + nlevma_Property__init_0($worldsettings$gametype, $s, $s1, var$18); + $ptr = 29; + case 29: cgcc_AbstractMapBasedMultimap_put(var$17, $s, $worldsettings$gametype); if ($rt_suspending()) { break main; @@ -596228,33 +597781,12 @@ $ptr = 20; continue main; } - $k = 32767; - $ptr = 23; - continue main; - case 28: - $tmp = nmn_PacketBuffer_readStringFromBuffer($parPacketBuffer, $k); - if ($rt_suspending()) { - break main; - } - var$17 = $tmp; - nlevma_Property__init_0($worldsettings$gametype, $s, $s1, var$17); - $ptr = 29; - case 29: - cgcc_AbstractMapBasedMultimap_put(var$16, $s, $worldsettings$gametype); - if ($rt_suspending()) { - break main; - } - $i1 = $i1 + 1 | 0; - if ($i1 >= $l) { - $ptr = 20; - continue main; - } - $k = 32767; + var$14 = 32767; $ptr = 23; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $parPacketBuffer, var$2, $i, $j, var$5, var$6, var$7, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent, $s, $s1, $i1, $l, var$16, var$17, $ptr); + $rt_nativeThread().push($this, $parPacketBuffer, var$2, $i, $j, var$5, var$6, var$7, $gameprofile, $k, $worldsettings$gametype, $ichatcomponent, $s1, $s, var$14, $l, $i1, var$17, var$18, $ptr); } function nmnps_S38PacketPlayerListItem_writePacketData($this, $parPacketBuffer) { var $property, $i, $l, $s38packetplayerlistitem$addplayerdata, var$6, var$7, var$8, $ptr, $tmp; @@ -596292,23 +597824,22 @@ } $property = $tmp; $s38packetplayerlistitem$addplayerdata = $property; - nmnps_S38PacketPlayerListItem$1_$callClinit(); - switch (nmnps_S38PacketPlayerListItem$1_$SwitchMap$net$minecraft$network$play$server$S38PacketPlayerListItem$Action.data[$this.$action.$ordinal]) { - case 1: + switch ($this.$action.$ordinal) { + case 0: break; - case 2: + case 1: $property = $s38packetplayerlistitem$addplayerdata.$profile1.$id2; $ptr = 7; continue main; - case 3: + case 2: $property = $s38packetplayerlistitem$addplayerdata.$profile1.$id2; $ptr = 9; continue main; - case 4: + case 3: $property = $s38packetplayerlistitem$addplayerdata.$profile1.$id2; $ptr = 11; continue main; - case 5: + case 4: $property = $s38packetplayerlistitem$addplayerdata.$profile1.$id2; $ptr = 12; continue main; @@ -596344,12 +597875,11 @@ $property = var$7.$values37; if ($property === null) { $property = new cgcc_AbstractMultimap$Values; - $property.$this$081 = var$7; + $property.$this$054 = var$7; var$7.$values37 = $property; } - $property = $property.$this$081; + $property = $property.$this$054; var$8 = new cgcc_AbstractMapBasedMultimap$1; - var$8.$this$082 = $property; cgcc_AbstractMapBasedMultimap$Itr__init_(var$8, $property); $ptr = 16; continue main; @@ -598527,8 +600057,7 @@ a: { $this.$eventType = $combatEventType; $entitylivingbase = nmu_CombatTracker_func_94550_c($combatTrackerIn); - nmnps_S42PacketCombatEvent$1_$callClinit(); - switch (nmnps_S42PacketCombatEvent$1_$SwitchMap$net$minecraft$network$play$server$S42PacketCombatEvent$Event.data[$combatEventType.$ordinal]) { + switch ($combatEventType.$ordinal) { case 1: break; case 2: @@ -598864,25 +600393,24 @@ var$2 = $tmp; var$2 = var$2; $this.$action3 = var$2; - nmnps_S44PacketWorldBorder$1_$callClinit(); - switch (nmnps_S44PacketWorldBorder$1_$SwitchMap$net$minecraft$network$play$server$S44PacketWorldBorder$Action.data[var$2.$ordinal]) { - case 1: + switch (var$2.$ordinal) { + case 0: $ptr = 2; continue main; - case 2: + case 1: $ptr = 3; continue main; - case 3: + case 2: $ptr = 6; continue main; - case 4: + case 3: $ptr = 8; continue main; - case 5: - $ptr = 9; + case 4: + $ptr = 16; continue main; - case 6: - $ptr = 10; + case 5: + $ptr = 17; continue main; default: } @@ -598936,28 +600464,28 @@ $this.$centerZ = var$3; return; case 8: - $tmp = nmn_PacketBuffer_readVarIntFromBuffer($parPacketBuffer); - if ($rt_suspending()) { - break main; - } - var$5 = $tmp; - $this.$warningDistance = var$5; - return; - case 9: - $tmp = nmn_PacketBuffer_readVarIntFromBuffer($parPacketBuffer); - if ($rt_suspending()) { - break main; - } - var$5 = $tmp; - $this.$warningTime = var$5; - return; - case 10: $tmp = nmn_PacketBuffer_readDouble($parPacketBuffer); if ($rt_suspending()) { break main; } var$3 = $tmp; $this.$centerX = var$3; + $ptr = 9; + case 9: + $tmp = nmn_PacketBuffer_readDouble($parPacketBuffer); + if ($rt_suspending()) { + break main; + } + var$3 = $tmp; + $this.$centerZ = var$3; + $ptr = 10; + case 10: + $tmp = nmn_PacketBuffer_readDouble($parPacketBuffer); + if ($rt_suspending()) { + break main; + } + var$3 = $tmp; + $this.$diameter = var$3; $ptr = 11; case 11: $tmp = nmn_PacketBuffer_readDouble($parPacketBuffer); @@ -598965,31 +600493,31 @@ break main; } var$3 = $tmp; - $this.$centerZ = var$3; + $this.$targetSize = var$3; $ptr = 12; case 12: - $tmp = nmn_PacketBuffer_readDouble($parPacketBuffer); - if ($rt_suspending()) { - break main; - } - var$3 = $tmp; - $this.$diameter = var$3; - $ptr = 13; - case 13: - $tmp = nmn_PacketBuffer_readDouble($parPacketBuffer); - if ($rt_suspending()) { - break main; - } - var$3 = $tmp; - $this.$targetSize = var$3; - $ptr = 14; - case 14: $tmp = nmn_PacketBuffer_readVarLong($parPacketBuffer); if ($rt_suspending()) { break main; } var$4 = $tmp; $this.$timeUntilTarget = var$4; + $ptr = 13; + case 13: + $tmp = nmn_PacketBuffer_readVarIntFromBuffer($parPacketBuffer); + if ($rt_suspending()) { + break main; + } + var$5 = $tmp; + $this.$size7 = var$5; + $ptr = 14; + case 14: + $tmp = nmn_PacketBuffer_readVarIntFromBuffer($parPacketBuffer); + if ($rt_suspending()) { + break main; + } + var$5 = $tmp; + $this.$warningDistance = var$5; $ptr = 15; case 15: $tmp = nmn_PacketBuffer_readVarIntFromBuffer($parPacketBuffer); @@ -598997,23 +600525,23 @@ break main; } var$5 = $tmp; - $this.$size7 = var$5; - $ptr = 16; + $this.$warningTime = var$5; + return; case 16: $tmp = nmn_PacketBuffer_readVarIntFromBuffer($parPacketBuffer); if ($rt_suspending()) { break main; } var$5 = $tmp; - $this.$warningDistance = var$5; - $ptr = 17; + $this.$warningTime = var$5; + return; case 17: $tmp = nmn_PacketBuffer_readVarIntFromBuffer($parPacketBuffer); if ($rt_suspending()) { break main; } var$5 = $tmp; - $this.$warningTime = var$5; + $this.$warningDistance = var$5; return; default: $rt_invalidPointer(); }} @@ -599035,31 +600563,30 @@ if ($rt_suspending()) { break main; } - nmnps_S44PacketWorldBorder$1_$callClinit(); - switch (nmnps_S44PacketWorldBorder$1_$SwitchMap$net$minecraft$network$play$server$S44PacketWorldBorder$Action.data[$this.$action3.$ordinal]) { - case 1: + switch ($this.$action3.$ordinal) { + case 0: var$3 = $this.$targetSize; $ptr = 2; continue main; - case 2: + case 1: var$3 = $this.$diameter; $ptr = 3; continue main; - case 3: + case 2: var$3 = $this.$centerX; $ptr = 6; continue main; - case 4: - var$4 = $this.$warningDistance; + case 3: + var$3 = $this.$centerX; $ptr = 8; continue main; - case 5: + case 4: var$4 = $this.$warningTime; - $ptr = 9; + $ptr = 16; continue main; - case 6: - var$3 = $this.$centerX; - $ptr = 10; + case 5: + var$4 = $this.$warningDistance; + $ptr = 17; continue main; default: } @@ -599104,66 +600631,66 @@ } return; case 8: - nmn_PacketBuffer_writeVarIntToBuffer($parPacketBuffer, var$4); - if ($rt_suspending()) { - break main; - } - return; - case 9: - nmn_PacketBuffer_writeVarIntToBuffer($parPacketBuffer, var$4); - if ($rt_suspending()) { - break main; - } - return; - case 10: nmn_PacketBuffer_writeDouble($parPacketBuffer, var$3); if ($rt_suspending()) { break main; } var$3 = $this.$centerZ; + $ptr = 9; + case 9: + nmn_PacketBuffer_writeDouble($parPacketBuffer, var$3); + if ($rt_suspending()) { + break main; + } + var$3 = $this.$diameter; + $ptr = 10; + case 10: + nmn_PacketBuffer_writeDouble($parPacketBuffer, var$3); + if ($rt_suspending()) { + break main; + } + var$3 = $this.$targetSize; $ptr = 11; case 11: nmn_PacketBuffer_writeDouble($parPacketBuffer, var$3); if ($rt_suspending()) { break main; } - var$3 = $this.$diameter; + var$5 = $this.$timeUntilTarget; $ptr = 12; case 12: - nmn_PacketBuffer_writeDouble($parPacketBuffer, var$3); - if ($rt_suspending()) { - break main; - } - var$3 = $this.$targetSize; - $ptr = 13; - case 13: - nmn_PacketBuffer_writeDouble($parPacketBuffer, var$3); - if ($rt_suspending()) { - break main; - } - var$5 = $this.$timeUntilTarget; - $ptr = 14; - case 14: nmn_PacketBuffer_writeVarLong($parPacketBuffer, var$5); if ($rt_suspending()) { break main; } var$4 = $this.$size7; + $ptr = 13; + case 13: + nmn_PacketBuffer_writeVarIntToBuffer($parPacketBuffer, var$4); + if ($rt_suspending()) { + break main; + } + var$4 = $this.$warningDistance; + $ptr = 14; + case 14: + nmn_PacketBuffer_writeVarIntToBuffer($parPacketBuffer, var$4); + if ($rt_suspending()) { + break main; + } + var$4 = $this.$warningTime; $ptr = 15; case 15: nmn_PacketBuffer_writeVarIntToBuffer($parPacketBuffer, var$4); if ($rt_suspending()) { break main; } - var$4 = $this.$warningDistance; - $ptr = 16; + return; case 16: nmn_PacketBuffer_writeVarIntToBuffer($parPacketBuffer, var$4); if ($rt_suspending()) { break main; } - var$4 = $this.$warningTime; - $ptr = 17; + return; case 17: nmn_PacketBuffer_writeVarIntToBuffer($parPacketBuffer, var$4); if ($rt_suspending()) { @@ -599184,34 +600711,33 @@ main: while (true) { switch ($ptr) { case 0: var$2 = var$1.$clientWorldController.$worldBorder; - nmnps_S44PacketWorldBorder$1_$callClinit(); - switch (nmnps_S44PacketWorldBorder$1_$SwitchMap$net$minecraft$network$play$server$S44PacketWorldBorder$Action.data[$this.$action3.$ordinal]) { - case 1: + switch ($this.$action3.$ordinal) { + case 0: var$3 = $this.$targetSize; $ptr = 1; continue main; - case 2: + case 1: var$3 = $this.$diameter; var$4 = $this.$targetSize; var$5 = $this.$timeUntilTarget; $ptr = 2; continue main; - case 3: + case 2: var$3 = $this.$centerX; var$4 = $this.$centerZ; $ptr = 3; continue main; - case 4: - var$6 = $this.$warningDistance; + case 3: + var$3 = $this.$centerX; + var$4 = $this.$centerZ; $ptr = 4; continue main; - case 5: + case 4: var$6 = $this.$warningTime; $ptr = 5; continue main; - case 6: - var$3 = $this.$centerX; - var$4 = $this.$centerZ; + case 5: + var$6 = $this.$warningDistance; $ptr = 6; continue main; default: @@ -599236,18 +600762,6 @@ } return; case 4: - nmwb_WorldBorder_setWarningDistance(var$2, var$6); - if ($rt_suspending()) { - break main; - } - return; - case 5: - nmwb_WorldBorder_setWarningTime(var$2, var$6); - if ($rt_suspending()) { - break main; - } - return; - case 6: nmwb_WorldBorder_setCenter(var$2, var$3, var$4); if ($rt_suspending()) { break main; @@ -599262,6 +600776,18 @@ var$4 = $this.$targetSize; $ptr = 8; continue main; + case 5: + nmwb_WorldBorder_setWarningTime(var$2, var$6); + if ($rt_suspending()) { + break main; + } + return; + case 6: + nmwb_WorldBorder_setWarningDistance(var$2, var$6); + if ($rt_suspending()) { + break main; + } + return; case 7: nmwb_WorldBorder_setTransition(var$2, var$3); if ($rt_suspending()) { @@ -599836,7 +601362,7 @@ var$5 = var$1.$gameController; var$6 = new nmcg_GuiYesNo; var$7 = new nmcn_NetHandlerPlayClient$1; - var$7.$this$083 = var$1; + var$7.$this$055 = var$1; var$7.$val$s1 = var$3; var$7.$val$s0 = var$2; var$1 = $rt_s(4089); @@ -599920,7 +601446,7 @@ var$5 = var$1.$gameController; var$6 = new nmcg_GuiYesNo; var$7 = new nmcn_NetHandlerPlayClient$1; - var$7.$this$083 = var$1; + var$7.$this$055 = var$1; var$7.$val$s1 = var$3; var$7.$val$s0 = var$2; var$1 = $rt_s(4089); @@ -608811,17 +610337,11 @@ $rt_nativeThread().push(var$0, var$1, var$2, $ptr); } var juc_Callable = $rt_classWithoutFields(0); - function nmc_CrashReport$1() { - jl_Object.call(this); - this.$this$017 = null; - } + var nmc_CrashReport$1 = $rt_classWithoutFields(); function nmc_CrashReport$1_call($this) { return $rt_s(349); } - function nmc_CrashReport$2() { - jl_Object.call(this); - this.$this$018 = null; - } + var nmc_CrashReport$2 = $rt_classWithoutFields(); function nmc_CrashReport$2_call($this) { var var$1, var$2, var$3, var$4, $ptr, $tmp; $ptr = 0; @@ -608901,10 +610421,7 @@ }} $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); } - function nmc_CrashReport$3() { - jl_Object.call(this); - this.$this$019 = null; - } + var nmc_CrashReport$3 = $rt_classWithoutFields(); function nmc_CrashReport$3_call($this) { var var$1, var$2, var$3, $ptr, $tmp; $ptr = 0; @@ -608963,10 +610480,7 @@ }} $rt_nativeThread().push($this, var$1, var$2, var$3, $ptr); } - function nmc_CrashReport$4() { - jl_Object.call(this); - this.$this$020 = null; - } + var nmc_CrashReport$4 = $rt_classWithoutFields(); function nmc_CrashReport$4_call($this) { var var$1, var$2, var$3, var$4, $ptr, $tmp; $ptr = 0; @@ -609081,10 +610595,7 @@ nlevi_EnumPlatformType_JAVASCRIPT = var$1; nlevi_EnumPlatformType_$VALUES = $rt_createArrayFromData(nlevi_EnumPlatformType, [nlevi_EnumPlatformType_DESKTOP, var$1]); } - function nmc_CrashReport$5() { - jl_Object.call(this); - this.$this$021 = null; - } + var nmc_CrashReport$5 = $rt_classWithoutFields(); function nmc_CrashReport$5_call($this) { var var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, $ptr, $tmp; $ptr = 0; @@ -609268,7 +610779,7 @@ var var$1; if ($this.$entrySet1 === null) { var$1 = new ju_EnumMap$1; - var$1.$this$084 = $this; + var$1.$this$056 = $this; $this.$entrySet1 = var$1; } return $this.$entrySet1; @@ -609387,7 +610898,7 @@ function ju_GenericEnumSet_iterator($this) { var var$1; var$1 = new ju_GenericEnumSet$1; - var$1.$this$085 = $this; + var$1.$this$057 = $this; var$1.$indexToRemove = (-1); var$1.$count9 = ju_GenericEnumSet_size($this); return var$1; @@ -609681,7 +611192,7 @@ function jur_AbstractCharClass$LazyJavaLowerCase_computeValue($this) { var $chCl; $chCl = new jur_AbstractCharClass$LazyJavaLowerCase$1; - $chCl.$this$086 = $this; + $chCl.$this$058 = $this; jur_AbstractCharClass__init_($chCl); $chCl.$mayContainSupplCodepoints = 1; return $chCl; @@ -609696,7 +611207,7 @@ function jur_AbstractCharClass$LazyJavaUpperCase_computeValue($this) { var $chCl; $chCl = new jur_AbstractCharClass$LazyJavaUpperCase$1; - $chCl.$this$087 = $this; + $chCl.$this$059 = $this; jur_AbstractCharClass__init_($chCl); $chCl.$mayContainSupplCodepoints = 1; return $chCl; @@ -609711,7 +611222,7 @@ function jur_AbstractCharClass$LazyJavaWhitespace_computeValue($this) { var var$1; var$1 = new jur_AbstractCharClass$LazyJavaWhitespace$1; - var$1.$this$088 = $this; + var$1.$this$060 = $this; jur_AbstractCharClass__init_(var$1); return var$1; } @@ -609725,7 +611236,7 @@ function jur_AbstractCharClass$LazyJavaMirrored_computeValue($this) { var var$1; var$1 = new jur_AbstractCharClass$LazyJavaMirrored$1; - var$1.$this$089 = $this; + var$1.$this$061 = $this; jur_AbstractCharClass__init_(var$1); return var$1; } @@ -609739,7 +611250,7 @@ function jur_AbstractCharClass$LazyJavaDefined_computeValue($this) { var $chCl; $chCl = new jur_AbstractCharClass$LazyJavaDefined$1; - $chCl.$this$090 = $this; + $chCl.$this$062 = $this; jur_AbstractCharClass__init_($chCl); ju_BitSet_set0($chCl.$lowHighSurrogates, 0, 2048); $chCl.$mayContainSupplCodepoints = 1; @@ -609755,7 +611266,7 @@ function jur_AbstractCharClass$LazyJavaDigit_computeValue($this) { var $chCl; $chCl = new jur_AbstractCharClass$LazyJavaDigit$1; - $chCl.$this$091 = $this; + $chCl.$this$063 = $this; jur_AbstractCharClass__init_($chCl); $chCl.$mayContainSupplCodepoints = 1; return $chCl; @@ -609770,7 +611281,7 @@ function jur_AbstractCharClass$LazyJavaIdentifierIgnorable_computeValue($this) { var $chCl; $chCl = new jur_AbstractCharClass$LazyJavaIdentifierIgnorable$1; - $chCl.$this$092 = $this; + $chCl.$this$064 = $this; jur_AbstractCharClass__init_($chCl); $chCl.$mayContainSupplCodepoints = 1; return $chCl; @@ -609785,7 +611296,7 @@ function jur_AbstractCharClass$LazyJavaISOControl_computeValue($this) { var var$1; var$1 = new jur_AbstractCharClass$LazyJavaISOControl$1; - var$1.$this$093 = $this; + var$1.$this$065 = $this; jur_AbstractCharClass__init_(var$1); return var$1; } @@ -609799,7 +611310,7 @@ function jur_AbstractCharClass$LazyJavaJavaIdentifierPart_computeValue($this) { var $chCl; $chCl = new jur_AbstractCharClass$LazyJavaJavaIdentifierPart$1; - $chCl.$this$094 = $this; + $chCl.$this$066 = $this; jur_AbstractCharClass__init_($chCl); $chCl.$mayContainSupplCodepoints = 1; return $chCl; @@ -609814,7 +611325,7 @@ function jur_AbstractCharClass$LazyJavaJavaIdentifierStart_computeValue($this) { var $chCl; $chCl = new jur_AbstractCharClass$LazyJavaJavaIdentifierStart$1; - $chCl.$this$095 = $this; + $chCl.$this$067 = $this; jur_AbstractCharClass__init_($chCl); $chCl.$mayContainSupplCodepoints = 1; return $chCl; @@ -609829,7 +611340,7 @@ function jur_AbstractCharClass$LazyJavaLetter_computeValue($this) { var $chCl; $chCl = new jur_AbstractCharClass$LazyJavaLetter$1; - $chCl.$this$096 = $this; + $chCl.$this$068 = $this; jur_AbstractCharClass__init_($chCl); $chCl.$mayContainSupplCodepoints = 1; return $chCl; @@ -609844,7 +611355,7 @@ function jur_AbstractCharClass$LazyJavaLetterOrDigit_computeValue($this) { var $chCl; $chCl = new jur_AbstractCharClass$LazyJavaLetterOrDigit$1; - $chCl.$this$097 = $this; + $chCl.$this$069 = $this; jur_AbstractCharClass__init_($chCl); $chCl.$mayContainSupplCodepoints = 1; return $chCl; @@ -609859,7 +611370,7 @@ function jur_AbstractCharClass$LazyJavaSpaceChar_computeValue($this) { var var$1; var$1 = new jur_AbstractCharClass$LazyJavaSpaceChar$1; - var$1.$this$098 = $this; + var$1.$this$070 = $this; jur_AbstractCharClass__init_(var$1); return var$1; } @@ -609873,7 +611384,7 @@ function jur_AbstractCharClass$LazyJavaTitleCase_computeValue($this) { var var$1; var$1 = new jur_AbstractCharClass$LazyJavaTitleCase$1; - var$1.$this$099 = $this; + var$1.$this$071 = $this; jur_AbstractCharClass__init_(var$1); return var$1; } @@ -609887,7 +611398,7 @@ function jur_AbstractCharClass$LazyJavaUnicodeIdentifierPart_computeValue($this) { var $chCl; $chCl = new jur_AbstractCharClass$LazyJavaUnicodeIdentifierPart$1; - $chCl.$this$0100 = $this; + $chCl.$this$072 = $this; jur_AbstractCharClass__init_($chCl); $chCl.$mayContainSupplCodepoints = 1; return $chCl; @@ -609902,7 +611413,7 @@ function jur_AbstractCharClass$LazyJavaUnicodeIdentifierStart_computeValue($this) { var $chCl; $chCl = new jur_AbstractCharClass$LazyJavaUnicodeIdentifierStart$1; - $chCl.$this$0101 = $this; + $chCl.$this$073 = $this; jur_AbstractCharClass__init_($chCl); $chCl.$mayContainSupplCodepoints = 1; return $chCl; @@ -612461,7 +613972,7 @@ a.$modCount1 = 0; a.$size1 = 0; a.$removeIndex = 0; - a.$this$012 = null; + a.$this$08 = null; } function ju_AbstractList$1_hasNext($this) { return $this.$index8 >= $this.$size1 ? 0 : 1; @@ -612471,7 +613982,7 @@ ju_AbstractList$1_checkConcurrentModification($this); var$1 = $this.$index8; $this.$removeIndex = var$1; - var$2 = $this.$this$012; + var$2 = $this.$this$08; $this.$index8 = var$1 + 1 | 0; return var$2.$get2(var$1); } @@ -612490,7 +614001,7 @@ $rt_throw(var$1); } ju_AbstractList$1_checkConcurrentModification($this); - var$1 = $this.$this$012; + var$1 = $this.$this$08; var$2 = $this.$removeIndex; $ptr = 1; case 1: @@ -612498,7 +614009,7 @@ if ($rt_suspending()) { break main; } - $this.$modCount1 = $this.$this$012.$modCount0; + $this.$modCount1 = $this.$this$08.$modCount0; var$2 = $this.$removeIndex; var$3 = $this.$index8; if (var$2 < var$3) @@ -612512,7 +614023,7 @@ } function ju_AbstractList$1_checkConcurrentModification($this) { var var$1; - if ($this.$modCount1 >= $this.$this$012.$modCount0) + if ($this.$modCount1 >= $this.$this$08.$modCount0) return; var$1 = new ju_ConcurrentModificationException; jl_Throwable__init_0(var$1); @@ -612725,7 +614236,6 @@ $crashreportcategory = $tmp; $chunk = $rt_s(4371); $throwable = new nmw_World$1; - $throwable.$this$0102 = $this; $throwable.$val$pos1 = $pos; $ptr = 8; case 8: @@ -613843,11 +615353,11 @@ $rt_nativeThread().push($this, $pos, $blockType, $skipSide, var$4, $ptr); } function nmw_World_notifyBlockOfStateChange($this, $pos, $blockIn) { - var $iblockstate, $crashreportcategory, $throwable, $crashreport, var$7, $$je, $ptr, $tmp; + var $iblockstate, $throwable, var$5, $crashreport, $crashreportcategory, $$je, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$7 = $thread.pop();$crashreport = $thread.pop();$throwable = $thread.pop();$crashreportcategory = $thread.pop();$iblockstate = $thread.pop();$blockIn = $thread.pop();$pos = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();$crashreportcategory = $thread.pop();$crashreport = $thread.pop();var$5 = $thread.pop();$throwable = $thread.pop();$iblockstate = $thread.pop();$blockIn = $thread.pop();$pos = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -613861,7 +615371,7 @@ } $iblockstate = $tmp; try { - $crashreportcategory = nmbs_BlockState$StateImplementation_getBlock($iblockstate); + $throwable = nmbs_BlockState$StateImplementation_getBlock($iblockstate); $ptr = 2; continue main; } catch ($$e) { @@ -613872,13 +615382,13 @@ throw $$e; } } - $crashreportcategory = $rt_s(4373); + var$5 = $rt_s(4373); $ptr = 3; continue main; case 2: a: { try { - $crashreportcategory.$onNeighborBlockChange($this, $pos, $iblockstate, $blockIn); + $throwable.$onNeighborBlockChange($this, $pos, $iblockstate, $blockIn); if ($rt_suspending()) { break main; } @@ -613893,29 +615403,28 @@ } return; } - $crashreportcategory = $rt_s(4373); + var$5 = $rt_s(4373); $ptr = 3; case 3: - $tmp = nmc_CrashReport_makeCrashReport($throwable, $crashreportcategory); + $tmp = nmc_CrashReport_makeCrashReport($throwable, var$5); if ($rt_suspending()) { break main; } $crashreport = $tmp; - $crashreportcategory = $rt_s(4374); + $throwable = $rt_s(4374); $ptr = 4; case 4: - $tmp = nmc_CrashReport_makeCategory($crashreport, $crashreportcategory); + $tmp = nmc_CrashReport_makeCategory($crashreport, $throwable); if ($rt_suspending()) { break main; } $crashreportcategory = $tmp; $throwable = $rt_s(4375); - var$7 = new nmw_World$2; - var$7.$this$0103 = $this; - var$7.$val$blockIn0 = $blockIn; + var$5 = new nmw_World$2; + var$5.$val$blockIn0 = $blockIn; $ptr = 5; case 5: - nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, $throwable, var$7); + nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, $throwable, var$5); if ($rt_suspending()) { break main; } @@ -613928,7 +615437,7 @@ $rt_throw(nmu_ReportedException__init_($crashreport)); default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $pos, $blockIn, $iblockstate, $crashreportcategory, $throwable, $crashreport, var$7, $ptr); + $rt_nativeThread().push($this, $pos, $blockIn, $iblockstate, $throwable, var$5, $crashreport, $crashreportcategory, $ptr); } function nmw_World_isBlockTickPending($this, $pos, $blockType) { return 0; @@ -622261,7 +623770,7 @@ } $report = $rt_s(4402); $throwable = new nmw_World$3; - $throwable.$this$0104 = $this; + $throwable.$this$074 = $this; $ptr = 3; case 3: nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, $report, $throwable); @@ -622270,7 +623779,7 @@ } $report = $rt_s(4403); $throwable = new nmw_World$4; - $throwable.$this$0105 = $this; + $throwable.$this$075 = $this; $ptr = 4; case 4: nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, $report, $throwable); @@ -623280,7 +624789,7 @@ if ($rt_suspending()) { break main; } - var$8 = var$2.$this$0106.$theWorldServer0; + var$8 = var$2.$this$076.$theWorldServer0; var$9 = var$2.$chunkCoords; var$4 = var$9.$chunkXPos; var$5 = var$9.$chunkZPos; @@ -624328,7 +625837,7 @@ $axisalignedbb = nmu_AxisAlignedBB_expand(nmu_AxisAlignedBB__init_1($blockpos, nmu_BlockPos__init_($blockpos.$x, 256, $blockpos.$z)), 3.0, 3.0, 3.0); $pos = $rt_cls(nme_EntityLivingBase); $list = new nmw_WorldServer$1; - $list.$this$0107 = $this; + $list.$this$077 = $this; $ptr = 2; case 2: $tmp = nmw_World_getEntitiesWithinAABB0($this, $pos, $axisalignedbb, $list); @@ -635989,7 +637498,7 @@ $profile = $this.$rand1; $j = $i * 2 | 0; $profile = nmu_BlockPos_add($blockpos, nlev_EaglercraftRandom_nextInt($profile, $j) - $i | 0, 0, nlev_EaglercraftRandom_nextInt($this.$rand1, $j) - $i | 0); - $ptr = 27; + $ptr = 28; continue main; case 7: $tmp = nms_MinecraftServer_worldServerForDimension($server, $i); @@ -636089,9 +637598,6 @@ } $profile = nms_StatisticsFile_logger; $interactionManager = var$11.$statsFile; - var$17 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$17); - var$18 = $rt_s(4471); $ptr = 23; continue main; case 16: @@ -636132,9 +637638,6 @@ } $profile = nms_StatisticsFile_logger; $interactionManager = var$11.$statsFile; - var$17 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$17); - var$18 = $rt_s(4471); $ptr = 23; continue main; case 19: @@ -636156,9 +637659,6 @@ } $profile = nms_StatisticsFile_logger; $interactionManager = var$11.$statsFile; - var$17 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$17); - var$18 = $rt_s(4471); $ptr = 23; continue main; case 20: @@ -636183,9 +637683,6 @@ } $profile = nms_StatisticsFile_logger; $interactionManager = var$11.$statsFile; - var$17 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$17); - var$18 = $rt_s(4471); $ptr = 23; continue main; case 21: @@ -636204,36 +637701,46 @@ if (!$j) { var$8 = $this.$posY; if (var$8 < 255.0) { - var$19 = $this.$posX; + var$17 = $this.$posX; var$7 = var$8 + 1.0; var$8 = $this.$posZ; - $ptr = 28; + $ptr = 29; continue main; } } return; case 23: - jl_AbstractStringBuilder_append(var$17, var$18); + $tmp = jl_String_valueOf($interactionManager); if ($rt_suspending()) { break main; } + $interactionManager = $tmp; + var$18 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$18); + var$19 = $rt_s(4471); $ptr = 24; case 24: - jl_AbstractStringBuilder_append(var$17, $interactionManager); + jl_AbstractStringBuilder_append(var$18, var$19); if ($rt_suspending()) { break main; } $ptr = 25; case 25: - $tmp = jl_AbstractStringBuilder_toString(var$17); + jl_AbstractStringBuilder_append(var$18, $interactionManager); + if ($rt_suspending()) { + break main; + } + $ptr = 26; + case 26: + $tmp = jl_AbstractStringBuilder_toString(var$18); if ($rt_suspending()) { break main; } $interactionManager = $tmp; var$15 = $rt_createArray(jl_Object, 1); var$15.data[0] = $server; - $ptr = 26; - case 26: + $ptr = 27; + case 27: nlevl_Logger_error($profile, $interactionManager, var$15); if ($rt_suspending()) { break main; @@ -636241,7 +637748,7 @@ $server = var$9.$playerStatFiles; $ptr = 17; continue main; - case 27: + case 28: $tmp = nmw_World_getTopSolidOrLiquidBlock($worldIn, $profile); if ($rt_suspending()) { break main; @@ -636251,8 +637758,8 @@ var$9 = $server.$serverConfigManager; $ptr = 4; continue main; - case 28: - nme_Entity_setPosition($this, var$19, var$7, var$8); + case 29: + nme_Entity_setPosition($this, var$17, var$7, var$8); if ($rt_suspending()) { break main; } @@ -641765,7 +643272,7 @@ } function nmb_BlockFlower$1() { jl_Object.call(this); - this.$this$033 = null; + this.$this$020 = null; } function nmb_BlockFlower$1_apply($this, var$1) { var $ptr, $tmp; @@ -641776,7 +643283,7 @@ } main: while (true) { switch ($ptr) { case 0: - return var$1.$blockType !== $this.$this$033.$getBlockType() ? 0 : 1; + return var$1.$blockType !== $this.$this$020.$getBlockType() ? 0 : 1; default: $rt_invalidPointer(); }} $rt_nativeThread().push($this, var$1, $ptr); @@ -642106,7 +643613,7 @@ var$5 = $tmp; if (var$5 !== null && var$4 == var$5.$valueHash) { var$6 = var$5.$value17; - $ptr = 8; + $ptr = 9; continue main; } $ptr = 4; @@ -642125,23 +643632,30 @@ return $value; } $key = new jl_IllegalArgumentException; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - var$5 = $rt_s(4483); $ptr = 5; case 5: - jl_AbstractStringBuilder_append(var$6, var$5); + $tmp = jl_String_valueOf($value); if ($rt_suspending()) { break main; } + $value = $tmp; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + var$5 = $rt_s(4483); $ptr = 6; case 6: - jl_AbstractStringBuilder_append(var$6, $value); + jl_AbstractStringBuilder_append(var$6, var$5); if ($rt_suspending()) { break main; } $ptr = 7; case 7: + jl_AbstractStringBuilder_append(var$6, $value); + if ($rt_suspending()) { + break main; + } + $ptr = 8; + case 8: $tmp = jl_AbstractStringBuilder_toString(var$6); if ($rt_suspending()) { break main; @@ -642149,7 +643663,7 @@ $value = $tmp; jl_Throwable__init_($key, $value); $rt_throw($key); - case 8: + case 9: $tmp = cgcb_Objects_equal($value, var$6); if ($rt_suspending()) { break main; @@ -642224,7 +643738,7 @@ function cgcc_HashBiMap_keySet($this) { var var$1; var$1 = new cgcc_HashBiMap$KeySet; - var$1.$this$0108 = $this; + var$1.$this$078 = $this; cgcc_Maps$KeySet__init_(var$1, $this); return var$1; } @@ -642239,7 +643753,7 @@ function cgcc_HashBiMap_entrySet($this) { var var$1; var$1 = new cgcc_HashBiMap$EntrySet; - var$1.$this$0109 = $this; + var$1.$this$079 = $this; return var$1; } function cgcc_HashBiMap_inverse($this) { @@ -642247,7 +643761,7 @@ var$1 = $this.$inverse0; if (var$1 === null) { var$1 = new cgcc_HashBiMap$Inverse; - var$1.$this$0110 = $this; + var$1.$this$080 = $this; $this.$inverse0 = var$1; } return var$1; @@ -642267,7 +643781,7 @@ function cgcb_Joiner$1() { var a = this; cgcb_Joiner.call(a); a.$val$nullText = null; - a.$this$043 = null; + a.$this$025 = null; } function cgcb_Joiner$1_toString($this, $part) { var var$2, $ptr, $tmp; @@ -642280,7 +643794,7 @@ case 0: if ($part === null) return $this.$val$nullText; - var$2 = $this.$this$043; + var$2 = $this.$this$025; $ptr = 1; case 1: $tmp = cgcb_Joiner_toString(var$2, $part); @@ -642327,7 +643841,7 @@ } function ju_AbstractMap$KeySet() { ju_AbstractSet.call(this); - this.$this$08 = null; + this.$this$04 = null; } function ju_AbstractMap$KeySet_iterator($this) { var $it, var$2, $ptr, $tmp; @@ -642338,7 +643852,7 @@ } main: while (true) { switch ($ptr) { case 0: - $it = $this.$this$08; + $it = $this.$this$04; $ptr = 1; case 1: $tmp = $it.$entrySet(); @@ -642362,14 +643876,14 @@ $rt_nativeThread().push($this, $it, var$2, $ptr); } function ju_AbstractMap$KeySet_size($this) { - return $this.$this$08.$size0(); + return $this.$this$04.$size0(); } function ju_GenericEnumSet$1() { var a = this; jl_Object.call(a); a.$index9 = 0; a.$indexToRemove = 0; a.$count9 = 0; - a.$this$085 = null; + a.$this$057 = null; } function ju_GenericEnumSet$1_hasNext($this) { return $this.$count9 <= 0 ? 0 : 1; @@ -642390,7 +643904,7 @@ } $this.$indexToRemove = $this.$index9; while (true) { - var$2 = $this.$this$085.$bits.data; + var$2 = $this.$this$057.$bits.data; var$3 = $this.$index9; var$4 = jl_Integer_numberOfTrailingZeros(var$2[var$3 / 32 | 0] >>> (var$3 % 32 | 0) | 0); if (var$4 < 32) @@ -642399,7 +643913,7 @@ } $this.$index9 = $this.$index9 + var$4 | 0; $this.$count9 = $this.$count9 - 1 | 0; - var$1 = $this.$this$085.$cls; + var$1 = $this.$this$057.$cls; $ptr = 1; case 1: $tmp = ju_GenericEnumSet_getConstants(var$1); @@ -643712,19 +645226,13 @@ continue main; } if (!$rt_isInstance($value, ju_Map) && !$rt_isInstance($value, jl_Iterable) && !($value instanceof oj_JSONObject)) { - var$7 = new oj_JSONException; - var$8 = jl_Object_getClass($value); - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - var$6 = $rt_s(4487); - $ptr = 13; + var$6 = new oj_JSONException; + var$5 = jl_Object_getClass($value); + $ptr = 14; continue main; } var$5 = new oj_JSONException; - var$6 = jl_Object_getClass($value); - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - $value = $rt_s(4487); + $value = jl_Object_getClass($value); $ptr = 6; continue main; case 1: @@ -643763,114 +645271,141 @@ jl_Throwable__init_4($value, $valueType, $cause); return $value; case 6: - jl_AbstractStringBuilder_append(var$7, $value); + $tmp = jl_String_valueOf($value); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append1(var$7, $idx); - $value = $rt_s(207); + $value = $tmp; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + var$7 = $rt_s(4487); $ptr = 7; case 7: - jl_AbstractStringBuilder_append(var$7, $value); + jl_AbstractStringBuilder_append(var$6, var$7); if ($rt_suspending()) { break main; } + jl_AbstractStringBuilder_append1(var$6, $idx); + var$7 = $rt_s(207); $ptr = 8; case 8: - jl_AbstractStringBuilder_append(var$7, $valueType); + jl_AbstractStringBuilder_append(var$6, var$7); + if ($rt_suspending()) { + break main; + } + $ptr = 9; + case 9: + jl_AbstractStringBuilder_append(var$6, $valueType); if ($rt_suspending()) { break main; } $valueType = $rt_s(209); - $ptr = 9; - case 9: - jl_AbstractStringBuilder_append(var$7, $valueType); + $ptr = 10; + case 10: + jl_AbstractStringBuilder_append(var$6, $valueType); if ($rt_suspending()) { break main; } - $ptr = 10; - case 10: - jl_AbstractStringBuilder_append(var$7, var$6); + $ptr = 11; + case 11: + jl_AbstractStringBuilder_append(var$6, $value); if ($rt_suspending()) { break main; } $valueType = $rt_s(210); - $ptr = 11; - case 11: - jl_AbstractStringBuilder_append(var$7, $valueType); + $ptr = 12; + case 12: + jl_AbstractStringBuilder_append(var$6, $valueType); if ($rt_suspending()) { break main; } - $ptr = 12; - case 12: - $tmp = jl_AbstractStringBuilder_toString(var$7); + $ptr = 13; + case 13: + $tmp = jl_AbstractStringBuilder_toString(var$6); if ($rt_suspending()) { break main; } $valueType = $tmp; jl_Throwable__init_4(var$5, $valueType, $cause); return var$5; - case 13: - jl_AbstractStringBuilder_append(var$5, var$6); - if ($rt_suspending()) { - break main; - } - jl_AbstractStringBuilder_append1(var$5, $idx); - var$6 = $rt_s(207); - $ptr = 14; case 14: - jl_AbstractStringBuilder_append(var$5, var$6); + $tmp = jl_String_valueOf(var$5); if ($rt_suspending()) { break main; } + var$7 = $tmp; $ptr = 15; case 15: - jl_AbstractStringBuilder_append(var$5, $valueType); + $tmp = jl_String_valueOf($value); + if ($rt_suspending()) { + break main; + } + var$8 = $tmp; + $value = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($value); + var$5 = $rt_s(4487); + $ptr = 16; + case 16: + jl_AbstractStringBuilder_append($value, var$5); + if ($rt_suspending()) { + break main; + } + jl_AbstractStringBuilder_append1($value, $idx); + var$5 = $rt_s(207); + $ptr = 17; + case 17: + jl_AbstractStringBuilder_append($value, var$5); + if ($rt_suspending()) { + break main; + } + $ptr = 18; + case 18: + jl_AbstractStringBuilder_append($value, $valueType); if ($rt_suspending()) { break main; } $valueType = $rt_s(209); - $ptr = 16; - case 16: - jl_AbstractStringBuilder_append(var$5, $valueType); + $ptr = 19; + case 19: + jl_AbstractStringBuilder_append($value, $valueType); if ($rt_suspending()) { break main; } - $ptr = 17; - case 17: - jl_AbstractStringBuilder_append(var$5, var$8); + $ptr = 20; + case 20: + jl_AbstractStringBuilder_append($value, var$7); if ($rt_suspending()) { break main; } $valueType = $rt_s(211); - $ptr = 18; - case 18: - jl_AbstractStringBuilder_append(var$5, $valueType); + $ptr = 21; + case 21: + jl_AbstractStringBuilder_append($value, $valueType); if ($rt_suspending()) { break main; } - $ptr = 19; - case 19: - jl_AbstractStringBuilder_append(var$5, $value); + $ptr = 22; + case 22: + jl_AbstractStringBuilder_append($value, var$8); if ($rt_suspending()) { break main; } $valueType = $rt_s(210); - $ptr = 20; - case 20: - jl_AbstractStringBuilder_append(var$5, $valueType); + $ptr = 23; + case 23: + jl_AbstractStringBuilder_append($value, $valueType); if ($rt_suspending()) { break main; } - $ptr = 21; - case 21: - $tmp = jl_AbstractStringBuilder_toString(var$5); + $ptr = 24; + case 24: + $tmp = jl_AbstractStringBuilder_toString($value); if ($rt_suspending()) { break main; } $valueType = $tmp; - jl_Throwable__init_4(var$7, $valueType, $cause); - return var$7; + jl_Throwable__init_4(var$6, $valueType, $cause); + return var$6; default: $rt_invalidPointer(); }} $rt_nativeThread().push($idx, $valueType, $value, $cause, var$5, var$6, var$7, var$8, $ptr); @@ -644583,7 +646118,7 @@ var a = this; nlev_EaglerOutputStream.call(a); a.$chunkX = 0; a.$chunkZ = 0; - a.$this$042 = null; + a.$this$024 = null; } function nmwcs_RegionFile$ChunkBuffer_close($this) { var var$1, var$2, var$3, var$4, var$5, $ptr, $tmp; @@ -644594,7 +646129,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$042; + var$1 = $this.$this$024; var$2 = $this.$chunkX; var$3 = $this.$chunkZ; var$4 = $this.$buf3; @@ -644637,36 +646172,37 @@ main: while (true) { switch ($ptr) { case 0: var$1 = $this.$action1; + $ptr = 1; + case 1: + $tmp = jl_String_valueOf(var$1); + if ($rt_suspending()) { + break main; + } + var$1 = $tmp; var$2 = $this.$value11; + $ptr = 2; + case 2: + $tmp = jl_String_valueOf(var$2); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); var$4 = $rt_s(4491); - $ptr = 1; - case 1: - jl_AbstractStringBuilder_append(var$3, var$4); - if ($rt_suspending()) { - break main; - } - $ptr = 2; - case 2: - jl_AbstractStringBuilder_append(var$3, var$1); - if ($rt_suspending()) { - break main; - } - var$1 = $rt_s(4492); $ptr = 3; case 3: - jl_AbstractStringBuilder_append(var$3, var$1); + jl_AbstractStringBuilder_append(var$3, var$4); if ($rt_suspending()) { break main; } $ptr = 4; case 4: - jl_AbstractStringBuilder_append(var$3, var$2); + jl_AbstractStringBuilder_append(var$3, var$1); if ($rt_suspending()) { break main; } - var$1 = $rt_s(4493); + var$1 = $rt_s(4492); $ptr = 5; case 5: jl_AbstractStringBuilder_append(var$3, var$1); @@ -644675,6 +646211,19 @@ } $ptr = 6; case 6: + jl_AbstractStringBuilder_append(var$3, var$2); + if ($rt_suspending()) { + break main; + } + var$1 = $rt_s(4493); + $ptr = 7; + case 7: + jl_AbstractStringBuilder_append(var$3, var$1); + if ($rt_suspending()) { + break main; + } + $ptr = 8; + case 8: $tmp = jl_AbstractStringBuilder_toString(var$3); if ($rt_suspending()) { break main; @@ -647228,7 +648777,7 @@ function jur_AbstractCharClass$1() { var a = this; jur_AbstractCharClass.call(a); a.$val$lHS = null; - a.$this$057 = null; + a.$this$033 = null; } function jur_AbstractCharClass$1_contains($this, $ch) { var $index; @@ -647239,7 +648788,7 @@ var a = this; jur_AbstractCharClass.call(a); a.$val$lHS0 = null; a.$val$thisClass = null; - a.$this$058 = null; + a.$this$034 = null; } function jur_AbstractCharClass$2_contains($this, $ch) { var $index, $containslHS; @@ -648565,7 +650114,7 @@ function jur_CharClass$18() { var a = this; jur_AbstractCharClass.call(a); a.$val$bs = null; - a.$this$076 = null; + a.$this$052 = null; } function jur_CharClass$18_contains($this, $ch) { return $this.$alt0 ^ ju_BitSet_get($this.$val$bs, $ch); @@ -649828,7 +651377,7 @@ function jur_CharClass$1() { var a = this; jur_AbstractCharClass.call(a); a.$val$cc1 = null; - a.$this$061 = null; + a.$this$037 = null; } function jur_CharClass$1_contains($this, $ch) { return $this.$val$cc1.$contains3($ch); @@ -649837,26 +651386,26 @@ var a = this; jur_AbstractCharClass.call(a); a.$val$curAlt1 = 0; a.$val$cc2 = null; - a.$this$062 = null; + a.$this$038 = null; } function jur_CharClass$3_contains($this, $ch) { - return !($this.$val$curAlt1 ^ ju_BitSet_get($this.$this$062.$bits0, $ch)) && !($this.$val$curAlt1 ^ $this.$this$062.$inverted0 ^ $this.$val$cc2.$contains3($ch)) ? 0 : 1; + return !($this.$val$curAlt1 ^ ju_BitSet_get($this.$this$038.$bits0, $ch)) && !($this.$val$curAlt1 ^ $this.$this$038.$inverted0 ^ $this.$val$cc2.$contains3($ch)) ? 0 : 1; } function jur_CharClass$2() { var a = this; jur_AbstractCharClass.call(a); a.$val$curAlt2 = 0; a.$val$cc3 = null; - a.$this$063 = null; + a.$this$039 = null; } function jur_CharClass$2_contains($this, $ch) { - return !($this.$val$curAlt2 ^ ju_BitSet_get($this.$this$063.$bits0, $ch)) && !($this.$val$curAlt2 ^ $this.$this$063.$inverted0 ^ $this.$val$cc3.$contains3($ch)) ? 1 : 0; + return !($this.$val$curAlt2 ^ ju_BitSet_get($this.$this$039.$bits0, $ch)) && !($this.$val$curAlt2 ^ $this.$this$039.$inverted0 ^ $this.$val$cc3.$contains3($ch)) ? 1 : 0; } function jur_CharClass$5() { var a = this; jur_AbstractCharClass.call(a); a.$val$curAlt = 0; a.$val$nb = null; a.$val$cc = null; - a.$this$059 = null; + a.$this$035 = null; } function jur_CharClass$5_contains($this, $ch) { return $this.$val$curAlt ^ (!$this.$val$nb.$contains3($ch) && !$this.$val$cc.$contains3($ch) ? 0 : 1); @@ -649866,7 +651415,7 @@ a.$val$curAlt0 = 0; a.$val$nb0 = null; a.$val$cc0 = null; - a.$this$060 = null; + a.$this$036 = null; } function jur_CharClass$4_contains($this, $ch) { return $this.$val$curAlt0 ^ (!$this.$val$nb0.$contains3($ch) && !$this.$val$cc0.$contains3($ch) ? 0 : 1) ? 0 : 1; @@ -649874,7 +651423,7 @@ function jur_CharClass$7() { var a = this; jur_AbstractCharClass.call(a); a.$val$clazz1 = null; - a.$this$066 = null; + a.$this$042 = null; } function jur_CharClass$7_contains($this, $ch) { return jur_CharClass_contains($this.$val$clazz1, $ch); @@ -649882,7 +651431,7 @@ function jur_CharClass$6() { var a = this; jur_AbstractCharClass.call(a); a.$val$clazz2 = null; - a.$this$067 = null; + a.$this$043 = null; } function jur_CharClass$6_contains($this, $ch) { return jur_CharClass_contains($this.$val$clazz2, $ch) ? 0 : 1; @@ -649891,26 +651440,26 @@ var a = this; jur_AbstractCharClass.call(a); a.$val$clazz3 = null; a.$val$curAlt5 = 0; - a.$this$068 = null; + a.$this$044 = null; } function jur_CharClass$9_contains($this, $ch) { - return !jur_CharClass_contains($this.$val$clazz3, $ch) && !($this.$val$curAlt5 ^ ju_BitSet_get($this.$this$068.$bits0, $ch)) ? 0 : 1; + return !jur_CharClass_contains($this.$val$clazz3, $ch) && !($this.$val$curAlt5 ^ ju_BitSet_get($this.$this$044.$bits0, $ch)) ? 0 : 1; } function jur_CharClass$8() { var a = this; jur_AbstractCharClass.call(a); a.$val$clazz4 = null; a.$val$curAlt6 = 0; - a.$this$069 = null; + a.$this$045 = null; } function jur_CharClass$8_contains($this, $ch) { - return !jur_CharClass_contains($this.$val$clazz4, $ch) && !($this.$val$curAlt6 ^ ju_BitSet_get($this.$this$069.$bits0, $ch)) ? 1 : 0; + return !jur_CharClass_contains($this.$val$clazz4, $ch) && !($this.$val$curAlt6 ^ ju_BitSet_get($this.$this$045.$bits0, $ch)) ? 1 : 0; } function jur_CharClass$11() { var a = this; jur_AbstractCharClass.call(a); a.$val$curAlt3 = 0; a.$val$nb1 = null; a.$val$clazz = null; - a.$this$064 = null; + a.$this$040 = null; } function jur_CharClass$11_contains($this, $ch) { return !($this.$val$curAlt3 ^ $this.$val$nb1.$contains3($ch)) && !jur_CharClass_contains($this.$val$clazz, $ch) ? 0 : 1; @@ -649920,7 +651469,7 @@ a.$val$curAlt4 = 0; a.$val$nb2 = null; a.$val$clazz0 = null; - a.$this$065 = null; + a.$this$041 = null; } function jur_CharClass$10_contains($this, $ch) { return !($this.$val$curAlt4 ^ $this.$val$nb2.$contains3($ch)) && !jur_CharClass_contains($this.$val$clazz0, $ch) ? 1 : 0; @@ -649928,7 +651477,7 @@ function jur_CharClass$13() { var a = this; jur_AbstractCharClass.call(a); a.$val$clazz7 = null; - a.$this$072 = null; + a.$this$048 = null; } function jur_CharClass$13_contains($this, $ch) { return jur_CharClass_contains($this.$val$clazz7, $ch); @@ -649936,7 +651485,7 @@ function jur_CharClass$12() { var a = this; jur_AbstractCharClass.call(a); a.$val$clazz8 = null; - a.$this$073 = null; + a.$this$049 = null; } function jur_CharClass$12_contains($this, $ch) { return jur_CharClass_contains($this.$val$clazz8, $ch) ? 0 : 1; @@ -649945,26 +651494,26 @@ var a = this; jur_AbstractCharClass.call(a); a.$val$clazz9 = null; a.$val$curAlt9 = 0; - a.$this$074 = null; + a.$this$050 = null; } function jur_CharClass$15_contains($this, $ch) { - return jur_CharClass_contains($this.$val$clazz9, $ch) && $this.$val$curAlt9 ^ ju_BitSet_get($this.$this$074.$bits0, $ch) ? 1 : 0; + return jur_CharClass_contains($this.$val$clazz9, $ch) && $this.$val$curAlt9 ^ ju_BitSet_get($this.$this$050.$bits0, $ch) ? 1 : 0; } function jur_CharClass$14() { var a = this; jur_AbstractCharClass.call(a); a.$val$clazz10 = null; a.$val$curAlt10 = 0; - a.$this$075 = null; + a.$this$051 = null; } function jur_CharClass$14_contains($this, $ch) { - return jur_CharClass_contains($this.$val$clazz10, $ch) && $this.$val$curAlt10 ^ ju_BitSet_get($this.$this$075.$bits0, $ch) ? 0 : 1; + return jur_CharClass_contains($this.$val$clazz10, $ch) && $this.$val$curAlt10 ^ ju_BitSet_get($this.$this$051.$bits0, $ch) ? 0 : 1; } function jur_CharClass$17() { var a = this; jur_AbstractCharClass.call(a); a.$val$curAlt7 = 0; a.$val$nb3 = null; a.$val$clazz5 = null; - a.$this$070 = null; + a.$this$046 = null; } function jur_CharClass$17_contains($this, $ch) { return $this.$val$curAlt7 ^ $this.$val$nb3.$contains3($ch) && jur_CharClass_contains($this.$val$clazz5, $ch) ? 1 : 0; @@ -649974,7 +651523,7 @@ a.$val$curAlt8 = 0; a.$val$nb4 = null; a.$val$clazz6 = null; - a.$this$071 = null; + a.$this$047 = null; } function jur_CharClass$16_contains($this, $ch) { return $this.$val$curAlt8 ^ $this.$val$nb4.$contains3($ch) && jur_CharClass_contains($this.$val$clazz6, $ch) ? 0 : 1; @@ -651456,7 +653005,7 @@ case 0: var$2 = $rt_s(4567); var$3 = new nmws_WorldInfo$1; - var$3.$this$0111 = $this; + var$3.$this$081 = $this; $ptr = 1; case 1: nmc_CrashReportCategory_addCrashSectionCallable($category, var$2, var$3); @@ -651465,7 +653014,7 @@ } var$2 = $rt_s(4568); var$3 = new nmws_WorldInfo$2; - var$3.$this$0112 = $this; + var$3.$this$082 = $this; $ptr = 2; case 2: nmc_CrashReportCategory_addCrashSectionCallable($category, var$2, var$3); @@ -651474,7 +653023,7 @@ } var$2 = $rt_s(4569); var$3 = new nmws_WorldInfo$3; - var$3.$this$0113 = $this; + var$3.$this$083 = $this; $ptr = 3; case 3: nmc_CrashReportCategory_addCrashSectionCallable($category, var$2, var$3); @@ -651483,7 +653032,7 @@ } var$2 = $rt_s(4570); var$3 = new nmws_WorldInfo$4; - var$3.$this$0114 = $this; + var$3.$this$084 = $this; $ptr = 4; case 4: nmc_CrashReportCategory_addCrashSectionCallable($category, var$2, var$3); @@ -651492,7 +653041,7 @@ } var$2 = $rt_s(4571); var$3 = new nmws_WorldInfo$5; - var$3.$this$0115 = $this; + var$3.$this$085 = $this; $ptr = 5; case 5: nmc_CrashReportCategory_addCrashSectionCallable($category, var$2, var$3); @@ -651501,7 +653050,7 @@ } var$2 = $rt_s(4572); var$3 = new nmws_WorldInfo$6; - var$3.$this$0116 = $this; + var$3.$this$086 = $this; $ptr = 6; case 6: nmc_CrashReportCategory_addCrashSectionCallable($category, var$2, var$3); @@ -651510,7 +653059,7 @@ } var$2 = $rt_s(4573); var$3 = new nmws_WorldInfo$7; - var$3.$this$0117 = $this; + var$3.$this$087 = $this; $ptr = 7; case 7: nmc_CrashReportCategory_addCrashSectionCallable($category, var$2, var$3); @@ -651519,7 +653068,7 @@ } var$2 = $rt_s(4574); var$3 = new nmws_WorldInfo$8; - var$3.$this$0118 = $this; + var$3.$this$088 = $this; $ptr = 8; case 8: nmc_CrashReportCategory_addCrashSectionCallable($category, var$2, var$3); @@ -651528,7 +653077,7 @@ } var$2 = $rt_s(4575); var$3 = new nmws_WorldInfo$9; - var$3.$this$0119 = $this; + var$3.$this$089 = $this; $ptr = 9; case 9: nmc_CrashReportCategory_addCrashSectionCallable($category, var$2, var$3); @@ -652788,10 +654337,7 @@ $startIndex = var$2; $this.$previousMatch = $startIndex; } - function nmbs_BlockState$2() { - jl_Object.call(this); - this.$this$044 = null; - } + var nmbs_BlockState$2 = $rt_classWithoutFields(); function nmbs_BlockState$2_compare($this, var$1, var$2) { var$1 = var$1; var$2 = var$2; @@ -653089,19 +654635,14 @@ break main; } var$3 = $tmp; - if (var$3) { - var$2 = $iproperty.$valueClass; - var$4 = $this.$properties1; - $ptr = 2; + if (!var$3) { + var$2 = new jl_IllegalArgumentException; + $ptr = 3; continue main; } - var$2 = new jl_IllegalArgumentException; - var$5 = $this.$block.$blockState; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - var$6 = $rt_s(4580); - $ptr = 3; - continue main; + var$2 = $iproperty.$valueClass; + var$4 = $this.$properties1; + $ptr = 2; case 2: $tmp = var$4.$get($iproperty); if ($rt_suspending()) { @@ -653112,66 +654653,84 @@ var$4 = new jl_ClassCastException; $iproperty = jl_Class_getName(jl_Object_getClass($iproperty)); var$2 = jl_Class_getName(var$2); - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - $ptr = 8; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + $ptr = 10; continue main; } return $iproperty; case 3: - jl_AbstractStringBuilder_append(var$4, var$6); + $tmp = jl_String_valueOf($iproperty); if ($rt_suspending()) { break main; } + $iproperty = $tmp; + var$4 = $this.$block.$blockState; $ptr = 4; case 4: - jl_AbstractStringBuilder_append(var$4, $iproperty); + $tmp = jl_String_valueOf(var$4); if ($rt_suspending()) { break main; } - $iproperty = $rt_s(4581); + var$4 = $tmp; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + var$6 = $rt_s(4580); $ptr = 5; case 5: - jl_AbstractStringBuilder_append(var$4, $iproperty); + jl_AbstractStringBuilder_append(var$5, var$6); if ($rt_suspending()) { break main; } $ptr = 6; case 6: - jl_AbstractStringBuilder_append(var$4, var$5); + jl_AbstractStringBuilder_append(var$5, $iproperty); if ($rt_suspending()) { break main; } + $iproperty = $rt_s(4581); $ptr = 7; case 7: - $tmp = jl_AbstractStringBuilder_toString(var$4); + jl_AbstractStringBuilder_append(var$5, $iproperty); + if ($rt_suspending()) { + break main; + } + $ptr = 8; + case 8: + jl_AbstractStringBuilder_append(var$5, var$4); + if ($rt_suspending()) { + break main; + } + $ptr = 9; + case 9: + $tmp = jl_AbstractStringBuilder_toString(var$5); if ($rt_suspending()) { break main; } $iproperty = $tmp; jl_Throwable__init_(var$2, $iproperty); $rt_throw(var$2); - case 8: - jl_AbstractStringBuilder_append(var$6, $iproperty); + case 10: + jl_AbstractStringBuilder_append(var$5, $iproperty); if ($rt_suspending()) { break main; } $iproperty = $rt_s(4582); - $ptr = 9; - case 9: - jl_AbstractStringBuilder_append(var$6, $iproperty); - if ($rt_suspending()) { - break main; - } - $ptr = 10; - case 10: - jl_AbstractStringBuilder_append(var$6, var$2); - if ($rt_suspending()) { - break main; - } $ptr = 11; case 11: - $tmp = jl_AbstractStringBuilder_toString(var$6); + jl_AbstractStringBuilder_append(var$5, $iproperty); + if ($rt_suspending()) { + break main; + } + $ptr = 12; + case 12: + jl_AbstractStringBuilder_append(var$5, var$2); + if ($rt_suspending()) { + break main; + } + $ptr = 13; + case 13: + $tmp = jl_AbstractStringBuilder_toString(var$5); if ($rt_suspending()) { break main; } @@ -653205,10 +654764,6 @@ continue main; } $comparable = new jl_IllegalArgumentException; - var$5 = $this.$block.$blockState; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - var$6 = $rt_s(4583); $ptr = 3; continue main; case 2: @@ -653219,46 +654774,64 @@ var$4 = $tmp; if (var$4) { var$3 = $this.$properties1; - $ptr = 8; + $ptr = 10; continue main; } - var$6 = new jl_IllegalArgumentException; - $ptr = 9; + var$3 = new jl_IllegalArgumentException; + $ptr = 11; continue main; case 3: - jl_AbstractStringBuilder_append(var$3, var$6); + $tmp = jl_String_valueOf($iproperty); if ($rt_suspending()) { break main; } + $iproperty = $tmp; + var$3 = $this.$block.$blockState; $ptr = 4; case 4: - jl_AbstractStringBuilder_append(var$3, $iproperty); + $tmp = jl_String_valueOf(var$3); if ($rt_suspending()) { break main; } - $iproperty = $rt_s(4581); + var$3 = $tmp; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + var$6 = $rt_s(4583); $ptr = 5; case 5: - jl_AbstractStringBuilder_append(var$3, $iproperty); + jl_AbstractStringBuilder_append(var$5, var$6); if ($rt_suspending()) { break main; } $ptr = 6; case 6: - jl_AbstractStringBuilder_append(var$3, var$5); + jl_AbstractStringBuilder_append(var$5, $iproperty); if ($rt_suspending()) { break main; } + $iproperty = $rt_s(4581); $ptr = 7; case 7: - $tmp = jl_AbstractStringBuilder_toString(var$3); + jl_AbstractStringBuilder_append(var$5, $iproperty); + if ($rt_suspending()) { + break main; + } + $ptr = 8; + case 8: + jl_AbstractStringBuilder_append(var$5, var$3); + if ($rt_suspending()) { + break main; + } + $ptr = 9; + case 9: + $tmp = jl_AbstractStringBuilder_toString(var$5); if ($rt_suspending()) { break main; } $iproperty = $tmp; jl_Throwable__init_($comparable, $iproperty); $rt_throw($comparable); - case 8: + case 10: $tmp = var$3.$get($iproperty); if ($rt_suspending()) { break main; @@ -653267,80 +654840,101 @@ if (var$3 === $comparable) return $this; var$3 = $this.$propertyValueTable; - $ptr = 19; + $ptr = 24; continue main; - case 9: + case 11: + $tmp = jl_String_valueOf($iproperty); + if ($rt_suspending()) { + break main; + } + var$5 = $tmp; + $ptr = 12; + case 12: + $tmp = jl_String_valueOf($comparable); + if ($rt_suspending()) { + break main; + } + $comparable = $tmp; + $ptr = 13; + case 13: nmb_Block_$callClinit(); if ($rt_suspending()) { break main; } - var$3 = nmb_Block_blockRegistry; - var$5 = $this.$block; - $ptr = 10; - case 10: - $tmp = nmu_RegistryNamespaced_getNameForObject(var$3, var$5); - if ($rt_suspending()) { - break main; - } - var$3 = $tmp; - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); - var$7 = $rt_s(4583); - $ptr = 11; - case 11: - jl_AbstractStringBuilder_append(var$5, var$7); - if ($rt_suspending()) { - break main; - } - $ptr = 12; - case 12: - jl_AbstractStringBuilder_append(var$5, $iproperty); - if ($rt_suspending()) { - break main; - } - $iproperty = $rt_s(374); - $ptr = 13; - case 13: - jl_AbstractStringBuilder_append(var$5, $iproperty); - if ($rt_suspending()) { - break main; - } + $iproperty = nmb_Block_blockRegistry; + var$6 = $this.$block; $ptr = 14; case 14: - jl_AbstractStringBuilder_append(var$5, $comparable); - if ($rt_suspending()) { - break main; - } - $iproperty = $rt_s(4584); - $ptr = 15; - case 15: - jl_AbstractStringBuilder_append(var$5, $iproperty); - if ($rt_suspending()) { - break main; - } - $ptr = 16; - case 16: - jl_AbstractStringBuilder_append(var$5, var$3); - if ($rt_suspending()) { - break main; - } - $iproperty = $rt_s(4585); - $ptr = 17; - case 17: - jl_AbstractStringBuilder_append(var$5, $iproperty); - if ($rt_suspending()) { - break main; - } - $ptr = 18; - case 18: - $tmp = jl_AbstractStringBuilder_toString(var$5); + $tmp = nmu_RegistryNamespaced_getNameForObject($iproperty, var$6); if ($rt_suspending()) { break main; } $iproperty = $tmp; - jl_Throwable__init_(var$6, $iproperty); - $rt_throw(var$6); + $ptr = 15; + case 15: + $tmp = jl_String_valueOf($iproperty); + if ($rt_suspending()) { + break main; + } + $iproperty = $tmp; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + var$7 = $rt_s(4583); + $ptr = 16; + case 16: + jl_AbstractStringBuilder_append(var$6, var$7); + if ($rt_suspending()) { + break main; + } + $ptr = 17; + case 17: + jl_AbstractStringBuilder_append(var$6, var$5); + if ($rt_suspending()) { + break main; + } + var$5 = $rt_s(374); + $ptr = 18; + case 18: + jl_AbstractStringBuilder_append(var$6, var$5); + if ($rt_suspending()) { + break main; + } + $ptr = 19; case 19: + jl_AbstractStringBuilder_append(var$6, $comparable); + if ($rt_suspending()) { + break main; + } + $comparable = $rt_s(4584); + $ptr = 20; + case 20: + jl_AbstractStringBuilder_append(var$6, $comparable); + if ($rt_suspending()) { + break main; + } + $ptr = 21; + case 21: + jl_AbstractStringBuilder_append(var$6, $iproperty); + if ($rt_suspending()) { + break main; + } + $iproperty = $rt_s(4585); + $ptr = 22; + case 22: + jl_AbstractStringBuilder_append(var$6, $iproperty); + if ($rt_suspending()) { + break main; + } + $ptr = 23; + case 23: + $tmp = jl_AbstractStringBuilder_toString(var$6); + if ($rt_suspending()) { + break main; + } + $iproperty = $tmp; + jl_Throwable__init_(var$3, $iproperty); + $rt_throw(var$3); + case 24: $tmp = var$3.$get18($iproperty, $comparable); if ($rt_suspending()) { break main; @@ -654073,7 +655667,7 @@ function nmn_NBTTagCompound$1() { var a = this; jl_Object.call(a); a.$val$key = null; - a.$this$040 = null; + a.$this$023 = null; } function nmn_NBTTagCompound$1_call($this) { var var$1, var$2, var$3, var$4, $ptr, $tmp; @@ -654086,7 +655680,7 @@ case 0: nmn_NBTBase_$callClinit(); var$1 = nmn_NBTBase_NBT_TYPES.data; - var$2 = $this.$this$040.$tagMap; + var$2 = $this.$this$023.$tagMap; var$3 = $this.$val$key; $ptr = 1; case 1: @@ -654109,9 +655703,8 @@ $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); } function nmn_NBTTagCompound$2() { - var a = this; jl_Object.call(a); - a.$val$expectedType = 0; - a.$this$041 = null; + jl_Object.call(this); + this.$val$expectedType = 0; } function nmn_NBTTagCompound$2_call($this) { nmn_NBTBase_$callClinit(); @@ -654143,18 +655736,17 @@ var$1 = $this.$state3; cgcc_AbstractIterator$State_$callClinit(); cgcb_Preconditions_checkState(var$1 === cgcc_AbstractIterator$State_FAILED ? 0 : 1); - cgcc_AbstractIterator$1_$callClinit(); - switch (cgcc_AbstractIterator$1_$SwitchMap$com$google$common$collect$AbstractIterator$State.data[$this.$state3.$ordinal]) { - case 1: + switch ($this.$state3.$ordinal) { + case 0: break; case 2: - return 1; + return 0; default: $this.$state3 = cgcc_AbstractIterator$State_FAILED; $ptr = 1; continue main; } - return 0; + return 1; case 1: $tmp = $this.$computeNext(); if ($rt_suspending()) { @@ -660827,126 +662419,193 @@ } main: while (true) { switch ($ptr) { case 0: - nmcs_GameSettings$1_$callClinit(); - switch (nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[$parOptions.$ordinal]) { - case 1: - break; - case 2: - return $this.$viewBobbing; - case 3: - return $this.$anaglyph; - case 4: - return $this.$fboEnable; - case 5: - return $this.$chatColours0; - case 6: - return $this.$chatLinks; - case 7: - return $this.$chatLinksPrompt; - case 8: - return $this.$snooperEnabled; - case 9: - return $this.$touchscreen; - case 10: - return $this.$forceUnicodeFont; - case 11: - return $this.$allowBlockAlternatives; - case 12: - return $this.$reducedDebugInfo0; - case 13: - return $this.$field_181151_V; - case 14: - return $this.$hudCoords; - case 15: - return $this.$hudFps; - case 16: - return $this.$hudPlayer; - case 17: - return $this.$hudStats; - case 18: - return $this.$hudWorld; - case 19: - return $this.$hud24h; - case 20: - return $this.$chunkFix; - case 21: - return nlevi_PlatformInput_isFullscreen(); - case 22: - return $this.$useVBOs; - case 23: - return $this.$ofFastMath; - case 24: - return $this.$ofSmoothFps; - case 25: - return $this.$ofSmoothWorld; - case 26: - return $this.$ofLagometer; - case 27: - return $this.$ofWeather; - case 28: - return $this.$ofProfiler; - case 29: - return $this.$ofSky; - case 30: - return $this.$ofStars; - case 31: - return $this.$ofSunMoon; - case 32: - return $this.$heldItemTooltips; - case 33: - return $this.$ofDynamicFov; - case 34: - return $this.$ofShowCapes; - case 35: - return $this.$ofClearWater; - case 36: - return $this.$ofRandomMobs; - case 37: - return $this.$ofBetterSnow; - case 38: - return $this.$ofCustomFonts; - case 39: - return $this.$ofCustomSky; - case 40: - return $this.$toggleSprint; - case 41: - return $this.$chunkBorders; - case 42: - return $this.$experimentalVisGraph; - case 43: - return $this.$experimentalBufferQueue; - case 44: - return $this.$ofCustomItems; - case 45: - return $this.$ofSwampColors; - case 46: - return $this.$ofSmoothBiomes; - case 47: - return $this.$ofCustomColors; - case 48: - return $this.$enableFNAWSkins; - case 49: - return $this.$enableVsync; - case 50: - return $this.$fullBright; - case 51: - return $this.$leftHand; - case 52: - return $this.$entityCulling; - case 53: - return $this.$particleCulling; - case 54: - return $this.$armorgui; - case 55: - return $this.$cps; - case 56: - return $this.$potionGUI; - case 57: - return $this.$keyStrokes; - default: - return 0; + a: { + switch ($parOptions.$ordinal) { + case 0: + break; + case 1: + case 2: + case 3: + case 4: + case 5: + case 8: + case 10: + case 11: + case 12: + case 13: + case 14: + case 15: + case 18: + case 22: + case 23: + case 24: + case 25: + case 26: + case 28: + case 29: + case 30: + case 31: + case 32: + case 33: + case 34: + case 35: + case 36: + case 37: + case 48: + case 51: + case 53: + case 54: + case 57: + case 60: + case 62: + case 63: + case 64: + case 65: + case 66: + case 67: + case 68: + case 69: + case 70: + case 71: + case 72: + case 73: + case 74: + case 75: + case 76: + case 77: + case 78: + case 79: + case 80: + case 81: + case 82: + case 88: + case 89: + case 90: + case 92: + case 93: + case 94: + case 97: + case 101: + case 110: + break a; + case 6: + return $this.$viewBobbing; + case 7: + return $this.$anaglyph; + case 9: + return $this.$fboEnable; + case 16: + return $this.$chatColours0; + case 17: + return $this.$chatLinks; + case 19: + return $this.$chatLinksPrompt; + case 20: + return $this.$snooperEnabled; + case 21: + return $this.$touchscreen; + case 27: + return $this.$forceUnicodeFont; + case 38: + return $this.$allowBlockAlternatives; + case 39: + return $this.$reducedDebugInfo0; + case 40: + return $this.$field_181151_V; + case 41: + return $this.$hudFps; + case 42: + return $this.$hudCoords; + case 43: + return $this.$hudStats; + case 44: + return $this.$hudWorld; + case 45: + return $this.$hudPlayer; + case 46: + return $this.$hud24h; + case 47: + return $this.$chunkFix; + case 49: + return nlevi_PlatformInput_isFullscreen(); + case 50: + return $this.$ofFastMath; + case 52: + return $this.$useVBOs; + case 55: + return $this.$ofSmoothFps; + case 56: + return $this.$ofSmoothWorld; + case 58: + return $this.$ofLagometer; + case 59: + return $this.$ofWeather; + case 61: + return $this.$ofProfiler; + case 83: + return $this.$ofSky; + case 84: + return $this.$ofStars; + case 85: + return $this.$ofSunMoon; + case 86: + return $this.$heldItemTooltips; + case 87: + return $this.$ofDynamicFov; + case 91: + return $this.$ofShowCapes; + case 95: + return $this.$ofClearWater; + case 96: + return $this.$ofRandomMobs; + case 98: + return $this.$ofBetterSnow; + case 99: + return $this.$ofCustomFonts; + case 100: + return $this.$ofCustomSky; + case 102: + return $this.$toggleSprint; + case 103: + return $this.$chunkBorders; + case 104: + return $this.$experimentalVisGraph; + case 105: + return $this.$experimentalBufferQueue; + case 106: + return $this.$ofCustomItems; + case 107: + return $this.$ofSwampColors; + case 108: + return $this.$ofSmoothBiomes; + case 109: + return $this.$ofCustomColors; + case 111: + return $this.$enableFNAWSkins; + case 112: + return $this.$enableVsync; + case 113: + return $this.$fullBright; + case 114: + return $this.$leftHand; + case 115: + return $this.$entityCulling; + case 116: + return $this.$particleCulling; + case 117: + return $this.$armorgui; + case 118: + return $this.$cps; + case 119: + return $this.$keyStrokes; + case 120: + return $this.$potionGUI; + default: + break a; + } + return $this.$invertMouse; } - return $this.$invertMouse; + return 0; default: $rt_invalidPointer(); }} $rt_nativeThread().push($this, $parOptions, $ptr); @@ -686334,8 +687993,20 @@ $parFloat1 = var$2 * jl_Math_round($parFloat1 / var$2); return nmu_MathHelper_clamp_float($parFloat1, $this.$valueMin, $this.$valueMax); } + function nmcs_GameSettings$Options_$values() { + nmcs_GameSettings$Options_$callClinit(); + return $rt_createArrayFromData(nmcs_GameSettings$Options, [nmcs_GameSettings$Options_INVERT_MOUSE, nmcs_GameSettings$Options_SENSITIVITY, nmcs_GameSettings$Options_FOV, nmcs_GameSettings$Options_GAMMA, nmcs_GameSettings$Options_SATURATION, nmcs_GameSettings$Options_RENDER_DISTANCE, nmcs_GameSettings$Options_VIEW_BOBBING, nmcs_GameSettings$Options_ANAGLYPH, nmcs_GameSettings$Options_FRAMERATE_LIMIT, nmcs_GameSettings$Options_FBO_ENABLE, nmcs_GameSettings$Options_RENDER_CLOUDS, nmcs_GameSettings$Options_GRAPHICS, + nmcs_GameSettings$Options_AMBIENT_OCCLUSION, nmcs_GameSettings$Options_GUI_SCALE, nmcs_GameSettings$Options_PARTICLES, nmcs_GameSettings$Options_CHAT_VISIBILITY, nmcs_GameSettings$Options_CHAT_COLOR, nmcs_GameSettings$Options_CHAT_LINKS, nmcs_GameSettings$Options_CHAT_OPACITY, nmcs_GameSettings$Options_CHAT_LINKS_PROMPT, nmcs_GameSettings$Options_SNOOPER_ENABLED, nmcs_GameSettings$Options_TOUCHSCREEN, nmcs_GameSettings$Options_CHAT_SCALE, nmcs_GameSettings$Options_CHAT_WIDTH, nmcs_GameSettings$Options_CHAT_HEIGHT_FOCUSED, + nmcs_GameSettings$Options_CHAT_HEIGHT_UNFOCUSED, nmcs_GameSettings$Options_MIPMAP_LEVELS, nmcs_GameSettings$Options_FORCE_UNICODE_FONT, nmcs_GameSettings$Options_STREAM_BYTES_PER_PIXEL, nmcs_GameSettings$Options_STREAM_VOLUME_MIC, nmcs_GameSettings$Options_STREAM_VOLUME_SYSTEM, nmcs_GameSettings$Options_STREAM_KBPS, nmcs_GameSettings$Options_STREAM_FPS, nmcs_GameSettings$Options_STREAM_COMPRESSION, nmcs_GameSettings$Options_STREAM_SEND_METADATA, nmcs_GameSettings$Options_STREAM_CHAT_ENABLED, nmcs_GameSettings$Options_STREAM_CHAT_USER_FILTER, + nmcs_GameSettings$Options_STREAM_MIC_TOGGLE_BEHAVIOR, nmcs_GameSettings$Options_BLOCK_ALTERNATIVES, nmcs_GameSettings$Options_REDUCED_DEBUG_INFO, nmcs_GameSettings$Options_ENTITY_SHADOWS, nmcs_GameSettings$Options_HUD_FPS, nmcs_GameSettings$Options_HUD_COORDS, nmcs_GameSettings$Options_HUD_STATS, nmcs_GameSettings$Options_HUD_WORLD, nmcs_GameSettings$Options_HUD_PLAYER, nmcs_GameSettings$Options_HUD_24H, nmcs_GameSettings$Options_CHUNK_FIX, nmcs_GameSettings$Options_FXAA, nmcs_GameSettings$Options_FULLSCREEN, + nmcs_GameSettings$Options_FAST_MATH, nmcs_GameSettings$Options_AO_LEVEL, nmcs_GameSettings$Options_USE_VBO, nmcs_GameSettings$Options_FOG_FANCY, nmcs_GameSettings$Options_FOG_START, nmcs_GameSettings$Options_SMOOTH_FPS, nmcs_GameSettings$Options_SMOOTH_WORLD, nmcs_GameSettings$Options_CHUNK_UPDATES, nmcs_GameSettings$Options_LAGOMETER, nmcs_GameSettings$Options_WEATHER, nmcs_GameSettings$Options_TIME, nmcs_GameSettings$Options_PROFILER, nmcs_GameSettings$Options_AUTOSAVE_TICKS, nmcs_GameSettings$Options_ANIMATED_WATER, + nmcs_GameSettings$Options_ANIMATED_LAVA, nmcs_GameSettings$Options_ANIMATED_FIRE, nmcs_GameSettings$Options_ANIMATED_PORTAL, nmcs_GameSettings$Options_ANIMATED_REDSTONE, nmcs_GameSettings$Options_ANIMATED_EXPLOSION, nmcs_GameSettings$Options_ANIMATED_FLAME, nmcs_GameSettings$Options_ANIMATED_SMOKE, nmcs_GameSettings$Options_VOID_PARTICLES, nmcs_GameSettings$Options_WATER_PARTICLES, nmcs_GameSettings$Options_RAIN_SPLASH, nmcs_GameSettings$Options_PORTAL_PARTICLES, nmcs_GameSettings$Options_POTION_PARTICLES, + nmcs_GameSettings$Options_FIREWORK_PARTICLES, nmcs_GameSettings$Options_DRIPPING_WATER_LAVA, nmcs_GameSettings$Options_ANIMATED_TERRAIN, nmcs_GameSettings$Options_ANIMATED_TEXTURES, nmcs_GameSettings$Options_CLOUD_HEIGHT, nmcs_GameSettings$Options_TREES, nmcs_GameSettings$Options_RAIN, nmcs_GameSettings$Options_SKY, nmcs_GameSettings$Options_STARS, nmcs_GameSettings$Options_SUN_MOON, nmcs_GameSettings$Options_HELD_ITEM_TOOLTIPS, nmcs_GameSettings$Options_DYNAMIC_FOV, nmcs_GameSettings$Options_VIGNETTE, + nmcs_GameSettings$Options_TRANSLUCENT_BLOCKS, nmcs_GameSettings$Options_DROPPED_ITEMS, nmcs_GameSettings$Options_SHOW_CAPES, nmcs_GameSettings$Options_MIPMAP_TYPE, nmcs_GameSettings$Options_AA_LEVEL, nmcs_GameSettings$Options_AF_LEVEL, nmcs_GameSettings$Options_CLEAR_WATER, nmcs_GameSettings$Options_RANDOM_MOBS, nmcs_GameSettings$Options_BETTER_GRASS, nmcs_GameSettings$Options_BETTER_SNOW, nmcs_GameSettings$Options_CUSTOM_FONTS, nmcs_GameSettings$Options_CUSTOM_SKY, nmcs_GameSettings$Options_DYNAMIC_LIGHTS, + nmcs_GameSettings$Options_TOGGLE_SPRINT, nmcs_GameSettings$Options_CHUNK_BORDERS, nmcs_GameSettings$Options_VIS_GRAPH, nmcs_GameSettings$Options_BUFFER_QUEUE, nmcs_GameSettings$Options_CUSTOM_ITEMS, nmcs_GameSettings$Options_SWAMP_COLORS, nmcs_GameSettings$Options_SMOOTH_BIOMES, nmcs_GameSettings$Options_CUSTOM_COLORS, nmcs_GameSettings$Options_HIDE_PASSWORD, nmcs_GameSettings$Options_FNAW_SKINS, nmcs_GameSettings$Options_EAGLER_VSYNC, nmcs_GameSettings$Options_FULLBRIGHT, nmcs_GameSettings$Options_LEFT_HAND, + nmcs_GameSettings$Options_ENTITY_CULLING, nmcs_GameSettings$Options_PARTICLE_CULLING, nmcs_GameSettings$Options_ARMOR_GUI, nmcs_GameSettings$Options_CPS, nmcs_GameSettings$Options_KEYSTROKES, nmcs_GameSettings$Options_POTION_GUI]); + } function nmcs_GameSettings$Options__clinit_() { - var var$1; nmcs_GameSettings$Options_INVERT_MOUSE = nmcs_GameSettings$Options__init_($rt_s(4940), 0, $rt_s(4941), 0, 1); nmcs_GameSettings$Options_SENSITIVITY = nmcs_GameSettings$Options__init_($rt_s(4942), 1, $rt_s(4943), 1, 0); nmcs_GameSettings$Options_FOV = nmcs_GameSettings$Options__init_1($rt_s(4944), 2, $rt_s(4945), 1, 0, 30.0, 110.0, 1.0); @@ -686456,18 +688127,8 @@ nmcs_GameSettings$Options_ARMOR_GUI = nmcs_GameSettings$Options__init_($rt_s(5173), 117, $rt_s(5174), 0, 1); nmcs_GameSettings$Options_CPS = nmcs_GameSettings$Options__init_($rt_s(5175), 118, $rt_s(5175), 0, 1); nmcs_GameSettings$Options_KEYSTROKES = nmcs_GameSettings$Options__init_($rt_s(5176), 119, $rt_s(5177), 0, 1); - var$1 = nmcs_GameSettings$Options__init_($rt_s(5178), 120, $rt_s(5179), 0, 1); - nmcs_GameSettings$Options_POTION_GUI = var$1; - nmcs_GameSettings$Options_$VALUES = $rt_createArrayFromData(nmcs_GameSettings$Options, [nmcs_GameSettings$Options_INVERT_MOUSE, nmcs_GameSettings$Options_SENSITIVITY, nmcs_GameSettings$Options_FOV, nmcs_GameSettings$Options_GAMMA, nmcs_GameSettings$Options_SATURATION, nmcs_GameSettings$Options_RENDER_DISTANCE, nmcs_GameSettings$Options_VIEW_BOBBING, nmcs_GameSettings$Options_ANAGLYPH, nmcs_GameSettings$Options_FRAMERATE_LIMIT, nmcs_GameSettings$Options_FBO_ENABLE, nmcs_GameSettings$Options_RENDER_CLOUDS, - nmcs_GameSettings$Options_GRAPHICS, nmcs_GameSettings$Options_AMBIENT_OCCLUSION, nmcs_GameSettings$Options_GUI_SCALE, nmcs_GameSettings$Options_PARTICLES, nmcs_GameSettings$Options_CHAT_VISIBILITY, nmcs_GameSettings$Options_CHAT_COLOR, nmcs_GameSettings$Options_CHAT_LINKS, nmcs_GameSettings$Options_CHAT_OPACITY, nmcs_GameSettings$Options_CHAT_LINKS_PROMPT, nmcs_GameSettings$Options_SNOOPER_ENABLED, nmcs_GameSettings$Options_TOUCHSCREEN, nmcs_GameSettings$Options_CHAT_SCALE, nmcs_GameSettings$Options_CHAT_WIDTH, - nmcs_GameSettings$Options_CHAT_HEIGHT_FOCUSED, nmcs_GameSettings$Options_CHAT_HEIGHT_UNFOCUSED, nmcs_GameSettings$Options_MIPMAP_LEVELS, nmcs_GameSettings$Options_FORCE_UNICODE_FONT, nmcs_GameSettings$Options_STREAM_BYTES_PER_PIXEL, nmcs_GameSettings$Options_STREAM_VOLUME_MIC, nmcs_GameSettings$Options_STREAM_VOLUME_SYSTEM, nmcs_GameSettings$Options_STREAM_KBPS, nmcs_GameSettings$Options_STREAM_FPS, nmcs_GameSettings$Options_STREAM_COMPRESSION, nmcs_GameSettings$Options_STREAM_SEND_METADATA, nmcs_GameSettings$Options_STREAM_CHAT_ENABLED, - nmcs_GameSettings$Options_STREAM_CHAT_USER_FILTER, nmcs_GameSettings$Options_STREAM_MIC_TOGGLE_BEHAVIOR, nmcs_GameSettings$Options_BLOCK_ALTERNATIVES, nmcs_GameSettings$Options_REDUCED_DEBUG_INFO, nmcs_GameSettings$Options_ENTITY_SHADOWS, nmcs_GameSettings$Options_HUD_FPS, nmcs_GameSettings$Options_HUD_COORDS, nmcs_GameSettings$Options_HUD_STATS, nmcs_GameSettings$Options_HUD_WORLD, nmcs_GameSettings$Options_HUD_PLAYER, nmcs_GameSettings$Options_HUD_24H, nmcs_GameSettings$Options_CHUNK_FIX, nmcs_GameSettings$Options_FXAA, - nmcs_GameSettings$Options_FULLSCREEN, nmcs_GameSettings$Options_FAST_MATH, nmcs_GameSettings$Options_AO_LEVEL, nmcs_GameSettings$Options_USE_VBO, nmcs_GameSettings$Options_FOG_FANCY, nmcs_GameSettings$Options_FOG_START, nmcs_GameSettings$Options_SMOOTH_FPS, nmcs_GameSettings$Options_SMOOTH_WORLD, nmcs_GameSettings$Options_CHUNK_UPDATES, nmcs_GameSettings$Options_LAGOMETER, nmcs_GameSettings$Options_WEATHER, nmcs_GameSettings$Options_TIME, nmcs_GameSettings$Options_PROFILER, nmcs_GameSettings$Options_AUTOSAVE_TICKS, - nmcs_GameSettings$Options_ANIMATED_WATER, nmcs_GameSettings$Options_ANIMATED_LAVA, nmcs_GameSettings$Options_ANIMATED_FIRE, nmcs_GameSettings$Options_ANIMATED_PORTAL, nmcs_GameSettings$Options_ANIMATED_REDSTONE, nmcs_GameSettings$Options_ANIMATED_EXPLOSION, nmcs_GameSettings$Options_ANIMATED_FLAME, nmcs_GameSettings$Options_ANIMATED_SMOKE, nmcs_GameSettings$Options_VOID_PARTICLES, nmcs_GameSettings$Options_WATER_PARTICLES, nmcs_GameSettings$Options_RAIN_SPLASH, nmcs_GameSettings$Options_PORTAL_PARTICLES, - nmcs_GameSettings$Options_POTION_PARTICLES, nmcs_GameSettings$Options_FIREWORK_PARTICLES, nmcs_GameSettings$Options_DRIPPING_WATER_LAVA, nmcs_GameSettings$Options_ANIMATED_TERRAIN, nmcs_GameSettings$Options_ANIMATED_TEXTURES, nmcs_GameSettings$Options_CLOUD_HEIGHT, nmcs_GameSettings$Options_TREES, nmcs_GameSettings$Options_RAIN, nmcs_GameSettings$Options_SKY, nmcs_GameSettings$Options_STARS, nmcs_GameSettings$Options_SUN_MOON, nmcs_GameSettings$Options_HELD_ITEM_TOOLTIPS, nmcs_GameSettings$Options_DYNAMIC_FOV, - nmcs_GameSettings$Options_VIGNETTE, nmcs_GameSettings$Options_TRANSLUCENT_BLOCKS, nmcs_GameSettings$Options_DROPPED_ITEMS, nmcs_GameSettings$Options_SHOW_CAPES, nmcs_GameSettings$Options_MIPMAP_TYPE, nmcs_GameSettings$Options_AA_LEVEL, nmcs_GameSettings$Options_AF_LEVEL, nmcs_GameSettings$Options_CLEAR_WATER, nmcs_GameSettings$Options_RANDOM_MOBS, nmcs_GameSettings$Options_BETTER_GRASS, nmcs_GameSettings$Options_BETTER_SNOW, nmcs_GameSettings$Options_CUSTOM_FONTS, nmcs_GameSettings$Options_CUSTOM_SKY, - nmcs_GameSettings$Options_DYNAMIC_LIGHTS, nmcs_GameSettings$Options_TOGGLE_SPRINT, nmcs_GameSettings$Options_CHUNK_BORDERS, nmcs_GameSettings$Options_VIS_GRAPH, nmcs_GameSettings$Options_BUFFER_QUEUE, nmcs_GameSettings$Options_CUSTOM_ITEMS, nmcs_GameSettings$Options_SWAMP_COLORS, nmcs_GameSettings$Options_SMOOTH_BIOMES, nmcs_GameSettings$Options_CUSTOM_COLORS, nmcs_GameSettings$Options_HIDE_PASSWORD, nmcs_GameSettings$Options_FNAW_SKINS, nmcs_GameSettings$Options_EAGLER_VSYNC, nmcs_GameSettings$Options_FULLBRIGHT, - nmcs_GameSettings$Options_LEFT_HAND, nmcs_GameSettings$Options_ENTITY_CULLING, nmcs_GameSettings$Options_PARTICLE_CULLING, nmcs_GameSettings$Options_ARMOR_GUI, nmcs_GameSettings$Options_CPS, nmcs_GameSettings$Options_KEYSTROKES, var$1]); + nmcs_GameSettings$Options_POTION_GUI = nmcs_GameSettings$Options__init_($rt_s(5178), 120, $rt_s(5179), 0, 1); + nmcs_GameSettings$Options_$VALUES = nmcs_GameSettings$Options_$values(); } var nlev_Mouse = $rt_classWithoutFields(); var nlev_Mouse_customCursorCounter = 0; @@ -689903,7 +691564,7 @@ } $var6 = $tmp; $var6 = $var6; - $resourcepackrepository$entry.$this$0120 = $this; + $resourcepackrepository$entry.$this$090 = $this; $resourcepackrepository$entry.$reResourcePack = $var6; $var6 = $this.$repositoryEntriesAll; $ptr = 5; @@ -690643,9 +692304,7 @@ } var$2 = nmcr_SimpleReloadableResourceManager_logger; $iresourcepack = nmcr_SimpleReloadableResourceManager_joinerResourcePacks; - var$4 = new nmcr_SimpleReloadableResourceManager$1; - var$4.$this$0121 = $this; - var$4 = cgcc_Iterables_transform($list, var$4); + var$4 = cgcc_Iterables_transform($list, new nmcr_SimpleReloadableResourceManager$1); $ptr = 2; case 2: $tmp = cgcb_Joiner_join($iresourcepack, var$4); @@ -691412,7 +693071,7 @@ continue main; } $ioexception = $rt_s(5197); - $ptr = 9; + $ptr = 10; continue main; case 1: a: { @@ -691438,59 +693097,66 @@ continue main; } $ioexception = $rt_s(5197); - $ptr = 9; + $ptr = 10; continue main; } $textureLocation.$cachedPointer = $textureObj; $ioexception = $this.$mapTextureObjects; - $ptr = 13; + $ptr = 14; continue main; case 2: nmcrt_TextureManager_$callClinit(); if ($rt_suspending()) { break main; } - $textureObj = nmcrt_TextureManager_logger; - $crashreport = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($crashreport); - $crashreportcategory = $rt_s(5198); + $crashreport = nmcrt_TextureManager_logger; $ptr = 3; case 3: - jl_AbstractStringBuilder_append($crashreport, $crashreportcategory); + $tmp = jl_String_valueOf($textureLocation); if ($rt_suspending()) { break main; } + $crashreportcategory = $tmp; + $textureObj = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($textureObj); + $throwable = $rt_s(5198); $ptr = 4; case 4: - jl_AbstractStringBuilder_append($crashreport, $textureLocation); + jl_AbstractStringBuilder_append($textureObj, $throwable); if ($rt_suspending()) { break main; } $ptr = 5; case 5: - $tmp = jl_AbstractStringBuilder_toString($crashreport); + jl_AbstractStringBuilder_append($textureObj, $crashreportcategory); if ($rt_suspending()) { break main; } - $crashreport = $tmp; - var$8 = $rt_createArray(jl_Object, 1); - var$8.data[0] = $ioexception; $ptr = 6; case 6: - nlevl_Logger_warn0($textureObj, $crashreport, var$8); + $tmp = jl_AbstractStringBuilder_toString($textureObj); if ($rt_suspending()) { break main; } + $textureObj = $tmp; + var$8 = $rt_createArray(jl_Object, 1); + var$8.data[0] = $ioexception; $ptr = 7; case 7: + nlevl_Logger_warn0($crashreport, $textureObj, var$8); + if ($rt_suspending()) { + break main; + } + $ptr = 8; + case 8: nmcrt_TextureUtil_$callClinit(); if ($rt_suspending()) { break main; } $textureObj = nmcrt_TextureUtil_missingTexture; $ioexception = $this.$mapTextureObjects; - $ptr = 8; - case 8: + $ptr = 9; + case 9: ju_HashMap_putImpl($ioexception, $textureLocation, $textureObj); if ($rt_suspending()) { break main; @@ -691498,41 +693164,40 @@ $flag = 0; $textureLocation.$cachedPointer = $textureObj; $ioexception = $this.$mapTextureObjects; - $ptr = 13; + $ptr = 14; continue main; - case 9: + case 10: $tmp = nmc_CrashReport_makeCrashReport($throwable, $ioexception); if ($rt_suspending()) { break main; } $crashreport = $tmp; $ioexception = $rt_s(5199); - $ptr = 10; - case 10: + $ptr = 11; + case 11: $tmp = nmc_CrashReport_makeCategory($crashreport, $ioexception); if ($rt_suspending()) { break main; } $crashreportcategory = $tmp; $ioexception = $rt_s(5200); - $ptr = 11; - case 11: + $ptr = 12; + case 12: nmc_CrashReportCategory_addCrashSection($crashreportcategory, $ioexception, $textureLocation); if ($rt_suspending()) { break main; } $textureLocation = $rt_s(5201); $ioexception = new nmcrt_TextureManager$1; - $ioexception.$this$0122 = $this; $ioexception.$val$textureObj2 = $textureObj; - $ptr = 12; - case 12: + $ptr = 13; + case 13: nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, $textureLocation, $ioexception); if ($rt_suspending()) { break main; } $rt_throw(nmu_ReportedException__init_($crashreport)); - case 13: + case 14: ju_HashMap_putImpl($ioexception, $textureLocation, $textureObj); if ($rt_suspending()) { break main; @@ -692744,7 +694409,7 @@ continue main; case 2: $object = new nmca_SoundHandler$1; - $object.$this$0123 = $this; + $object.$this$091 = $this; $object.$val$s10 = $s1; $object.$val$soundlist$soundentry = $soundlist$soundentry; $resourcelocation = new nmu_ResourceLocation; @@ -692819,7 +694484,7 @@ } try { - $ptr = 28; + $ptr = 30; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -692865,7 +694530,7 @@ } } try { - $ptr = 29; + $ptr = 31; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -692905,7 +694570,7 @@ } } try { - $ptr = 28; + $ptr = 30; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -692939,7 +694604,7 @@ } try { - $ptr = 28; + $ptr = 30; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -692963,7 +694628,7 @@ } try { - $ptr = 28; + $ptr = 30; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -692975,7 +694640,7 @@ $rt_throw($location); } try { - $ptr = 30; + $ptr = 32; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -692993,8 +694658,6 @@ break main; } $soundlist$soundentry = nmca_SoundHandler_logger; - $object = jl_StringBuilder__init_(); - $inputstream = $rt_s(5211); $ptr = 22; continue main; } catch ($$e) { @@ -693003,7 +694666,7 @@ } try { - $ptr = 28; + $ptr = 30; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -693015,11 +694678,11 @@ $rt_throw($location); case 22: try { - $tmp = jl_StringBuilder_append($object, $inputstream); + $tmp = jl_String_valueOf($resourcelocation1); if ($rt_suspending()) { break main; } - $inputstream = $tmp; + $resourcelocation1 = $tmp; $ptr = 23; continue main; } catch ($$e) { @@ -693028,7 +694691,7 @@ } try { - $ptr = 28; + $ptr = 30; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -693040,12 +694703,13 @@ $rt_throw($location); case 23: try { - $tmp = jl_StringBuilder_append($inputstream, $resourcelocation1); + $tmp = jl_String_valueOf($location); if ($rt_suspending()) { break main; } - $resourcelocation1 = $tmp; - $inputstream = $rt_s(5212); + $object = $tmp; + $inputstream = jl_StringBuilder__init_(); + $s = $rt_s(5211); $ptr = 24; continue main; } catch ($$e) { @@ -693054,7 +694718,7 @@ } try { - $ptr = 28; + $ptr = 30; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -693066,11 +694730,11 @@ $rt_throw($location); case 24: try { - $tmp = jl_StringBuilder_append($resourcelocation1, $inputstream); + $tmp = jl_StringBuilder_append($inputstream, $s); if ($rt_suspending()) { break main; } - $resourcelocation1 = $tmp; + $s = $tmp; $ptr = 25; continue main; } catch ($$e) { @@ -693079,7 +694743,7 @@ } try { - $ptr = 28; + $ptr = 30; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -693091,10 +694755,12 @@ $rt_throw($location); case 25: try { - jl_StringBuilder_append($resourcelocation1, $location); + $tmp = jl_StringBuilder_append($s, $resourcelocation1); if ($rt_suspending()) { break main; } + $resourcelocation1 = $tmp; + $s = $rt_s(5212); $ptr = 26; continue main; } catch ($$e) { @@ -693103,7 +694769,7 @@ } try { - $ptr = 28; + $ptr = 30; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -693115,14 +694781,11 @@ $rt_throw($location); case 26: try { - $tmp = jl_StringBuilder_toString($object); + $tmp = jl_StringBuilder_append($resourcelocation1, $s); if ($rt_suspending()) { break main; } $resourcelocation1 = $tmp; - $s1 = $resourcelocation; - var$10 = $rt_createArray(jl_Object, 1); - var$10.data[0] = $ioexception; $ptr = 27; continue main; } catch ($$e) { @@ -693131,7 +694794,7 @@ } try { - $ptr = 28; + $ptr = 30; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -693142,6 +694805,58 @@ } $rt_throw($location); case 27: + try { + jl_StringBuilder_append($resourcelocation1, $object); + if ($rt_suspending()) { + break main; + } + $ptr = 28; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $location = $$je; + + } + try { + $ptr = 30; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + } else { + throw $$e; + } + } + $rt_throw($location); + case 28: + try { + $tmp = jl_StringBuilder_toString($inputstream); + if ($rt_suspending()) { + break main; + } + $resourcelocation1 = $tmp; + $s1 = $resourcelocation; + var$10 = $rt_createArray(jl_Object, 1); + var$10.data[0] = $ioexception; + $ptr = 29; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $location = $$je; + + } + try { + $ptr = 30; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + } else { + throw $$e; + } + } + $rt_throw($location); + case 29: b: { try { nlevl_Logger_warn0($soundlist$soundentry, $resourcelocation1, var$10); @@ -693155,7 +694870,7 @@ } try { - $ptr = 28; + $ptr = 30; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -693167,7 +694882,7 @@ $rt_throw($location); } try { - $ptr = 31; + $ptr = 33; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -693178,7 +694893,7 @@ } $ptr = 8; continue main; - case 28: + case 30: b: { try { $s1.$close(); @@ -693195,7 +694910,7 @@ } } $rt_throw($location); - case 29: + case 31: b: { try { $ioexception.$close(); @@ -693219,7 +694934,7 @@ $soundlist$soundentry = $soundeventaccessorcomposite.$soundPool; $ptr = 18; continue main; - case 30: + case 32: b: { try { $inputstream.$close(); @@ -693237,7 +694952,7 @@ } $ptr = 8; continue main; - case 31: + case 33: b: { try { $resourcelocation.$close(); @@ -695310,14 +697025,14 @@ break main; } $bufferedimage = $tmp; - $bufferedimage = $bufferedimage.$this$024; + $bufferedimage = $bufferedimage.$this$013; if (!$bufferedimage.$elementCount0) $ioexception = ju_Hashtable_EMPTY_ITERATOR; else { $ioexception = new ju_Hashtable$HashEnumIterator; var$5 = new ju_Hashtable$4$iterator$lambda$_5_0; - $ioexception.$this$0124 = $bufferedimage; - $ioexception.$this$0125 = $bufferedimage; + $ioexception.$this$092 = $bufferedimage; + $ioexception.$this$093 = $bufferedimage; $ioexception.$type13 = var$5; $ioexception.$position19 = $bufferedimage.$lastSlot; $ioexception.$expectedModCount = $bufferedimage.$modCount2; @@ -706283,7 +707998,7 @@ var nms_IStatStringFormat = $rt_classWithoutFields(0); function nmc_Minecraft$1() { jl_Object.call(this); - this.$this$049 = null; + this.$this$028 = null; } function nmc_Minecraft$1__init_(var_0) { var var_1 = new nmc_Minecraft$1(); @@ -706291,7 +708006,7 @@ return var_1; } function nmc_Minecraft$1__init_0($this, $this$0) { - $this.$this$049 = $this$0; + $this.$this$028 = $this$0; } function nmu_MouseHelper() { var a = this; jl_Object.call(a); @@ -706854,7 +708569,7 @@ break main; } var$9 = $tmp; - var$10 = $parIIconCreator.$this$0126.$sprites; + var$10 = $parIIconCreator.$this$094.$sprites; $ptr = 9; case 9: ju_HashMap_putImpl(var$10, var$5, var$9); @@ -706939,15 +708654,15 @@ $rt_nativeThread().push($this, $resourceManager, $parIIconCreator, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, $ptr); } function nmcrt_TextureMap_loadTextureAtlas($this, $resourceManager) { - var $l, $stitcher, $textureatlassprite, $i, $i1, $j, $k, $abufferedimage, $textureatlassprite1, $j1, $k1, $entry, $resourcelocation, $resourcelocation1, $runtimeexception, $ioexception1, $iresource, $i2, $l1, $abufferedimageColor, $resourcelocation2, $texturemetadatasection, $list, $abufferedimageNormal, $pixels, $abufferedimageMaterial, var$28, $dontAnimateNormals, $dontAnimateMaterial, var$31, $animationmetadatasection, $throwable1, $iterator, $stitcherexception, $crashreport, $crashreportcategory, - $ioexception, $hashmap, $spriteList, $m, $textureatlassprite2, $s, $throwable, $resourcelocation2_0, $exc, $l2, $i3, $textureatlassprite3, $crashreport1, $crashreportcategory1, $mipLevelResource, $textureatlassprite50, $textureatlassprite5, $textureatlassprite6, $flag, $flag1, $$je, $ptr, $tmp; + var $l, $stitcher, $textureatlassprite, $i, $i1, $j, $k, $abufferedimage, $textureatlassprite1, $j1, $k1, $entry, $resourcelocation, $resourcelocation1, $runtimeexception, $ioexception1, $i2, $l1, $iresource, $abufferedimageColor, $resourcelocation2, $texturemetadatasection, $list, $abufferedimageNormal, $pixels, $abufferedimageMaterial, var$28, $dontAnimateNormals, $dontAnimateMaterial, var$31, $animationmetadatasection, $throwable1, $iterator, $stitcherexception, $crashreport, $crashreportcategory, + $ioexception, $hashmap, $spriteList, $m, $textureatlassprite2, $s, $throwable, $exc, $l2, $i3, $textureatlassprite3, $crashreport1, $crashreportcategory1, $mipLevelResource, $textureatlassprite50, $textureatlassprite5, $textureatlassprite6, $flag, $flag1, $$je, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$flag1 = $thread.pop();$flag = $thread.pop();$textureatlassprite6 = $thread.pop();$textureatlassprite5 = $thread.pop();$textureatlassprite50 = $thread.pop();$mipLevelResource = $thread.pop();$crashreportcategory1 = $thread.pop();$crashreport1 = $thread.pop();$textureatlassprite3 = $thread.pop();$i3 = $thread.pop();$l2 = $thread.pop();$exc = $thread.pop();$resourcelocation2_0 = $thread.pop();$throwable = $thread.pop();$s = $thread.pop();$textureatlassprite2 = $thread.pop();$m - = $thread.pop();$spriteList = $thread.pop();$hashmap = $thread.pop();$ioexception = $thread.pop();$crashreportcategory = $thread.pop();$crashreport = $thread.pop();$stitcherexception = $thread.pop();$iterator = $thread.pop();$throwable1 = $thread.pop();$animationmetadatasection = $thread.pop();var$31 = $thread.pop();$dontAnimateMaterial = $thread.pop();$dontAnimateNormals = $thread.pop();var$28 = $thread.pop();$abufferedimageMaterial = $thread.pop();$pixels = $thread.pop();$abufferedimageNormal = - $thread.pop();$list = $thread.pop();$texturemetadatasection = $thread.pop();$resourcelocation2 = $thread.pop();$abufferedimageColor = $thread.pop();$l1 = $thread.pop();$i2 = $thread.pop();$iresource = $thread.pop();$ioexception1 = $thread.pop();$runtimeexception = $thread.pop();$resourcelocation1 = $thread.pop();$resourcelocation = $thread.pop();$entry = $thread.pop();$k1 = $thread.pop();$j1 = $thread.pop();$textureatlassprite1 = $thread.pop();$abufferedimage = $thread.pop();$k = $thread.pop();$j - = $thread.pop();$i1 = $thread.pop();$i = $thread.pop();$textureatlassprite = $thread.pop();$stitcher = $thread.pop();$l = $thread.pop();$resourceManager = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();$flag1 = $thread.pop();$flag = $thread.pop();$textureatlassprite6 = $thread.pop();$textureatlassprite5 = $thread.pop();$textureatlassprite50 = $thread.pop();$mipLevelResource = $thread.pop();$crashreportcategory1 = $thread.pop();$crashreport1 = $thread.pop();$textureatlassprite3 = $thread.pop();$i3 = $thread.pop();$l2 = $thread.pop();$exc = $thread.pop();$throwable = $thread.pop();$s = $thread.pop();$textureatlassprite2 = $thread.pop();$m = $thread.pop();$spriteList = $thread.pop();$hashmap + = $thread.pop();$ioexception = $thread.pop();$crashreportcategory = $thread.pop();$crashreport = $thread.pop();$stitcherexception = $thread.pop();$iterator = $thread.pop();$throwable1 = $thread.pop();$animationmetadatasection = $thread.pop();var$31 = $thread.pop();$dontAnimateMaterial = $thread.pop();$dontAnimateNormals = $thread.pop();var$28 = $thread.pop();$abufferedimageMaterial = $thread.pop();$pixels = $thread.pop();$abufferedimageNormal = $thread.pop();$list = $thread.pop();$texturemetadatasection + = $thread.pop();$resourcelocation2 = $thread.pop();$abufferedimageColor = $thread.pop();$iresource = $thread.pop();$l1 = $thread.pop();$i2 = $thread.pop();$ioexception1 = $thread.pop();$runtimeexception = $thread.pop();$resourcelocation1 = $thread.pop();$resourcelocation = $thread.pop();$entry = $thread.pop();$k1 = $thread.pop();$j1 = $thread.pop();$textureatlassprite1 = $thread.pop();$abufferedimage = $thread.pop();$k = $thread.pop();$j = $thread.pop();$i1 = $thread.pop();$i = $thread.pop();$textureatlassprite + = $thread.pop();$stitcher = $thread.pop();$l = $thread.pop();$resourceManager = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -707260,15 +708975,11 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); $ptr = 40; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 45; + $ptr = 46; continue main; } b: { @@ -707287,15 +708998,11 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; case 23: nlevi_PlatformOpenGL__wglDeleteFramebuffer($textureatlassprite); @@ -707376,7 +709083,7 @@ break main; } $resourceManager = nmcrt_TextureMap_logger; - $textureatlassprite = $rt_s(5268); + $textureatlassprite = $rt_s(5266); $abufferedimage = $rt_createArrayFromData(jl_Object, [$this.$basePath, jl_Integer_valueOf0($l), jl_Integer_valueOf0($k1), jl_Integer_valueOf0($j1)]); $ptr = 31; case 31: @@ -707414,15 +709121,11 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); $ptr = 40; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 45; + $ptr = 46; continue main; case 33: d: { @@ -707433,7 +709136,7 @@ } $resourcelocation2 = $tmp; $abufferedimageColor[$l] = $resourcelocation2; - $resourcelocation2 = $rt_s(5269); + $resourcelocation2 = $rt_s(5267); $ptr = 34; continue main; } catch ($$e) { @@ -707448,15 +709151,11 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); $ptr = 40; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 45; + $ptr = 46; continue main; case 34: d: { @@ -707468,12 +709167,12 @@ $resourcelocation2 = $tmp; $texturemetadatasection = $resourcelocation2; if ($texturemetadatasection === null) { - $resourcelocation = $rt_s(5270); - $ptr = 50; + $resourcelocation = $rt_s(5268); + $ptr = 52; continue main; } $list = nmcrd_TextureMetadataSection_getListMipmaps($texturemetadatasection); - $ptr = 52; + $ptr = 54; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -707487,15 +709186,11 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); $ptr = 40; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 45; + $ptr = 46; continue main; case 35: d: { @@ -707528,15 +709223,11 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; case 36: d: { @@ -707548,7 +709239,7 @@ $resourcelocation2 = $tmp; $abufferedimage[$l] = $resourcelocation2; $l = 0; - $resourcelocation2 = $rt_s(5271); + $resourcelocation2 = $rt_s(5269); $ptr = 37; continue main; } catch ($$e) { @@ -707563,15 +709254,11 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; case 37: d: { @@ -707598,15 +709285,11 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; case 38: d: { @@ -707626,12 +709309,12 @@ if (var$28[0] === null) { $l = 0; $resourcelocation2 = ju_MapEntry_getValue($entry); - $ptr = 78; + $ptr = 82; continue main; } $l = 0; var$31 = $rt_createArrayFromData($rt_arraycls(nlevo_ImageData), [$abufferedimageColor, $abufferedimageNormal, $abufferedimageMaterial]); - $ptr = 89; + $ptr = 93; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -707645,15 +709328,11 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; case 39: $tmp = $resourceManager.$hasNext(); @@ -707662,47 +709341,56 @@ } $l = $tmp; if ($l) { - $ptr = 63; + $ptr = 67; continue main; } if (!$this.$isEaglerPBRMode) { $resourceManager = $this.$missingImage; $l = $this.$mipmapLevels0; - $ptr = 69; + $ptr = 73; continue main; } $resourceManager = $this.$missingImagePBR; $l = $this.$mipmapLevels0; - $ptr = 71; + $ptr = 75; continue main; case 40: - $tmp = jl_StringBuilder_append($resourcelocation, $iresource); - if ($rt_suspending()) { - break main; - } - $iresource = $tmp; - $ptr = 41; - case 41: - jl_StringBuilder_append($iresource, $resourcelocation1); - if ($rt_suspending()) { - break main; - } - $ptr = 42; - case 42: - $tmp = jl_StringBuilder_toString($resourcelocation); + $tmp = jl_String_valueOf($resourcelocation1); if ($rt_suspending()) { break main; } $resourcelocation = $tmp; + $resourcelocation1 = jl_StringBuilder__init_(); + $iresource = $rt_s(5270); + $ptr = 41; + case 41: + $tmp = jl_StringBuilder_append($resourcelocation1, $iresource); + if ($rt_suspending()) { + break main; + } + $iresource = $tmp; + $ptr = 42; + case 42: + jl_StringBuilder_append($iresource, $resourcelocation); + if ($rt_suspending()) { + break main; + } $ptr = 43; case 43: + $tmp = jl_StringBuilder_toString($resourcelocation1); + if ($rt_suspending()) { + break main; + } + $resourcelocation = $tmp; + $ptr = 44; + case 44: nlevl_Logger_error1($textureatlassprite, $resourcelocation); if ($rt_suspending()) { break main; } $textureatlassprite = nmcrt_TextureMap_logger; - $ptr = 44; - case 44: + $ptr = 45; + case 45: nlevl_Logger_error0($textureatlassprite, $runtimeexception); if ($rt_suspending()) { break main; @@ -707721,34 +709409,43 @@ $resourceManager = ju_HashMap_values($this.$mapRegisteredSprites); $ptr = 29; continue main; - case 45: - $tmp = jl_StringBuilder_append($resourcelocation, $iresource); - if ($rt_suspending()) { - break main; - } - $iresource = $tmp; - $ptr = 46; case 46: - jl_StringBuilder_append($iresource, $resourcelocation1); - if ($rt_suspending()) { - break main; - } - $ptr = 47; - case 47: - $tmp = jl_StringBuilder_toString($resourcelocation); + $tmp = jl_String_valueOf($resourcelocation1); if ($rt_suspending()) { break main; } $resourcelocation = $tmp; + $resourcelocation1 = jl_StringBuilder__init_(); + $iresource = $rt_s(5271); + $ptr = 47; + case 47: + $tmp = jl_StringBuilder_append($resourcelocation1, $iresource); + if ($rt_suspending()) { + break main; + } + $iresource = $tmp; $ptr = 48; case 48: + jl_StringBuilder_append($iresource, $resourcelocation); + if ($rt_suspending()) { + break main; + } + $ptr = 49; + case 49: + $tmp = jl_StringBuilder_toString($resourcelocation1); + if ($rt_suspending()) { + break main; + } + $resourcelocation = $tmp; + $ptr = 50; + case 50: nlevl_Logger_error1($textureatlassprite, $resourcelocation); if ($rt_suspending()) { break main; } $textureatlassprite = nmcrt_TextureMap_logger; - $ptr = 49; - case 49: + $ptr = 51; + case 51: nlevl_Logger_error0($textureatlassprite, $ioexception1); if ($rt_suspending()) { break main; @@ -707767,7 +709464,7 @@ $resourceManager = ju_HashMap_values($this.$mapRegisteredSprites); $ptr = 29; continue main; - case 50: + case 52: d: { try { $tmp = nmcr_SimpleResource_getMetadata($iresource, $resourcelocation); @@ -707776,7 +709473,7 @@ } $resourcelocation = $tmp; $animationmetadatasection = $resourcelocation; - $ptr = 51; + $ptr = 53; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -707790,17 +709487,13 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); $ptr = 40; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 45; + $ptr = 46; continue main; - case 51: + case 53: c: { try { $textureatlassprite.$loadSprite($abufferedimage, $animationmetadatasection); @@ -707815,23 +709508,19 @@ } else if ($$je instanceof ji_IOException) { $ioexception1 = $$je; $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 45; + $ptr = 46; continue main; } else { throw $$e; } } - $ptr = 64; + $ptr = 68; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); $ptr = 40; continue main; - case 52: + case 54: d: { try { $tmp = ju_AbstractCollection_isEmpty($list); @@ -707845,7 +709534,7 @@ if (!(nmu_MathHelper_roundUpToPowerOfTwo($l) == $l && nmu_MathHelper_roundUpToPowerOfTwo($i1) == $i1)) $rt_throw(jl_RuntimeException__init_($rt_s(5272))); } - $ptr = 68; + $ptr = 72; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -707859,44 +709548,49 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); $ptr = 40; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 45; + $ptr = 46; continue main; - case 53: - $tmp = jl_StringBuilder_append($resourcelocation, $iresource); - if ($rt_suspending()) { - break main; - } - $iresource = $tmp; - $ptr = 54; - case 54: - jl_StringBuilder_append($iresource, $resourcelocation1); - if ($rt_suspending()) { - break main; - } - $ptr = 55; case 55: - $tmp = jl_StringBuilder_toString($resourcelocation); + $tmp = jl_String_valueOf($resourcelocation1); if ($rt_suspending()) { break main; } $resourcelocation = $tmp; + $resourcelocation1 = jl_StringBuilder__init_(); + $iresource = $rt_s(5270); $ptr = 56; case 56: + $tmp = jl_StringBuilder_append($resourcelocation1, $iresource); + if ($rt_suspending()) { + break main; + } + $iresource = $tmp; + $ptr = 57; + case 57: + jl_StringBuilder_append($iresource, $resourcelocation); + if ($rt_suspending()) { + break main; + } + $ptr = 58; + case 58: + $tmp = jl_StringBuilder_toString($resourcelocation1); + if ($rt_suspending()) { + break main; + } + $resourcelocation = $tmp; + $ptr = 59; + case 59: nlevl_Logger_error1($textureatlassprite, $resourcelocation); if ($rt_suspending()) { break main; } $textureatlassprite = nmcrt_TextureMap_logger; - $ptr = 57; - case 57: + $ptr = 60; + case 60: nlevl_Logger_error0($textureatlassprite, $runtimeexception); if ($rt_suspending()) { break main; @@ -707915,34 +709609,43 @@ $resourceManager = ju_HashMap_values($this.$mapRegisteredSprites); $ptr = 29; continue main; - case 58: - $tmp = jl_StringBuilder_append($resourcelocation, $iresource); - if ($rt_suspending()) { - break main; - } - $iresource = $tmp; - $ptr = 59; - case 59: - jl_StringBuilder_append($iresource, $resourcelocation1); - if ($rt_suspending()) { - break main; - } - $ptr = 60; - case 60: - $tmp = jl_StringBuilder_toString($resourcelocation); + case 61: + $tmp = jl_String_valueOf($resourcelocation1); if ($rt_suspending()) { break main; } $resourcelocation = $tmp; - $ptr = 61; - case 61: + $resourcelocation1 = jl_StringBuilder__init_(); + $iresource = $rt_s(5271); + $ptr = 62; + case 62: + $tmp = jl_StringBuilder_append($resourcelocation1, $iresource); + if ($rt_suspending()) { + break main; + } + $iresource = $tmp; + $ptr = 63; + case 63: + jl_StringBuilder_append($iresource, $resourcelocation); + if ($rt_suspending()) { + break main; + } + $ptr = 64; + case 64: + $tmp = jl_StringBuilder_toString($resourcelocation1); + if ($rt_suspending()) { + break main; + } + $resourcelocation = $tmp; + $ptr = 65; + case 65: nlevl_Logger_error1($textureatlassprite, $resourcelocation); if ($rt_suspending()) { break main; } $textureatlassprite = nmcrt_TextureMap_logger; - $ptr = 62; - case 62: + $ptr = 66; + case 66: nlevl_Logger_error0($textureatlassprite, $ioexception1); if ($rt_suspending()) { break main; @@ -707961,7 +709664,7 @@ $resourceManager = ju_HashMap_values($this.$mapRegisteredSprites); $ptr = 29; continue main; - case 63: + case 67: $tmp = $resourceManager.$next(); if ($rt_suspending()) { break main; @@ -707970,7 +709673,7 @@ $textureatlassprite1 = $textureatlassprite; try { $l = $this.$mipmapLevels0; - $ptr = 73; + $ptr = 77; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -707981,32 +709684,32 @@ } } $resourceManager = $rt_s(5273); - $ptr = 81; + $ptr = 85; continue main; - case 64: + case 68: $tmp = nlevm_EaglerTextureAtlasSprite_getIconWidth($textureatlassprite); if ($rt_suspending()) { break main; } $l = $tmp; - $ptr = 65; - case 65: + $ptr = 69; + case 69: $tmp = nlevm_EaglerTextureAtlasSprite_getIconHeight($textureatlassprite); if ($rt_suspending()) { break main; } $i1 = $tmp; $j = jl_Math_min($j, jl_Math_min($l, $i1)); - $ptr = 66; - case 66: + $ptr = 70; + case 70: $tmp = nlevm_EaglerTextureAtlasSprite_getIconWidth($textureatlassprite); if ($rt_suspending()) { break main; } $l = $tmp; $l = jl_Integer_lowestOneBit($l); - $ptr = 67; - case 67: + $ptr = 71; + case 71: $tmp = nlevm_EaglerTextureAtlasSprite_getIconHeight($textureatlassprite); if ($rt_suspending()) { break main; @@ -708014,7 +709717,7 @@ $i1 = $tmp; $l1 = jl_Math_min($l, jl_Integer_lowestOneBit($i1)); if ($l1 >= $k) { - $ptr = 87; + $ptr = 91; continue main; } $resourcelocation = nmcrt_TextureMap_logger; @@ -708023,9 +709726,9 @@ $abufferedimageColor = $abufferedimage.data; $abufferedimageColor[0] = $resourcelocation1; $l = 1; - $ptr = 74; + $ptr = 78; continue main; - case 68: + case 72: d: { try { $tmp = ju_AbstractList_iterator($list); @@ -708033,7 +709736,7 @@ break main; } $iterator = $tmp; - $ptr = 77; + $ptr = 81; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -708047,30 +709750,26 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); $ptr = 40; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 45; + $ptr = 46; continue main; - case 69: + case 73: nlevm_EaglerTextureAtlasSprite_generateMipmaps($resourceManager, $l); if ($rt_suspending()) { break main; } $resourceManager = $this.$missingImage; - $ptr = 70; - case 70: + $ptr = 74; + case 74: nmcrt_Stitcher_addSprite($stitcher, $resourceManager); if ($rt_suspending()) { break main; } try { - $ptr = 80; + $ptr = 84; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -708081,20 +709780,20 @@ } } $rt_throw($stitcherexception); - case 71: + case 75: nlevoedt_EaglerTextureAtlasSpritePBR_generateMipmaps($resourceManager, $l); if ($rt_suspending()) { break main; } $resourceManager = $this.$missingImagePBR; - $ptr = 72; - case 72: + $ptr = 76; + case 76: nmcrt_Stitcher_addSprite($stitcher, $resourceManager); if ($rt_suspending()) { break main; } try { - $ptr = 80; + $ptr = 84; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -708105,7 +709804,7 @@ } } $rt_throw($stitcherexception); - case 73: + case 77: d: { try { $textureatlassprite1.$generateMipmaps($l); @@ -708125,9 +709824,9 @@ continue main; } $resourceManager = $rt_s(5273); - $ptr = 81; + $ptr = 85; continue main; - case 74: + case 78: $tmp = nlevm_EaglerTextureAtlasSprite_getIconWidth($textureatlassprite); if ($rt_suspending()) { break main; @@ -708135,8 +709834,8 @@ $i1 = $tmp; $abufferedimageColor[$l] = jl_Integer_valueOf0($i1); $l = 2; - $ptr = 75; - case 75: + $ptr = 79; + case 79: $tmp = nlevm_EaglerTextureAtlasSprite_getIconHeight($textureatlassprite); if ($rt_suspending()) { break main; @@ -708145,16 +709844,16 @@ $abufferedimageColor[$l] = jl_Integer_valueOf0($i1); $abufferedimageColor[3] = jl_Integer_valueOf0(nmu_MathHelper_calculateLogBaseTwo($k)); $abufferedimageColor[4] = jl_Integer_valueOf0(nmu_MathHelper_calculateLogBaseTwo($l1)); - $ptr = 76; - case 76: + $ptr = 80; + case 80: nlevl_Logger_warn0($resourcelocation, $iresource, $abufferedimage); if ($rt_suspending()) { break main; } $k = $l1; - $ptr = 87; + $ptr = 91; continue main; - case 77: + case 81: d: { try { $tmp = ju_AbstractList$1_hasNext($iterator); @@ -708163,11 +709862,11 @@ } $l = $tmp; if ($l) { - $ptr = 88; + $ptr = 92; continue main; } - $resourcelocation = $rt_s(5270); - $ptr = 50; + $resourcelocation = $rt_s(5268); + $ptr = 52; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -708181,17 +709880,13 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); $ptr = 40; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 45; + $ptr = 46; continue main; - case 78: + case 82: d: { try { $tmp = nlevm_EaglerTextureAtlasSprite_getIconName($resourcelocation2); @@ -708199,7 +709894,7 @@ break main; } $resourcelocation2 = $tmp; - $ptr = 79; + $ptr = 83; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -708213,17 +709908,13 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; - case 79: + case 83: d: { try { $tmp = nlevoedt_PBRTextureMapUtils_generateMaterialTextureFor($resourcelocation2); @@ -708235,7 +709926,7 @@ $dontAnimateMaterial = 1; $l = 0; var$31 = $rt_createArrayFromData($rt_arraycls(nlevo_ImageData), [$abufferedimageColor, $abufferedimageNormal, $abufferedimageMaterial]); - $ptr = 89; + $ptr = 93; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -708249,17 +709940,13 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; - case 80: + case 84: d: { try { nmcrt_Stitcher_doStitch($stitcher); @@ -708277,17 +709964,17 @@ } $rt_throw($stitcherexception); } - $ptr = 91; + $ptr = 95; continue main; - case 81: + case 85: $tmp = nmc_CrashReport_makeCrashReport($throwable1, $resourceManager); if ($rt_suspending()) { break main; } $crashreport = $tmp; $resourceManager = $rt_s(5275); - $ptr = 82; - case 82: + $ptr = 86; + case 86: $tmp = nmc_CrashReport_makeCategory($crashreport, $resourceManager); if ($rt_suspending()) { break main; @@ -708295,38 +709982,38 @@ $crashreportcategory = $tmp; $resourceManager = $rt_s(5276); $stitcher = nmcrt_TextureMap$1__init_($this, $textureatlassprite1); - $ptr = 83; - case 83: + $ptr = 87; + case 87: nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, $resourceManager, $stitcher); if ($rt_suspending()) { break main; } $resourceManager = $rt_s(5277); $stitcher = nmcrt_TextureMap$2__init_($this, $textureatlassprite1); - $ptr = 84; - case 84: + $ptr = 88; + case 88: nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, $resourceManager, $stitcher); if ($rt_suspending()) { break main; } $resourceManager = $rt_s(5278); $stitcher = nmcrt_TextureMap$3__init_($this, $textureatlassprite1); - $ptr = 85; - case 85: + $ptr = 89; + case 89: nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, $resourceManager, $stitcher); if ($rt_suspending()) { break main; } $resourceManager = $rt_s(5279); $stitcher = jl_Integer_valueOf0($this.$mipmapLevels0); - $ptr = 86; - case 86: + $ptr = 90; + case 90: nmc_CrashReportCategory_addCrashSection($crashreportcategory, $resourceManager, $stitcher); if ($rt_suspending()) { break main; } $rt_throw(nmu_ReportedException__init_($crashreport)); - case 87: + case 91: nmcrt_Stitcher_addSprite($stitcher, $textureatlassprite); if ($rt_suspending()) { break main; @@ -708345,7 +710032,7 @@ $resourceManager = ju_HashMap_values($this.$mapRegisteredSprites); $ptr = 29; continue main; - case 88: + case 92: d: { try { $tmp = ju_AbstractList$1_next($iterator); @@ -708355,10 +710042,10 @@ $resourcelocation2 = $tmp; $i2 = jl_Integer_intValue($resourcelocation2); if ($i2 > 0 && $i2 < ($abufferedimageColor.length - 1 | 0) && $abufferedimageColor[$i2] === null) { - $ptr = 105; + $ptr = 109; continue main; } - $ptr = 77; + $ptr = 81; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -708372,25 +710059,21 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); $ptr = 40; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 45; + $ptr = 46; continue main; - case 89: + case 93: d: { try { nlevoedt_PBRTextureMapUtils_unifySizes($l, var$31); if ($rt_suspending()) { break main; } - $resourcelocation2 = $rt_s(5269); - $ptr = 90; + $resourcelocation2 = $rt_s(5267); + $ptr = 94; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -708404,17 +710087,13 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; - case 90: + case 94: d: { try { $tmp = nmcr_SimpleResource_getMetadata($iresource, $resourcelocation2); @@ -708424,12 +710103,12 @@ $resourcelocation2 = $tmp; $texturemetadatasection = $resourcelocation2; if ($texturemetadatasection === null) { - $resourcelocation = $rt_s(5270); - $ptr = 95; + $resourcelocation = $rt_s(5268); + $ptr = 99; continue main; } $list = nmcrd_TextureMetadataSection_getListMipmaps($texturemetadatasection); - $ptr = 97; + $ptr = 101; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -708443,17 +710122,13 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; - case 91: + case 95: nmcrt_TextureMap_$callClinit(); if ($rt_suspending()) { break main; @@ -708461,14 +710136,14 @@ $resourceManager = nmcrt_TextureMap_logger; $textureatlassprite = $rt_s(5280); $abufferedimage = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0(nmcrt_Stitcher_getCurrentWidth($stitcher)), jl_Integer_valueOf0(nmcrt_Stitcher_getCurrentHeight($stitcher)), $this.$basePath]); - $ptr = 92; - case 92: + $ptr = 96; + case 96: nlevl_Logger_info0($resourceManager, $textureatlassprite, $abufferedimage); if ($rt_suspending()) { break main; } - $ptr = 93; - case 93: + $ptr = 97; + case 97: $tmp = nmcrt_AbstractTexture_getGlTextureId($this); if ($rt_suspending()) { break main; @@ -708477,24 +710152,24 @@ $i1 = $this.$mipmapLevels0; $i = nmcrt_Stitcher_getCurrentWidth($stitcher); $j = nmcrt_Stitcher_getCurrentHeight($stitcher); - $ptr = 94; - case 94: + $ptr = 98; + case 98: nmcrt_TextureUtil_allocateTextureImpl($l, $i1, $i, $j); if ($rt_suspending()) { break main; } if (!$this.$isEaglerPBRMode) { $l = $this.$glTextureId; - $ptr = 98; + $ptr = 102; continue main; } $l = $this.$eaglerPBRMaterialTexture; $i1 = $this.$mipmapLevels0; $i = nmcrt_Stitcher_getCurrentWidth($stitcher); $j = nmcrt_Stitcher_getCurrentHeight($stitcher) * 2 | 0; - $ptr = 99; + $ptr = 103; continue main; - case 95: + case 99: d: { try { $tmp = nmcr_SimpleResource_getMetadata($iresource, $resourcelocation); @@ -708504,7 +710179,7 @@ $resourcelocation = $tmp; $animationmetadatasection = $resourcelocation; $abufferedimage = $rt_createArrayFromData($rt_arraycls(nlevo_ImageData), [$abufferedimageColor, $abufferedimageNormal, $abufferedimageMaterial]); - $ptr = 96; + $ptr = 100; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -708518,17 +710193,13 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; - case 96: + case 100: c: { try { $textureatlassprite.$loadSpritePBR($abufferedimage, $animationmetadatasection, $dontAnimateNormals, $dontAnimateMaterial); @@ -708543,23 +710214,19 @@ } else if ($$je instanceof ji_IOException) { $ioexception1 = $$je; $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; } else { throw $$e; } } - $ptr = 100; + $ptr = 104; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; - case 97: + case 101: d: { try { $tmp = ju_AbstractCollection_isEmpty($list); @@ -708573,7 +710240,7 @@ if (!(nmu_MathHelper_roundUpToPowerOfTwo($l) == $l && nmu_MathHelper_roundUpToPowerOfTwo($i1) == $i1)) $rt_throw(jl_RuntimeException__init_($rt_s(5272))); } - $ptr = 104; + $ptr = 108; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -708587,17 +710254,13 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; - case 98: + case 102: nmcrt_TextureUtil_bindTexture($l); if ($rt_suspending()) { break main; @@ -708606,45 +710269,45 @@ $l = 0; $abufferedimage = $this.$copyColorFramebuffer.data; if ($l < $abufferedimage.length) { - $ptr = 114; + $ptr = 118; continue main; } $l = 36160; $resourceManager = null; - $ptr = 110; + $ptr = 114; continue main; - case 99: + case 103: nmcrt_TextureUtil_allocateTextureImpl($l, $i1, $i, $j); if ($rt_suspending()) { break main; } $l = $this.$glTextureId; - $ptr = 98; + $ptr = 102; continue main; - case 100: + case 104: $tmp = nlevm_EaglerTextureAtlasSprite_getIconWidth($textureatlassprite); if ($rt_suspending()) { break main; } $l = $tmp; - $ptr = 101; - case 101: + $ptr = 105; + case 105: $tmp = nlevm_EaglerTextureAtlasSprite_getIconHeight($textureatlassprite); if ($rt_suspending()) { break main; } $i1 = $tmp; $j = jl_Math_min($j, jl_Math_min($l, $i1)); - $ptr = 102; - case 102: + $ptr = 106; + case 106: $tmp = nlevm_EaglerTextureAtlasSprite_getIconWidth($textureatlassprite); if ($rt_suspending()) { break main; } $l = $tmp; $l = jl_Integer_lowestOneBit($l); - $ptr = 103; - case 103: + $ptr = 107; + case 107: $tmp = nlevm_EaglerTextureAtlasSprite_getIconHeight($textureatlassprite); if ($rt_suspending()) { break main; @@ -708652,7 +710315,7 @@ $i1 = $tmp; $l1 = jl_Math_min($l, jl_Integer_lowestOneBit($i1)); if ($l1 >= $k) { - $ptr = 120; + $ptr = 124; continue main; } $resourcelocation = nmcrt_TextureMap_logger; @@ -708661,9 +710324,9 @@ $abufferedimageColor = $abufferedimage.data; $abufferedimageColor[0] = $resourcelocation1; $l = 1; - $ptr = 106; + $ptr = 110; continue main; - case 104: + case 108: d: { try { $tmp = ju_AbstractList_iterator($list); @@ -708671,7 +710334,7 @@ break main; } $iterator = $tmp; - $ptr = 109; + $ptr = 113; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -708685,17 +710348,13 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; - case 105: + case 109: d: { try { $tmp = nmcrt_TextureMap_completeResourceLocation($this, $resourcelocation, $i2); @@ -708704,7 +710363,7 @@ } $resourcelocation2 = $tmp; try { - $ptr = 118; + $ptr = 122; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -708716,8 +710375,8 @@ } $list = nmcrt_TextureMap_logger; $entry = $rt_s(5281); - $abufferedimageNormal = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2]); - $ptr = 122; + $abufferedimageMaterial = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2]); + $ptr = 126; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -708731,17 +710390,13 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); $ptr = 40; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 45; + $ptr = 46; continue main; - case 106: + case 110: $tmp = nlevm_EaglerTextureAtlasSprite_getIconWidth($textureatlassprite); if ($rt_suspending()) { break main; @@ -708749,8 +710404,8 @@ $i1 = $tmp; $abufferedimageColor[$l] = jl_Integer_valueOf0($i1); $l = 2; - $ptr = 107; - case 107: + $ptr = 111; + case 111: $tmp = nlevm_EaglerTextureAtlasSprite_getIconHeight($textureatlassprite); if ($rt_suspending()) { break main; @@ -708759,16 +710414,16 @@ $abufferedimageColor[$l] = jl_Integer_valueOf0($i1); $abufferedimageColor[3] = jl_Integer_valueOf0(nmu_MathHelper_calculateLogBaseTwo($k)); $abufferedimageColor[4] = jl_Integer_valueOf0(nmu_MathHelper_calculateLogBaseTwo($l1)); - $ptr = 108; - case 108: + $ptr = 112; + case 112: nlevl_Logger_warn0($resourcelocation, $iresource, $abufferedimage); if ($rt_suspending()) { break main; } $k = $l1; - $ptr = 120; + $ptr = 124; continue main; - case 109: + case 113: d: { try { $tmp = ju_AbstractList$1_hasNext($iterator); @@ -708777,11 +710432,11 @@ } $l = $tmp; if ($l) { - $ptr = 121; + $ptr = 125; continue main; } - $resourcelocation = $rt_s(5270); - $ptr = 95; + $resourcelocation = $rt_s(5268); + $ptr = 99; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -708795,24 +710450,20 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; - case 110: + case 114: nlevi_PlatformOpenGL__wglBindFramebuffer($l, $resourceManager); if ($rt_suspending()) { break main; } $resourceManager = $this.$mapRegisteredSprites; - $ptr = 111; - case 111: + $ptr = 115; + case 115: $tmp = cgcc_Maps_newHashMap0($resourceManager); if ($rt_suspending()) { break main; @@ -708820,29 +710471,29 @@ $hashmap = $tmp; $this.$width4 = nmcrt_Stitcher_getCurrentWidth($stitcher); $this.$height4 = nmcrt_Stitcher_getCurrentHeight($stitcher); - $ptr = 112; - case 112: + $ptr = 116; + case 116: $tmp = nmcrt_Stitcher_getStichSlots($stitcher); if ($rt_suspending()) { break main; } $spriteList = $tmp; $l = 0; - $ptr = 113; - case 113: + $ptr = 117; + case 117: $tmp = ju_ArrayList_size($spriteList); if ($rt_suspending()) { break main; } $m = $tmp; if ($l < $m) { - $ptr = 125; + $ptr = 129; continue main; } $resourceManager = ju_HashMap_values($hashmap); - $ptr = 124; + $ptr = 128; continue main; - case 114: + case 118: $tmp = nlevi_PlatformOpenGL__wglCreateFramebuffer(); if ($rt_suspending()) { break main; @@ -708851,8 +710502,8 @@ $abufferedimage[$l] = $resourceManager; $i1 = 36160; $resourceManager = $this.$copyColorFramebuffer.data[$l]; - $ptr = 115; - case 115: + $ptr = 119; + case 119: nlevi_PlatformOpenGL__wglBindFramebuffer($i1, $resourceManager); if ($rt_suspending()) { break main; @@ -708861,15 +710512,15 @@ $i = 36064; $j = 3553; $k = $this.$glTextureId; - $ptr = 116; - case 116: + $ptr = 120; + case 120: $tmp = nlevo_EaglercraftGPU_getNativeTexture($k); if ($rt_suspending()) { break main; } $resourceManager = $tmp; - $ptr = 117; - case 117: + $ptr = 121; + case 121: nlevi_PlatformOpenGL__wglFramebufferTexture2D($i1, $i, $j, $resourceManager, $l); if ($rt_suspending()) { break main; @@ -708877,14 +710528,14 @@ $l = $l + 1 | 0; $abufferedimage = $this.$copyColorFramebuffer.data; if ($l < $abufferedimage.length) { - $ptr = 114; + $ptr = 118; continue main; } $l = 36160; $resourceManager = null; - $ptr = 110; + $ptr = 114; continue main; - case 118: + case 122: d: { try { try { @@ -708894,7 +710545,7 @@ } $ioexception = $tmp; $ioexception = nmcr_SimpleResource_getInputStream($ioexception); - $ptr = 119; + $ptr = 123; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -708906,8 +710557,8 @@ } $list = nmcrt_TextureMap_logger; $entry = $rt_s(5281); - $abufferedimageNormal = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2]); - $ptr = 122; + $abufferedimageMaterial = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2]); + $ptr = 126; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -708921,17 +710572,13 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); $ptr = 40; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 45; + $ptr = 46; continue main; - case 119: + case 123: d: { try { b: { @@ -708942,22 +710589,22 @@ } $ioexception = $tmp; $abufferedimageColor[$i2] = $ioexception; - break b; } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof ji_IOException) { $ioexception = $$je; + break b; } else { throw $$e; } } - $list = nmcrt_TextureMap_logger; - $entry = $rt_s(5281); - $abufferedimageNormal = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2]); - $ptr = 122; + $ptr = 81; continue main; } - $ptr = 77; + $list = nmcrt_TextureMap_logger; + $entry = $rt_s(5281); + $abufferedimageMaterial = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2]); + $ptr = 126; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -708971,17 +710618,13 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); $ptr = 40; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 45; + $ptr = 46; continue main; - case 120: + case 124: nmcrt_Stitcher_addSprite($stitcher, $textureatlassprite); if ($rt_suspending()) { break main; @@ -709000,7 +710643,7 @@ $resourceManager = ju_HashMap_values($this.$mapRegisteredSprites); $ptr = 29; continue main; - case 121: + case 125: d: { try { $tmp = ju_AbstractList$1_next($iterator); @@ -709010,10 +710653,10 @@ $resourcelocation2 = $tmp; $i2 = jl_Integer_intValue($resourcelocation2); if ($i2 > 0 && $i2 < ($abufferedimage.length - 1 | 0) && $abufferedimage[$i2] === null) { - $ptr = 137; + $ptr = 141; continue main; } - $ptr = 109; + $ptr = 113; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -709027,25 +710670,21 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; - case 122: + case 126: d: { try { - nlevl_Logger_error($list, $entry, $abufferedimageNormal); + nlevl_Logger_error($list, $entry, $abufferedimageMaterial); if ($rt_suspending()) { break main; } $resourcelocation2 = nmcrt_TextureMap_logger; - $ptr = 123; + $ptr = 127; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -709059,24 +710698,20 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); $ptr = 40; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 45; + $ptr = 46; continue main; - case 123: + case 127: d: { try { nlevl_Logger_error0($resourcelocation2, $ioexception); if ($rt_suspending()) { break main; } - $ptr = 77; + $ptr = 81; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -709090,145 +710725,49 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); $ptr = 40; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 45; + $ptr = 46; continue main; - case 124: + case 128: $tmp = $resourceManager.$iterator(); if ($rt_suspending()) { break main; } $resourceManager = $tmp; - $ptr = 129; + $ptr = 133; continue main; - case 125: + case 129: $tmp = ju_ArrayList_get($spriteList, $l); if ($rt_suspending()) { break main; } $resourceManager = $tmp; $textureatlassprite2 = $resourceManager; - $ptr = 126; - case 126: + $ptr = 130; + case 130: $tmp = nlevm_EaglerTextureAtlasSprite_getIconName($textureatlassprite2); if ($rt_suspending()) { break main; } $s = $tmp; - $ptr = 127; - case 127: + $ptr = 131; + case 131: ju_HashMap_remove($hashmap, $s); if ($rt_suspending()) { break main; } $resourceManager = $this.$mapUploadedSprites; - $ptr = 128; - case 128: + $ptr = 132; + case 132: ju_HashMap_put($resourceManager, $s, $textureatlassprite2); if ($rt_suspending()) { break main; } try { $i1 = $this.$glTextureId; - $ptr = 130; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $throwable = $$je; - } else { - throw $$e; - } - } - $resourceManager = $rt_s(5282); - $ptr = 141; - continue main; - case 129: - $tmp = $resourceManager.$hasNext(); - if ($rt_suspending()) { - break main; - } - $l = $tmp; - if (!$l) { - $ptr = 138; - continue main; - } - $ptr = 139; - continue main; - case 130: - try { - nmcrt_TextureUtil_bindTexture($i1); - if ($rt_suspending()) { - break main; - } - $i1 = 0; - $ptr = 131; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $throwable = $$je; - } else { - throw $$e; - } - } - $resourceManager = $rt_s(5282); - $ptr = 141; - continue main; - case 131: - try { - $tmp = $textureatlassprite2.$getFrameTextureData($i1); - if ($rt_suspending()) { - break main; - } - $abufferedimage = $tmp; - $ptr = 132; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $throwable = $$je; - } else { - throw $$e; - } - } - $resourceManager = $rt_s(5282); - $ptr = 141; - continue main; - case 132: - try { - $tmp = nlevm_EaglerTextureAtlasSprite_getIconWidth($textureatlassprite2); - if ($rt_suspending()) { - break main; - } - $i1 = $tmp; - $ptr = 133; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $throwable = $$je; - } else { - throw $$e; - } - } - $resourceManager = $rt_s(5282); - $ptr = 141; - continue main; - case 133: - try { - $tmp = nlevm_EaglerTextureAtlasSprite_getIconHeight($textureatlassprite2); - if ($rt_suspending()) { - break main; - } - $i = $tmp; $ptr = 134; continue main; } catch ($$e) { @@ -709240,15 +710779,27 @@ } } $resourceManager = $rt_s(5282); - $ptr = 141; + $ptr = 145; + continue main; + case 133: + $tmp = $resourceManager.$hasNext(); + if ($rt_suspending()) { + break main; + } + $l = $tmp; + if (!$l) { + $ptr = 142; + continue main; + } + $ptr = 143; continue main; case 134: try { - $tmp = nlevm_EaglerTextureAtlasSprite_getOriginX($textureatlassprite2); + nmcrt_TextureUtil_bindTexture($i1); if ($rt_suspending()) { break main; } - $j = $tmp; + $i1 = 0; $ptr = 135; continue main; } catch ($$e) { @@ -709260,17 +710811,15 @@ } } $resourceManager = $rt_s(5282); - $ptr = 141; + $ptr = 145; continue main; case 135: try { - $tmp = nlevm_EaglerTextureAtlasSprite_getOriginY($textureatlassprite2); + $tmp = $textureatlassprite2.$getFrameTextureData($i1); if ($rt_suspending()) { break main; } - $k = $tmp; - $i2 = 0; - $l1 = 0; + $abufferedimage = $tmp; $ptr = 136; continue main; } catch ($$e) { @@ -709282,9 +710831,91 @@ } } $resourceManager = $rt_s(5282); - $ptr = 141; + $ptr = 145; continue main; case 136: + try { + $tmp = nlevm_EaglerTextureAtlasSprite_getIconWidth($textureatlassprite2); + if ($rt_suspending()) { + break main; + } + $i1 = $tmp; + $ptr = 137; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $throwable = $$je; + } else { + throw $$e; + } + } + $resourceManager = $rt_s(5282); + $ptr = 145; + continue main; + case 137: + try { + $tmp = nlevm_EaglerTextureAtlasSprite_getIconHeight($textureatlassprite2); + if ($rt_suspending()) { + break main; + } + $i = $tmp; + $ptr = 138; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $throwable = $$je; + } else { + throw $$e; + } + } + $resourceManager = $rt_s(5282); + $ptr = 145; + continue main; + case 138: + try { + $tmp = nlevm_EaglerTextureAtlasSprite_getOriginX($textureatlassprite2); + if ($rt_suspending()) { + break main; + } + $j = $tmp; + $ptr = 139; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $throwable = $$je; + } else { + throw $$e; + } + } + $resourceManager = $rt_s(5282); + $ptr = 145; + continue main; + case 139: + try { + $tmp = nlevm_EaglerTextureAtlasSprite_getOriginY($textureatlassprite2); + if ($rt_suspending()) { + break main; + } + $k = $tmp; + $i2 = 0; + $l1 = 0; + $ptr = 140; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $throwable = $$je; + } else { + throw $$e; + } + } + $resourceManager = $rt_s(5282); + $ptr = 145; + continue main; + case 140: d: { c: { try { @@ -709303,12 +710934,12 @@ throw $$e; } } - $ptr = 145; + $ptr = 149; continue main; } try { $i1 = $this.$eaglerPBRMaterialTexture; - $ptr = 146; + $ptr = 150; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -709320,18 +710951,18 @@ } } $resourceManager = $rt_s(5282); - $ptr = 141; + $ptr = 145; continue main; - case 137: + case 141: d: { try { $tmp = nmcrt_TextureMap_completeResourceLocation($this, $resourcelocation, $i2); if ($rt_suspending()) { break main; } - $resourcelocation2_0 = $tmp; + $resourcelocation2 = $tmp; try { - $ptr = 158; + $ptr = 162; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -709341,10 +710972,10 @@ throw $$e; } } - $resourcelocation2 = nmcrt_TextureMap_logger; - $ioexception = $rt_s(5281); - var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2_0]); - $ptr = 166; + $ioexception = nmcrt_TextureMap_logger; + $list = $rt_s(5281); + var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2]); + $ptr = 170; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -709358,17 +710989,13 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; - case 138: + case 142: $tmp = nPs_Config_isMultiTexture(); if ($rt_suspending()) { break main; @@ -709377,14 +711004,14 @@ if (!$l) { $l = 36160; $resourceManager = null; - $ptr = 162; + $ptr = 166; continue main; } $l2 = nmcrt_Stitcher_getCurrentWidth($stitcher); $i3 = nmcrt_Stitcher_getCurrentHeight($stitcher); - $ptr = 163; + $ptr = 167; continue main; - case 139: + case 143: $tmp = $resourceManager.$next(); if ($rt_suspending()) { break main; @@ -709392,23 +711019,23 @@ $textureatlassprite = $tmp; $textureatlassprite3 = $textureatlassprite; $textureatlassprite = $this.$missingImage; - $ptr = 140; - case 140: + $ptr = 144; + case 144: nlevm_EaglerTextureAtlasSprite_copyFrom($textureatlassprite3, $textureatlassprite); if ($rt_suspending()) { break main; } - $ptr = 129; + $ptr = 133; continue main; - case 141: + case 145: $tmp = nmc_CrashReport_makeCrashReport($throwable, $resourceManager); if ($rt_suspending()) { break main; } $crashreport1 = $tmp; $resourceManager = $rt_s(5283); - $ptr = 142; - case 142: + $ptr = 146; + case 146: $tmp = nmc_CrashReport_makeCategory($crashreport1, $resourceManager); if ($rt_suspending()) { break main; @@ -709416,21 +711043,21 @@ $crashreportcategory1 = $tmp; $resourceManager = $rt_s(5284); $stitcher = $this.$basePath; - $ptr = 143; - case 143: + $ptr = 147; + case 147: nmc_CrashReportCategory_addCrashSection($crashreportcategory1, $resourceManager, $stitcher); if ($rt_suspending()) { break main; } $resourceManager = $rt_s(5285); - $ptr = 144; - case 144: + $ptr = 148; + case 148: nmc_CrashReportCategory_addCrashSection($crashreportcategory1, $resourceManager, $textureatlassprite2); if ($rt_suspending()) { break main; } $rt_throw(nmu_ReportedException__init_($crashreport1)); - case 145: + case 149: $tmp = nlevm_EaglerTextureAtlasSprite_hasAnimationMetadata($textureatlassprite2); if ($rt_suspending()) { break main; @@ -709438,18 +711065,18 @@ $i1 = $tmp; if ($i1) { $resourceManager = $this.$listAnimatedSprites; - $ptr = 165; + $ptr = 169; continue main; } $l = $l + 1 | 0; if ($l < $m) { - $ptr = 125; + $ptr = 129; continue main; } $resourceManager = ju_HashMap_values($hashmap); - $ptr = 124; + $ptr = 128; continue main; - case 146: + case 150: try { nmcrt_TextureUtil_bindTexture($i1); if ($rt_suspending()) { @@ -709457,88 +711084,6 @@ } $resourceManager = $textureatlassprite2; $i1 = 0; - $ptr = 147; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $throwable = $$je; - } else { - throw $$e; - } - } - $resourceManager = $rt_s(5282); - $ptr = 141; - continue main; - case 147: - try { - $tmp = nlevoedt_EaglerTextureAtlasSpritePBR_getFramePBRTextureData($resourceManager, $i1); - if ($rt_suspending()) { - break main; - } - $pixels = $tmp; - $abufferedimage = $pixels.data; - $abufferedimageColor = $abufferedimage[1]; - $ptr = 148; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $throwable = $$je; - } else { - throw $$e; - } - } - $resourceManager = $rt_s(5282); - $ptr = 141; - continue main; - case 148: - try { - $tmp = nlevm_EaglerTextureAtlasSprite_getIconWidth($textureatlassprite2); - if ($rt_suspending()) { - break main; - } - $i1 = $tmp; - $ptr = 149; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $throwable = $$je; - } else { - throw $$e; - } - } - $resourceManager = $rt_s(5282); - $ptr = 141; - continue main; - case 149: - try { - $tmp = nlevm_EaglerTextureAtlasSprite_getIconHeight($textureatlassprite2); - if ($rt_suspending()) { - break main; - } - $i = $tmp; - $ptr = 150; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $throwable = $$je; - } else { - throw $$e; - } - } - $resourceManager = $rt_s(5282); - $ptr = 141; - continue main; - case 150: - try { - $tmp = nlevm_EaglerTextureAtlasSprite_getOriginX($textureatlassprite2); - if ($rt_suspending()) { - break main; - } - $j = $tmp; $ptr = 151; continue main; } catch ($$e) { @@ -709550,17 +711095,17 @@ } } $resourceManager = $rt_s(5282); - $ptr = 141; + $ptr = 145; continue main; case 151: try { - $tmp = nlevm_EaglerTextureAtlasSprite_getOriginY($textureatlassprite2); + $tmp = nlevoedt_EaglerTextureAtlasSpritePBR_getFramePBRTextureData($resourceManager, $i1); if ($rt_suspending()) { break main; } - $k = $tmp; - $i2 = 0; - $l1 = 0; + $pixels = $tmp; + $abufferedimage = $pixels.data; + $abufferedimageColor = $abufferedimage[1]; $ptr = 152; continue main; } catch ($$e) { @@ -709572,15 +711117,15 @@ } } $resourceManager = $rt_s(5282); - $ptr = 141; + $ptr = 145; continue main; case 152: try { - nmcrt_TextureUtil_uploadTextureMipmap($abufferedimageColor, $i1, $i, $j, $k, $i2, $l1); + $tmp = nlevm_EaglerTextureAtlasSprite_getIconWidth($textureatlassprite2); if ($rt_suspending()) { break main; } - $abufferedimage = $abufferedimage[2]; + $i1 = $tmp; $ptr = 153; continue main; } catch ($$e) { @@ -709592,15 +711137,15 @@ } } $resourceManager = $rt_s(5282); - $ptr = 141; + $ptr = 145; continue main; case 153: try { - $tmp = nlevm_EaglerTextureAtlasSprite_getIconWidth($textureatlassprite2); + $tmp = nlevm_EaglerTextureAtlasSprite_getIconHeight($textureatlassprite2); if ($rt_suspending()) { break main; } - $i1 = $tmp; + $i = $tmp; $ptr = 154; continue main; } catch ($$e) { @@ -709612,15 +711157,15 @@ } } $resourceManager = $rt_s(5282); - $ptr = 141; + $ptr = 145; continue main; case 154: try { - $tmp = nlevm_EaglerTextureAtlasSprite_getIconHeight($textureatlassprite2); + $tmp = nlevm_EaglerTextureAtlasSprite_getOriginX($textureatlassprite2); if ($rt_suspending()) { break main; } - $i = $tmp; + $j = $tmp; $ptr = 155; continue main; } catch ($$e) { @@ -709632,15 +711177,17 @@ } } $resourceManager = $rt_s(5282); - $ptr = 141; + $ptr = 145; continue main; case 155: try { - $tmp = nlevm_EaglerTextureAtlasSprite_getOriginX($textureatlassprite2); + $tmp = nlevm_EaglerTextureAtlasSprite_getOriginY($textureatlassprite2); if ($rt_suspending()) { break main; } - $j = $tmp; + $k = $tmp; + $i2 = 0; + $l1 = 0; $ptr = 156; continue main; } catch ($$e) { @@ -709652,18 +711199,15 @@ } } $resourceManager = $rt_s(5282); - $ptr = 141; + $ptr = 145; continue main; case 156: try { - $tmp = nlevm_EaglerTextureAtlasSprite_getOriginY($textureatlassprite2); + nmcrt_TextureUtil_uploadTextureMipmap($abufferedimageColor, $i1, $i, $j, $k, $i2, $l1); if ($rt_suspending()) { break main; } - $k = $tmp; - $k = $k + $this.$height4 | 0; - $i2 = 0; - $l1 = 0; + $abufferedimage = $abufferedimage[2]; $ptr = 157; continue main; } catch ($$e) { @@ -709675,9 +711219,92 @@ } } $resourceManager = $rt_s(5282); - $ptr = 141; + $ptr = 145; continue main; case 157: + try { + $tmp = nlevm_EaglerTextureAtlasSprite_getIconWidth($textureatlassprite2); + if ($rt_suspending()) { + break main; + } + $i1 = $tmp; + $ptr = 158; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $throwable = $$je; + } else { + throw $$e; + } + } + $resourceManager = $rt_s(5282); + $ptr = 145; + continue main; + case 158: + try { + $tmp = nlevm_EaglerTextureAtlasSprite_getIconHeight($textureatlassprite2); + if ($rt_suspending()) { + break main; + } + $i = $tmp; + $ptr = 159; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $throwable = $$je; + } else { + throw $$e; + } + } + $resourceManager = $rt_s(5282); + $ptr = 145; + continue main; + case 159: + try { + $tmp = nlevm_EaglerTextureAtlasSprite_getOriginX($textureatlassprite2); + if ($rt_suspending()) { + break main; + } + $j = $tmp; + $ptr = 160; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $throwable = $$je; + } else { + throw $$e; + } + } + $resourceManager = $rt_s(5282); + $ptr = 145; + continue main; + case 160: + try { + $tmp = nlevm_EaglerTextureAtlasSprite_getOriginY($textureatlassprite2); + if ($rt_suspending()) { + break main; + } + $k = $tmp; + $k = $k + $this.$height4 | 0; + $i2 = 0; + $l1 = 0; + $ptr = 161; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $throwable = $$je; + } else { + throw $$e; + } + } + $resourceManager = $rt_s(5282); + $ptr = 145; + continue main; + case 161: d: { try { nmcrt_TextureUtil_uploadTextureMipmap($abufferedimage, $i1, $i, $j, $k, $i2, $l1); @@ -709693,23 +711320,23 @@ throw $$e; } } - $ptr = 145; + $ptr = 149; continue main; } $resourceManager = $rt_s(5282); - $ptr = 141; + $ptr = 145; continue main; - case 158: + case 162: d: { try { try { - $tmp = nmcr_SimpleReloadableResourceManager_getResource($resourceManager, $resourcelocation2_0); + $tmp = nmcr_SimpleReloadableResourceManager_getResource($resourceManager, $resourcelocation2); if ($rt_suspending()) { break main; } $mipLevelResource = $tmp; - $resourcelocation2 = nmcr_SimpleResource_getInputStream($mipLevelResource); - $ptr = 159; + $ioexception = nmcr_SimpleResource_getInputStream($mipLevelResource); + $ptr = 163; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -709719,10 +711346,10 @@ throw $$e; } } - $resourcelocation2 = nmcrt_TextureMap_logger; - $ioexception = $rt_s(5281); - var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2_0]); - $ptr = 166; + $ioexception = nmcrt_TextureMap_logger; + $list = $rt_s(5281); + var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2]); + $ptr = 170; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -709736,28 +711363,24 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; - case 159: + case 163: d: { try { try { - $tmp = nmcrt_TextureUtil_readBufferedImage($resourcelocation2); + $tmp = nmcrt_TextureUtil_readBufferedImage($ioexception); if ($rt_suspending()) { break main; } - $resourcelocation2 = $tmp; - $abufferedimage[$i2] = $resourcelocation2; - $resourcelocation2 = $rt_s(5271); - $ptr = 160; + $ioexception = $tmp; + $abufferedimage[$i2] = $ioexception; + $ioexception = $rt_s(5269); + $ptr = 164; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -709767,10 +711390,10 @@ throw $$e; } } - $resourcelocation2 = nmcrt_TextureMap_logger; - $ioexception = $rt_s(5281); - var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2_0]); - $ptr = 166; + $ioexception = nmcrt_TextureMap_logger; + $list = $rt_s(5281); + var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2]); + $ptr = 170; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -709784,28 +711407,24 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; - case 160: + case 164: d: { try { try { - $tmp = nlevoedt_PBRTextureMapUtils_locateCompanionTexture($resourceManager, $mipLevelResource, $resourcelocation2); + $tmp = nlevoedt_PBRTextureMapUtils_locateCompanionTexture($resourceManager, $mipLevelResource, $ioexception); if ($rt_suspending()) { break main; } - $resourcelocation2 = $tmp; - $pixels[$i2] = $resourcelocation2; - $resourcelocation2 = $rt_s(5232); - $ptr = 161; + $ioexception = $tmp; + $pixels[$i2] = $ioexception; + $ioexception = $rt_s(5232); + $ptr = 165; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -709815,10 +711434,10 @@ throw $$e; } } - $resourcelocation2 = nmcrt_TextureMap_logger; - $ioexception = $rt_s(5281); - var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2_0]); - $ptr = 166; + $ioexception = nmcrt_TextureMap_logger; + $list = $rt_s(5281); + var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2]); + $ptr = 170; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -709832,35 +711451,31 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; - case 161: + case 165: d: { try { try { - $tmp = nlevoedt_PBRTextureMapUtils_locateCompanionTexture($resourceManager, $mipLevelResource, $resourcelocation2); + $tmp = nlevoedt_PBRTextureMapUtils_locateCompanionTexture($resourceManager, $mipLevelResource, $ioexception); if ($rt_suspending()) { break main; } - $resourcelocation2 = $tmp; - var$28[$i2] = $resourcelocation2; + $ioexception = $tmp; + var$28[$i2] = $ioexception; if ($pixels[$i2] === null) $pixels[$i2] = nlevoedt_PBRTextureMapUtils_defaultNormalsTexture; if (var$28[$i2] === null) { - $resourcelocation2 = ju_MapEntry_getValue($entry); - $ptr = 170; + $ioexception = ju_MapEntry_getValue($entry); + $ptr = 174; continue main; } var$31 = $rt_createArrayFromData($rt_arraycls(nlevo_ImageData), [$abufferedimageColor, $abufferedimageNormal, $abufferedimageMaterial]); - $ptr = 169; + $ptr = 173; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -709870,10 +711485,10 @@ throw $$e; } } - $resourcelocation2 = nmcrt_TextureMap_logger; - $ioexception = $rt_s(5281); - var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2_0]); - $ptr = 166; + $ioexception = nmcrt_TextureMap_logger; + $list = $rt_s(5281); + var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2]); + $ptr = 170; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -709887,59 +711502,55 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; - case 162: + case 166: nlevi_PlatformOpenGL__wglBindFramebuffer($l, $resourceManager); if ($rt_suspending()) { break main; } return; - case 163: + case 167: $tmp = nmcrt_Stitcher_getStichSlots($stitcher); if ($rt_suspending()) { break main; } $resourceManager = $tmp; - $ptr = 164; - case 164: + $ptr = 168; + case 168: $tmp = ju_AbstractList_iterator($resourceManager); if ($rt_suspending()) { break main; } $resourceManager = $tmp; - $ptr = 168; + $ptr = 172; continue main; - case 165: + case 169: ju_ArrayList_add($resourceManager, $textureatlassprite2); if ($rt_suspending()) { break main; } $l = $l + 1 | 0; if ($l < $m) { - $ptr = 125; + $ptr = 129; continue main; } $resourceManager = ju_HashMap_values($hashmap); - $ptr = 124; + $ptr = 128; continue main; - case 166: + case 170: d: { try { - nlevl_Logger_error($resourcelocation2, $ioexception, var$31); + nlevl_Logger_error($ioexception, $list, var$31); if ($rt_suspending()) { break main; } $resourcelocation2 = nmcrt_TextureMap_logger; - $ptr = 167; + $ptr = 171; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -709953,24 +711564,20 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; - case 167: + case 171: d: { try { nlevl_Logger_error0($resourcelocation2, $exc); if ($rt_suspending()) { break main; } - $ptr = 109; + $ptr = 113; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -709984,29 +711591,25 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; - case 168: + case 172: $tmp = ju_AbstractList$1_hasNext($resourceManager); if ($rt_suspending()) { break main; } $l = $tmp; if (!$l) { - $ptr = 172; + $ptr = 176; continue main; } - $ptr = 175; + $ptr = 179; continue main; - case 169: + case 173: d: { try { b: { @@ -710027,15 +711630,15 @@ throw $$e; } } - $ptr = 109; + $ptr = 113; continue main; } try { - $texturemetadatasection = new ji_IOException; + $ioexception = new ji_IOException; $l = $abufferedimage[0].$width0 >> $i2; - $resourcelocation2 = jl_StringBuilder__init_(); - $ioexception = $rt_s(5286); - $ptr = 176; + $list = jl_StringBuilder__init_(); + $texturemetadatasection = $rt_s(5286); + $ptr = 180; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -710046,10 +711649,10 @@ } } } - $resourcelocation2 = nmcrt_TextureMap_logger; - $ioexception = $rt_s(5281); - var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2_0]); - $ptr = 166; + $ioexception = nmcrt_TextureMap_logger; + $list = $rt_s(5281); + var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2]); + $ptr = 170; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -710063,26 +711666,22 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; - case 170: + case 174: d: { try { try { - $tmp = nlevm_EaglerTextureAtlasSprite_getIconName($resourcelocation2); + $tmp = nlevm_EaglerTextureAtlasSprite_getIconName($ioexception); if ($rt_suspending()) { break main; } - $resourcelocation2 = $tmp; - $ptr = 171; + $ioexception = $tmp; + $ptr = 175; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -710092,10 +711691,10 @@ throw $$e; } } - $resourcelocation2 = nmcrt_TextureMap_logger; - $ioexception = $rt_s(5281); - var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2_0]); - $ptr = 166; + $ioexception = nmcrt_TextureMap_logger; + $list = $rt_s(5281); + var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2]); + $ptr = 170; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -710109,28 +711708,24 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; - case 171: + case 175: d: { try { try { - $tmp = nlevoedt_PBRTextureMapUtils_generateMaterialTextureFor($resourcelocation2); + $tmp = nlevoedt_PBRTextureMapUtils_generateMaterialTextureFor($ioexception); if ($rt_suspending()) { break main; } - $resourcelocation2 = $tmp; - var$28[$i2] = $resourcelocation2; + $ioexception = $tmp; + var$28[$i2] = $ioexception; var$31 = $rt_createArrayFromData($rt_arraycls(nlevo_ImageData), [$abufferedimageColor, $abufferedimageNormal, $abufferedimageMaterial]); - $ptr = 169; + $ptr = 173; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -710140,10 +711735,10 @@ throw $$e; } } - $resourcelocation2 = nmcrt_TextureMap_logger; - $ioexception = $rt_s(5281); - var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2_0]); - $ptr = 166; + $ioexception = nmcrt_TextureMap_logger; + $list = $rt_s(5281); + var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2]); + $ptr = 170; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -710157,41 +711752,37 @@ } } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; + $ptr = 55; continue main; } $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 61; continue main; - case 172: + case 176: $tmp = nmc_Minecraft_getMinecraft(); if ($rt_suspending()) { break main; } $resourceManager = $tmp; - $ptr = 173; - case 173: + $ptr = 177; + case 177: $tmp = nmc_Minecraft_getTextureManager($resourceManager); if ($rt_suspending()) { break main; } $resourceManager = $tmp; $stitcher = nmcrt_TextureMap_locationBlocksTexture; - $ptr = 174; - case 174: + $ptr = 178; + case 178: nmcrt_TextureManager_bindTexture($resourceManager, $stitcher); if ($rt_suspending()) { break main; } $l = 36160; $resourceManager = null; - $ptr = 162; + $ptr = 166; continue main; - case 175: + case 179: $tmp = ju_AbstractList$1_next($resourceManager); if ($rt_suspending()) { break main; @@ -710204,202 +711795,186 @@ $textureatlassprite5.$mipmapLevels1 = $l; $textureatlassprite6 = $textureatlassprite5.$spriteSingle; if ($textureatlassprite6 === null) { - $ptr = 168; + $ptr = 172; continue main; } $textureatlassprite6.$sheetWidth = $l2; $textureatlassprite6.$sheetHeight = $i3; $textureatlassprite6.$mipmapLevels1 = $l; - $ptr = 180; - continue main; - case 176: - d: { - try { - try { - $tmp = jl_StringBuilder_append($resourcelocation2, $ioexception); - if ($rt_suspending()) { - break main; - } - $ioexception = $tmp; - $ioexception = jl_StringBuilder_append1($ioexception, $i2); - $list = $rt_s(5287); - $ptr = 177; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $exc = $$je; - } else { - throw $$e; - } - } - $resourcelocation2 = nmcrt_TextureMap_logger; - $ioexception = $rt_s(5281); - var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2_0]); - $ptr = 166; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_RuntimeException) { - $runtimeexception = $$je; - } else if ($$je instanceof ji_IOException) { - $ioexception1 = $$je; - break d; - } else { - throw $$e; - } - } - $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; - continue main; - } - $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; - continue main; - case 177: - d: { - try { - try { - $tmp = jl_StringBuilder_append($ioexception, $list); - if ($rt_suspending()) { - break main; - } - $ioexception = $tmp; - $ioexception = jl_StringBuilder_append1($ioexception, $l); - $list = $rt_s(5288); - $ptr = 178; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $exc = $$je; - } else { - throw $$e; - } - } - $resourcelocation2 = nmcrt_TextureMap_logger; - $ioexception = $rt_s(5281); - var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2_0]); - $ptr = 166; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_RuntimeException) { - $runtimeexception = $$je; - } else if ($$je instanceof ji_IOException) { - $ioexception1 = $$je; - break d; - } else { - throw $$e; - } - } - $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; - continue main; - } - $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; - continue main; - case 178: - d: { - try { - try { - jl_StringBuilder_append($ioexception, $list); - if ($rt_suspending()) { - break main; - } - $ptr = 179; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $exc = $$je; - } else { - throw $$e; - } - } - $resourcelocation2 = nmcrt_TextureMap_logger; - $ioexception = $rt_s(5281); - var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2_0]); - $ptr = 166; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_RuntimeException) { - $runtimeexception = $$je; - } else if ($$je instanceof ji_IOException) { - $ioexception1 = $$je; - break d; - } else { - throw $$e; - } - } - $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; - continue main; - } - $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; - continue main; - case 179: - d: { - try { - try { - $tmp = jl_StringBuilder_toString($resourcelocation2); - if ($rt_suspending()) { - break main; - } - $resourcelocation2 = $tmp; - ji_IOException__init_4($texturemetadatasection, $resourcelocation2); - $rt_throw($texturemetadatasection); - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $exc = $$je; - } else { - throw $$e; - } - } - $resourcelocation2 = nmcrt_TextureMap_logger; - $ioexception = $rt_s(5281); - var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2_0]); - $ptr = 166; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_RuntimeException) { - $runtimeexception = $$je; - } else if ($$je instanceof ji_IOException) { - $ioexception1 = $$je; - break d; - } else { - throw $$e; - } - } - $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5266); - $ptr = 53; - continue main; - } - $textureatlassprite = nmcrt_TextureMap_logger; - $resourcelocation = jl_StringBuilder__init_(); - $iresource = $rt_s(5267); - $ptr = 58; + $ptr = 184; continue main; case 180: + d: { + try { + try { + $tmp = jl_StringBuilder_append($list, $texturemetadatasection); + if ($rt_suspending()) { + break main; + } + $texturemetadatasection = $tmp; + $texturemetadatasection = jl_StringBuilder_append1($texturemetadatasection, $i2); + $animationmetadatasection = $rt_s(5287); + $ptr = 181; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $exc = $$je; + } else { + throw $$e; + } + } + $ioexception = nmcrt_TextureMap_logger; + $list = $rt_s(5281); + var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2]); + $ptr = 170; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_RuntimeException) { + $runtimeexception = $$je; + } else if ($$je instanceof ji_IOException) { + $ioexception1 = $$je; + break d; + } else { + throw $$e; + } + } + $textureatlassprite = nmcrt_TextureMap_logger; + $ptr = 55; + continue main; + } + $textureatlassprite = nmcrt_TextureMap_logger; + $ptr = 61; + continue main; + case 181: + d: { + try { + try { + $tmp = jl_StringBuilder_append($texturemetadatasection, $animationmetadatasection); + if ($rt_suspending()) { + break main; + } + $texturemetadatasection = $tmp; + $texturemetadatasection = jl_StringBuilder_append1($texturemetadatasection, $l); + $animationmetadatasection = $rt_s(5288); + $ptr = 182; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $exc = $$je; + } else { + throw $$e; + } + } + $ioexception = nmcrt_TextureMap_logger; + $list = $rt_s(5281); + var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2]); + $ptr = 170; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_RuntimeException) { + $runtimeexception = $$je; + } else if ($$je instanceof ji_IOException) { + $ioexception1 = $$je; + break d; + } else { + throw $$e; + } + } + $textureatlassprite = nmcrt_TextureMap_logger; + $ptr = 55; + continue main; + } + $textureatlassprite = nmcrt_TextureMap_logger; + $ptr = 61; + continue main; + case 182: + d: { + try { + try { + jl_StringBuilder_append($texturemetadatasection, $animationmetadatasection); + if ($rt_suspending()) { + break main; + } + $ptr = 183; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $exc = $$je; + } else { + throw $$e; + } + } + $ioexception = nmcrt_TextureMap_logger; + $list = $rt_s(5281); + var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2]); + $ptr = 170; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_RuntimeException) { + $runtimeexception = $$je; + } else if ($$je instanceof ji_IOException) { + $ioexception1 = $$je; + break d; + } else { + throw $$e; + } + } + $textureatlassprite = nmcrt_TextureMap_logger; + $ptr = 55; + continue main; + } + $textureatlassprite = nmcrt_TextureMap_logger; + $ptr = 61; + continue main; + case 183: + d: { + try { + try { + $tmp = jl_StringBuilder_toString($list); + if ($rt_suspending()) { + break main; + } + $list = $tmp; + ji_IOException__init_4($ioexception, $list); + $rt_throw($ioexception); + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $exc = $$je; + } else { + throw $$e; + } + } + $ioexception = nmcrt_TextureMap_logger; + $list = $rt_s(5281); + var$31 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($i2), $resourcelocation2]); + $ptr = 170; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_RuntimeException) { + $runtimeexception = $$je; + } else if ($$je instanceof ji_IOException) { + $ioexception1 = $$je; + break d; + } else { + throw $$e; + } + } + $textureatlassprite = nmcrt_TextureMap_logger; + $ptr = 55; + continue main; + } + $textureatlassprite = nmcrt_TextureMap_logger; + $ptr = 61; + continue main; + case 184: nlevm_EaglerTextureAtlasSprite_bindSpriteTexture($textureatlassprite5); if ($rt_suspending()) { break main; @@ -710407,53 +711982,53 @@ $flag = 0; $flag1 = 1; $l = 0; - $ptr = 181; - case 181: + $ptr = 185; + case 185: $tmp = nlevm_EaglerTextureAtlasSprite_getFrameTextureData($textureatlassprite6, $l); if ($rt_suspending()) { break main; } $abufferedimage = $tmp; - $ptr = 182; - case 182: + $ptr = 186; + case 186: $tmp = nlevm_EaglerTextureAtlasSprite_getIconWidth($textureatlassprite6); if ($rt_suspending()) { break main; } $l = $tmp; - $ptr = 183; - case 183: + $ptr = 187; + case 187: $tmp = nlevm_EaglerTextureAtlasSprite_getIconHeight($textureatlassprite6); if ($rt_suspending()) { break main; } $i1 = $tmp; - $ptr = 184; - case 184: + $ptr = 188; + case 188: $tmp = nlevm_EaglerTextureAtlasSprite_getOriginX($textureatlassprite6); if ($rt_suspending()) { break main; } $i = $tmp; - $ptr = 185; - case 185: + $ptr = 189; + case 189: $tmp = nlevm_EaglerTextureAtlasSprite_getOriginY($textureatlassprite6); if ($rt_suspending()) { break main; } $j = $tmp; - $ptr = 186; - case 186: + $ptr = 190; + case 190: nmcrt_TextureUtil_uploadTextureMipmap($abufferedimage, $l, $i1, $i, $j, $flag, $flag1); if ($rt_suspending()) { break main; } - $ptr = 168; + $ptr = 172; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $resourceManager, $l, $stitcher, $textureatlassprite, $i, $i1, $j, $k, $abufferedimage, $textureatlassprite1, $j1, $k1, $entry, $resourcelocation, $resourcelocation1, $runtimeexception, $ioexception1, $iresource, $i2, $l1, $abufferedimageColor, $resourcelocation2, $texturemetadatasection, $list, $abufferedimageNormal, $pixels, $abufferedimageMaterial, var$28, $dontAnimateNormals, $dontAnimateMaterial, var$31, $animationmetadatasection, $throwable1, $iterator, $stitcherexception, - $crashreport, $crashreportcategory, $ioexception, $hashmap, $spriteList, $m, $textureatlassprite2, $s, $throwable, $resourcelocation2_0, $exc, $l2, $i3, $textureatlassprite3, $crashreport1, $crashreportcategory1, $mipLevelResource, $textureatlassprite50, $textureatlassprite5, $textureatlassprite6, $flag, $flag1, $ptr); + $rt_nativeThread().push($this, $resourceManager, $l, $stitcher, $textureatlassprite, $i, $i1, $j, $k, $abufferedimage, $textureatlassprite1, $j1, $k1, $entry, $resourcelocation, $resourcelocation1, $runtimeexception, $ioexception1, $i2, $l1, $iresource, $abufferedimageColor, $resourcelocation2, $texturemetadatasection, $list, $abufferedimageNormal, $pixels, $abufferedimageMaterial, var$28, $dontAnimateNormals, $dontAnimateMaterial, var$31, $animationmetadatasection, $throwable1, $iterator, $stitcherexception, + $crashreport, $crashreportcategory, $ioexception, $hashmap, $spriteList, $m, $textureatlassprite2, $s, $throwable, $exc, $l2, $i3, $textureatlassprite3, $crashreport1, $crashreportcategory1, $mipLevelResource, $textureatlassprite50, $textureatlassprite5, $textureatlassprite6, $flag, $flag1, $ptr); } function nmcrt_TextureMap_completeResourceLocation($this, $location, $p_147634_2_) { var var$3, var$4, var$5, var$6, var$7, $ptr, $tmp; @@ -711291,7 +712866,7 @@ $iresourcemanager = $tmp; if ($iresourcemanager.$cachedValues === null) { var$3 = new ju_IdentityHashMap$2; - var$3.$this$0127 = $iresourcemanager; + var$3.$this$095 = $iresourcemanager; $iresourcemanager.$cachedValues = var$3; } $iresourcemanager = $iresourcemanager.$cachedValues; @@ -711435,9 +713010,6 @@ } } var$4 = nmcrm_ModelBakery_LOGGER; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - var$11 = $rt_s(5295); $ptr = 27; continue main; case 20: @@ -711448,7 +713020,7 @@ } var$5 = $tmp; try { - $ptr = 32; + $ptr = 33; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -711460,9 +713032,7 @@ } var$4 = nmcrm_ModelBakery_LOGGER; var$7 = nmcrm_ModelResourceLocation_getVariant(var$3); - var$11 = jl_StringBuilder__init_(); - var$8 = $rt_s(5296); - $ptr = 35; + $ptr = 36; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -711473,9 +713043,6 @@ } } var$4 = nmcrm_ModelBakery_LOGGER; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - var$11 = $rt_s(5295); $ptr = 27; continue main; case 21: @@ -711497,7 +713064,7 @@ break main; } $iresourcemanager = $tmp; - $ptr = 33; + $ptr = 34; continue main; case 24: $tmp = ju_LinkedHashMapIterator$KeyIterator_next($iresourcemanager); @@ -711522,42 +713089,52 @@ break main; } var$5 = $tmp; - $ptr = 34; + $ptr = 35; continue main; case 27: - jl_AbstractStringBuilder_append(var$7, var$11); + $tmp = jl_String_valueOf(var$3); if ($rt_suspending()) { break main; } + var$3 = $tmp; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + var$11 = $rt_s(5295); $ptr = 28; case 28: - jl_AbstractStringBuilder_append(var$7, var$3); + jl_AbstractStringBuilder_append(var$7, var$11); if ($rt_suspending()) { break main; } $ptr = 29; case 29: + jl_AbstractStringBuilder_append(var$7, var$3); + if ($rt_suspending()) { + break main; + } + $ptr = 30; + case 30: $tmp = jl_AbstractStringBuilder_toString(var$7); if ($rt_suspending()) { break main; } var$3 = $tmp; - $ptr = 30; - case 30: + $ptr = 31; + case 31: nlevl_Logger_warn(var$4, var$3); if ($rt_suspending()) { break main; } var$3 = nmcrm_ModelBakery_LOGGER; - $ptr = 31; - case 31: + $ptr = 32; + case 32: nlevl_Logger_warn1(var$3, var$5); if ($rt_suspending()) { break main; } $ptr = 6; continue main; - case 32: + case 33: a: { b: { try { @@ -711583,9 +713160,7 @@ try { var$4 = nmcrm_ModelBakery_LOGGER; var$7 = nmcrm_ModelResourceLocation_getVariant(var$3); - var$11 = jl_StringBuilder__init_(); - var$8 = $rt_s(5296); - $ptr = 35; + $ptr = 36; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -711597,25 +713172,10 @@ } } var$4 = nmcrm_ModelBakery_LOGGER; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - var$11 = $rt_s(5295); $ptr = 27; continue main; - case 33: - $tmp = cgcc_AbstractIterator_hasNext($iresourcemanager); - if ($rt_suspending()) { - break main; - } - var$6 = $tmp; - if (var$6) { - $ptr = 42; - continue main; - } - $ptr = 40; - continue main; case 34: - $tmp = ju_AbstractList$1_hasNext(var$5); + $tmp = cgcc_AbstractIterator_hasNext($iresourcemanager); if ($rt_suspending()) { break main; } @@ -711624,43 +713184,33 @@ $ptr = 44; continue main; } + $ptr = 42; + continue main; + case 35: + $tmp = ju_AbstractList$1_hasNext(var$5); + if ($rt_suspending()) { + break main; + } + var$6 = $tmp; + if (var$6) { + $ptr = 46; + continue main; + } if (ju_LinkedHashMapIterator_hasNext($iresourcemanager)) { $ptr = 24; continue main; } $ptr = 21; continue main; - case 35: - try { - $tmp = jl_StringBuilder_append(var$11, var$8); - if ($rt_suspending()) { - break main; - } - var$8 = $tmp; - $ptr = 36; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Exception) { - var$5 = $$je; - } else { - throw $$e; - } - } - var$4 = nmcrm_ModelBakery_LOGGER; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - var$11 = $rt_s(5295); - $ptr = 27; - continue main; case 36: try { - $tmp = jl_StringBuilder_append(var$8, var$7); + $tmp = jl_String_valueOf(var$3); if ($rt_suspending()) { break main; } - var$7 = $tmp; - var$8 = $rt_s(5297); + var$11 = $tmp; + var$8 = jl_StringBuilder__init_(); + var$13 = $rt_s(5296); $ptr = 37; continue main; } catch ($$e) { @@ -711672,18 +713222,15 @@ } } var$4 = nmcrm_ModelBakery_LOGGER; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - var$11 = $rt_s(5295); $ptr = 27; continue main; case 37: try { - $tmp = jl_StringBuilder_append(var$7, var$8); + $tmp = jl_StringBuilder_append(var$8, var$13); if ($rt_suspending()) { break main; } - var$7 = $tmp; + var$13 = $tmp; $ptr = 38; continue main; } catch ($$e) { @@ -711695,17 +713242,16 @@ } } var$4 = nmcrm_ModelBakery_LOGGER; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - var$11 = $rt_s(5295); $ptr = 27; continue main; case 38: try { - jl_StringBuilder_append(var$7, var$3); + $tmp = jl_StringBuilder_append(var$13, var$7); if ($rt_suspending()) { break main; } + var$7 = $tmp; + var$13 = $rt_s(5297); $ptr = 39; continue main; } catch ($$e) { @@ -711717,19 +713263,16 @@ } } var$4 = nmcrm_ModelBakery_LOGGER; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - var$11 = $rt_s(5295); $ptr = 27; continue main; case 39: try { - $tmp = jl_StringBuilder_toString(var$11); + $tmp = jl_StringBuilder_append(var$7, var$13); if ($rt_suspending()) { break main; } var$7 = $tmp; - $ptr = 46; + $ptr = 40; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -711740,32 +713283,68 @@ } } var$4 = nmcrm_ModelBakery_LOGGER; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - var$11 = $rt_s(5295); $ptr = 27; continue main; case 40: + try { + jl_StringBuilder_append(var$7, var$11); + if ($rt_suspending()) { + break main; + } + $ptr = 41; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Exception) { + var$5 = $$je; + } else { + throw $$e; + } + } + var$4 = nmcrm_ModelBakery_LOGGER; + $ptr = 27; + continue main; + case 41: + try { + $tmp = jl_StringBuilder_toString(var$8); + if ($rt_suspending()) { + break main; + } + var$7 = $tmp; + $ptr = 48; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Exception) { + var$5 = $$je; + } else { + throw $$e; + } + } + var$4 = nmcrm_ModelBakery_LOGGER; + $ptr = 27; + continue main; + case 42: nmcrm_ModelBakery_loadModels($modelbakery); if ($rt_suspending()) { break main; } $iresourcemanager = ju_LinkedHashMap_values($modelbakery.$models); - $ptr = 41; - case 41: + $ptr = 43; + case 43: $tmp = ju_LinkedHashMapValues_iterator($iresourcemanager); if ($rt_suspending()) { break main; } $iresourcemanager = $tmp; if (ju_LinkedHashMapIterator_hasNext($iresourcemanager)) { - $ptr = 58; + $ptr = 60; continue main; } $iresourcemanager = $modelbakery.$models; - $ptr = 52; + $ptr = 54; continue main; - case 42: + case 44: $tmp = cgcc_AbstractIterator_next($iresourcemanager); if ($rt_suspending()) { break main; @@ -711773,8 +713352,8 @@ var$3 = $tmp; var$3 = var$3; var$5 = $modelbakery.$variantNames; - $ptr = 43; - case 43: + $ptr = 45; + case 45: $tmp = ju_IdentityHashMap_get(var$5, var$3); if ($rt_suspending()) { break main; @@ -711783,32 +713362,32 @@ var$5 = var$5; if (var$5 === null) { var$5 = nmi_Item_itemRegistry; - $ptr = 48; + $ptr = 50; continue main; } - $ptr = 59; + $ptr = 62; continue main; - case 44: + case 46: $tmp = ju_AbstractList$1_next(var$5); if ($rt_suspending()) { break main; } var$4 = $tmp; - var$13 = var$4.$modelLocation; + var$11 = var$4.$modelLocation; var$4 = $modelbakery.$models; - $ptr = 45; - case 45: - $tmp = ju_LinkedHashMap_get(var$4, var$13); + $ptr = 47; + case 47: + $tmp = ju_LinkedHashMap_get(var$4, var$11); if ($rt_suspending()) { break main; } var$4 = $tmp; if (var$4 !== null) { - $ptr = 34; + $ptr = 35; continue main; } try { - $ptr = 50; + $ptr = 52; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -711819,19 +713398,16 @@ } } var$7 = nmcrm_ModelBakery_LOGGER; - var$11 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$11); - var$8 = $rt_s(5298); - $ptr = 60; + $ptr = 63; continue main; - case 46: + case 48: try { nlevl_Logger_warn(var$4, var$7); if ($rt_suspending()) { break main; } var$4 = nmcrm_ModelBakery_LOGGER; - $ptr = 47; + $ptr = 49; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -711842,12 +713418,9 @@ } } var$4 = nmcrm_ModelBakery_LOGGER; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - var$11 = $rt_s(5295); $ptr = 27; continue main; - case 47: + case 49: a: { try { nlevl_Logger_warn1(var$4, var$5); @@ -711867,37 +713440,34 @@ continue main; } var$4 = nmcrm_ModelBakery_LOGGER; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - var$11 = $rt_s(5295); $ptr = 27; continue main; - case 48: + case 50: $tmp = nmu_RegistryNamespaced_getNameForObject(var$5, var$3); if ($rt_suspending()) { break main; } var$5 = $tmp; var$5 = var$5; - $ptr = 49; - case 49: + $ptr = 51; + case 51: $tmp = var$5.$toString(); if ($rt_suspending()) { break main; } var$5 = $tmp; var$5 = ju_Collections_singletonList(var$5); - $ptr = 59; + $ptr = 62; continue main; - case 50: + case 52: try { - $tmp = nmcrm_ModelBakery_loadModel($modelbakery, var$13); + $tmp = nmcrm_ModelBakery_loadModel($modelbakery, var$11); if ($rt_suspending()) { break main; } var$4 = $tmp; var$7 = $modelbakery.$models; - $ptr = 51; + $ptr = 53; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -711908,15 +713478,12 @@ } } var$7 = nmcrm_ModelBakery_LOGGER; - var$11 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$11); - var$8 = $rt_s(5298); - $ptr = 60; + $ptr = 63; continue main; - case 51: + case 53: a: { try { - ju_LinkedHashMap_put(var$7, var$13, var$4); + ju_LinkedHashMap_put(var$7, var$11, var$4); if ($rt_suspending()) { break main; } @@ -711929,34 +713496,31 @@ throw $$e; } } - $ptr = 34; + $ptr = 35; continue main; } var$7 = nmcrm_ModelBakery_LOGGER; - var$11 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$11); - var$8 = $rt_s(5298); - $ptr = 60; + $ptr = 63; continue main; - case 52: - nmcrbm_ModelBlock_checkModelHierarchy($iresourcemanager); - if ($rt_suspending()) { - break main; - } - $ptr = 53; - case 53: - nmcrm_ModelBakery_loadSprites($modelbakery); - if ($rt_suspending()) { - break main; - } - $ptr = 54; case 54: - nmcrm_ModelBakery_bakeItemModels($modelbakery); + nmcrbm_ModelBlock_checkModelHierarchy($iresourcemanager); if ($rt_suspending()) { break main; } $ptr = 55; case 55: + nmcrm_ModelBakery_loadSprites($modelbakery); + if ($rt_suspending()) { + break main; + } + $ptr = 56; + case 56: + nmcrm_ModelBakery_bakeItemModels($modelbakery); + if ($rt_suspending()) { + break main; + } + $ptr = 57; + case 57: nmcrm_ModelBakery_bakeBlockModels($modelbakery); if ($rt_suspending()) { break main; @@ -711964,8 +713528,8 @@ $modelbakery = $modelbakery.$bakedRegistry; $this.$modelRegistry = $modelbakery; $iresourcemanager = nmcrm_ModelBakery_MODEL_MISSING; - $ptr = 56; - case 56: + $ptr = 58; + case 58: $tmp = nmu_RegistrySimple_getObject($modelbakery, $iresourcemanager); if ($rt_suspending()) { break main; @@ -711973,14 +713537,14 @@ $iresourcemanager = $tmp; $this.$defaultModel = $iresourcemanager; $iresourcemanager = $this.$modelProvider; - $ptr = 57; - case 57: + $ptr = 59; + case 59: nmcr_BlockModelShapes_reloadModels($iresourcemanager); if ($rt_suspending()) { break main; } return; - case 58: + case 60: $tmp = ju_LinkedHashMapIterator$ValueIterator_next($iresourcemanager); if ($rt_suspending()) { break main; @@ -711988,99 +713552,104 @@ var$3 = $tmp; var$3 = var$3; var$5 = $modelbakery.$models; - var$4 = var$3.$parentLocation; - if (var$4 !== null) { - $ptr = 67; - continue main; + $ptr = 61; + case 61: + nmcrbm_ModelBlock_getParentFromMap(var$3, var$5); + if ($rt_suspending()) { + break main; } if (ju_LinkedHashMapIterator_hasNext($iresourcemanager)) { + $ptr = 60; continue main; } $iresourcemanager = $modelbakery.$models; - $ptr = 52; + $ptr = 54; continue main; - case 59: + case 62: $tmp = var$5.$iterator(); if ($rt_suspending()) { break main; } var$5 = $tmp; - $ptr = 68; + $ptr = 72; continue main; - case 60: - jl_AbstractStringBuilder_append(var$11, var$8); - if ($rt_suspending()) { - break main; - } - $ptr = 61; - case 61: - jl_AbstractStringBuilder_append(var$11, var$13); - if ($rt_suspending()) { - break main; - } - var$8 = $rt_s(5299); - $ptr = 62; - case 62: - jl_AbstractStringBuilder_append(var$11, var$8); - if ($rt_suspending()) { - break main; - } - $ptr = 63; case 63: - jl_AbstractStringBuilder_append(var$11, var$3); - if ($rt_suspending()) { - break main; - } - jl_AbstractStringBuilder_append0(var$11, var$12); - $ptr = 64; - case 64: - $tmp = jl_AbstractStringBuilder_toString(var$11); + $tmp = jl_String_valueOf(var$11); if ($rt_suspending()) { break main; } var$11 = $tmp; + $ptr = 64; + case 64: + $tmp = jl_String_valueOf(var$3); + if ($rt_suspending()) { + break main; + } + var$8 = $tmp; + var$13 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$13); + var$14 = $rt_s(5298); $ptr = 65; case 65: + jl_AbstractStringBuilder_append(var$13, var$14); + if ($rt_suspending()) { + break main; + } + $ptr = 66; + case 66: + jl_AbstractStringBuilder_append(var$13, var$11); + if ($rt_suspending()) { + break main; + } + var$11 = $rt_s(5299); + $ptr = 67; + case 67: + jl_AbstractStringBuilder_append(var$13, var$11); + if ($rt_suspending()) { + break main; + } + $ptr = 68; + case 68: + jl_AbstractStringBuilder_append(var$13, var$8); + if ($rt_suspending()) { + break main; + } + jl_AbstractStringBuilder_append0(var$13, var$12); + $ptr = 69; + case 69: + $tmp = jl_AbstractStringBuilder_toString(var$13); + if ($rt_suspending()) { + break main; + } + var$11 = $tmp; + $ptr = 70; + case 70: nlevl_Logger_warn(var$7, var$11); if ($rt_suspending()) { break main; } var$7 = nmcrm_ModelBakery_LOGGER; - $ptr = 66; - case 66: + $ptr = 71; + case 71: nlevl_Logger_warn1(var$7, var$4); if ($rt_suspending()) { break main; } - $ptr = 34; + $ptr = 35; continue main; - case 67: - $tmp = ju_LinkedHashMap_get(var$5, var$4); - if ($rt_suspending()) { - break main; - } - var$5 = $tmp; - var$3.$parent = var$5; - if (ju_LinkedHashMapIterator_hasNext($iresourcemanager)) { - $ptr = 58; - continue main; - } - $iresourcemanager = $modelbakery.$models; - $ptr = 52; - continue main; - case 68: + case 72: $tmp = var$5.$hasNext(); if ($rt_suspending()) { break main; } var$6 = $tmp; if (var$6) { - $ptr = 69; + $ptr = 73; continue main; } - $ptr = 33; + $ptr = 34; continue main; - case 69: + case 73: $tmp = var$5.$next(); if ($rt_suspending()) { break main; @@ -712088,64 +713657,64 @@ var$4 = $tmp; var$4 = var$4; var$7 = new nmu_ResourceLocation; - $ptr = 70; - case 70: + $ptr = 74; + case 74: nmu_ResourceLocation__init_(var$7, var$4); if ($rt_suspending()) { break main; } - var$14 = new nmu_ResourceLocation; - var$13 = var$7.$resourceDomain; - var$8 = var$7.$resourcePath; + var$11 = new nmu_ResourceLocation; + var$14 = var$7.$resourceDomain; + var$13 = var$7.$resourcePath; var$7 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$7); - var$11 = $rt_s(5300); - $ptr = 71; - case 71: - jl_AbstractStringBuilder_append(var$7, var$11); - if ($rt_suspending()) { - break main; - } - $ptr = 72; - case 72: + var$8 = $rt_s(5300); + $ptr = 75; + case 75: jl_AbstractStringBuilder_append(var$7, var$8); if ($rt_suspending()) { break main; } - $ptr = 73; - case 73: + $ptr = 76; + case 76: + jl_AbstractStringBuilder_append(var$7, var$13); + if ($rt_suspending()) { + break main; + } + $ptr = 77; + case 77: $tmp = jl_AbstractStringBuilder_toString(var$7); if ($rt_suspending()) { break main; } var$7 = $tmp; - $ptr = 74; - case 74: - nmu_ResourceLocation__init_4(var$14, var$13, var$7); + $ptr = 78; + case 78: + nmu_ResourceLocation__init_4(var$11, var$14, var$7); if ($rt_suspending()) { break main; } var$7 = $modelbakery.$itemLocations; - $ptr = 75; - case 75: - ju_LinkedHashMap_put(var$7, var$4, var$14); + $ptr = 79; + case 79: + ju_LinkedHashMap_put(var$7, var$4, var$11); if ($rt_suspending()) { break main; } var$4 = $modelbakery.$models; - $ptr = 76; - case 76: - $tmp = ju_LinkedHashMap_get(var$4, var$14); + $ptr = 80; + case 80: + $tmp = ju_LinkedHashMap_get(var$4, var$11); if ($rt_suspending()) { break main; } var$4 = $tmp; if (var$4 !== null) { - $ptr = 68; + $ptr = 72; continue main; } try { - $ptr = 77; + $ptr = 81; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -712156,18 +713725,17 @@ } } var$7 = nmcrm_ModelBakery_LOGGER; - var$11 = nmi_Item_itemRegistry; - $ptr = 79; + $ptr = 83; continue main; - case 77: + case 81: try { - $tmp = nmcrm_ModelBakery_loadModel($modelbakery, var$14); + $tmp = nmcrm_ModelBakery_loadModel($modelbakery, var$11); if ($rt_suspending()) { break main; } var$4 = $tmp; var$7 = $modelbakery.$models; - $ptr = 78; + $ptr = 82; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -712178,13 +713746,12 @@ } } var$7 = nmcrm_ModelBakery_LOGGER; - var$11 = nmi_Item_itemRegistry; - $ptr = 79; + $ptr = 83; continue main; - case 78: + case 82: a: { try { - ju_LinkedHashMap_put(var$7, var$14, var$4); + ju_LinkedHashMap_put(var$7, var$11, var$4); if ($rt_suspending()) { break main; } @@ -712197,68 +713764,82 @@ throw $$e; } } - $ptr = 68; + $ptr = 72; continue main; } var$7 = nmcrm_ModelBakery_LOGGER; - var$11 = nmi_Item_itemRegistry; - $ptr = 79; - case 79: - $tmp = nmu_RegistryNamespaced_getNameForObject(var$11, var$3); - if ($rt_suspending()) { - break main; - } - var$11 = $tmp; - var$8 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$8); - var$13 = $rt_s(5301); - $ptr = 80; - case 80: - jl_AbstractStringBuilder_append(var$8, var$13); - if ($rt_suspending()) { - break main; - } - $ptr = 81; - case 81: - jl_AbstractStringBuilder_append(var$8, var$14); - if ($rt_suspending()) { - break main; - } - var$13 = $rt_s(5302); - $ptr = 82; - case 82: - jl_AbstractStringBuilder_append(var$8, var$13); - if ($rt_suspending()) { - break main; - } $ptr = 83; case 83: - jl_AbstractStringBuilder_append(var$8, var$11); - if ($rt_suspending()) { - break main; - } - jl_AbstractStringBuilder_append0(var$8, var$12); - $ptr = 84; - case 84: - $tmp = jl_AbstractStringBuilder_toString(var$8); + $tmp = jl_String_valueOf(var$11); if ($rt_suspending()) { break main; } var$11 = $tmp; + var$8 = nmi_Item_itemRegistry; + $ptr = 84; + case 84: + $tmp = nmu_RegistryNamespaced_getNameForObject(var$8, var$3); + if ($rt_suspending()) { + break main; + } + var$8 = $tmp; $ptr = 85; case 85: + $tmp = jl_String_valueOf(var$8); + if ($rt_suspending()) { + break main; + } + var$8 = $tmp; + var$13 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$13); + var$14 = $rt_s(5301); + $ptr = 86; + case 86: + jl_AbstractStringBuilder_append(var$13, var$14); + if ($rt_suspending()) { + break main; + } + $ptr = 87; + case 87: + jl_AbstractStringBuilder_append(var$13, var$11); + if ($rt_suspending()) { + break main; + } + var$11 = $rt_s(5302); + $ptr = 88; + case 88: + jl_AbstractStringBuilder_append(var$13, var$11); + if ($rt_suspending()) { + break main; + } + $ptr = 89; + case 89: + jl_AbstractStringBuilder_append(var$13, var$8); + if ($rt_suspending()) { + break main; + } + jl_AbstractStringBuilder_append0(var$13, var$12); + $ptr = 90; + case 90: + $tmp = jl_AbstractStringBuilder_toString(var$13); + if ($rt_suspending()) { + break main; + } + var$11 = $tmp; + $ptr = 91; + case 91: nlevl_Logger_warn(var$7, var$11); if ($rt_suspending()) { break main; } var$7 = nmcrm_ModelBakery_LOGGER; - $ptr = 86; - case 86: + $ptr = 92; + case 92: nlevl_Logger_warn1(var$7, var$4); if ($rt_suspending()) { break main; } - $ptr = 68; + $ptr = 72; continue main; default: $rt_invalidPointer(); }} @@ -712909,7 +714490,7 @@ break main; } $ly_0 = nlevoed_EaglerDeferredPipeline_instance.$partialTicks; - $mat_0.$this$0128 = $this; + $mat_0.$this$096 = $this; $mat_0.$val$mat = $mat; $mat_0.$val$lx = $lx; $mat_0.$val$ly = $ly; @@ -712954,7 +714535,7 @@ break main; } var$3 = nlevoed_EaglerDeferredPipeline_instance.$partialTicks; - $model.$this$0129 = $this; + $model.$this$097 = $this; $model.$val$mat0 = $mat_0; $model.$val$lx0 = $lx_0; $model.$val$ly0 = $ly_0; @@ -713934,7 +715515,6 @@ $crashreportcategory = $tmp; $throwable = $rt_s(5305); var$7 = new nmcre_RenderItem$3; - var$7.$this$0130 = $this; var$7.$val$stack0 = $stack; $ptr = 4; case 4: @@ -713944,7 +715524,6 @@ } $throwable = $rt_s(5306); var$7 = new nmcre_RenderItem$4; - var$7.$this$0131 = $this; var$7.$val$stack1 = $stack; $ptr = 5; case 5: @@ -713954,7 +715533,6 @@ } $throwable = $rt_s(5307); var$7 = new nmcre_RenderItem$5; - var$7.$this$0132 = $this; var$7.$val$stack2 = $stack; $ptr = 6; case 6: @@ -713964,7 +715542,6 @@ } $throwable = $rt_s(5308); var$7 = new nmcre_RenderItem$6; - var$7.$this$0133 = $this; var$7.$val$stack3 = $stack; $ptr = 7; case 7: @@ -713999,12 +715576,12 @@ $rt_nativeThread().push($this, $fr, $stack, $xPosition, $yPosition, var$5, $ptr); } function nmcre_RenderItem_renderItemOverlayIntoGUI($this, $fr, $stack, $xPosition, $yPosition, $text) { - var $i, $s, $j1, var$9, var$10, var$11, $tessellator, $worldrenderer, var$14, var$15, $l, var$17, $i1, var$19, var$20, var$21, var$22, $ptr, $tmp; + var $i, $s, $j1, var$9, var$10, $tessellator, $worldrenderer, var$13, var$14, $l, var$16, $i1, var$18, var$19, var$20, var$21, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$22 = $thread.pop();var$21 = $thread.pop();var$20 = $thread.pop();var$19 = $thread.pop();$i1 = $thread.pop();var$17 = $thread.pop();$l = $thread.pop();var$15 = $thread.pop();var$14 = $thread.pop();$worldrenderer = $thread.pop();$tessellator = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();$j1 = $thread.pop();$s = $thread.pop();$i = $thread.pop();$text = $thread.pop();$yPosition = $thread.pop();$xPosition = $thread.pop();$stack = $thread.pop();$fr - = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$21 = $thread.pop();var$20 = $thread.pop();var$19 = $thread.pop();var$18 = $thread.pop();$i1 = $thread.pop();var$16 = $thread.pop();$l = $thread.pop();var$14 = $thread.pop();var$13 = $thread.pop();$worldrenderer = $thread.pop();$tessellator = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();$j1 = $thread.pop();$s = $thread.pop();$i = $thread.pop();$text = $thread.pop();$yPosition = $thread.pop();$xPosition = $thread.pop();$stack = $thread.pop();$fr = $thread.pop();$this + = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -714020,12 +715597,9 @@ continue main; } $s = $text; - if ($text === null) { - $j1 = $stack.$stackSize; - if ($j1 < 1) { - $ptr = 21; - continue main; - } + if ($text === null && $stack.$stackSize < 1) { + $ptr = 21; + continue main; } $ptr = 15; continue main; @@ -714035,12 +715609,9 @@ break main; } $s = $tmp; - if ($text === null) { - $j1 = $stack.$stackSize; - if ($j1 < 1) { - $ptr = 21; - continue main; - } + if ($text === null && $stack.$stackSize < 1) { + $ptr = 21; + continue main; } $ptr = 15; continue main; @@ -714062,8 +715633,8 @@ } $j1 = $tmp; $j1 = Long_lo((jl_Math_round0(var$9 - var$10 / $j1))); - var$10 = 255.0; - var$11 = $stack.$itemDamage * 255.0; + var$9 = 255.0; + var$10 = $stack.$itemDamage * 255.0; $ptr = 4; case 4: $tmp = nmi_ItemStack_getMaxDamage($stack); @@ -714071,7 +715642,7 @@ break main; } $i = $tmp; - $i = Long_lo((jl_Math_round0(var$10 - var$11 / $i))); + $i = Long_lo((jl_Math_round0(var$9 - var$10 / $i))); $ptr = 5; case 5: nlevo_GlStateManager_disableLighting(); @@ -714111,29 +715682,29 @@ $tessellator = $tmp; $worldrenderer = $tessellator.$worldRenderer; $xPosition = $xPosition + 2 | 0; - var$14 = $yPosition + 13 | 0; - var$15 = 13; + var$13 = $yPosition + 13 | 0; + var$14 = 13; $yPosition = 2; $l = 0; - var$17 = 0; + var$16 = 0; $i1 = 0; - var$19 = 255; + var$18 = 255; $ptr = 11; case 11: - nmcre_RenderItem_func_181565_a($this, $worldrenderer, $xPosition, var$14, var$15, $yPosition, $l, var$17, $i1, var$19); + nmcre_RenderItem_func_181565_a($this, $worldrenderer, $xPosition, var$13, var$14, $yPosition, $l, var$16, $i1, var$18); if ($rt_suspending()) { break main; } $yPosition = 12; $l = 1; - var$17 = 255 - $i | 0; - $i1 = var$17 / 4 | 0; - var$19 = 64; - var$15 = 0; - var$20 = 255; + var$16 = 255 - $i | 0; + $i1 = var$16 / 4 | 0; + var$18 = 64; + var$14 = 0; + var$19 = 255; $ptr = 12; case 12: - nmcre_RenderItem_func_181565_a($this, $worldrenderer, $xPosition, var$14, $yPosition, $l, $i1, var$19, var$15, var$20); + nmcre_RenderItem_func_181565_a($this, $worldrenderer, $xPosition, var$13, $yPosition, $l, $i1, var$18, var$14, var$19); if ($rt_suspending()) { break main; } @@ -714151,7 +715722,7 @@ } $yPosition = 1; $i1 = 255; - $ptr = 26; + $ptr = 27; continue main; case 14: nPs_CustomColors_$callClinit(); @@ -714162,17 +715733,17 @@ if ($fr !== null) { $yPosition = $rt_imul($i, nPs_CustomColormap_getLength($fr)) / 255 | 0; $fr = nPs_CustomColors_durabilityColors; - $ptr = 32; + $ptr = 33; continue main; } if ((-1) >= 0) { - var$17 = (-1) >> 16 & 255; + var$16 = (-1) >> 16 & 255; $i = (-1) >> 8 & 255; $l = (-1) >> 0 & 255; } $yPosition = 1; $i1 = 255; - $ptr = 26; + $ptr = 27; continue main; case 15: nlevo_GlStateManager_disableLighting(); @@ -714191,12 +715762,12 @@ if ($rt_suspending()) { break main; } - var$21 = (($xPosition + 19 | 0) - 2 | 0) - nmcg_FontRenderer_getStringWidth($fr, $s) | 0; - var$22 = ($yPosition + 6 | 0) + 3 | 0; + var$20 = (($xPosition + 19 | 0) - 2 | 0) - nmcg_FontRenderer_getStringWidth($fr, $s) | 0; + var$21 = ($yPosition + 6 | 0) + 3 | 0; $j1 = 16777215; $ptr = 18; case 18: - nmcg_FontRenderer_drawStringWithShadow($fr, $s, var$21, var$22, $j1); + nmcg_FontRenderer_drawStringWithShadow($fr, $s, var$20, var$21, $j1); if ($rt_suspending()) { break main; } @@ -714219,91 +715790,99 @@ if ($rt_suspending()) { break main; } - $tessellator = nmu_EnumChatFormatting_RED; + $text = nmu_EnumChatFormatting_RED; $ptr = 22; case 22: - $tmp = jl_String_valueOf2($j1); + $tmp = jl_String_valueOf($text); if ($rt_suspending()) { break main; } $worldrenderer = $tmp; - $text = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($text); + $j1 = $stack.$stackSize; $ptr = 23; case 23: - jl_AbstractStringBuilder_append($text, $tessellator); + $tmp = jl_String_valueOf2($j1); if ($rt_suspending()) { break main; } + $text = $tmp; + $tessellator = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($tessellator); $ptr = 24; case 24: - jl_AbstractStringBuilder_append($text, $worldrenderer); + jl_AbstractStringBuilder_append($tessellator, $worldrenderer); if ($rt_suspending()) { break main; } $ptr = 25; case 25: - $tmp = jl_AbstractStringBuilder_toString($text); + jl_AbstractStringBuilder_append($tessellator, $text); + if ($rt_suspending()) { + break main; + } + $ptr = 26; + case 26: + $tmp = jl_AbstractStringBuilder_toString($tessellator); if ($rt_suspending()) { break main; } $s = $tmp; $ptr = 15; continue main; - case 26: - nmcre_RenderItem_func_181565_a($this, $worldrenderer, $xPosition, var$14, $j1, $yPosition, var$17, $i, $l, $i1); - if ($rt_suspending()) { - break main; - } - $ptr = 27; case 27: - nlevo_GlStateManager_enableBlend(); + nmcre_RenderItem_func_181565_a($this, $worldrenderer, $xPosition, var$13, $j1, $yPosition, var$16, $i, $l, $i1); if ($rt_suspending()) { break main; } $ptr = 28; case 28: - nlevo_GlStateManager_enableAlpha(); + nlevo_GlStateManager_enableBlend(); if ($rt_suspending()) { break main; } $ptr = 29; case 29: - nlevo_GlStateManager_enableTexture2D(); + nlevo_GlStateManager_enableAlpha(); if ($rt_suspending()) { break main; } $ptr = 30; case 30: - nlevo_GlStateManager_enableLighting(); + nlevo_GlStateManager_enableTexture2D(); if ($rt_suspending()) { break main; } $ptr = 31; case 31: + nlevo_GlStateManager_enableLighting(); + if ($rt_suspending()) { + break main; + } + $ptr = 32; + case 32: nlevo_GlStateManager_enableDepth(); if ($rt_suspending()) { break main; } return; - case 32: + case 33: $tmp = nPs_CustomColormap_getColor($fr, $yPosition); if ($rt_suspending()) { break main; } $i1 = $tmp; if ($i1 >= 0) { - var$17 = $i1 >> 16 & 255; + var$16 = $i1 >> 16 & 255; $i = $i1 >> 8 & 255; $l = $i1 >> 0 & 255; } $yPosition = 1; $i1 = 255; - $ptr = 26; + $ptr = 27; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $fr, $stack, $xPosition, $yPosition, $text, $i, $s, $j1, var$9, var$10, var$11, $tessellator, $worldrenderer, var$14, var$15, $l, var$17, $i1, var$19, var$20, var$21, var$22, $ptr); + $rt_nativeThread().push($this, $fr, $stack, $xPosition, $yPosition, $text, $i, $s, $j1, var$9, var$10, $tessellator, $worldrenderer, var$13, var$14, $l, var$16, $i1, var$18, var$19, var$20, var$21, $ptr); } function nmcre_RenderItem_func_181565_a($this, $parWorldRenderer, $parInt1, $parInt2, $parInt3, $parInt4, $parInt5, $parInt6, $parInt7, $parInt8) { var var$10, var$11, var$12, var$13, var$14, var$15, $ptr, $tmp; @@ -724854,10 +726433,7 @@ $vec33 = null; $movingobjectposition = $this.$mc5.$theWorld; $vec31 = nmu_AxisAlignedBB_expand(nmu_AxisAlignedBB_addCoord($entity.$boundingBox, $vec31.$xCoord * $d3, $vec31.$yCoord * $d3, $vec31.$zCoord * $d3), 1.0, 1.0, 1.0); - $axisalignedbb = nmu_EntitySelectors_NOT_SPECTATING; - $list = new nmcr_EntityRenderer$1; - $list.$this$0134 = $this; - $axisalignedbb = cgcb_Predicates_and($axisalignedbb, $list); + $axisalignedbb = cgcb_Predicates_and(nmu_EntitySelectors_NOT_SPECTATING, new nmcr_EntityRenderer$1); $ptr = 5; case 5: $tmp = nmw_World_getEntitiesInAABBexcluding($movingobjectposition, $entity, $vec31, $axisalignedbb); @@ -741267,11 +742843,12 @@ $rt_nativeThread().push($this, $entityIn, $partialTicks, $f, $f1, $f2, $f3, $f4, $ptr); } function nmcr_RenderGlobal_renderBlockLayer($this, $blockLayerIn, $partialTicks, $pass, $entityIn) { - var $renderchunk, $renderglobal$containerlocalrenderinformation, $l, $flag, $j, $i, $j1, $d0, var$13, $d1, var$15, $d2, $k, $ii, $ll, $ptr, $tmp; + var $renderchunk, $renderglobal$containerlocalrenderinformation, $l, $flag, $j, $i, $j1, $d0, var$13, $d1, var$15, $d2, $k, $ii, $ll, var$20, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$ll = $thread.pop();$ii = $thread.pop();$k = $thread.pop();$d2 = $thread.pop();var$15 = $thread.pop();$d1 = $thread.pop();var$13 = $thread.pop();$d0 = $thread.pop();$j1 = $thread.pop();$i = $thread.pop();$j = $thread.pop();$flag = $thread.pop();$l = $thread.pop();$renderglobal$containerlocalrenderinformation = $thread.pop();$renderchunk = $thread.pop();$entityIn = $thread.pop();$pass = $thread.pop();$partialTicks = $thread.pop();$blockLayerIn = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$20 = $thread.pop();$ll = $thread.pop();$ii = $thread.pop();$k = $thread.pop();$d2 = $thread.pop();var$15 = $thread.pop();$d1 = $thread.pop();var$13 = $thread.pop();$d0 = $thread.pop();$j1 = $thread.pop();$i = $thread.pop();$j = $thread.pop();$flag = $thread.pop();$l = $thread.pop();$renderglobal$containerlocalrenderinformation = $thread.pop();$renderchunk = $thread.pop();$entityIn = $thread.pop();$pass = $thread.pop();$partialTicks = $thread.pop();$blockLayerIn = $thread.pop();$this + = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -741387,7 +742964,7 @@ $renderglobal$containerlocalrenderinformation.$goddamnFuckingTimeout = jl_System_currentTimeMillis(); if ($entityIn.$queue.$size2 < 100) { $renderchunk = new nlevm_ChunkUpdateManager$2; - $renderchunk.$this$0135 = $entityIn; + $renderchunk.$this$098 = $entityIn; $renderchunk.$val$chunkcompiletaskgenerator = $renderglobal$containerlocalrenderinformation; $ptr = 10; continue main; @@ -741430,7 +743007,7 @@ $renderglobal$containerlocalrenderinformation.$goddamnFuckingTimeout = jl_System_currentTimeMillis(); if ($entityIn.$queue.$size2 < 100) { $renderchunk = new nlevm_ChunkUpdateManager$2; - $renderchunk.$this$0135 = $entityIn; + $renderchunk.$this$098 = $entityIn; $renderchunk.$val$chunkcompiletaskgenerator = $renderglobal$containerlocalrenderinformation; $ptr = 10; continue main; @@ -741508,13 +743085,10 @@ } $pass = $tmp; if ($pass) { - $ptr = 22; + $ptr = 23; continue main; } $entityIn = $this.$mc6.$mcProfiler; - $renderchunk = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($renderchunk); - $renderglobal$containerlocalrenderinformation = $rt_s(5551); $ptr = 14; continue main; case 13: @@ -741524,79 +743098,86 @@ } return $l; case 14: - jl_AbstractStringBuilder_append($renderchunk, $renderglobal$containerlocalrenderinformation); + $tmp = jl_String_valueOf($blockLayerIn); if ($rt_suspending()) { break main; } + $renderchunk = $tmp; + $renderglobal$containerlocalrenderinformation = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($renderglobal$containerlocalrenderinformation); + var$20 = $rt_s(5551); $ptr = 15; case 15: - jl_AbstractStringBuilder_append($renderchunk, $blockLayerIn); + jl_AbstractStringBuilder_append($renderglobal$containerlocalrenderinformation, var$20); if ($rt_suspending()) { break main; } $ptr = 16; case 16: - $tmp = jl_AbstractStringBuilder_toString($renderchunk); + jl_AbstractStringBuilder_append($renderglobal$containerlocalrenderinformation, $renderchunk); + if ($rt_suspending()) { + break main; + } + $ptr = 17; + case 17: + $tmp = jl_AbstractStringBuilder_toString($renderglobal$containerlocalrenderinformation); if ($rt_suspending()) { break main; } $renderchunk = $tmp; - $ptr = 17; - case 17: + $ptr = 18; + case 18: nmp_Profiler_endStartSection($entityIn, $renderchunk); if ($rt_suspending()) { break main; } $entityIn = $this.$mc6.$entityRenderer; - $ptr = 18; - case 18: + $ptr = 19; + case 19: nmcr_EntityRenderer_enableLightmap($entityIn); if ($rt_suspending()) { break main; } $entityIn = $this.$renderContainer; - $ptr = 19; - case 19: + $ptr = 20; + case 20: nmcr_RenderList_renderChunkLayer($entityIn, $blockLayerIn); if ($rt_suspending()) { break main; } $blockLayerIn = $this.$mc6.$entityRenderer; - $ptr = 20; - case 20: + $ptr = 21; + case 21: nmcr_EntityRenderer_disableLightmap($blockLayerIn); if ($rt_suspending()) { break main; } $blockLayerIn = $this.$mc6.$mcProfiler; - $ptr = 21; - case 21: + $ptr = 22; + case 22: nmp_Profiler_endSection($blockLayerIn); if ($rt_suspending()) { break main; } return $l; - case 22: + case 23: nlevo_GlStateManager_disableFog(); if ($rt_suspending()) { break main; } $entityIn = $this.$mc6.$mcProfiler; - $renderchunk = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($renderchunk); - $renderglobal$containerlocalrenderinformation = $rt_s(5551); $ptr = 14; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $blockLayerIn, $partialTicks, $pass, $entityIn, $renderchunk, $renderglobal$containerlocalrenderinformation, $l, $flag, $j, $i, $j1, $d0, var$13, $d1, var$15, $d2, $k, $ii, $ll, $ptr); + $rt_nativeThread().push($this, $blockLayerIn, $partialTicks, $pass, $entityIn, $renderchunk, $renderglobal$containerlocalrenderinformation, $l, $flag, $j, $i, $j1, $d0, var$13, $d1, var$15, $d2, $k, $ii, $ll, var$20, $ptr); } function nmcr_RenderGlobal_renderBlockLayerShadow($this, $blockLayerIn, $boundingBox, $cullAdapter) { - var $i, $tmp_0, $cx, $minYChunk, $minZChunk, $maxXChunk, $maxYChunk, $maxZChunk, $ch, $cz, $cy, var$15, $ptr, $tmp; + var $i, $tmp_0, $cx, $minYChunk, $minZChunk, $maxXChunk, $maxYChunk, $maxZChunk, $cz, $cy, $ch, var$15, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$15 = $thread.pop();$cy = $thread.pop();$cz = $thread.pop();$ch = $thread.pop();$maxZChunk = $thread.pop();$maxYChunk = $thread.pop();$maxXChunk = $thread.pop();$minZChunk = $thread.pop();$minYChunk = $thread.pop();$cx = $thread.pop();$tmp_0 = $thread.pop();$i = $thread.pop();$cullAdapter = $thread.pop();$boundingBox = $thread.pop();$blockLayerIn = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$15 = $thread.pop();$ch = $thread.pop();$cy = $thread.pop();$cz = $thread.pop();$maxZChunk = $thread.pop();$maxYChunk = $thread.pop();$maxXChunk = $thread.pop();$minZChunk = $thread.pop();$minYChunk = $thread.pop();$cx = $thread.pop();$tmp_0 = $thread.pop();$i = $thread.pop();$cullAdapter = $thread.pop();$boundingBox = $thread.pop();$blockLayerIn = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -741613,9 +743194,6 @@ if ($i <= 0) return $i; $boundingBox = $this.$mc6.$mcProfiler; - $cullAdapter = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($cullAdapter); - $ch = $rt_s(5552); $ptr = 1; continue main; } @@ -741638,48 +743216,58 @@ } $cx = $cx + 16 | 0; } - $ptr = 6; + $ptr = 7; continue main; case 1: - jl_AbstractStringBuilder_append($cullAdapter, $ch); + $tmp = jl_String_valueOf($blockLayerIn); if ($rt_suspending()) { break main; } + $cullAdapter = $tmp; + $ch = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($ch); + $tmp_0 = $rt_s(5552); $ptr = 2; case 2: - jl_AbstractStringBuilder_append($cullAdapter, $blockLayerIn); + jl_AbstractStringBuilder_append($ch, $tmp_0); if ($rt_suspending()) { break main; } $ptr = 3; case 3: - $tmp = jl_AbstractStringBuilder_toString($cullAdapter); + jl_AbstractStringBuilder_append($ch, $cullAdapter); + if ($rt_suspending()) { + break main; + } + $ptr = 4; + case 4: + $tmp = jl_AbstractStringBuilder_toString($ch); if ($rt_suspending()) { break main; } $cullAdapter = $tmp; - $ptr = 4; - case 4: + $ptr = 5; + case 5: nmp_Profiler_endStartSection($boundingBox, $cullAdapter); if ($rt_suspending()) { break main; } $boundingBox = $this.$renderContainer; - $ptr = 5; - case 5: + $ptr = 6; + case 6: nmcr_RenderList_renderChunkLayer($boundingBox, $blockLayerIn); if ($rt_suspending()) { break main; } return $i; - case 6: + case 7: $tmp = nmcrc_CompiledChunk_isLayerEmpty($boundingBox, $blockLayerIn); if ($rt_suspending()) { break main; } var$15 = $tmp; if (!var$15) { - $ptr = 7; + $ptr = 8; continue main; } while (true) { @@ -741692,9 +743280,6 @@ if ($i <= 0) return $i; $boundingBox = $this.$mc6.$mcProfiler; - $cullAdapter = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($cullAdapter); - $ch = $rt_s(5552); $ptr = 1; continue main; } @@ -741713,7 +743298,7 @@ break; } continue main; - case 7: + case 8: $tmp = $cullAdapter.$shouldCull($ch); if ($rt_suspending()) { break main; @@ -741733,9 +743318,6 @@ if ($i <= 0) return $i; $boundingBox = $this.$mc6.$mcProfiler; - $cullAdapter = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($cullAdapter); - $ch = $rt_s(5552); $ptr = 1; continue main; } @@ -741753,18 +743335,18 @@ if ($boundingBox !== null) break; } - $ptr = 6; + $ptr = 7; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $blockLayerIn, $boundingBox, $cullAdapter, $i, $tmp_0, $cx, $minYChunk, $minZChunk, $maxXChunk, $maxYChunk, $maxZChunk, $ch, $cz, $cy, var$15, $ptr); + $rt_nativeThread().push($this, $blockLayerIn, $boundingBox, $cullAdapter, $i, $tmp_0, $cx, $minYChunk, $minZChunk, $maxXChunk, $maxYChunk, $maxZChunk, $cz, $cy, $ch, var$15, $ptr); } function nmcr_RenderGlobal_renderParaboloidBlockLayer($this, $blockLayerIn, $partialTicks, $up, $entityIn) { - var var$5, $minX, $maxY, var$8, $minZ, $maxX, $maxZ, $tmp_0, $cx, $i, $ch, $cz, $cy, $ptr, $tmp; + var var$5, $minX, $maxY, var$8, $minZ, $maxX, $maxZ, $tmp_0, $cx, $i, $cz, $cy, $ch, var$18, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$cy = $thread.pop();$cz = $thread.pop();$ch = $thread.pop();$i = $thread.pop();$cx = $thread.pop();$tmp_0 = $thread.pop();$maxZ = $thread.pop();$maxX = $thread.pop();$minZ = $thread.pop();var$8 = $thread.pop();$maxY = $thread.pop();$minX = $thread.pop();var$5 = $thread.pop();$entityIn = $thread.pop();$up = $thread.pop();$partialTicks = $thread.pop();$blockLayerIn = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$18 = $thread.pop();$ch = $thread.pop();$cy = $thread.pop();$cz = $thread.pop();$i = $thread.pop();$cx = $thread.pop();$tmp_0 = $thread.pop();$maxZ = $thread.pop();$maxX = $thread.pop();$minZ = $thread.pop();var$8 = $thread.pop();$maxY = $thread.pop();$minX = $thread.pop();var$5 = $thread.pop();$entityIn = $thread.pop();$up = $thread.pop();$partialTicks = $thread.pop();$blockLayerIn = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -741790,9 +743372,6 @@ if ($i <= 0) return $i; $entityIn = $this.$mc6.$mcProfiler; - $tmp_0 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($tmp_0); - $ch = $rt_s(5553); $ptr = 1; continue main; } @@ -741815,57 +743394,67 @@ } $cx = $cx + 16 | 0; } - $ptr = 8; + $ptr = 9; continue main; case 1: - jl_AbstractStringBuilder_append($tmp_0, $ch); - if ($rt_suspending()) { - break main; - } - jl_AbstractStringBuilder_append1($tmp_0, $up); - jl_AbstractStringBuilder_append0($tmp_0, 95); - $ptr = 2; - case 2: - jl_AbstractStringBuilder_append($tmp_0, $blockLayerIn); - if ($rt_suspending()) { - break main; - } - $ptr = 3; - case 3: - $tmp = jl_AbstractStringBuilder_toString($tmp_0); + $tmp = jl_String_valueOf($blockLayerIn); if ($rt_suspending()) { break main; } $tmp_0 = $tmp; + $ch = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($ch); + var$18 = $rt_s(5553); + $ptr = 2; + case 2: + jl_AbstractStringBuilder_append($ch, var$18); + if ($rt_suspending()) { + break main; + } + jl_AbstractStringBuilder_append1($ch, $up); + jl_AbstractStringBuilder_append0($ch, 95); + $ptr = 3; + case 3: + jl_AbstractStringBuilder_append($ch, $tmp_0); + if ($rt_suspending()) { + break main; + } $ptr = 4; case 4: + $tmp = jl_AbstractStringBuilder_toString($ch); + if ($rt_suspending()) { + break main; + } + $tmp_0 = $tmp; + $ptr = 5; + case 5: nmp_Profiler_endStartSection($entityIn, $tmp_0); if ($rt_suspending()) { break main; } $entityIn = $this.$mc6.$entityRenderer; - $ptr = 5; - case 5: + $ptr = 6; + case 6: nmcr_EntityRenderer_enableLightmap($entityIn); if ($rt_suspending()) { break main; } $entityIn = $this.$renderContainer; - $ptr = 6; - case 6: + $ptr = 7; + case 7: nmcr_RenderList_renderChunkLayer($entityIn, $blockLayerIn); if ($rt_suspending()) { break main; } $blockLayerIn = $this.$mc6.$entityRenderer; - $ptr = 7; - case 7: + $ptr = 8; + case 8: nmcr_EntityRenderer_disableLightmap($blockLayerIn); if ($rt_suspending()) { break main; } return $i; - case 8: + case 9: $tmp = nmcrc_CompiledChunk_isLayerEmpty($entityIn, $blockLayerIn); if ($rt_suspending()) { break main; @@ -741885,9 +743474,6 @@ if ($i <= 0) return $i; $entityIn = $this.$mc6.$mcProfiler; - $tmp_0 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($tmp_0); - $ch = $rt_s(5553); $ptr = 1; continue main; } @@ -741908,7 +743494,7 @@ continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $blockLayerIn, $partialTicks, $up, $entityIn, var$5, $minX, $maxY, var$8, $minZ, $maxX, $maxZ, $tmp_0, $cx, $i, $ch, $cz, $cy, $ptr); + $rt_nativeThread().push($this, $blockLayerIn, $partialTicks, $up, $entityIn, var$5, $minX, $maxY, var$8, $minZ, $maxX, $maxZ, $tmp_0, $cx, $i, $cz, $cy, $ch, var$18, $ptr); } function nmcr_RenderGlobal_updateClouds($this) { var var$1, var$2, var$3, var$4, $ptr, $tmp; @@ -746184,7 +747770,7 @@ continue main; } var$8 = new nlevm_ChunkUpdateManager$1; - var$8.$this$0136 = var$12; + var$8.$this$099 = var$12; var$8.$val$chunkcompiletaskgenerator0 = var$5; $ptr = 16; continue main; @@ -748981,7 +750567,6 @@ } $throwable = $rt_s(5559); var$13 = new nmcr_RenderGlobal$1; - var$13.$this$0137 = $this; var$13.$val$d00 = $d0; var$13.$val$d10 = $d1; var$13.$val$d20 = $d2; @@ -748999,7 +750584,6 @@ } $throwable = $rt_s(5559); var$13 = new nmcr_RenderGlobal$1; - var$13.$this$0137 = $this; var$13.$val$d00 = $d0; var$13.$val$d10 = $d1; var$13.$val$d20 = $d2; @@ -753326,7 +754910,6 @@ $i = $tmp; var$8 = $rt_s(5588); $arraylist = new nmcp_EffectRenderer$1; - $arraylist.$this$0138 = $this; $arraylist.$val$parEntityFX = var$6; $ptr = 11; case 11: @@ -753336,7 +754919,6 @@ } $arraylist = $rt_s(5589); var$6 = new nmcp_EffectRenderer$2; - var$6.$this$0139 = $this; var$6.$val$i0 = $i; $ptr = 12; case 12: @@ -753393,11 +754975,11 @@ $rt_nativeThread().push($this, $i, var$2, var$3, $ptr); } function nmcp_EffectRenderer_renderParticles($this, $entityIn, $partialTicks, $pass) { - var $f, $f1, $f2, $f3, $f4, var$9, var$10, var$11, $j, var$13, $i, var$15, $tessellator, $legacyRenderingHasOccured, $blockMap, var$19, var$20, var$21, var$22, var$23, $worldrenderer, $k, var$26, $entityfx, $throwable, var$29, $crashreport, $crashreportcategory, $$je, $ptr, $tmp; + var $f, $f1, $f2, $f3, $f4, var$9, var$10, var$11, var$12, var$13, $i, var$15, $j, $worldrenderer, $blockMap, var$19, var$20, var$21, var$22, var$23, $tessellator, $legacyRenderingHasOccured, $k, var$27, $entityfx, $throwable, $crashreport, $crashreportcategory, $$je, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$crashreportcategory = $thread.pop();$crashreport = $thread.pop();var$29 = $thread.pop();$throwable = $thread.pop();$entityfx = $thread.pop();var$26 = $thread.pop();$k = $thread.pop();$worldrenderer = $thread.pop();var$23 = $thread.pop();var$22 = $thread.pop();var$21 = $thread.pop();var$20 = $thread.pop();var$19 = $thread.pop();$blockMap = $thread.pop();$legacyRenderingHasOccured = $thread.pop();$tessellator = $thread.pop();var$15 = $thread.pop();$i = $thread.pop();var$13 = $thread.pop();$j + $ptr = $thread.pop();$crashreportcategory = $thread.pop();$crashreport = $thread.pop();$throwable = $thread.pop();$entityfx = $thread.pop();var$27 = $thread.pop();$k = $thread.pop();$legacyRenderingHasOccured = $thread.pop();$tessellator = $thread.pop();var$23 = $thread.pop();var$22 = $thread.pop();var$21 = $thread.pop();var$20 = $thread.pop();var$19 = $thread.pop();$blockMap = $thread.pop();$worldrenderer = $thread.pop();$j = $thread.pop();var$15 = $thread.pop();$i = $thread.pop();var$13 = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$pass = $thread.pop();$partialTicks = $thread.pop();$entityIn = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { @@ -753422,16 +755004,16 @@ if ($rt_suspending()) { break main; } - $j = $tmp; - if (!$j) { + var$12 = $tmp; + if (!var$12) { $ptr = 3; continue main; } - $j = 516; + var$12 = 516; var$13 = 0.003921568859368563; $ptr = 2; case 2: - nlevo_GlStateManager_alphaFunc($j, var$13); + nlevo_GlStateManager_alphaFunc(var$12, var$13); if ($rt_suspending()) { break main; } @@ -753453,7 +755035,7 @@ $ptr = 5; continue main; } - $tessellator = $this.$fxLayers.data[$i].data[$j]; + $worldrenderer = $this.$fxLayers.data[$i].data[$j]; $ptr = 8; continue main; case 3: @@ -753462,14 +755044,14 @@ break main; } $j = 770; - var$15 = 771; + var$12 = 771; $ptr = 4; case 4: - nlevo_GlStateManager_blendFunc($j, var$15); + nlevo_GlStateManager_blendFunc($j, var$12); if ($rt_suspending()) { break main; } - $j = 516; + var$12 = 516; var$13 = 0.003921568859368563; $ptr = 2; continue main; @@ -753494,22 +755076,22 @@ } return; case 8: - $tmp = ju_AbstractCollection_isEmpty($tessellator); + $tmp = ju_AbstractCollection_isEmpty($worldrenderer); if ($rt_suspending()) { break main; } - $legacyRenderingHasOccured = $tmp; - if (!$legacyRenderingHasOccured) { + var$12 = $tmp; + if (!var$12) { switch ($i) { case 0: break; case 1: - $legacyRenderingHasOccured = 1; + var$12 = 1; $ptr = 13; continue main; default: } - $legacyRenderingHasOccured = 0; + var$12 = 0; $ptr = 9; continue main; } @@ -753531,15 +755113,15 @@ $ptr = 5; continue main; } - $tessellator = $this.$fxLayers.data[$i].data[$j]; + $worldrenderer = $this.$fxLayers.data[$i].data[$j]; continue main; case 9: nlevoed_GBufferAcceleratedEffectRenderer_$callClinit(); if ($rt_suspending()) { break main; } - nlevoed_GBufferAcceleratedEffectRenderer_isMaterialNormalTexture = $legacyRenderingHasOccured; - $tessellator = $this.$renderer; + nlevoed_GBufferAcceleratedEffectRenderer_isMaterialNormalTexture = var$12; + $worldrenderer = $this.$renderer; $ptr = 10; case 10: nmcp_EffectRenderer_$callClinit(); @@ -753549,7 +755131,7 @@ $blockMap = nmcp_EffectRenderer_particleTextures; $ptr = 11; case 11: - nmcrt_TextureManager_bindTexture($tessellator, $blockMap); + nmcrt_TextureManager_bindTexture($worldrenderer, $blockMap); if ($rt_suspending()) { break main; } @@ -753559,14 +755141,14 @@ if ($rt_suspending()) { break main; } - $legacyRenderingHasOccured = $tmp; - if ($legacyRenderingHasOccured) { - $legacyRenderingHasOccured = 33986; + var$12 = $tmp; + if (var$12) { + var$12 = 33986; $ptr = 17; continue main; } - var$19 = 0.00390625; - var$13 = var$19; + var$13 = 0.00390625; + var$19 = var$13; var$20 = 1.0; var$21 = 1.0; var$22 = 1.0; @@ -753578,8 +755160,8 @@ if ($rt_suspending()) { break main; } - nlevoed_GBufferAcceleratedEffectRenderer_isMaterialNormalTexture = $legacyRenderingHasOccured; - $tessellator = $this.$renderer; + nlevoed_GBufferAcceleratedEffectRenderer_isMaterialNormalTexture = var$12; + $worldrenderer = $this.$renderer; $ptr = 14; case 14: nmcrt_TextureMap_$callClinit(); @@ -753589,22 +755171,22 @@ $blockMap = nmcrt_TextureMap_locationBlocksTexture; $ptr = 15; case 15: - nmcrt_TextureManager_bindTexture($tessellator, $blockMap); + nmcrt_TextureManager_bindTexture($worldrenderer, $blockMap); if ($rt_suspending()) { break main; } - $tessellator = $this.$renderer; + $worldrenderer = $this.$renderer; $blockMap = nmcrt_TextureMap_locationBlocksTexture; $ptr = 16; case 16: - $tmp = nmcrt_TextureManager_getTexture($tessellator, $blockMap); + $tmp = nmcrt_TextureManager_getTexture($worldrenderer, $blockMap); if ($rt_suspending()) { break main; } - $tessellator = $tmp; - $blockMap = $tessellator; - var$13 = 1.0 / $blockMap.$width4; - var$19 = 1.0 / $blockMap.$height4; + $worldrenderer = $tmp; + $blockMap = $worldrenderer; + var$19 = 1.0 / $blockMap.$width4; + var$13 = 1.0 / $blockMap.$height4; var$20 = 1.0; var$21 = 1.0; var$22 = 1.0; @@ -753612,27 +755194,27 @@ $ptr = 20; continue main; case 17: - nlevo_GlStateManager_setActiveTexture($legacyRenderingHasOccured); + nlevo_GlStateManager_setActiveTexture(var$12); if ($rt_suspending()) { break main; } - $tessellator = $this.$renderer; + $worldrenderer = $this.$renderer; $blockMap = nmcp_EffectRenderer_particleMaterialsTextures; $ptr = 18; case 18: - nmcrt_TextureManager_bindTexture($tessellator, $blockMap); + nmcrt_TextureManager_bindTexture($worldrenderer, $blockMap); if ($rt_suspending()) { break main; } - $legacyRenderingHasOccured = 33984; + var$12 = 33984; $ptr = 19; case 19: - nlevo_GlStateManager_setActiveTexture($legacyRenderingHasOccured); + nlevo_GlStateManager_setActiveTexture(var$12); if ($rt_suspending()) { break main; } - var$19 = 0.00390625; - var$13 = var$19; + var$13 = 0.00390625; + var$19 = var$13; var$20 = 1.0; var$21 = 1.0; var$22 = 1.0; @@ -753651,12 +755233,12 @@ } $tessellator = $tmp; $worldrenderer = $tessellator.$worldRenderer; - $legacyRenderingHasOccured = 7; + var$12 = 7; nmcrv_DefaultVertexFormats_$callClinit(); $blockMap = nmcrv_DefaultVertexFormats_PARTICLE_POSITION_TEX_COLOR_LMAP; $ptr = 22; case 22: - nlevo_WorldRenderer_begin($worldrenderer, $legacyRenderingHasOccured, $blockMap); + nlevo_WorldRenderer_begin($worldrenderer, var$12, $blockMap); if ($rt_suspending()) { break main; } @@ -753669,8 +755251,8 @@ break main; } $k = 0; - var$26 = $this.$fxLayers.data; - if ($k >= var$26[$i].data[$j].$size) { + var$27 = $this.$fxLayers.data; + if ($k >= var$27[$i].data[$j].$size) { if (!$legacyRenderingHasOccured) { $ptr = 25; continue main; @@ -753678,7 +755260,7 @@ $ptr = 26; continue main; } - $blockMap = var$26[$i].data[$j]; + $blockMap = var$27[$i].data[$j]; $ptr = 24; case 24: $tmp = ju_ArrayList_get($blockMap, $k); @@ -753707,7 +755289,7 @@ if ($rt_suspending()) { break main; } - $tessellator = $this.$acceleratedParticleRenderer; + $worldrenderer = $this.$acceleratedParticleRenderer; $ptr = 28; continue main; case 26: @@ -753715,7 +755297,7 @@ if ($rt_suspending()) { break main; } - $tessellator = $this.$acceleratedParticleRenderer; + $worldrenderer = $this.$acceleratedParticleRenderer; $ptr = 28; continue main; case 27: @@ -753725,8 +755307,8 @@ if ($rt_suspending()) { break main; } - var$29 = $tmp; - if (var$29) + var$12 = $tmp; + if (var$12) break a; $ptr = 33; continue main; @@ -753743,8 +755325,8 @@ continue main; } $k = $k + 1 | 0; - var$26 = $this.$fxLayers.data; - if ($k >= var$26[$i].data[$j].$size) { + var$27 = $this.$fxLayers.data; + if ($k >= var$27[$i].data[$j].$size) { if (!$legacyRenderingHasOccured) { $ptr = 25; continue main; @@ -753752,11 +755334,11 @@ $ptr = 26; continue main; } - $blockMap = var$26[$i].data[$j]; + $blockMap = var$27[$i].data[$j]; $ptr = 24; continue main; case 28: - $tessellator.$draw1(var$13, var$19); + $worldrenderer.$draw1(var$19, var$13); if ($rt_suspending()) { break main; } @@ -753778,7 +755360,7 @@ $ptr = 5; continue main; } - $tessellator = $this.$fxLayers.data[$i].data[$j]; + $worldrenderer = $this.$fxLayers.data[$i].data[$j]; $ptr = 8; continue main; case 29: @@ -753796,22 +755378,20 @@ } $crashreportcategory = $tmp; $entityIn = $rt_s(5588); - $tessellator = new nmcp_EffectRenderer$3; - $tessellator.$this$0140 = $this; - $tessellator.$val$entityfx = $entityfx; + $worldrenderer = new nmcp_EffectRenderer$3; + $worldrenderer.$val$entityfx = $entityfx; $ptr = 31; case 31: - nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, $entityIn, $tessellator); + nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, $entityIn, $worldrenderer); if ($rt_suspending()) { break main; } $entityIn = $rt_s(5589); - $tessellator = new nmcp_EffectRenderer$4; - $tessellator.$this$0141 = $this; - $tessellator.$val$l = $i; + $worldrenderer = new nmcp_EffectRenderer$4; + $worldrenderer.$val$l = $i; $ptr = 32; case 32: - nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, $entityIn, $tessellator); + nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, $entityIn, $worldrenderer); if ($rt_suspending()) { break main; } @@ -753838,8 +755418,8 @@ continue main; } $k = $k + 1 | 0; - var$26 = $this.$fxLayers.data; - if ($k >= var$26[$i].data[$j].$size) { + var$27 = $this.$fxLayers.data; + if ($k >= var$27[$i].data[$j].$size) { if (!$legacyRenderingHasOccured) { $ptr = 25; continue main; @@ -753847,12 +755427,12 @@ $ptr = 26; continue main; } - $blockMap = var$26[$i].data[$j]; + $blockMap = var$27[$i].data[$j]; $ptr = 24; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $entityIn, $partialTicks, $pass, $f, $f1, $f2, $f3, $f4, var$9, var$10, var$11, $j, var$13, $i, var$15, $tessellator, $legacyRenderingHasOccured, $blockMap, var$19, var$20, var$21, var$22, var$23, $worldrenderer, $k, var$26, $entityfx, $throwable, var$29, $crashreport, $crashreportcategory, $ptr); + $rt_nativeThread().push($this, $entityIn, $partialTicks, $pass, $f, $f1, $f2, $f3, $f4, var$9, var$10, var$11, var$12, var$13, $i, var$15, $j, $worldrenderer, $blockMap, var$19, var$20, var$21, var$22, var$23, $tessellator, $legacyRenderingHasOccured, $k, var$27, $entityfx, $throwable, $crashreport, $crashreportcategory, $ptr); } function nmcp_EffectRenderer_renderLitParticles($this, $entityIn, $parFloat1) { var $f1, $f2, $f3, $f4, $f5, $i, $list, $j, $tessellator, $worldrenderer, $entityfx, $ptr, $tmp; @@ -756680,7 +758260,7 @@ continue main; } $i = nmcg_ScaledResolution_scaledWidth; - $ptr = 9; + $ptr = 10; continue main; case 5: nmu_EnumChatFormatting_$callClinit(); @@ -756688,30 +758268,37 @@ break main; } $parScaledResolution = nmu_EnumChatFormatting_ITALIC; - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); $ptr = 6; case 6: - jl_AbstractStringBuilder_append(var$5, $parScaledResolution); + $tmp = jl_String_valueOf($parScaledResolution); if ($rt_suspending()) { break main; } + $parScaledResolution = $tmp; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); $ptr = 7; case 7: - jl_AbstractStringBuilder_append(var$5, $s); + jl_AbstractStringBuilder_append(var$5, $parScaledResolution); if ($rt_suspending()) { break main; } $ptr = 8; case 8: + jl_AbstractStringBuilder_append(var$5, $s); + if ($rt_suspending()) { + break main; + } + $ptr = 9; + case 9: $tmp = jl_AbstractStringBuilder_toString(var$5); if ($rt_suspending()) { break main; } $s = $tmp; $i = nmcg_ScaledResolution_scaledWidth; - $ptr = 9; - case 9: + $ptr = 10; + case 10: $tmp = nmcg_GuiIngame_getFontRenderer($this); if ($rt_suspending()) { break main; @@ -756725,19 +758312,19 @@ if ($k > 255) $k = 255; if ($k > 0) { - $ptr = 10; + $ptr = 11; continue main; } $parScaledResolution = $this.$mc8.$mcProfiler; $ptr = 2; continue main; - case 10: + case 11: nlevo_GlStateManager_pushMatrix(); if ($rt_suspending()) { break main; } - $ptr = 11; - case 11: + $ptr = 12; + case 12: nlevo_GlStateManager_enableBlend(); if ($rt_suspending()) { break main; @@ -756746,14 +758333,14 @@ var$9 = 771; var$10 = 1; var$3 = 0; - $ptr = 12; - case 12: + $ptr = 13; + case 13: nlevo_GlStateManager_tryBlendFuncSeparate(var$8, var$9, var$10, var$3); if ($rt_suspending()) { break main; } - $ptr = 13; - case 13: + $ptr = 14; + case 14: $tmp = nmcg_GuiIngame_getFontRenderer($this); if ($rt_suspending()) { break main; @@ -756762,20 +758349,20 @@ var$11 = $i; var$12 = $j; var$3 = 16777215 + ($k << 24) | 0; - $ptr = 14; - case 14: - nmcg_FontRenderer_drawStringWithShadow($parScaledResolution, $s, var$11, var$12, var$3); - if ($rt_suspending()) { - break main; - } $ptr = 15; case 15: - nlevo_GlStateManager_disableBlend(); + nmcg_FontRenderer_drawStringWithShadow($parScaledResolution, $s, var$11, var$12, var$3); if ($rt_suspending()) { break main; } $ptr = 16; case 16: + nlevo_GlStateManager_disableBlend(); + if ($rt_suspending()) { + break main; + } + $ptr = 17; + case 17: nlevo_GlStateManager_popMatrix(); if ($rt_suspending()) { break main; @@ -756893,7 +758480,6 @@ } $collection = $tmp; $parScaledResolution = new nmcg_GuiIngame$1; - $parScaledResolution.$this$0142 = $this; cgcb_Preconditions_checkNotNull($collection); cgcb_Preconditions_checkNotNull($parScaledResolution); $arraylist1 = new cgcc_Iterables$6; @@ -756949,7 +758535,7 @@ $parScaledResolution.$val$numberToSkip0 = $i; cgcc_FluentIterable__init_($parScaledResolution); } - $ptr = 15; + $ptr = 16; continue main; case 5: $tmp = nmcg_GuiIngame_getFontRenderer($this); @@ -756967,7 +758553,7 @@ var$18 = $k1 - 2 | 0; if ($m_0 >= $n_0) return; - $ptr = 16; + $ptr = 17; continue main; case 6: $tmp = ju_ArrayList_get($arraylist1, $m); @@ -756999,38 +758585,45 @@ break main; } $collection = nmu_EnumChatFormatting_RED; - $k = $score.$scorePoints; - $scoreplayerteam1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($scoreplayerteam1); $ptr = 10; case 10: - jl_AbstractStringBuilder_append($scoreplayerteam1, $parScaledResolution); + $tmp = jl_String_valueOf($collection); if ($rt_suspending()) { break main; } - $parScaledResolution = $rt_s(18); + $collection = $tmp; + $k = $score.$scorePoints; + $scoreplayerteam1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($scoreplayerteam1); $ptr = 11; case 11: jl_AbstractStringBuilder_append($scoreplayerteam1, $parScaledResolution); if ($rt_suspending()) { break main; } + $parScaledResolution = $rt_s(18); $ptr = 12; case 12: + jl_AbstractStringBuilder_append($scoreplayerteam1, $parScaledResolution); + if ($rt_suspending()) { + break main; + } + $ptr = 13; + case 13: jl_AbstractStringBuilder_append($scoreplayerteam1, $collection); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append1($scoreplayerteam1, $k); - $ptr = 13; - case 13: + $ptr = 14; + case 14: $tmp = jl_AbstractStringBuilder_toString($scoreplayerteam1); if ($rt_suspending()) { break main; } $collection = $tmp; - $ptr = 14; - case 14: + $ptr = 15; + case 15: $tmp = nmcg_GuiIngame_getFontRenderer($this); if ($rt_suspending()) { break main; @@ -757045,7 +758638,7 @@ $l = $arraylist1.$size; $ptr = 5; continue main; - case 15: + case 16: $tmp = cgcc_Lists_newArrayList0($parScaledResolution); if ($rt_suspending()) { break main; @@ -757053,7 +758646,7 @@ $arraylist1 = $tmp; $ptr = 3; continue main; - case 16: + case 17: $tmp = ju_ArrayList_get($arraylist1, $m_0); if ($rt_suspending()) { break main; @@ -757062,47 +758655,54 @@ $score1 = $parScaledResolution; $j = $j + 1 | 0; $parScaledResolution = $score1.$scorePlayerName; - $ptr = 17; - case 17: + $ptr = 18; + case 18: $tmp = nms_Scoreboard_getPlayersTeam($scoreboard, $parScaledResolution); if ($rt_suspending()) { break main; } $scoreplayerteam1 = $tmp; $parScaledResolution = $score1.$scorePlayerName; - $ptr = 18; - case 18: + $ptr = 19; + case 19: $tmp = nms_ScorePlayerTeam_formatPlayerName($scoreplayerteam1, $parScaledResolution); if ($rt_suspending()) { break main; } $s1 = $tmp; - $ptr = 19; - case 19: + $ptr = 20; + case 20: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } $parScaledResolution = nmu_EnumChatFormatting_RED; + $ptr = 21; + case 21: + $tmp = jl_String_valueOf($parScaledResolution); + if ($rt_suspending()) { + break main; + } + $parScaledResolution = $tmp; $k = $score1.$scorePoints; $collection = new jl_StringBuilder; jl_AbstractStringBuilder__init_($collection); - $ptr = 20; - case 20: + $ptr = 22; + case 22: jl_AbstractStringBuilder_append($collection, $parScaledResolution); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append1($collection, $k); - $ptr = 21; - case 21: + $ptr = 23; + case 23: $tmp = jl_AbstractStringBuilder_toString($collection); if ($rt_suspending()) { break main; } $collection = $tmp; - $ptr = 22; - case 22: + $ptr = 24; + case 24: $tmp = nmcg_GuiIngame_getFontRenderer($this); if ($rt_suspending()) { break main; @@ -757110,21 +758710,6 @@ $parScaledResolution = $tmp; $k = $j1 - $rt_imul($j, $parScaledResolution.$FONT_HEIGHT) | 0; $l = (nmcg_ScaledResolution_scaledWidth - $b0 | 0) + 2 | 0; - $ptr = 23; - case 23: - $tmp = nmcg_GuiIngame_getFontRenderer($this); - if ($rt_suspending()) { - break main; - } - $parScaledResolution = $tmp; - $n = $k + $parScaledResolution.$FONT_HEIGHT | 0; - $m = 1342177280; - $ptr = 24; - case 24: - nmcg_Gui_drawRect(var$18, $k, $l, $n, $m); - if ($rt_suspending()) { - break main; - } $ptr = 25; case 25: $tmp = nmcg_GuiIngame_getFontRenderer($this); @@ -757132,10 +758717,11 @@ break main; } $parScaledResolution = $tmp; - $m = (-1); + $m = $k + $parScaledResolution.$FONT_HEIGHT | 0; + $n = 1342177280; $ptr = 26; case 26: - nmcg_FontRenderer_drawString($parScaledResolution, $s1, $k1, $k, $m); + nmcg_Gui_drawRect(var$18, $k, $l, $m, $n); if ($rt_suspending()) { break main; } @@ -757146,8 +758732,22 @@ break main; } $parScaledResolution = $tmp; + $m = (-1); $ptr = 28; case 28: + nmcg_FontRenderer_drawString($parScaledResolution, $s1, $k1, $k, $m); + if ($rt_suspending()) { + break main; + } + $ptr = 29; + case 29: + $tmp = nmcg_GuiIngame_getFontRenderer($this); + if ($rt_suspending()) { + break main; + } + $parScaledResolution = $tmp; + $ptr = 30; + case 30: $tmp = nmcg_GuiIngame_getFontRenderer($this); if ($rt_suspending()) { break main; @@ -757155,60 +758755,44 @@ $scoreplayerteam1 = $tmp; $m = $l - nmcg_FontRenderer_getStringWidth($scoreplayerteam1, $collection) | 0; $n = (-1); - $ptr = 29; - case 29: + $ptr = 31; + case 31: nmcg_FontRenderer_drawString($parScaledResolution, $collection, $m, $k, $n); if ($rt_suspending()) { break main; } if ($j == $arraylist1.$size) { $s3 = $parScoreObjective.$displayName2; - $ptr = 30; + $ptr = 32; continue main; } $m_0 = $m_0 + 1 | 0; if ($m_0 >= $n_0) return; - $ptr = 16; + $ptr = 17; continue main; - case 30: + case 32: $tmp = nmcg_GuiIngame_getFontRenderer($this); if ($rt_suspending()) { break main; } $parScaledResolution = $tmp; - $i1 = ($k - $parScaledResolution.$FONT_HEIGHT | 0) - 1 | 0; - $m = $k - 1 | 0; - $n = 1610612736; - $ptr = 31; - case 31: - nmcg_Gui_drawRect(var$18, $i1, $l, $m, $n); - if ($rt_suspending()) { - break main; - } - $n = 1342177280; - $ptr = 32; - case 32: - nmcg_Gui_drawRect(var$18, $m, $l, $k, $n); - if ($rt_suspending()) { - break main; - } + $m = ($k - $parScaledResolution.$FONT_HEIGHT | 0) - 1 | 0; + $n = $k - 1 | 0; + $i1 = 1610612736; $ptr = 33; case 33: - $tmp = nmcg_GuiIngame_getFontRenderer($this); + nmcg_Gui_drawRect(var$18, $m, $l, $n, $i1); if ($rt_suspending()) { break main; } - $parScaledResolution = $tmp; - $l = $k1 + ($i / 2 | 0) | 0; + $m = 1342177280; $ptr = 34; case 34: - $tmp = nmcg_GuiIngame_getFontRenderer($this); + nmcg_Gui_drawRect(var$18, $n, $l, $k, $m); if ($rt_suspending()) { break main; } - $collection = $tmp; - $l = $l - (nmcg_FontRenderer_getStringWidth($collection, $s3) / 2 | 0) | 0; $ptr = 35; case 35: $tmp = nmcg_GuiIngame_getFontRenderer($this); @@ -757216,18 +758800,34 @@ break main; } $collection = $tmp; - $k = $k - $collection.$FONT_HEIGHT | 0; - $m = (-1); + $m = $k1 + ($i / 2 | 0) | 0; $ptr = 36; case 36: - nmcg_FontRenderer_drawString($parScaledResolution, $s3, $l, $k, $m); + $tmp = nmcg_GuiIngame_getFontRenderer($this); + if ($rt_suspending()) { + break main; + } + $parScaledResolution = $tmp; + $l = $m - (nmcg_FontRenderer_getStringWidth($parScaledResolution, $s3) / 2 | 0) | 0; + $ptr = 37; + case 37: + $tmp = nmcg_GuiIngame_getFontRenderer($this); + if ($rt_suspending()) { + break main; + } + $parScaledResolution = $tmp; + $k = $k - $parScaledResolution.$FONT_HEIGHT | 0; + $m = (-1); + $ptr = 38; + case 38: + nmcg_FontRenderer_drawString($collection, $s3, $l, $k, $m); if ($rt_suspending()) { break main; } $m_0 = $m_0 + 1 | 0; if ($m_0 >= $n_0) return; - $ptr = 16; + $ptr = 17; continue main; default: $rt_invalidPointer(); }} @@ -762384,19 +763984,19 @@ if ($rateLimit !== nlevi_EnumServerRateLimit_OK) { if ($rateLimit === nlevi_EnumServerRateLimit_BLOCKED) { $pkt = $dat.$serverIP; - $ptr = 19; + $ptr = 20; continue main; } if ($rateLimit !== nlevi_EnumServerRateLimit_LOCKED_OUT) { - $ptr = 23; + $ptr = 24; continue main; } $pkt = $dat.$serverIP; - $ptr = 27; + $ptr = 29; continue main; } } - $ptr = 14; + $ptr = 15; continue main; case 2: $tmp = nlevs_RateLimitTracker_isLockedOut($pkt); @@ -762441,7 +764041,7 @@ } try { $rateLimit = new nlevit_TeaVMServerQuery; - $ptr = 13; + $ptr = 14; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -762455,7 +764055,7 @@ var$9 = $rt_s(5620); $r = $rt_createArray(jl_Object, 1); $r.data[0] = $addr; - $ptr = 15; + $ptr = 16; continue main; case 7: nmcm_ServerList_$callClinit(); @@ -762479,23 +764079,30 @@ break main; } $pkt = nmu_EnumChatFormatting_RED; - $addr = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($addr); $ptr = 10; case 10: - jl_AbstractStringBuilder_append($addr, $pkt); + $tmp = jl_String_valueOf($pkt); if ($rt_suspending()) { break main; } - $pkt = $rt_s(5622); + $pkt = $tmp; + $addr = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($addr); $ptr = 11; case 11: jl_AbstractStringBuilder_append($addr, $pkt); if ($rt_suspending()) { break main; } + $pkt = $rt_s(5622); $ptr = 12; case 12: + jl_AbstractStringBuilder_append($addr, $pkt); + if ($rt_suspending()) { + break main; + } + $ptr = 13; + case 13: $tmp = jl_AbstractStringBuilder_toString($addr); if ($rt_suspending()) { break main; @@ -762514,7 +764121,7 @@ } } return; - case 13: + case 14: a: { try { nlevit_TeaVMServerQuery__init_($rateLimit, $addr, $pkt); @@ -762534,7 +764141,7 @@ var$9 = $rt_s(5620); $r = $rt_createArray(jl_Object, 1); $r.data[0] = $addr; - $ptr = 15; + $ptr = 16; continue main; } $dat.$currentQuery = $rateLimit; @@ -762554,7 +764161,7 @@ } } return; - case 14: + case 15: $tmp = nlevit_TeaVMServerQuery_responsesAvailable($addr); if ($rt_suspending()) { break main; @@ -762562,21 +764169,21 @@ var$8 = $tmp; if (var$8 <= 0) { $pkt = $dat.$currentQuery; - $ptr = 17; + $ptr = 18; continue main; } $pkt = $dat.$currentQuery; $addr = $pkt.$queryResponses; - $ptr = 18; + $ptr = 19; continue main; - case 15: + case 16: nlevl_Logger_error($rateLimit, var$9, $r); if ($rt_suspending()) { break main; } $addr = nlevi_PlatformNetworking_logger; - $ptr = 16; - case 16: + $ptr = 17; + case 17: nlevl_Logger_error0($addr, $pkt); if ($rt_suspending()) { break main; @@ -762599,7 +764206,7 @@ } } return; - case 17: + case 18: $tmp = nlevit_TeaVMServerQuery_binaryResponsesAvailable($pkt); if ($rt_suspending()) { break main; @@ -762607,20 +764214,20 @@ var$8 = $tmp; if (var$8 <= 0) { $pkt = $dat.$currentQuery; - $ptr = 20; + $ptr = 21; continue main; } $pkt = $dat.$currentQuery; $addr = $pkt.$queryResponsesBytes; - $ptr = 21; + $ptr = 22; continue main; - case 18: + case 19: jl_Object_monitorEnter($addr); if ($rt_suspending()) { break main; } try { - $ptr = 22; + $ptr = 23; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -762629,14 +764236,14 @@ } jl_Object_monitorExit($addr); $rt_throw($pkt); - case 19: + case 20: nlevs_RateLimitTracker_registerBlock($pkt); if ($rt_suspending()) { break main; } - $ptr = 23; + $ptr = 24; continue main; - case 20: + case 21: $tmp = nlevi_IServerQuery_isOpen($pkt); if ($rt_suspending()) { break main; @@ -762644,7 +764251,7 @@ var$8 = $tmp; if (!var$8 && Long_gt($dat.$pingSentTime, Long_ZERO) && Long_gt(Long_sub(jl_System_currentTimeMillis(), $dat.$pingSentTime), Long_fromInt(2000)) && !$dat.$hasPing) { $pkt = $dat.$serverIP; - $ptr = 32; + $ptr = 34; continue main; } if ($total < 4) { @@ -762656,13 +764263,13 @@ } } return; - case 21: + case 22: jl_Object_monitorEnter($addr); if ($rt_suspending()) { break main; } try { - $ptr = 28; + $ptr = 30; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -762671,7 +764278,7 @@ } jl_Object_monitorExit($addr); $rt_throw($pkt); - case 22: + case 23: a: { try { $tmp = ju_LinkedList_size($addr); @@ -762682,7 +764289,7 @@ if (var$8 > 0) { $pkt = $pkt.$queryResponses; var$8 = 0; - $ptr = 29; + $ptr = 31; continue main; } $pkt = null; @@ -762697,31 +764304,38 @@ $rt_throw($pkt); } $addr = $dat.$currentQuery; - $ptr = 31; + $ptr = 33; continue main; - case 23: + case 24: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } $pkt = nmu_EnumChatFormatting_RED; + $ptr = 25; + case 25: + $tmp = jl_String_valueOf($pkt); + if ($rt_suspending()) { + break main; + } + $pkt = $tmp; $addr = new jl_StringBuilder; jl_AbstractStringBuilder__init_($addr); - $ptr = 24; - case 24: + $ptr = 26; + case 26: jl_AbstractStringBuilder_append($addr, $pkt); if ($rt_suspending()) { break main; } $pkt = $rt_s(5622); - $ptr = 25; - case 25: + $ptr = 27; + case 27: jl_AbstractStringBuilder_append($addr, $pkt); if ($rt_suspending()) { break main; } - $ptr = 26; - case 26: + $ptr = 28; + case 28: $tmp = jl_AbstractStringBuilder_toString($addr); if ($rt_suspending()) { break main; @@ -762731,14 +764345,14 @@ $dat.$pingToServer = Long_fromInt(-1); $dat.$hasPing = 1; return; - case 27: + case 29: nlevs_RateLimitTracker_registerLockOut($pkt); if ($rt_suspending()) { break main; } - $ptr = 23; + $ptr = 24; continue main; - case 28: + case 30: a: { try { $tmp = ju_LinkedList_size($addr); @@ -762749,7 +764363,7 @@ if (var$8 > 0) { $pkt = $pkt.$queryResponsesBytes; var$8 = 0; - $ptr = 30; + $ptr = 32; continue main; } $r = null; @@ -762764,9 +764378,9 @@ $rt_throw($pkt); } $pkt = $dat.$currentQuery; - $ptr = 33; + $ptr = 35; continue main; - case 29: + case 31: a: { try { $tmp = ju_AbstractSequentialList_remove($pkt, var$8); @@ -762786,9 +764400,9 @@ $rt_throw($pkt); } $addr = $dat.$currentQuery; - $ptr = 31; + $ptr = 33; continue main; - case 30: + case 32: a: { try { $tmp = ju_AbstractSequentialList_remove($pkt, var$8); @@ -762808,9 +764422,9 @@ $rt_throw($pkt); } $pkt = $dat.$currentQuery; - $ptr = 33; + $ptr = 35; continue main; - case 31: + case 33: $tmp = nlevit_TeaVMServerQuery_responsesAvailable($addr); if ($rt_suspending()) { break main; @@ -762819,24 +764433,24 @@ if (var$8 > 0) { $pkt = $dat.$currentQuery; $addr = $pkt.$queryResponses; - $ptr = 18; + $ptr = 19; continue main; } if (jl_String_equalsIgnoreCase($pkt.$responseType, $rt_s(5618)) && nlevi_QueryResponse_isResponseJSON($pkt)) { - $ptr = 41; + $ptr = 44; continue main; } $pkt = $dat.$currentQuery; - $ptr = 17; + $ptr = 18; continue main; - case 32: + case 34: $tmp = nlevs_RateLimitTracker_isProbablyLockedOut($pkt); if ($rt_suspending()) { break main; } var$8 = $tmp; if (var$8) { - $ptr = 34; + $ptr = 36; continue main; } $dat.$pingToServer = Long_fromInt(-1); @@ -762850,21 +764464,21 @@ } } return; - case 33: + case 35: $tmp = nlevit_TeaVMServerQuery_binaryResponsesAvailable($pkt); if ($rt_suspending()) { break main; } var$8 = $tmp; if (var$8 <= 0) { - $ptr = 40; + $ptr = 43; continue main; } $pkt = $dat.$currentQuery; $addr = $pkt.$queryResponsesBytes; - $ptr = 21; + $ptr = 22; continue main; - case 34: + case 36: nmcm_ServerList_$callClinit(); if ($rt_suspending()) { break main; @@ -762873,36 +764487,43 @@ $addr = $rt_s(5623); $r = $rt_createArray(jl_Object, 1); $r.data[0] = $dat.$serverIP; - $ptr = 35; - case 35: + $ptr = 37; + case 37: nlevl_Logger_error($pkt, $addr, $r); if ($rt_suspending()) { break main; } - $ptr = 36; - case 36: + $ptr = 38; + case 38: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } $pkt = nmu_EnumChatFormatting_RED; + $ptr = 39; + case 39: + $tmp = jl_String_valueOf($pkt); + if ($rt_suspending()) { + break main; + } + $pkt = $tmp; $addr = new jl_StringBuilder; jl_AbstractStringBuilder__init_($addr); - $ptr = 37; - case 37: + $ptr = 40; + case 40: jl_AbstractStringBuilder_append($addr, $pkt); if ($rt_suspending()) { break main; } $pkt = $rt_s(5622); - $ptr = 38; - case 38: + $ptr = 41; + case 41: jl_AbstractStringBuilder_append($addr, $pkt); if ($rt_suspending()) { break main; } - $ptr = 39; - case 39: + $ptr = 42; + case 42: $tmp = jl_AbstractStringBuilder_toString($addr); if ($rt_suspending()) { break main; @@ -762920,15 +764541,15 @@ } } return; - case 40: + case 43: nmcm_ServerData_setIconPacket($dat, $r); if ($rt_suspending()) { break main; } $pkt = $dat.$currentQuery; - $ptr = 20; + $ptr = 21; continue main; - case 41: + case 44: nmcm_ServerData_setMOTDFromQuery($dat, $pkt); if ($rt_suspending()) { break main; @@ -762938,7 +764559,7 @@ $dat.$hasPing = 1; } $pkt = $dat.$currentQuery; - $ptr = 17; + $ptr = 18; continue main; default: $rt_invalidPointer(); }} @@ -763501,7 +765122,7 @@ $ptr = 3; continue main; } - $ptr = 8; + $ptr = 9; continue main; case 2: nmcg_GuiScreen_drawHoveringText($this, $list, $i, $j); @@ -763517,53 +765138,13 @@ var$5 = nmu_EnumChatFormatting_GRAY; $ptr = 4; case 4: - $tmp = ju_ArrayList_get($list, $k); + $tmp = jl_String_valueOf(var$5); if ($rt_suspending()) { break main; } - var$8 = $tmp; - var$9 = var$8; - var$8 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$8); + var$5 = $tmp; $ptr = 5; case 5: - jl_AbstractStringBuilder_append(var$8, var$5); - if ($rt_suspending()) { - break main; - } - $ptr = 6; - case 6: - jl_AbstractStringBuilder_append(var$8, var$9); - if ($rt_suspending()) { - break main; - } - $ptr = 7; - case 7: - $tmp = jl_AbstractStringBuilder_toString(var$8); - if ($rt_suspending()) { - break main; - } - var$5 = $tmp; - ju_ArrayList_set($list, $k, var$5); - $k = $k + 1 | 0; - if ($k >= $l) { - $ptr = 2; - continue main; - } - if ($k) { - $ptr = 3; - continue main; - } - $ptr = 8; - case 8: - $tmp = nmi_ItemStack_getRarity($itemstack); - if ($rt_suspending()) { - break main; - } - var$5 = $tmp; - var$5 = var$5.$rarityColor; - $ptr = 9; - case 9: $tmp = ju_ArrayList_get($list, $k); if ($rt_suspending()) { break main; @@ -763572,20 +765153,20 @@ var$8 = var$8; var$9 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$9); - $ptr = 10; - case 10: + $ptr = 6; + case 6: jl_AbstractStringBuilder_append(var$9, var$5); if ($rt_suspending()) { break main; } - $ptr = 11; - case 11: + $ptr = 7; + case 7: jl_AbstractStringBuilder_append(var$9, var$8); if ($rt_suspending()) { break main; } - $ptr = 12; - case 12: + $ptr = 8; + case 8: $tmp = jl_AbstractStringBuilder_toString(var$9); if ($rt_suspending()) { break main; @@ -763601,7 +765182,61 @@ $ptr = 3; continue main; } - $ptr = 8; + $ptr = 9; + case 9: + $tmp = nmi_ItemStack_getRarity($itemstack); + if ($rt_suspending()) { + break main; + } + var$5 = $tmp; + var$5 = var$5.$rarityColor; + $ptr = 10; + case 10: + $tmp = jl_String_valueOf(var$5); + if ($rt_suspending()) { + break main; + } + var$8 = $tmp; + $ptr = 11; + case 11: + $tmp = ju_ArrayList_get($list, $k); + if ($rt_suspending()) { + break main; + } + var$5 = $tmp; + var$9 = var$5; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + $ptr = 12; + case 12: + jl_AbstractStringBuilder_append(var$5, var$8); + if ($rt_suspending()) { + break main; + } + $ptr = 13; + case 13: + jl_AbstractStringBuilder_append(var$5, var$9); + if ($rt_suspending()) { + break main; + } + $ptr = 14; + case 14: + $tmp = jl_AbstractStringBuilder_toString(var$5); + if ($rt_suspending()) { + break main; + } + var$5 = $tmp; + ju_ArrayList_set($list, $k, var$5); + $k = $k + 1 | 0; + if ($k >= $l) { + $ptr = 2; + continue main; + } + if ($k) { + $ptr = 3; + continue main; + } + $ptr = 9; continue main; default: $rt_invalidPointer(); }} @@ -763929,10 +765564,10 @@ } $itemstack = $statbase; if ($itemstack === null) { - $ptr = 45; + $ptr = 48; continue main; } - $ptr = 50; + $ptr = 54; continue main; } a: { @@ -763983,10 +765618,10 @@ } $itemstack = $statbase; if ($itemstack === null) { - $ptr = 45; + $ptr = 48; continue main; } - $ptr = 50; + $ptr = 54; continue main; case 3: b: { @@ -764011,10 +765646,10 @@ $itemstack = $statbase; } if ($itemstack === null) { - $ptr = 45; + $ptr = 48; continue main; } - $ptr = 50; + $ptr = 54; continue main; case 4: nmcg_GuiScreen_$callClinit(); @@ -764067,12 +765702,12 @@ } $nbttagcompound2 = $tmp; if (!($nbttagcompound2 instanceof nmn_NBTTagCompound)) { - $ptr = 18; + $ptr = 19; continue main; } $arraylist1 = cgcc_Lists_newArrayList(); $parIChatComponent = $rt_s(167); - $ptr = 22; + $ptr = 24; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -764103,10 +765738,10 @@ $itemstack = $statbase; } if ($itemstack === null) { - $ptr = 45; + $ptr = 48; continue main; } - $ptr = 50; + $ptr = 54; continue main; case 10: $tmp = nmu_ChatComponentStyle_getUnformattedText($parIChatComponent); @@ -764122,10 +765757,10 @@ } $statbase = $tmp; if ($statbase === null) { - $ptr = 25; + $ptr = 27; continue main; } - $ptr = 30; + $ptr = 33; continue main; case 12: $tmp = cgcb_AbstractIterator_hasNext($parIChatComponent); @@ -764134,11 +765769,11 @@ } var$10 = $tmp; if (var$10) { - $ptr = 33; + $ptr = 36; continue main; } $parIChatComponent = ju_Collections_unmodifiableList($hoverevent); - $ptr = 32; + $ptr = 35; continue main; case 13: nmu_EnumChatFormatting_$callClinit(); @@ -764146,63 +765781,50 @@ break main; } $parIChatComponent = nmu_EnumChatFormatting_RED; - $hoverevent = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($hoverevent); $ptr = 14; case 14: - jl_AbstractStringBuilder_append($hoverevent, $parIChatComponent); + $tmp = jl_String_valueOf($parIChatComponent); if ($rt_suspending()) { break main; } - $parIChatComponent = $rt_s(5627); + $parIChatComponent = $tmp; + $hoverevent = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($hoverevent); $ptr = 15; case 15: jl_AbstractStringBuilder_append($hoverevent, $parIChatComponent); if ($rt_suspending()) { break main; } + $parIChatComponent = $rt_s(5627); $ptr = 16; case 16: + jl_AbstractStringBuilder_append($hoverevent, $parIChatComponent); + if ($rt_suspending()) { + break main; + } + $ptr = 17; + case 17: $tmp = jl_AbstractStringBuilder_toString($hoverevent); if ($rt_suspending()) { break main; } $parIChatComponent = $tmp; - $ptr = 17; - case 17: + $ptr = 18; + case 18: nmcg_GuiScreen_drawCreativeTabHoveringText($this, $parIChatComponent, $parInt1, $parInt2); if ($rt_suspending()) { break main; } $ptr = 6; continue main; - case 18: + case 19: try { nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } $parIChatComponent = nmu_EnumChatFormatting_RED; - $hoverevent = jl_StringBuilder__init_(); - $ptr = 19; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof nmn_NBTException) { - } else { - throw $$e; - } - } - $ptr = 13; - continue main; - case 19: - try { - $tmp = jl_StringBuilder_append($hoverevent, $parIChatComponent); - if ($rt_suspending()) { - break main; - } - $parIChatComponent = $tmp; - $statbase = $rt_s(5627); $ptr = 20; continue main; } catch ($$e) { @@ -764216,10 +765838,12 @@ continue main; case 20: try { - jl_StringBuilder_append($parIChatComponent, $statbase); + $tmp = jl_String_valueOf($parIChatComponent); if ($rt_suspending()) { break main; } + $parIChatComponent = $tmp; + $hoverevent = jl_StringBuilder__init_(); $ptr = 21; continue main; } catch ($$e) { @@ -764233,12 +765857,13 @@ continue main; case 21: try { - $tmp = jl_StringBuilder_toString($hoverevent); + $tmp = jl_StringBuilder_append($hoverevent, $parIChatComponent); if ($rt_suspending()) { break main; } $parIChatComponent = $tmp; - $ptr = 35; + $statbase = $rt_s(5627); + $ptr = 22; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -764251,11 +765876,10 @@ continue main; case 22: try { - $tmp = nmn_NBTTagCompound_getString($nbttagcompound2, $parIChatComponent); + jl_StringBuilder_append($parIChatComponent, $statbase); if ($rt_suspending()) { break main; } - $parIChatComponent = $tmp; $ptr = 23; continue main; } catch ($$e) { @@ -764269,13 +765893,12 @@ continue main; case 23: try { - ju_ArrayList_add($arraylist1, $parIChatComponent); + $tmp = jl_StringBuilder_toString($hoverevent); if ($rt_suspending()) { break main; } - $parIChatComponent = $rt_s(1338); - var$10 = 8; - $ptr = 24; + $parIChatComponent = $tmp; + $ptr = 38; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -764288,18 +765911,12 @@ continue main; case 24: try { - $tmp = nmn_NBTTagCompound_hasKey0($nbttagcompound2, $parIChatComponent, var$10); + $tmp = nmn_NBTTagCompound_getString($nbttagcompound2, $parIChatComponent); if ($rt_suspending()) { break main; } - var$10 = $tmp; - if (!var$10) { - $parIChatComponent = $rt_s(1010); - $ptr = 36; - continue main; - } - $parIChatComponent = $rt_s(1338); - $ptr = 39; + $parIChatComponent = $tmp; + $ptr = 25; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -764311,50 +765928,100 @@ $ptr = 13; continue main; case 25: + try { + ju_ArrayList_add($arraylist1, $parIChatComponent); + if ($rt_suspending()) { + break main; + } + $parIChatComponent = $rt_s(1338); + var$10 = 8; + $ptr = 26; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof nmn_NBTException) { + } else { + throw $$e; + } + } + $ptr = 13; + continue main; + case 26: + try { + $tmp = nmn_NBTTagCompound_hasKey0($nbttagcompound2, $parIChatComponent, var$10); + if ($rt_suspending()) { + break main; + } + var$10 = $tmp; + if (!var$10) { + $parIChatComponent = $rt_s(1010); + $ptr = 39; + continue main; + } + $parIChatComponent = $rt_s(1338); + $ptr = 42; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof nmn_NBTException) { + } else { + throw $$e; + } + } + $ptr = 13; + continue main; + case 27: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } $parIChatComponent = nmu_EnumChatFormatting_RED; + $ptr = 28; + case 28: + $tmp = jl_String_valueOf($parIChatComponent); + if ($rt_suspending()) { + break main; + } + $parIChatComponent = $tmp; $hoverevent = new jl_StringBuilder; jl_AbstractStringBuilder__init_($hoverevent); - $ptr = 26; - case 26: + $ptr = 29; + case 29: jl_AbstractStringBuilder_append($hoverevent, $parIChatComponent); if ($rt_suspending()) { break main; } $parIChatComponent = $rt_s(5628); - $ptr = 27; - case 27: + $ptr = 30; + case 30: jl_AbstractStringBuilder_append($hoverevent, $parIChatComponent); if ($rt_suspending()) { break main; } - $ptr = 28; - case 28: + $ptr = 31; + case 31: $tmp = jl_AbstractStringBuilder_toString($hoverevent); if ($rt_suspending()) { break main; } $parIChatComponent = $tmp; - $ptr = 29; - case 29: + $ptr = 32; + case 32: nmcg_GuiScreen_drawCreativeTabHoveringText($this, $parIChatComponent, $parInt1, $parInt2); if ($rt_suspending()) { break main; } $ptr = 6; continue main; - case 30: + case 33: $tmp = $statbase.$getStatName(); if ($rt_suspending()) { break main; } $ichatcomponent = $tmp; $chatcomponenttranslation = new nmu_ChatComponentTranslation; - $ptr = 31; - case 31: + $ptr = 34; + case 34: $tmp = $statbase.$isAchievement(); if ($rt_suspending()) { break main; @@ -764364,88 +766031,33 @@ $hoverevent = new jl_StringBuilder; jl_AbstractStringBuilder__init_($hoverevent); $s1 = $rt_s(5630); - $ptr = 52; + $ptr = 56; continue main; - case 32: + case 35: nmcg_GuiScreen_drawHoveringText($this, $parIChatComponent, $parInt1, $parInt2); if ($rt_suspending()) { break main; } $ptr = 6; continue main; - case 33: + case 36: $tmp = cgcb_AbstractIterator_next($parIChatComponent); if ($rt_suspending()) { break main; } $statbase = $tmp; - $ptr = 34; - case 34: + $ptr = 37; + case 37: ju_ArrayList_add($hoverevent, $statbase); if ($rt_suspending()) { break main; } $ptr = 12; continue main; - case 35: - b: { - try { - nmcg_GuiScreen_drawCreativeTabHoveringText($this, $parIChatComponent, $parInt1, $parInt2); - if ($rt_suspending()) { - break main; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof nmn_NBTException) { - break b; - } else { - throw $$e; - } - } - $ptr = 6; - continue main; - } - $ptr = 13; - continue main; - case 36: - try { - $tmp = nmn_NBTTagCompound_getString($nbttagcompound2, $parIChatComponent); - if ($rt_suspending()) { - break main; - } - $parIChatComponent = $tmp; - $ptr = 37; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof nmn_NBTException) { - } else { - throw $$e; - } - } - $ptr = 13; - continue main; - case 37: - try { - ju_ArrayList_add($arraylist1, $parIChatComponent); - if ($rt_suspending()) { - break main; - } - $ptr = 38; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof nmn_NBTException) { - } else { - throw $$e; - } - } - $ptr = 13; - continue main; case 38: b: { try { - nmcg_GuiScreen_drawHoveringText($this, $arraylist1, $parInt1, $parInt2); + nmcg_GuiScreen_drawCreativeTabHoveringText($this, $parIChatComponent, $parInt1, $parInt2); if ($rt_suspending()) { break main; } @@ -764468,7 +766080,7 @@ if ($rt_suspending()) { break main; } - $s = $tmp; + $parIChatComponent = $tmp; $ptr = 40; continue main; } catch ($$e) { @@ -764482,13 +766094,10 @@ continue main; case 40: try { - $tmp = nme_EntityList_getIDFromString($s); + ju_ArrayList_add($arraylist1, $parIChatComponent); if ($rt_suspending()) { break main; } - var$10 = $tmp; - $parIChatComponent = jl_StringBuilder__init_(); - $hoverevent = $rt_s(5631); $ptr = 41; continue main; } catch ($$e) { @@ -764501,31 +766110,32 @@ $ptr = 13; continue main; case 41: - try { - $tmp = jl_StringBuilder_append($parIChatComponent, $hoverevent); - if ($rt_suspending()) { - break main; + b: { + try { + nmcg_GuiScreen_drawHoveringText($this, $arraylist1, $parInt1, $parInt2); + if ($rt_suspending()) { + break main; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof nmn_NBTException) { + break b; + } else { + throw $$e; + } } - $hoverevent = $tmp; - $ptr = 42; + $ptr = 6; continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof nmn_NBTException) { - } else { - throw $$e; - } } $ptr = 13; continue main; case 42: try { - $tmp = jl_StringBuilder_append($hoverevent, $s); + $tmp = nmn_NBTTagCompound_getString($nbttagcompound2, $parIChatComponent); if ($rt_suspending()) { break main; } - $hoverevent = $tmp; - $statbase = $rt_s(209); + $s = $tmp; $ptr = 43; continue main; } catch ($$e) { @@ -764539,12 +766149,13 @@ continue main; case 43: try { - $tmp = jl_StringBuilder_append($hoverevent, $statbase); + $tmp = nme_EntityList_getIDFromString($s); if ($rt_suspending()) { break main; } - $hoverevent = $tmp; - jl_StringBuilder_append5(jl_StringBuilder_append1($hoverevent, var$10), 41); + var$10 = $tmp; + $parIChatComponent = jl_StringBuilder__init_(); + $hoverevent = $rt_s(5631); $ptr = 44; continue main; } catch ($$e) { @@ -764558,12 +766169,12 @@ continue main; case 44: try { - $tmp = jl_StringBuilder_toString($parIChatComponent); + $tmp = jl_StringBuilder_append($parIChatComponent, $hoverevent); if ($rt_suspending()) { break main; } - $parIChatComponent = $tmp; - $ptr = 51; + $hoverevent = $tmp; + $ptr = 45; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -764575,56 +766186,14 @@ $ptr = 13; continue main; case 45: - nmu_EnumChatFormatting_$callClinit(); - if ($rt_suspending()) { - break main; - } - $parIChatComponent = nmu_EnumChatFormatting_RED; - $hoverevent = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($hoverevent); - $ptr = 46; - case 46: - jl_AbstractStringBuilder_append($hoverevent, $parIChatComponent); - if ($rt_suspending()) { - break main; - } - $parIChatComponent = $rt_s(5632); - $ptr = 47; - case 47: - jl_AbstractStringBuilder_append($hoverevent, $parIChatComponent); - if ($rt_suspending()) { - break main; - } - $ptr = 48; - case 48: - $tmp = jl_AbstractStringBuilder_toString($hoverevent); - if ($rt_suspending()) { - break main; - } - $parIChatComponent = $tmp; - $ptr = 49; - case 49: - nmcg_GuiScreen_drawCreativeTabHoveringText($this, $parIChatComponent, $parInt1, $parInt2); - if ($rt_suspending()) { - break main; - } - $ptr = 6; - continue main; - case 50: - nmcg_GuiScreen_renderToolTip($this, $itemstack, $parInt1, $parInt2); - if ($rt_suspending()) { - break main; - } - $ptr = 6; - continue main; - case 51: try { - ju_ArrayList_add($arraylist1, $parIChatComponent); + $tmp = jl_StringBuilder_append($hoverevent, $s); if ($rt_suspending()) { break main; } - $parIChatComponent = $rt_s(1010); - $ptr = 36; + $hoverevent = $tmp; + $statbase = $rt_s(209); + $ptr = 46; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -764635,27 +766204,132 @@ } $ptr = 13; continue main; - case 52: - jl_AbstractStringBuilder_append($hoverevent, $s1); + case 46: + try { + $tmp = jl_StringBuilder_append($hoverevent, $statbase); + if ($rt_suspending()) { + break main; + } + $hoverevent = $tmp; + jl_StringBuilder_append5(jl_StringBuilder_append1($hoverevent, var$10), 41); + $ptr = 47; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof nmn_NBTException) { + } else { + throw $$e; + } + } + $ptr = 13; + continue main; + case 47: + try { + $tmp = jl_StringBuilder_toString($parIChatComponent); + if ($rt_suspending()) { + break main; + } + $parIChatComponent = $tmp; + $ptr = 55; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof nmn_NBTException) { + } else { + throw $$e; + } + } + $ptr = 13; + continue main; + case 48: + nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } - $ptr = 53; - case 53: + $parIChatComponent = nmu_EnumChatFormatting_RED; + $ptr = 49; + case 49: + $tmp = jl_String_valueOf($parIChatComponent); + if ($rt_suspending()) { + break main; + } + $parIChatComponent = $tmp; + $hoverevent = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($hoverevent); + $ptr = 50; + case 50: jl_AbstractStringBuilder_append($hoverevent, $parIChatComponent); if ($rt_suspending()) { break main; } - $ptr = 54; + $parIChatComponent = $rt_s(5632); + $ptr = 51; + case 51: + jl_AbstractStringBuilder_append($hoverevent, $parIChatComponent); + if ($rt_suspending()) { + break main; + } + $ptr = 52; + case 52: + $tmp = jl_AbstractStringBuilder_toString($hoverevent); + if ($rt_suspending()) { + break main; + } + $parIChatComponent = $tmp; + $ptr = 53; + case 53: + nmcg_GuiScreen_drawCreativeTabHoveringText($this, $parIChatComponent, $parInt1, $parInt2); + if ($rt_suspending()) { + break main; + } + $ptr = 6; + continue main; case 54: + nmcg_GuiScreen_renderToolTip($this, $itemstack, $parInt1, $parInt2); + if ($rt_suspending()) { + break main; + } + $ptr = 6; + continue main; + case 55: + try { + ju_ArrayList_add($arraylist1, $parIChatComponent); + if ($rt_suspending()) { + break main; + } + $parIChatComponent = $rt_s(1010); + $ptr = 39; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof nmn_NBTException) { + } else { + throw $$e; + } + } + $ptr = 13; + continue main; + case 56: + jl_AbstractStringBuilder_append($hoverevent, $s1); + if ($rt_suspending()) { + break main; + } + $ptr = 57; + case 57: + jl_AbstractStringBuilder_append($hoverevent, $parIChatComponent); + if ($rt_suspending()) { + break main; + } + $ptr = 58; + case 58: $tmp = jl_AbstractStringBuilder_toString($hoverevent); if ($rt_suspending()) { break main; } $parIChatComponent = $tmp; var$15 = $rt_createArray(jl_Object, 0); - $ptr = 55; - case 55: + $ptr = 59; + case 59: nmu_ChatComponentTranslation__init_($chatcomponenttranslation, $parIChatComponent, var$15); if ($rt_suspending()) { break main; @@ -764663,16 +766337,16 @@ (nmu_ChatComponentStyle_getChatStyle($chatcomponenttranslation)).$italic = jl_Boolean_valueOf(1); if ($statbase instanceof nms_Achievement) { $parIChatComponent = $statbase; - $ptr = 56; + $ptr = 60; continue main; } $s1 = null; var$15 = $rt_createArray(jl_String, 2); var$16 = var$15.data; var$10 = 0; - $ptr = 57; + $ptr = 61; continue main; - case 56: + case 60: $tmp = nms_Achievement_getDescription($parIChatComponent); if ($rt_suspending()) { break main; @@ -764681,8 +766355,8 @@ var$15 = $rt_createArray(jl_String, 2); var$16 = var$15.data; var$10 = 0; - $ptr = 57; - case 57: + $ptr = 61; + case 61: $tmp = nmu_ChatComponentStyle_getFormattedText($ichatcomponent); if ($rt_suspending()) { break main; @@ -764690,49 +766364,49 @@ $parIChatComponent = $tmp; var$16[var$10] = $parIChatComponent; var$10 = 1; - $ptr = 58; - case 58: + $ptr = 62; + case 62: $tmp = nmu_ChatComponentStyle_getFormattedText($chatcomponenttranslation); if ($rt_suspending()) { break main; } $parIChatComponent = $tmp; var$16[var$10] = $parIChatComponent; - $ptr = 59; - case 59: + $ptr = 63; + case 63: $tmp = cgcc_Lists_newArrayList1(var$15); if ($rt_suspending()) { break main; } $arraylist = $tmp; if ($s1 === null) { - $ptr = 60; + $ptr = 64; continue main; } $parIChatComponent = $this.$fontRendererObj0; var$10 = 150; - $ptr = 61; + $ptr = 65; continue main; - case 60: + case 64: nmcg_GuiScreen_drawHoveringText($this, $arraylist, $parInt1, $parInt2); if ($rt_suspending()) { break main; } $ptr = 6; continue main; - case 61: + case 65: $tmp = nmcg_FontRenderer_listFormattedStringToWidth($parIChatComponent, $s1, var$10); if ($rt_suspending()) { break main; } $parIChatComponent = $tmp; - $ptr = 62; - case 62: + $ptr = 66; + case 66: ju_AbstractCollection_addAll($arraylist, $parIChatComponent); if ($rt_suspending()) { break main; } - $ptr = 60; + $ptr = 64; continue main; default: $rt_invalidPointer(); }} @@ -764830,17 +766504,14 @@ $ptr = 14; continue main; } - if (var$4 === nme_ClickEvent$Action_EAGLER_PLUGIN_DOWNLOAD) { - $parIChatComponent = $rt_s(392); - $clickevent = $clickevent.$value7; - $ptr = 19; + if (var$4 !== nme_ClickEvent$Action_EAGLER_PLUGIN_DOWNLOAD) { + $parIChatComponent = nmcg_GuiScreen_LOGGER; + $ptr = 15; continue main; } - $parIChatComponent = nmcg_GuiScreen_LOGGER; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - $uri = $rt_s(5635); - $ptr = 15; + $parIChatComponent = $rt_s(392); + $clickevent = $clickevent.$value7; + $ptr = 20; continue main; case 3: $this.$setText($parIChatComponent, var$3); @@ -764873,7 +766544,7 @@ break main; } $clickevent.$showSecurityWarning = 1; - var$4 = $rt_s(5636); + var$4 = $rt_s(5635); var$6 = $rt_createArray(jl_Object, 0); $ptr = 8; case 8: @@ -764883,7 +766554,7 @@ } var$4 = $tmp; $clickevent.$confirmButtonText0 = var$4; - var$4 = $rt_s(5637); + var$4 = $rt_s(5636); var$6 = $rt_createArray(jl_Object, 0); $ptr = 9; case 9: @@ -764893,7 +766564,7 @@ } var$4 = $tmp; $clickevent.$cancelButtonText = var$4; - var$4 = $rt_s(5638); + var$4 = $rt_s(5637); var$6 = $rt_createArray(jl_Object, 0); $ptr = 10; case 10: @@ -764903,7 +766574,7 @@ } var$4 = $tmp; $clickevent.$copyLinkButtonText = var$4; - var$4 = $rt_s(5639); + var$4 = $rt_s(5638); var$6 = $rt_createArray(jl_Object, 0); $ptr = 11; case 11: @@ -764934,52 +766605,62 @@ } return 1; case 15: - jl_AbstractStringBuilder_append(var$4, $uri); + $tmp = jl_String_valueOf($clickevent); if ($rt_suspending()) { break main; } + $clickevent = $tmp; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + $uri = $rt_s(5639); $ptr = 16; case 16: - jl_AbstractStringBuilder_append(var$4, $clickevent); + jl_AbstractStringBuilder_append(var$4, $uri); if ($rt_suspending()) { break main; } $ptr = 17; case 17: + jl_AbstractStringBuilder_append(var$4, $clickevent); + if ($rt_suspending()) { + break main; + } + $ptr = 18; + case 18: $tmp = jl_AbstractStringBuilder_toString(var$4); if ($rt_suspending()) { break main; } $clickevent = $tmp; - $ptr = 18; - case 18: + $ptr = 19; + case 19: nlevl_Logger_error1($parIChatComponent, $clickevent); if ($rt_suspending()) { break main; } return 1; - case 19: + case 20: $tmp = jl_String_equals($parIChatComponent, $clickevent); if ($rt_suspending()) { break main; } var$3 = $tmp; if (var$3) { - $ptr = 21; + $ptr = 22; continue main; } $parIChatComponent = nmcg_GuiScreen_LOGGER; $clickevent = $rt_s(5640); var$6 = $rt_createArray(jl_Object, 1); var$6.data[0] = $rt_s(392); - $ptr = 20; - case 20: + $ptr = 21; + case 21: nlevl_Logger_error($parIChatComponent, $clickevent, var$6); if ($rt_suspending()) { break main; } return 1; - case 21: + case 22: nlev_EaglerXBungeeVersion_startPluginDownload(); if ($rt_suspending()) { break main; @@ -770237,7 +771918,7 @@ } function nlevp_GuiScreenEditProfile() { var a = this; nmcg_GuiScreen.call(a); - a.$parent0 = null; + a.$parent = null; a.$usernameField = null; a.$dropDownOpen = 0; a.$dropDownOptions = null; @@ -770311,7 +771992,7 @@ $this.$mousey = 0; $this.$newSkinWaitSteveOrAlex = 0; $this.$screenTitle = $rt_s(5686); - $this.$parent0 = $parent; + $this.$parent = $parent; $ptr = 3; case 3: nlevp_GuiScreenEditProfile_updateOptions($this); @@ -770694,7 +772375,7 @@ $ptr = 17; continue main; } - $ptr = 23; + $ptr = 24; continue main; case 17: $tmp = nmcr_I18n_format($newSkin, var$9); @@ -770707,7 +772388,7 @@ $color = (-3355580); nlevi_EnumCursorType_$callClinit(); $newSkin = nlevi_EnumCursorType_HAND; - $ptr = 26; + $ptr = 27; continue main; } $text = $this.$fontRendererObj0; @@ -770717,23 +772398,30 @@ if ($rt_suspending()) { break main; } - $texture = nmu_EnumChatFormatting_UNDERLINE; - $newSkin = jl_StringBuilder__init_(); + $newSkin = nmu_EnumChatFormatting_UNDERLINE; $ptr = 19; case 19: + $tmp = jl_String_valueOf($newSkin); + if ($rt_suspending()) { + break main; + } + $texture = $tmp; + $newSkin = jl_StringBuilder__init_(); + $ptr = 20; + case 20: $tmp = jl_StringBuilder_append($newSkin, $texture); if ($rt_suspending()) { break main; } $texture = $tmp; - $ptr = 20; - case 20: + $ptr = 21; + case 21: jl_StringBuilder_append($texture, $capesText); if ($rt_suspending()) { break main; } - $ptr = 21; - case 21: + $ptr = 22; + case 22: $tmp = jl_StringBuilder_toString($newSkin); if ($rt_suspending()) { break main; @@ -770741,33 +772429,33 @@ $newSkin = $tmp; $skinX = 0; $skinY = 0; - $ptr = 22; - case 22: + $ptr = 23; + case 23: nmcg_Gui_drawString($this, $text, $newSkin, $skinX, $skinY, $color); if ($rt_suspending()) { break main; } - $ptr = 23; - case 23: + $ptr = 24; + case 24: nlevo_GlStateManager_popMatrix(); if ($rt_suspending()) { break main; } $newSkin = $this.$usernameField; - $ptr = 24; - case 24: + $ptr = 25; + case 25: nmcg_GuiTextField_drawTextBox($newSkin); if ($rt_suspending()) { break main; } if (!$this.$dropDownOpen && !$this.$newSkinWaitSteveOrAlex) { - $ptr = 27; + $ptr = 28; continue main; } $skinX = 0; $skinY = 0; - $ptr = 25; - case 25: + $ptr = 26; + case 26: nmcg_GuiScreen_drawScreen($this, $skinX, $skinY, $partialTicks); if ($rt_suspending()) { break main; @@ -770776,7 +772464,7 @@ $newSkin = $this.$fontRendererObj0; $texture = !$this.$mc15.$gameSettings.$enableFNAWSkins ? $rt_s(5693) : $rt_s(5694); var$9 = $rt_createArray(jl_Object, 0); - $ptr = 37; + $ptr = 38; continue main; } $skinY = ($this.$width7 / 2 | 0) - 20 | 0; @@ -770784,9 +772472,9 @@ $skinX = $skinY + 140 | 0; $skinHeight = $skinWidth + 22 | 0; $color = (-6250336); - $ptr = 28; + $ptr = 29; continue main; - case 26: + case 27: nlev_Mouse_showCursor($newSkin); if ($rt_suspending()) { break main; @@ -770794,7 +772482,7 @@ $text = $this.$fontRendererObj0; $ptr = 18; continue main; - case 27: + case 28: nmcg_GuiScreen_drawScreen($this, $mx, $my, $partialTicks); if ($rt_suspending()) { break main; @@ -770803,7 +772491,7 @@ $newSkin = $this.$fontRendererObj0; $texture = !$this.$mc15.$gameSettings.$enableFNAWSkins ? $rt_s(5693) : $rt_s(5694); var$9 = $rt_createArray(jl_Object, 0); - $ptr = 37; + $ptr = 38; continue main; } $skinY = ($this.$width7 / 2 | 0) - 20 | 0; @@ -770811,8 +772499,8 @@ $skinX = $skinY + 140 | 0; $skinHeight = $skinWidth + 22 | 0; $color = (-6250336); - $ptr = 28; - case 28: + $ptr = 29; + case 29: nmcg_Gui_drawRect($skinY, $skinWidth, $skinX, $skinHeight, $color); if ($rt_suspending()) { break main; @@ -770822,8 +772510,8 @@ $yy = $skinX - 21 | 0; $skinHeight = $skinHeight - 1 | 0; $mouseOver = (-16777216); - $ptr = 29; - case 29: + $ptr = 30; + case 30: nmcg_Gui_drawRect($color, $xx, $yy, $skinHeight, $mouseOver); if ($rt_suspending()) { break main; @@ -770831,8 +772519,8 @@ $color = $skinX - 20 | 0; $yy = $skinX - 1 | 0; $mouseOver = (-16777216); - $ptr = 30; - case 30: + $ptr = 31; + case 31: nmcg_Gui_drawRect($color, $xx, $yy, $skinHeight, $mouseOver); if ($rt_suspending()) { break main; @@ -770841,29 +772529,29 @@ var$14 = 1.0; var$15 = 1.0; var$16 = 1.0; - $ptr = 31; - case 31: + $ptr = 32; + case 32: nlevo_GlStateManager_color($partialTicks, var$14, var$15, var$16); if ($rt_suspending()) { break main; } $newSkin = $this.$mc15; - $ptr = 32; - case 32: + $ptr = 33; + case 33: $tmp = nmc_Minecraft_getTextureManager($newSkin); if ($rt_suspending()) { break main; } $newSkin = $tmp; - $ptr = 33; - case 33: + $ptr = 34; + case 34: nlevp_GuiScreenEditProfile_$callClinit(); if ($rt_suspending()) { break main; } $texture = nlevp_GuiScreenEditProfile_eaglerGui; - $ptr = 34; - case 34: + $ptr = 35; + case 35: nmcrt_TextureManager_bindTexture($newSkin, $texture); if ($rt_suspending()) { break main; @@ -770874,8 +772562,8 @@ $yy = 0; $mouseOver = 16; $skinX = 16; - $ptr = 35; - case 35: + $ptr = 36; + case 36: nmcg_Gui_drawTexturedModalRect($this, $skinHeight, $color, $xx, $yy, $mouseOver, $skinX); if ($rt_suspending()) { break main; @@ -770885,8 +772573,8 @@ $skinX = $skinY + 5 | 0; $skinY = $skinWidth + 7 | 0; $skinWidth = 14737632; - $ptr = 36; - case 36: + $ptr = 37; + case 37: nmcg_Gui_drawString($this, $newSkin, $texture, $skinX, $skinY, $skinWidth); if ($rt_suspending()) { break main; @@ -770911,15 +772599,15 @@ if ($this.$scrollPos < 0) $this.$scrollPos = 0; if (!$this.$dropDownOpen) { - $ptr = 39; + $ptr = 40; continue main; } $skinY = $skinWidth + 140 | 0; $skinX = $skinHeight + $mouseOver | 0; $color = (-6250336); - $ptr = 40; + $ptr = 41; continue main; - case 37: + case 38: $tmp = nmcr_I18n_format($texture, var$9); if ($rt_suspending()) { break main; @@ -770928,8 +772616,8 @@ $skinX = $this.$width7 / 2 | 0; $skinY = ($this.$height7 / 6 | 0) + 150 | 0; $skinWidth = 10526880; - $ptr = 38; - case 38: + $ptr = 39; + case 39: nmcg_Gui_drawCenteredString($this, $newSkin, $texture, $skinX, $skinY, $skinWidth); if ($rt_suspending()) { break main; @@ -770939,16 +772627,16 @@ $skinX = $skinY + 140 | 0; $skinHeight = $skinWidth + 22 | 0; $color = (-6250336); - $ptr = 28; + $ptr = 29; continue main; - case 39: + case 40: $tmp = nlev_EagRuntime_getConfiguration(); if ($rt_suspending()) { break main; } $newSkin = $tmp; if (!nlevit_TeaVMClientConfigAdapter_isDemo($newSkin)) { - $ptr = 42; + $ptr = 43; continue main; } $xx = ($this.$width7 / 2 | 0) - 80 | 0; @@ -770959,19 +772647,19 @@ $skinY = 70; $skinWidth = 120; $newSkin = nlevp_EaglerProfile_customSkins; - $ptr = 49; + $ptr = 50; continue main; } } if ($skid >= 0) { - $ptr = 47; + $ptr = 48; continue main; } $newSkin = nlevp_EaglerProfile_customSkins; $skinX = $this.$selectedSlot; - $ptr = 48; + $ptr = 49; continue main; - case 40: + case 41: nmcg_Gui_drawRect($skinWidth, $skinHeight, $skinY, $skinX, $color); if ($rt_suspending()) { break main; @@ -770981,8 +772669,8 @@ $yy = $skinY - 1 | 0; $skinX = $skinX - 1 | 0; $cc = (-16777216); - $ptr = 41; - case 41: + $ptr = 42; + case 42: nmcg_Gui_drawRect($color, $xx, $yy, $skinX, $cc); if ($rt_suspending()) { break main; @@ -771003,7 +772691,7 @@ $skinWidth = $skinX + 4 | 0; $skinX = $skinX + 14 | 0; $w = 2013265919; - $ptr = 56; + $ptr = 58; continue main; } if ($xx >= 0 && $cc < 0) { @@ -771012,7 +772700,7 @@ $skinWidth = $skinX + 4 | 0; $skinX = $skinX + 14 | 0; $w = 1442840575; - $ptr = 74; + $ptr = 76; continue main; } } @@ -771020,7 +772708,7 @@ $texture = $this.$dropDownOptions.data[$i + $this.$scrollPos | 0]; $skinX = $scrollerSize + ($i * 10 | 0) | 0; $skinWidth = 14737632; - $ptr = 57; + $ptr = 59; continue main; } $i = $i + 1 | 0; @@ -771034,9 +772722,9 @@ $skinWidth = $skinY + 1 | 0; $skinY = $skinY + $scrollerSize | 0; $skinHeight = (-7829368); - $ptr = 46; + $ptr = 47; continue main; - case 42: + case 43: nlevo_GlStateManager_pushMatrix(); if ($rt_suspending()) { break main; @@ -771044,8 +772732,8 @@ $partialTicks = 0.75; var$14 = 0.75; var$15 = 0.75; - $ptr = 43; - case 43: + $ptr = 44; + case 44: nlevo_GlStateManager_scale($partialTicks, var$14, var$15); if ($rt_suspending()) { break main; @@ -771054,16 +772742,16 @@ var$14 = 1.0; var$15 = 1.0; var$16 = 1.0; - $ptr = 44; - case 44: + $ptr = 45; + case 45: nlevo_GlStateManager_color($partialTicks, var$14, var$15, var$16); if ($rt_suspending()) { break main; } $newSkin = $rt_s(5695); var$9 = $rt_createArray(jl_Object, 0); - $ptr = 45; - case 45: + $ptr = 46; + case 46: $tmp = nmcr_I18n_format($newSkin, var$9); if ($rt_suspending()) { break main; @@ -771073,21 +772761,21 @@ $hover = $mx > 1 && $my > 1 && $mx < ((($w * 3 | 0) / 4 | 0) + 7 | 0) && $my < 12 ? 1 : 0; if (!$hover) { $capesText = $this.$mc15.$fontRendererObj; - $ptr = 51; + $ptr = 52; continue main; } nlevi_EnumCursorType_$callClinit(); $newSkin = nlevi_EnumCursorType_HAND; - $ptr = 55; + $ptr = 57; continue main; - case 46: + case 47: nmcg_Gui_drawRect($skinX, $skinWidth, $yy, $skinY, $skinHeight); if ($rt_suspending()) { break main; } - $ptr = 39; + $ptr = 40; continue main; - case 47: + case 48: $tmp = nlevp_DefaultSkins_getSkinFromId($skid); if ($rt_suspending()) { break main; @@ -771100,9 +772788,9 @@ if ($skinX) $my = $this.$height7 / 2 | 0; $skinX = 0; - $ptr = 69; + $ptr = 71; continue main; - case 48: + case 49: $tmp = ju_ArrayList_get($newSkin, $skinX); if ($rt_suspending()) { break main; @@ -771115,9 +772803,9 @@ if ($skinX) $my = $this.$height7 / 2 | 0; $skinX = 0; - $ptr = 69; + $ptr = 71; continue main; - case 49: + case 50: $tmp = ju_ArrayList_get($newSkin, $skinX); if ($rt_suspending()) { break main; @@ -771125,8 +772813,8 @@ $newSkin = $tmp; $newSkin = $newSkin; $skinX = 256; - $ptr = 50; - case 50: + $ptr = 51; + case 51: nlevo_GlStateManager_clear($skinX); if ($rt_suspending()) { break main; @@ -771137,30 +772825,37 @@ $skid = $skinHeight + 117 | 0; $mouseOver = $mx >= $skinX && $my >= $skinHeight && $mx < ($skinX + $skinY | 0) && $my < ($skinHeight + $skinWidth | 0) ? 1 : 0; $cc = !$mouseOver ? (-11184811) : (-2237031); - $ptr = 60; + $ptr = 62; continue main; - case 51: + case 52: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } - $texture = nmu_EnumChatFormatting_UNDERLINE; + $newSkin = nmu_EnumChatFormatting_UNDERLINE; + $ptr = 53; + case 53: + $tmp = jl_String_valueOf($newSkin); + if ($rt_suspending()) { + break main; + } + $texture = $tmp; $newSkin = jl_StringBuilder__init_(); - $ptr = 52; - case 52: + $ptr = 54; + case 54: $tmp = jl_StringBuilder_append($newSkin, $texture); if ($rt_suspending()) { break main; } $texture = $tmp; - $ptr = 53; - case 53: + $ptr = 55; + case 55: jl_StringBuilder_append($texture, $text); if ($rt_suspending()) { break main; } - $ptr = 54; - case 54: + $ptr = 56; + case 56: $tmp = jl_StringBuilder_toString($newSkin); if ($rt_suspending()) { break main; @@ -771169,17 +772864,17 @@ $skinX = 5; $skinY = 5; $skinWidth = !$hover ? (-3355444) : (-1118686); - $ptr = 58; + $ptr = 60; continue main; - case 55: + case 57: nlev_Mouse_showCursor($newSkin); if ($rt_suspending()) { break main; } $capesText = $this.$mc15.$fontRendererObj; - $ptr = 51; + $ptr = 52; continue main; - case 56: + case 58: nmcg_Gui_drawRect($color, $skinWidth, $yy, $skinX, $w); if ($rt_suspending()) { break main; @@ -771188,8 +772883,8 @@ $texture = $this.$dropDownOptions.data[$i + $this.$scrollPos | 0]; $skinX = $scrollerSize + ($i * 10 | 0) | 0; $skinWidth = 14737632; - $ptr = 57; - case 57: + $ptr = 59; + case 59: nmcg_Gui_drawString($this, $newSkin, $texture, $hover, $skinX, $skinWidth); if ($rt_suspending()) { break main; @@ -771208,7 +772903,7 @@ $skinWidth = $skinX + 4 | 0; $skinX = $skinX + 14 | 0; $w = 2013265919; - $ptr = 56; + $ptr = 58; continue main; } if ($xx >= 0 && $cc < 0) { @@ -771217,7 +772912,7 @@ $skinWidth = $skinX + 4 | 0; $skinX = $skinX + 14 | 0; $w = 1442840575; - $ptr = 74; + $ptr = 76; continue main; } } @@ -771237,15 +772932,15 @@ $skinWidth = $skinY + 1 | 0; $skinY = $skinY + $scrollerSize | 0; $skinHeight = (-7829368); - $ptr = 46; + $ptr = 47; continue main; - case 58: + case 60: nmcg_Gui_drawString($this, $capesText, $newSkin, $skinX, $skinY, $skinWidth); if ($rt_suspending()) { break main; } - $ptr = 59; - case 59: + $ptr = 61; + case 61: nlevo_GlStateManager_popMatrix(); if ($rt_suspending()) { break main; @@ -771258,27 +772953,27 @@ $skinY = 70; $skinWidth = 120; $newSkin = nlevp_EaglerProfile_customSkins; - $ptr = 49; + $ptr = 50; continue main; } } if ($skid >= 0) { - $ptr = 47; + $ptr = 48; continue main; } $newSkin = nlevp_EaglerProfile_customSkins; $skinX = $this.$selectedSlot; - $ptr = 48; + $ptr = 49; continue main; - case 60: + case 62: nlevo_GlStateManager_enableBlend(); if ($rt_suspending()) { break main; } $color = 770; $xx = 771; - $ptr = 61; - case 61: + $ptr = 63; + case 63: nlevo_GlStateManager_blendFunc($color, $xx); if ($rt_suspending()) { break main; @@ -771288,8 +772983,8 @@ $yy = $this.$width7; $w = $this.$height7; $hover = (-1157627904); - $ptr = 62; - case 62: + $ptr = 64; + case 64: nmcg_Gui_drawRect($color, $xx, $yy, $w, $hover); if ($rt_suspending()) { break main; @@ -771297,42 +772992,42 @@ $color = $skinX + $skinY | 0; $xx = $skinHeight + $skinWidth | 0; $yy = (-1157627904); - $ptr = 63; - case 63: + $ptr = 65; + case 65: nmcg_Gui_drawRect($skinX, $skinHeight, $color, $xx, $yy); if ($rt_suspending()) { break main; } - $ptr = 64; - case 64: + $ptr = 66; + case 66: nlevo_GlStateManager_disableBlend(); if ($rt_suspending()) { break main; } $yy = $skinX + 1 | 0; - $ptr = 65; - case 65: + $ptr = 67; + case 67: nmcg_Gui_drawRect($skinX, $skinHeight, $yy, $xx, $cc); if ($rt_suspending()) { break main; } $yy = $skinHeight + 1 | 0; - $ptr = 66; - case 66: + $ptr = 68; + case 68: nmcg_Gui_drawRect($skinX, $skinHeight, $color, $yy, $cc); if ($rt_suspending()) { break main; } $yy = $color - 1 | 0; - $ptr = 67; - case 67: + $ptr = 69; + case 69: nmcg_Gui_drawRect($yy, $skinHeight, $color, $xx, $cc); if ($rt_suspending()) { break main; } $skinHeight = $xx - 1 | 0; - $ptr = 68; - case 68: + $ptr = 70; + case 70: nmcg_Gui_drawRect($skinX, $skinHeight, $color, $xx, $cc); if ($rt_suspending()) { break main; @@ -771341,35 +773036,35 @@ $skinX = 0; $texture = nlevp_SkinModel_STEVE; $selectedSkinModel = nlevp_CustomSkin_getResource($newSkin); - $ptr = 71; + $ptr = 73; continue main; } $texture = $this.$fontRendererObj0; $selectedSkinModel = $rt_s(5696); $skinX = $xx + 6 | 0; - $ptr = 73; + $ptr = 75; continue main; - case 69: - $tmp = nlevp_EaglerProfile_getActiveCapeResourceLocation(); - if ($rt_suspending()) { - break main; - } - $newSkin = $tmp; - $ptr = 70; - case 70: - nlevp_SkinPreviewRenderer_renderPreview($xx, $yy, $mx, $my, $skinX, $selectedSkinModel, $texture, $newSkin); - if ($rt_suspending()) { - break main; - } - return; case 71: $tmp = nlevp_EaglerProfile_getActiveCapeResourceLocation(); if ($rt_suspending()) { break main; } - $capesText = $tmp; + $newSkin = $tmp; $ptr = 72; case 72: + nlevp_SkinPreviewRenderer_renderPreview($xx, $yy, $mx, $my, $skinX, $selectedSkinModel, $texture, $newSkin); + if ($rt_suspending()) { + break main; + } + return; + case 73: + $tmp = nlevp_EaglerProfile_getActiveCapeResourceLocation(); + if ($rt_suspending()) { + break main; + } + $capesText = $tmp; + $ptr = 74; + case 74: nlevp_SkinPreviewRenderer_renderPreview($numberOfCustomSkins, $skid, $mx, $my, $skinX, $texture, $selectedSkinModel, $capesText); if ($rt_suspending()) { break main; @@ -771380,9 +773075,9 @@ $skid = $skinHeight + 117 | 0; $color = $mx >= $skinX && $my >= $skinHeight && $mx < ($skinX + $skinY | 0) && $my < ($skinHeight + $skinWidth | 0) ? 1 : 0; $xx = !$color ? (-11184811) : (-2237031); - $ptr = 75; + $ptr = 77; continue main; - case 73: + case 75: nmcg_Gui_drawCenteredString($this, $texture, $selectedSkinModel, $numberOfCustomSkins, $skinX, $cc); if ($rt_suspending()) { break main; @@ -771390,9 +773085,9 @@ $skinX = 0; $texture = nlevp_SkinModel_STEVE; $selectedSkinModel = nlevp_CustomSkin_getResource($newSkin); - $ptr = 71; + $ptr = 73; continue main; - case 74: + case 76: nmcg_Gui_drawRect($color, $skinWidth, $yy, $skinX, $w); if ($rt_suspending()) { break main; @@ -771401,17 +773096,17 @@ $texture = $this.$dropDownOptions.data[$i + $this.$scrollPos | 0]; $skinX = $scrollerSize + ($i * 10 | 0) | 0; $skinWidth = 14737632; - $ptr = 57; + $ptr = 59; continue main; - case 75: + case 77: nlevo_GlStateManager_enableBlend(); if ($rt_suspending()) { break main; } $yy = 770; $mouseOver = 771; - $ptr = 76; - case 76: + $ptr = 78; + case 78: nlevo_GlStateManager_blendFunc($yy, $mouseOver); if ($rt_suspending()) { break main; @@ -771419,42 +773114,42 @@ $skinY = $skinX + $skinY | 0; $skinWidth = $skinHeight + $skinWidth | 0; $yy = (-1157627904); - $ptr = 77; - case 77: + $ptr = 79; + case 79: nmcg_Gui_drawRect($skinX, $skinHeight, $skinY, $skinWidth, $yy); if ($rt_suspending()) { break main; } - $ptr = 78; - case 78: + $ptr = 80; + case 80: nlevo_GlStateManager_disableBlend(); if ($rt_suspending()) { break main; } $yy = $skinX + 1 | 0; - $ptr = 79; - case 79: + $ptr = 81; + case 81: nmcg_Gui_drawRect($skinX, $skinHeight, $yy, $skinWidth, $xx); if ($rt_suspending()) { break main; } $yy = $skinHeight + 1 | 0; - $ptr = 80; - case 80: + $ptr = 82; + case 82: nmcg_Gui_drawRect($skinX, $skinHeight, $skinY, $yy, $xx); if ($rt_suspending()) { break main; } $yy = $skinY - 1 | 0; - $ptr = 81; - case 81: + $ptr = 83; + case 83: nmcg_Gui_drawRect($yy, $skinHeight, $skinY, $skinWidth, $xx); if ($rt_suspending()) { break main; } $skinHeight = $skinWidth - 1 | 0; - $ptr = 82; - case 82: + $ptr = 84; + case 84: nmcg_Gui_drawRect($skinX, $skinHeight, $skinY, $skinWidth, $xx); if ($rt_suspending()) { break main; @@ -771463,28 +773158,28 @@ $skinX = 0; $texture = nlevp_SkinModel_ALEX; $newSkin = nlevp_CustomSkin_getResource($newSkin); - $ptr = 83; + $ptr = 85; continue main; } $texture = $this.$fontRendererObj0; $selectedSkinModel = $rt_s(5697); $skinX = $skinWidth + 8 | 0; - $ptr = 85; + $ptr = 87; continue main; - case 83: + case 85: $tmp = nlevp_EaglerProfile_getActiveCapeResourceLocation(); if ($rt_suspending()) { break main; } $selectedSkinModel = $tmp; - $ptr = 84; - case 84: + $ptr = 86; + case 86: nlevp_SkinPreviewRenderer_renderPreview($numberOfCustomSkins, $skid, $mx, $my, $skinX, $texture, $newSkin, $selectedSkinModel); if ($rt_suspending()) { break main; } return; - case 85: + case 87: nmcg_Gui_drawCenteredString($this, $texture, $selectedSkinModel, $numberOfCustomSkins, $skinX, $xx); if ($rt_suspending()) { break main; @@ -771492,7 +773187,7 @@ $skinX = 0; $texture = nlevp_SkinModel_ALEX; $newSkin = nlevp_CustomSkin_getResource($newSkin); - $ptr = 83; + $ptr = 85; continue main; default: $rt_invalidPointer(); }} @@ -771562,7 +773257,7 @@ break main; } $par1GuiButton = $this.$mc15; - var$3 = $this.$parent0; + var$3 = $this.$parent; $ptr = 2; case 2: nmc_Minecraft_displayGuiScreen($par1GuiButton, var$3); @@ -782512,9 +784207,6 @@ var$4 = $rt_s(5725); if (!var$5) { $key = new jl_IllegalArgumentException; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - var$7 = $rt_s(5726); $ptr = 2; continue main; } @@ -782524,44 +784216,61 @@ var$4 = $bucketHead.$key5; continue main; case 2: - jl_AbstractStringBuilder_append(var$6, var$7); + $tmp = jl_String_valueOf($entry); if ($rt_suspending()) { break main; } + $entry = $tmp; $ptr = 3; case 3: - jl_AbstractStringBuilder_append(var$6, var$4); + $tmp = jl_String_valueOf($bucketHead); if ($rt_suspending()) { break main; } - var$4 = $rt_s(18); + $bucketHead = $tmp; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + var$7 = $rt_s(5726); $ptr = 4; case 4: - jl_AbstractStringBuilder_append(var$6, var$4); + jl_AbstractStringBuilder_append(var$6, var$7); if ($rt_suspending()) { break main; } $ptr = 5; case 5: - jl_AbstractStringBuilder_append(var$6, $entry); + jl_AbstractStringBuilder_append(var$6, var$4); if ($rt_suspending()) { break main; } - $entry = $rt_s(1392); + var$4 = $rt_s(18); $ptr = 6; case 6: - jl_AbstractStringBuilder_append(var$6, $entry); + jl_AbstractStringBuilder_append(var$6, var$4); if ($rt_suspending()) { break main; } $ptr = 7; case 7: + jl_AbstractStringBuilder_append(var$6, $entry); + if ($rt_suspending()) { + break main; + } + $entry = $rt_s(1392); + $ptr = 8; + case 8: + jl_AbstractStringBuilder_append(var$6, $entry); + if ($rt_suspending()) { + break main; + } + $ptr = 9; + case 9: jl_AbstractStringBuilder_append(var$6, $bucketHead); if ($rt_suspending()) { break main; } - $ptr = 8; - case 8: + $ptr = 10; + case 10: $tmp = jl_AbstractStringBuilder_toString(var$6); if ($rt_suspending()) { break main; @@ -782623,7 +784332,7 @@ function cgcc_RegularImmutableMap_createEntrySet($this) { var var$1; var$1 = new cgcc_RegularImmutableMap$EntrySet; - var$1.$this$0143 = $this; + var$1.$this$0100 = $this; return var$1; } var nlevf_ExecutionException = $rt_classWithoutFields(jl_RuntimeException); @@ -794494,30 +796203,38 @@ break main; } var$5 = $tmp; - if (!var$5) { - var$2 = nmca_SoundCategory_ID_CATEGORY_MAP; - var$4 = jl_Integer_valueOf0($soundcategory.$categoryId); - $ptr = 16; + if (var$5) { + var$2 = new jl_Error; + $ptr = 13; continue main; } - var$2 = new jl_Error; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - var$8 = $rt_s(5863); - $ptr = 13; + var$2 = nmca_SoundCategory_ID_CATEGORY_MAP; + var$4 = jl_Integer_valueOf0($soundcategory.$categoryId); + $ptr = 17; + continue main; case 13: - jl_AbstractStringBuilder_append(var$4, var$8); + $tmp = jl_String_valueOf($soundcategory); if ($rt_suspending()) { break main; } + $soundcategory = $tmp; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + var$8 = $rt_s(5863); $ptr = 14; case 14: - jl_AbstractStringBuilder_append(var$4, $soundcategory); + jl_AbstractStringBuilder_append(var$4, var$8); if ($rt_suspending()) { break main; } $ptr = 15; case 15: + jl_AbstractStringBuilder_append(var$4, $soundcategory); + if ($rt_suspending()) { + break main; + } + $ptr = 16; + case 16: $tmp = jl_AbstractStringBuilder_toString(var$4); if ($rt_suspending()) { break main; @@ -794525,33 +796242,29 @@ $soundcategory = $tmp; jl_Throwable__init_(var$2, $soundcategory); $rt_throw(var$2); - case 16: + case 17: $tmp = ju_HashMap_containsKey(var$2, var$4); if ($rt_suspending()) { break main; } var$5 = $tmp; - if (!var$5) { - var$2 = nmca_SoundCategory_NAME_CATEGORY_MAP; - var$4 = $soundcategory.$categoryName; - $ptr = 17; + if (var$5) { + var$2 = new jl_Error; + $ptr = 13; continue main; } - var$2 = new jl_Error; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - var$8 = $rt_s(5863); - $ptr = 13; - continue main; - case 17: + var$2 = nmca_SoundCategory_NAME_CATEGORY_MAP; + var$4 = $soundcategory.$categoryName; + $ptr = 18; + case 18: ju_HashMap_putImpl(var$2, var$4, $soundcategory); if ($rt_suspending()) { break main; } var$2 = nmca_SoundCategory_ID_CATEGORY_MAP; var$4 = jl_Integer_valueOf0($soundcategory.$categoryId); - $ptr = 18; - case 18: + $ptr = 19; + case 19: ju_HashMap_putImpl(var$2, var$4, $soundcategory); if ($rt_suspending()) { break main; @@ -796875,7 +798588,7 @@ } function nmcrd_TextureMetadataSectionSerializer__init_($this) {} function nmcrd_TextureMetadataSectionSerializer_getSectionName($this) { - return $rt_s(5269); + return $rt_s(5267); } function nmcrd_TextureMetadataSectionSerializer_deserialize($this, var$1) { var var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, $$je, $ptr, $tmp; @@ -796975,7 +798688,7 @@ return var$1; } try { - $ptr = 9; + $ptr = 10; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -796995,23 +798708,30 @@ break main; } var$1 = $tmp; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - var$8 = $rt_s(5898); $ptr = 6; case 6: - jl_AbstractStringBuilder_append(var$7, var$8); + $tmp = jl_String_valueOf(var$1); if ($rt_suspending()) { break main; } + var$1 = $tmp; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + var$8 = $rt_s(5898); $ptr = 7; case 7: - jl_AbstractStringBuilder_append(var$7, var$1); + jl_AbstractStringBuilder_append(var$7, var$8); if ($rt_suspending()) { break main; } $ptr = 8; case 8: + jl_AbstractStringBuilder_append(var$7, var$1); + if ($rt_suspending()) { + break main; + } + $ptr = 9; + case 9: $tmp = jl_AbstractStringBuilder_toString(var$7); if ($rt_suspending()) { break main; @@ -797019,38 +798739,34 @@ var$1 = $tmp; jl_Throwable__init_4(var$5, var$1, var$2); $rt_throw(var$5); - case 9: + case 10: a: { try { $tmp = oj_JSONArray_get(var$5, var$6); if ($rt_suspending()) { break main; } - var$9 = $tmp; - if (var$9 instanceof jl_Number) { + var$7 = $tmp; + if (var$7 instanceof jl_Number) { try { - var$7 = jl_Integer_valueOf0(var$9.$intValue()); - $ptr = 10; + var$8 = jl_Integer_valueOf0(var$7.$intValue()); + $ptr = 11; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof jl_NumberFormatException) { - var$2 = $$je; + var$9 = $$je; } else { throw $$e; } } - var$5 = new oj_JSONException; - var$7 = jl_StringBuilder__init_(); - var$8 = $rt_s(5899); - $ptr = 15; + var$2 = new oj_JSONException; + $ptr = 17; continue main; } - if (var$9 instanceof oj_JSONObject) { - var$7 = new oj_JSONException; - var$2 = jl_StringBuilder__init_(); - var$5 = $rt_s(5899); - $ptr = 11; + if (var$7 instanceof oj_JSONObject) { + var$8 = new oj_JSONException; + $ptr = 12; continue main; } var$6 = var$6 + 1 | 0; @@ -797097,92 +798813,67 @@ var$7 = $rt_s(5897); $ptr = 5; continue main; - case 10: - a: { - try { - b: { - try { - ju_ArrayList_add(var$2, var$7); - if ($rt_suspending()) { - break main; - } - break b; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_NumberFormatException) { - var$2 = $$je; - } else { - throw $$e; - } - } - var$5 = new oj_JSONException; - var$7 = jl_StringBuilder__init_(); - var$8 = $rt_s(5899); - $ptr = 15; - continue main; - } - var$6 = var$6 + 1 | 0; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_ClassCastException) { - var$2 = $$je; - break a; - } else { - throw $$e; - } - } - c: { - try { - if (var$6 < oj_JSONArray_length(var$5)) - break c; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_ClassCastException) { - var$2 = $$je; - break a; - } else { - throw $$e; - } - } - var$1 = new nmcrd_TextureMetadataSection; - var$1.$textureBlur = var$3; - var$1.$textureClamp = var$4; - var$1.$listMipmaps = var$2; - return var$1; - } - try { - $ptr = 9; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_ClassCastException) { - var$2 = $$je; - } else { - throw $$e; - } - } - } - var$5 = new oj_JSONException; - var$7 = $rt_s(5897); - $ptr = 5; - continue main; case 11: - try { - $tmp = jl_StringBuilder_append(var$2, var$5); - if ($rt_suspending()) { - break main; + a: { + try { + b: { + try { + ju_ArrayList_add(var$2, var$8); + if ($rt_suspending()) { + break main; + } + break b; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_NumberFormatException) { + var$9 = $$je; + } else { + throw $$e; + } + } + var$2 = new oj_JSONException; + $ptr = 17; + continue main; + } + var$6 = var$6 + 1 | 0; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_ClassCastException) { + var$2 = $$je; + break a; + } else { + throw $$e; + } } - var$5 = $tmp; - var$5 = jl_StringBuilder_append1(var$5, var$6); - var$8 = $rt_s(5900); - $ptr = 12; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_ClassCastException) { - var$2 = $$je; - } else { - throw $$e; + c: { + try { + if (var$6 < oj_JSONArray_length(var$5)) + break c; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_ClassCastException) { + var$2 = $$je; + break a; + } else { + throw $$e; + } + } + var$1 = new nmcrd_TextureMetadataSection; + var$1.$textureBlur = var$3; + var$1.$textureClamp = var$4; + var$1.$listMipmaps = var$2; + return var$1; + } + try { + $ptr = 10; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_ClassCastException) { + var$2 = $$je; + } else { + throw $$e; + } } } var$5 = new oj_JSONException; @@ -797191,11 +798882,13 @@ continue main; case 12: try { - $tmp = jl_StringBuilder_append(var$5, var$8); + $tmp = jl_String_valueOf(var$7); if ($rt_suspending()) { break main; } - var$5 = $tmp; + var$7 = $tmp; + var$2 = jl_StringBuilder__init_(); + var$5 = $rt_s(5899); $ptr = 13; continue main; } catch ($$e) { @@ -797212,10 +798905,13 @@ continue main; case 13: try { - jl_StringBuilder_append(var$5, var$9); + $tmp = jl_StringBuilder_append(var$2, var$5); if ($rt_suspending()) { break main; } + var$5 = $tmp; + var$5 = jl_StringBuilder_append1(var$5, var$6); + var$9 = $rt_s(5900); $ptr = 14; continue main; } catch ($$e) { @@ -797232,13 +798928,13 @@ continue main; case 14: try { - $tmp = jl_StringBuilder_toString(var$2); + $tmp = jl_StringBuilder_append(var$5, var$9); if ($rt_suspending()) { break main; } - var$2 = $tmp; - oj_JSONException__init_2(var$7, var$2); - $rt_throw(var$7); + var$5 = $tmp; + $ptr = 15; + continue main; } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof jl_ClassCastException) { @@ -797253,13 +798949,10 @@ continue main; case 15: try { - $tmp = jl_StringBuilder_append(var$7, var$8); + jl_StringBuilder_append(var$5, var$7); if ($rt_suspending()) { break main; } - var$8 = $tmp; - var$8 = jl_StringBuilder_append1(var$8, var$6); - var$10 = $rt_s(5900); $ptr = 16; continue main; } catch ($$e) { @@ -797276,13 +798969,13 @@ continue main; case 16: try { - $tmp = jl_StringBuilder_append(var$8, var$10); + $tmp = jl_StringBuilder_toString(var$2); if ($rt_suspending()) { break main; } - var$8 = $tmp; - $ptr = 17; - continue main; + var$2 = $tmp; + oj_JSONException__init_2(var$8, var$2); + $rt_throw(var$8); } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof jl_ClassCastException) { @@ -797297,10 +798990,13 @@ continue main; case 17: try { - jl_StringBuilder_append(var$8, var$9); + $tmp = jl_String_valueOf(var$7); if ($rt_suspending()) { break main; } + var$5 = $tmp; + var$7 = jl_StringBuilder__init_(); + var$8 = $rt_s(5899); $ptr = 18; continue main; } catch ($$e) { @@ -797316,14 +799012,78 @@ $ptr = 5; continue main; case 18: + try { + $tmp = jl_StringBuilder_append(var$7, var$8); + if ($rt_suspending()) { + break main; + } + var$8 = $tmp; + var$8 = jl_StringBuilder_append1(var$8, var$6); + var$10 = $rt_s(5900); + $ptr = 19; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_ClassCastException) { + var$2 = $$je; + } else { + throw $$e; + } + } + var$5 = new oj_JSONException; + var$7 = $rt_s(5897); + $ptr = 5; + continue main; + case 19: + try { + $tmp = jl_StringBuilder_append(var$8, var$10); + if ($rt_suspending()) { + break main; + } + var$8 = $tmp; + $ptr = 20; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_ClassCastException) { + var$2 = $$je; + } else { + throw $$e; + } + } + var$5 = new oj_JSONException; + var$7 = $rt_s(5897); + $ptr = 5; + continue main; + case 20: + try { + jl_StringBuilder_append(var$8, var$5); + if ($rt_suspending()) { + break main; + } + $ptr = 21; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_ClassCastException) { + var$2 = $$je; + } else { + throw $$e; + } + } + var$5 = new oj_JSONException; + var$7 = $rt_s(5897); + $ptr = 5; + continue main; + case 21: try { $tmp = jl_StringBuilder_toString(var$7); if ($rt_suspending()) { break main; } - var$7 = $tmp; - oj_JSONException__init_1(var$5, var$7, var$2); - $rt_throw(var$5); + var$5 = $tmp; + oj_JSONException__init_1(var$2, var$5, var$9); + $rt_throw(var$2); } catch ($$e) { $$je = $rt_wrapException($$e); if ($$je instanceof jl_ClassCastException) { @@ -797426,7 +799186,7 @@ var$9 = $tmp; if (var$9) { $jsonobject = $rt_s(753); - $ptr = 9; + $ptr = 10; continue main; } var$11 = $afloat.data; @@ -797440,7 +799200,7 @@ $jsonobject.$charSpacings = $afloat1; return $jsonobject; } - $ptr = 18; + $ptr = 20; continue main; case 5: $tmp = oj_JSONObject_get($jsonobject, $jsonobject3); @@ -797448,23 +799208,30 @@ break main; } $jsonobject = $tmp; - $jsonobject3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($jsonobject3); - $jsonobject2 = $rt_s(5902); $ptr = 6; case 6: - jl_AbstractStringBuilder_append($jsonobject3, $jsonobject2); + $tmp = jl_String_valueOf($jsonobject); if ($rt_suspending()) { break main; } + $jsonobject = $tmp; + $jsonobject3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($jsonobject3); + $jsonobject2 = $rt_s(5902); $ptr = 7; case 7: - jl_AbstractStringBuilder_append($jsonobject3, $jsonobject); + jl_AbstractStringBuilder_append($jsonobject3, $jsonobject2); if ($rt_suspending()) { break main; } $ptr = 8; case 8: + jl_AbstractStringBuilder_append($jsonobject3, $jsonobject); + if ($rt_suspending()) { + break main; + } + $ptr = 9; + case 9: $tmp = jl_AbstractStringBuilder_toString($jsonobject3); if ($rt_suspending()) { break main; @@ -797472,7 +799239,7 @@ $jsonobject = $tmp; jl_Throwable__init_($jsonobject1, $jsonobject); $rt_throw($jsonobject1); - case 9: + case 10: $tmp = oj_JSONObject_get($jsonobject1, $jsonobject); if ($rt_suspending()) { break main; @@ -797480,22 +799247,22 @@ $jsonobject = $tmp; if ($jsonobject instanceof oj_JSONObject) { $jsonobject = $rt_s(753); - $ptr = 10; + $ptr = 11; continue main; } $jsonobject = new oj_JSONException; $jsonobject3 = $rt_s(753); - $ptr = 14; + $ptr = 15; continue main; - case 10: + case 11: $tmp = oj_JSONObject_getJSONObject($jsonobject1, $jsonobject); if ($rt_suspending()) { break main; } $jsonobject2 = $tmp; $jsonobject = $rt_s(126); - $ptr = 11; - case 11: + $ptr = 12; + case 12: $tmp = oj_JSONObject_optFloat($jsonobject2, $jsonobject, $f); if ($rt_suspending()) { break main; @@ -797503,8 +799270,8 @@ $f = $tmp; oacl_Validate_inclusiveBetween0(0.0, 3.4028234663852886E38, $f, $rt_s(5903)); $jsonobject = $rt_s(5904); - $ptr = 12; - case 12: + $ptr = 13; + case 13: $tmp = oj_JSONObject_optFloat($jsonobject2, $jsonobject, $f1); if ($rt_suspending()) { break main; @@ -797512,8 +799279,8 @@ $f1 = $tmp; oacl_Validate_inclusiveBetween0(0.0, 3.4028234663852886E38, $f1, $rt_s(5905)); $jsonobject = $rt_s(125); - $ptr = 13; - case 13: + $ptr = 14; + case 14: $tmp = oj_JSONObject_optFloat($jsonobject2, $jsonobject, $f1); if ($rt_suspending()) { break main; @@ -797531,31 +799298,38 @@ $jsonobject.$charSpacings = $afloat1; return $jsonobject; } - $ptr = 18; + $ptr = 20; continue main; - case 14: + case 15: $tmp = oj_JSONObject_get($jsonobject1, $jsonobject3); if ($rt_suspending()) { break main; } $jsonobject1 = $tmp; + $ptr = 16; + case 16: + $tmp = jl_String_valueOf($jsonobject1); + if ($rt_suspending()) { + break main; + } + $jsonobject1 = $tmp; $jsonobject3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_($jsonobject3); $jsonobject2 = $rt_s(5907); - $ptr = 15; - case 15: + $ptr = 17; + case 17: jl_AbstractStringBuilder_append($jsonobject3, $jsonobject2); if ($rt_suspending()) { break main; } - $ptr = 16; - case 16: + $ptr = 18; + case 18: jl_AbstractStringBuilder_append($jsonobject3, $jsonobject1); if ($rt_suspending()) { break main; } - $ptr = 17; - case 17: + $ptr = 19; + case 19: $tmp = jl_AbstractStringBuilder_toString($jsonobject3); if ($rt_suspending()) { break main; @@ -797563,14 +799337,14 @@ $jsonobject1 = $tmp; jl_Throwable__init_($jsonobject, $jsonobject1); $rt_throw($jsonobject); - case 18: + case 20: $tmp = jl_Integer_toString($i); if ($rt_suspending()) { break main; } $jsonobject = $tmp; - $ptr = 19; - case 19: + $ptr = 21; + case 21: $tmp = oj_JSONObject_optJSONObject($jsonobject1, $jsonobject); if ($rt_suspending()) { break main; @@ -797578,7 +799352,7 @@ $jsonobject3 = $tmp; if ($jsonobject3 !== null) { $jsonobject = $rt_s(126); - $ptr = 20; + $ptr = 22; continue main; } var$16 = $f; @@ -797595,9 +799369,9 @@ $jsonobject.$charSpacings = $afloat1; return $jsonobject; } - $ptr = 18; + $ptr = 20; continue main; - case 20: + case 22: $tmp = oj_JSONObject_optFloat($jsonobject3, $jsonobject, $f); if ($rt_suspending()) { break main; @@ -797605,8 +799379,8 @@ var$16 = $tmp; oacl_Validate_inclusiveBetween0(0.0, 3.4028234663852886E38, var$16, $rt_s(5908)); $jsonobject = $rt_s(5904); - $ptr = 21; - case 21: + $ptr = 23; + case 23: $tmp = oj_JSONObject_optFloat($jsonobject3, $jsonobject, $f1); if ($rt_suspending()) { break main; @@ -797614,8 +799388,8 @@ var$17 = $tmp; oacl_Validate_inclusiveBetween0(0.0, 3.4028234663852886E38, var$17, $rt_s(5909)); $jsonobject = $rt_s(125); - $ptr = 22; - case 22: + $ptr = 24; + case 24: $tmp = oj_JSONObject_optFloat($jsonobject3, $jsonobject, $f2); if ($rt_suspending()) { break main; @@ -797633,7 +799407,7 @@ $jsonobject.$charSpacings = $afloat1; return $jsonobject; } - $ptr = 18; + $ptr = 20; continue main; default: $rt_invalidPointer(); }} @@ -797769,7 +799543,7 @@ $parInt1 = $tmp; if ($parInt1) oacl_Validate_inclusiveBetween(Long_fromInt(1), Long_fromInt(2147483647), Long_fromInt($i), $rt_s(5913)); - $parJsonElement = $rt_s(5270); + $parJsonElement = $rt_s(5268); $ptr = 3; case 3: $tmp = oj_JSONObject_getInt($jsonobject, $parJsonElement); @@ -797784,7 +799558,7 @@ $rt_nativeThread().push($this, $parInt1, $parJsonElement, $jsonobject, $i, $j, $ptr); } function nmcrd_AnimationMetadataSectionSerializer_getSectionName($this) { - return $rt_s(5270); + return $rt_s(5268); } function nmcrd_AnimationMetadataSectionSerializer_deserialize($this, var$1) { var var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, $$je, $ptr, $tmp; @@ -797859,7 +799633,7 @@ oacl_Validate_inclusiveBetween(Long_fromInt(1), Long_fromInt(2147483647), Long_fromInt(var$7), $rt_s(5918)); var$3 = $rt_s(5919); var$8 = 0; - $ptr = 10; + $ptr = 11; continue main; case 5: a: { @@ -797898,7 +799672,7 @@ continue main; } try { - $ptr = 11; + $ptr = 12; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -797918,23 +799692,30 @@ break main; } var$1 = $tmp; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - var$9 = $rt_s(5920); $ptr = 7; case 7: - jl_AbstractStringBuilder_append(var$6, var$9); + $tmp = jl_String_valueOf(var$1); if ($rt_suspending()) { break main; } + var$1 = $tmp; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + var$9 = $rt_s(5920); $ptr = 8; case 8: - jl_AbstractStringBuilder_append(var$6, var$1); + jl_AbstractStringBuilder_append(var$6, var$9); if ($rt_suspending()) { break main; } $ptr = 9; case 9: + jl_AbstractStringBuilder_append(var$6, var$1); + if ($rt_suspending()) { + break main; + } + $ptr = 10; + case 10: $tmp = jl_AbstractStringBuilder_toString(var$6); if ($rt_suspending()) { break main; @@ -797942,21 +799723,21 @@ var$1 = $tmp; jl_Throwable__init_4(var$3, var$1, var$2); $rt_throw(var$3); - case 10: + case 11: $tmp = oj_JSONObject_optBoolean(var$1, var$3, var$8); if ($rt_suspending()) { break main; } var$8 = $tmp; return nmcrd_AnimationMetadataSection__init_(var$2, var$5, var$7, var$4, var$8); - case 11: + case 12: try { $tmp = oj_JSONArray_get(var$3, var$5); if ($rt_suspending()) { break main; } var$6 = $tmp; - $ptr = 12; + $ptr = 13; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -797970,7 +799751,7 @@ var$6 = $rt_s(5917); $ptr = 6; continue main; - case 12: + case 13: a: { try { $tmp = nmcrd_AnimationMetadataSectionSerializer_parseAnimationFrame($this, var$5, var$6); @@ -797979,7 +799760,7 @@ } var$6 = $tmp; if (var$6 !== null) { - $ptr = 13; + $ptr = 14; continue main; } var$5 = var$5 + 1 | 0; @@ -798011,7 +799792,7 @@ continue main; } try { - $ptr = 11; + $ptr = 12; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -798026,7 +799807,7 @@ var$6 = $rt_s(5917); $ptr = 6; continue main; - case 13: + case 14: a: { try { ju_ArrayList_add(var$2, var$6); @@ -798062,7 +799843,7 @@ continue main; } try { - $ptr = 11; + $ptr = 12; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -804494,7 +806275,7 @@ break main; } var$14 = nlevoed_EaglerDeferredPipeline_instance.$partialTicks; - var$17.$this$0144 = $this; + var$17.$this$0101 = $this; var$17.$val$mat1 = $mat; var$17.$val$lx1 = $lx; var$17.$val$ly1 = $ly; @@ -810712,7 +812493,6 @@ break main; } $renderManagerIn = new nmcre_RenderSkeleton$1; - $renderManagerIn.$this$0145 = $this; $ptr = 6; case 6: nmcrel_LayerBipedArmor__init_($renderManagerIn, $this); @@ -811332,7 +813112,6 @@ break main; } $renderManagerIn = new nmcre_RenderPigZombie$1; - $renderManagerIn.$this$0146 = $this; $ptr = 4; case 4: nmcrel_LayerBipedArmor__init_($renderManagerIn, $this); @@ -811474,7 +813253,6 @@ break main; } $layerbipedarmor = new nmcre_RenderZombie$1; - $layerbipedarmor.$this$0147 = $this; $ptr = 5; case 5: nmcrel_LayerBipedArmor__init_($layerbipedarmor, $this); @@ -812256,7 +814034,6 @@ break main; } $renderManagerIn = new nmcre_RenderGiantZombie$1; - $renderManagerIn.$this$0148 = $this; $ptr = 4; case 4: nmcrel_LayerBipedArmor__init_($renderManagerIn, $this); @@ -821713,7 +823490,6 @@ break main; } $layerbipedarmor = new nmcre_ArmorStandRenderer$1; - $layerbipedarmor.$this$0149 = $this; $ptr = 3; case 3: nmcrel_LayerBipedArmor__init_($layerbipedarmor, $this); @@ -832937,7 +834713,7 @@ if ($mapitemrenderer$instance !== null) return $mapitemrenderer$instance; $mapitemrenderer$instance = new nmcg_MapItemRenderer$Instance; - $mapitemrenderer$instance.$this$0150 = $this; + $mapitemrenderer$instance.$this$0102 = $this; $mapitemrenderer$instance.$mapData = $mapdataIn; var$3 = new nmcrt_DynamicTexture; var$4 = 128; @@ -838652,19 +840428,19 @@ $rt_nativeThread().push($this, $images, $meta, var$3, $i, $j, var$6, $aint, var$8, $k, $j1, $arraylist, $l1, $bufferedimage, $i1, $iterator, $ptr); } function nlevm_EaglerTextureAtlasSprite_generateMipmaps($this, $level) { - var $arraylist, $i, $crashreport, $aint, var$6, $throwable, var$8, $crashreportcategory, $$je, $ptr, $tmp; + var $arraylist, $i, $crashreportcategory, $aint, var$6, $throwable, var$8, $crashreport, $$je, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$crashreportcategory = $thread.pop();var$8 = $thread.pop();$throwable = $thread.pop();var$6 = $thread.pop();$aint = $thread.pop();$crashreport = $thread.pop();$i = $thread.pop();$arraylist = $thread.pop();$level = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();$crashreport = $thread.pop();var$8 = $thread.pop();$throwable = $thread.pop();var$6 = $thread.pop();$aint = $thread.pop();$crashreportcategory = $thread.pop();$i = $thread.pop();$arraylist = $thread.pop();$level = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: $this.$mipmapLevels1 = $level; $arraylist = cgcc_Lists_newArrayList(); $i = 0; - $crashreport = $this.$framesTextureData; - if ($i >= $crashreport.$size) { + $crashreportcategory = $this.$framesTextureData; + if ($i >= $crashreportcategory.$size) { $ptr = 1; continue main; } @@ -838687,12 +840463,12 @@ $ptr = 4; continue main; case 3: - $tmp = ju_ArrayList_get($crashreport, $i); + $tmp = ju_ArrayList_get($crashreportcategory, $i); if ($rt_suspending()) { break main; } - $crashreport = $tmp; - $aint = $crashreport; + $crashreportcategory = $tmp; + $aint = $crashreportcategory; if ($aint !== null) { try { var$6 = $this.$width9; @@ -838711,8 +840487,8 @@ continue main; } $i = $i + 1 | 0; - $crashreport = $this.$framesTextureData; - if ($i >= $crashreport.$size) { + $crashreportcategory = $this.$framesTextureData; + if ($i >= $crashreportcategory.$size) { $ptr = 1; continue main; } @@ -838764,8 +840540,8 @@ continue main; } $i = $i + 1 | 0; - $crashreport = $this.$framesTextureData; - if ($i >= $crashreport.$size) { + $crashreportcategory = $this.$framesTextureData; + if ($i >= $crashreportcategory.$size) { $ptr = 1; continue main; } @@ -838795,7 +840571,6 @@ } $arraylist = $rt_s(6065); $throwable = new nlevm_EaglerTextureAtlasSprite$1; - $throwable.$this$0151 = $this; $throwable.$val$aint = $aint; $ptr = 10; case 10: @@ -838806,7 +840581,7 @@ $rt_throw(nmu_ReportedException__init_($crashreport)); default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $level, $arraylist, $i, $crashreport, $aint, var$6, $throwable, var$8, $crashreportcategory, $ptr); + $rt_nativeThread().push($this, $level, $arraylist, $i, $crashreportcategory, $aint, var$6, $throwable, var$8, $crashreport, $ptr); } function nlevm_EaglerTextureAtlasSprite_bakeAnimationCache($this) { var var$1, $mipLevels, var$3, $ptr, $tmp; @@ -841820,123 +843595,150 @@ break main; } $potions = nmu_EnumChatFormatting_YELLOW; + $ptr = 2; + case 2: + $tmp = jl_String_valueOf($potions); + if ($rt_suspending()) { + break main; + } + $potions = $tmp; $e = $rt_s(3706); var$6 = $rt_createArray(jl_Object, 1); var$7 = var$6.data; $lw = 0; $line = $this.$mc9.$thePlayer; - $ptr = 2; - case 2: + $ptr = 3; + case 3: $tmp = nmep_EntityPlayer_getAIMoveSpeed($line); if ($rt_suspending()) { break main; } var$10 = $tmp; var$7[$lw] = jl_Float_valueOf(var$10); - $ptr = 3; - case 3: + $ptr = 4; + case 4: $tmp = nlev_HString_format($e, var$6); if ($rt_suspending()) { break main; } $line = $tmp; $e = nmu_EnumChatFormatting_WHITE; - var$11 = $this.$mc9.$thePlayer.$capabilities; - if (!var$11.$allowFlying) { - var$11 = nmu_EnumChatFormatting_RED; - var$12 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$12); - $ptr = 4; - continue main; - } - var$12 = nmu_EnumChatFormatting_YELLOW; - var$10 = var$11.$flySpeed0; - var$11 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$11); - $ptr = 7; - continue main; - case 4: - jl_AbstractStringBuilder_append(var$12, var$11); - if ($rt_suspending()) { - break main; - } - var$11 = $rt_s(4309); $ptr = 5; case 5: - jl_AbstractStringBuilder_append(var$12, var$11); + $tmp = jl_String_valueOf($e); if ($rt_suspending()) { break main; } - $ptr = 6; + $e = $tmp; + if (!$this.$mc9.$thePlayer.$capabilities.$allowFlying) { + var$11 = nmu_EnumChatFormatting_RED; + $ptr = 6; + continue main; + } + var$11 = nmu_EnumChatFormatting_YELLOW; + $ptr = 10; + continue main; case 6: - $tmp = jl_AbstractStringBuilder_toString(var$12); + $tmp = jl_String_valueOf(var$11); if ($rt_suspending()) { break main; } var$11 = $tmp; var$12 = jl_StringBuilder__init_(); - var$13 = $rt_s(6089); - $ptr = 9; - continue main; + $ptr = 7; case 7: - jl_AbstractStringBuilder_append(var$11, var$12); + $tmp = jl_StringBuilder_append(var$12, var$11); if ($rt_suspending()) { break main; } - jl_StringBuilder_append3(var$11, var$10); + var$11 = $tmp; + var$13 = $rt_s(4309); $ptr = 8; case 8: - $tmp = jl_StringBuilder_toString(var$11); + jl_StringBuilder_append(var$11, var$13); + if ($rt_suspending()) { + break main; + } + $ptr = 9; + case 9: + $tmp = jl_StringBuilder_toString(var$12); if ($rt_suspending()) { break main; } var$11 = $tmp; var$12 = jl_StringBuilder__init_(); var$13 = $rt_s(6089); - $ptr = 9; - case 9: + $ptr = 13; + continue main; + case 10: + $tmp = jl_String_valueOf(var$11); + if ($rt_suspending()) { + break main; + } + var$11 = $tmp; + var$10 = nmep_PlayerCapabilities_getFlySpeed($this.$mc9.$thePlayer.$capabilities); + var$12 = jl_StringBuilder__init_(); + $ptr = 11; + case 11: + $tmp = jl_StringBuilder_append(var$12, var$11); + if ($rt_suspending()) { + break main; + } + var$11 = $tmp; + jl_StringBuilder_append3(var$11, var$10); + $ptr = 12; + case 12: + $tmp = jl_StringBuilder_toString(var$12); + if ($rt_suspending()) { + break main; + } + var$11 = $tmp; + var$12 = jl_StringBuilder__init_(); + var$13 = $rt_s(6089); + $ptr = 13; + case 13: $tmp = jl_StringBuilder_append(var$12, var$13); if ($rt_suspending()) { break main; } var$13 = $tmp; - $ptr = 10; - case 10: + $ptr = 14; + case 14: $tmp = jl_StringBuilder_append(var$13, $potions); if ($rt_suspending()) { break main; } $potions = $tmp; - $ptr = 11; - case 11: + $ptr = 15; + case 15: $tmp = jl_StringBuilder_append($potions, $line); if ($rt_suspending()) { break main; } $potions = $tmp; - $ptr = 12; - case 12: + $ptr = 16; + case 16: $tmp = jl_StringBuilder_append($potions, $e); if ($rt_suspending()) { break main; } $potions = $tmp; $line = $rt_s(6090); - $ptr = 13; - case 13: + $ptr = 17; + case 17: $tmp = jl_StringBuilder_append($potions, $line); if ($rt_suspending()) { break main; } $potions = $tmp; - $ptr = 14; - case 14: + $ptr = 18; + case 18: jl_StringBuilder_append($potions, var$11); if ($rt_suspending()) { break main; } - $ptr = 15; - case 15: + $ptr = 19; + case 19: $tmp = jl_StringBuilder_toString(var$12); if ($rt_suspending()) { break main; @@ -841947,22 +843749,43 @@ var$10 = $x - $lw | 0; var$14 = $y - $i | 0; $lw = 16777215; - $ptr = 16; - case 16: + $ptr = 20; + case 20: nmcg_FontRenderer_drawStringWithShadow($potions, $line, var$10, var$14, $lw); if ($rt_suspending()) { break main; } $lw = 20; $potions = nmu_EnumChatFormatting_YELLOW; + $ptr = 21; + case 21: + $tmp = jl_String_valueOf($potions); + if ($rt_suspending()) { + break main; + } + $potions = $tmp; $i = nmu_FoodStats_getFoodLevel(nmep_EntityPlayer_getFoodStats($this.$mc9.$thePlayer)); $line = nmu_EnumChatFormatting_WHITE; + $ptr = 22; + case 22: + $tmp = jl_String_valueOf($line); + if ($rt_suspending()) { + break main; + } + $line = $tmp; $e = nmu_EnumChatFormatting_YELLOW; + $ptr = 23; + case 23: + $tmp = jl_String_valueOf($e); + if ($rt_suspending()) { + break main; + } + $e = $tmp; var$11 = $rt_s(3911); var$6 = $rt_createArray(jl_Object, 1); var$6.data[0] = jl_Float_valueOf(nmu_FoodStats_getSaturationLevel(nmep_EntityPlayer_getFoodStats($this.$mc9.$thePlayer))); - $ptr = 17; - case 17: + $ptr = 24; + case 24: $tmp = nlev_HString_format(var$11, var$6); if ($rt_suspending()) { break main; @@ -841970,51 +843793,51 @@ var$11 = $tmp; var$12 = jl_StringBuilder__init_(); var$13 = $rt_s(6091); - $ptr = 18; - case 18: + $ptr = 25; + case 25: $tmp = jl_StringBuilder_append(var$12, var$13); if ($rt_suspending()) { break main; } var$13 = $tmp; - $ptr = 19; - case 19: + $ptr = 26; + case 26: $tmp = jl_StringBuilder_append(var$13, $potions); if ($rt_suspending()) { break main; } $potions = $tmp; $potions = jl_StringBuilder_append1($potions, $i); - $ptr = 20; - case 20: + $ptr = 27; + case 27: $tmp = jl_StringBuilder_append($potions, $line); if ($rt_suspending()) { break main; } $potions = $tmp; $line = $rt_s(6092); - $ptr = 21; - case 21: + $ptr = 28; + case 28: $tmp = jl_StringBuilder_append($potions, $line); if ($rt_suspending()) { break main; } $potions = $tmp; - $ptr = 22; - case 22: + $ptr = 29; + case 29: $tmp = jl_StringBuilder_append($potions, $e); if ($rt_suspending()) { break main; } $potions = $tmp; - $ptr = 23; - case 23: + $ptr = 30; + case 30: jl_StringBuilder_append($potions, var$11); if ($rt_suspending()) { break main; } - $ptr = 24; - case 24: + $ptr = 31; + case 31: $tmp = jl_StringBuilder_toString(var$12); if ($rt_suspending()) { break main; @@ -842025,92 +843848,113 @@ var$10 = $x - $i | 0; var$14 = $y - $lw | 0; $lw = 16777215; - $ptr = 25; - case 25: + $ptr = 32; + case 32: nmcg_FontRenderer_drawStringWithShadow($potions, $line, var$10, var$14, $lw); if ($rt_suspending()) { break main; } $lw = 31; - var$11 = nmu_EnumChatFormatting_YELLOW; - $potions = $this.$mc9.$thePlayer; - $ptr = 26; - case 26: - $tmp = nmep_EntityPlayer_getTotalArmorValue($potions); - if ($rt_suspending()) { - break main; - } - $xpc = $tmp; - var$12 = nmu_EnumChatFormatting_WHITE; - var$13 = nmu_EnumChatFormatting_RED; - $potions = $rt_s(3911); - var$6 = $rt_createArray(jl_Object, 1); - var$7 = var$6.data; - $i = 0; - $line = $this.$mc9.$thePlayer; - $ptr = 27; - case 27: - $tmp = nme_EntityLivingBase_getHealth($line); - if ($rt_suspending()) { - break main; - } - var$10 = $tmp; - var$7[$i] = jl_Float_valueOf(var$10); - $ptr = 28; - case 28: - $tmp = nlev_HString_format($potions, var$6); + $potions = nmu_EnumChatFormatting_YELLOW; + $ptr = 33; + case 33: + $tmp = jl_String_valueOf($potions); if ($rt_suspending()) { break main; } $potions = $tmp; - $line = jl_StringBuilder__init_(); - $e = $rt_s(6093); - $ptr = 29; - case 29: - $tmp = jl_StringBuilder_append($line, $e); - if ($rt_suspending()) { - break main; - } - $e = $tmp; - $ptr = 30; - case 30: - $tmp = jl_StringBuilder_append($e, var$11); - if ($rt_suspending()) { - break main; - } - $e = $tmp; - $e = jl_StringBuilder_append1($e, $xpc); - $ptr = 31; - case 31: - $tmp = jl_StringBuilder_append($e, var$12); - if ($rt_suspending()) { - break main; - } - $e = $tmp; - var$11 = $rt_s(6094); - $ptr = 32; - case 32: - $tmp = jl_StringBuilder_append($e, var$11); - if ($rt_suspending()) { - break main; - } - $e = $tmp; - $ptr = 33; - case 33: - $tmp = jl_StringBuilder_append($e, var$13); - if ($rt_suspending()) { - break main; - } - $e = $tmp; + $line = $this.$mc9.$thePlayer; $ptr = 34; case 34: - jl_StringBuilder_append($e, $potions); + $tmp = nmep_EntityPlayer_getTotalArmorValue($line); if ($rt_suspending()) { break main; } + $i = $tmp; + $line = nmu_EnumChatFormatting_WHITE; $ptr = 35; case 35: - $tmp = jl_StringBuilder_toString($line); + $tmp = jl_String_valueOf($line); + if ($rt_suspending()) { + break main; + } + $line = $tmp; + $e = nmu_EnumChatFormatting_RED; + $ptr = 36; + case 36: + $tmp = jl_String_valueOf($e); + if ($rt_suspending()) { + break main; + } + $e = $tmp; + var$11 = $rt_s(3911); + var$6 = $rt_createArray(jl_Object, 1); + var$7 = var$6.data; + $xpc = 0; + var$12 = $this.$mc9.$thePlayer; + $ptr = 37; + case 37: + $tmp = nme_EntityLivingBase_getHealth(var$12); + if ($rt_suspending()) { + break main; + } + var$10 = $tmp; + var$7[$xpc] = jl_Float_valueOf(var$10); + $ptr = 38; + case 38: + $tmp = nlev_HString_format(var$11, var$6); + if ($rt_suspending()) { + break main; + } + var$11 = $tmp; + var$12 = jl_StringBuilder__init_(); + var$13 = $rt_s(6093); + $ptr = 39; + case 39: + $tmp = jl_StringBuilder_append(var$12, var$13); + if ($rt_suspending()) { + break main; + } + var$13 = $tmp; + $ptr = 40; + case 40: + $tmp = jl_StringBuilder_append(var$13, $potions); + if ($rt_suspending()) { + break main; + } + $potions = $tmp; + $potions = jl_StringBuilder_append1($potions, $i); + $ptr = 41; + case 41: + $tmp = jl_StringBuilder_append($potions, $line); + if ($rt_suspending()) { + break main; + } + $potions = $tmp; + $line = $rt_s(6094); + $ptr = 42; + case 42: + $tmp = jl_StringBuilder_append($potions, $line); + if ($rt_suspending()) { + break main; + } + $potions = $tmp; + $ptr = 43; + case 43: + $tmp = jl_StringBuilder_append($potions, $e); + if ($rt_suspending()) { + break main; + } + $potions = $tmp; + $ptr = 44; + case 44: + jl_StringBuilder_append($potions, var$11); + if ($rt_suspending()) { + break main; + } + $ptr = 45; + case 45: + $tmp = jl_StringBuilder_toString(var$12); if ($rt_suspending()) { break main; } @@ -842120,8 +843964,8 @@ var$10 = $x - $i | 0; var$14 = $y - $lw | 0; $lw = 16777215; - $ptr = 36; - case 36: + $ptr = 46; + case 46: nmcg_FontRenderer_drawStringWithShadow($potions, $line, var$10, var$14, $lw); if ($rt_suspending()) { break main; @@ -842129,51 +843973,72 @@ $lw = 42; $xpc = nmep_EntityPlayer_xpBarCap($this.$mc9.$thePlayer); $potions = nmu_EnumChatFormatting_GREEN; + $ptr = 47; + case 47: + $tmp = jl_String_valueOf($potions); + if ($rt_suspending()) { + break main; + } + $potions = $tmp; $i = nmu_MathHelper_floor_float($this.$mc9.$thePlayer.$experience * $xpc); $line = nmu_EnumChatFormatting_WHITE; + $ptr = 48; + case 48: + $tmp = jl_String_valueOf($line); + if ($rt_suspending()) { + break main; + } + $line = $tmp; $e = nmu_EnumChatFormatting_GREEN; + $ptr = 49; + case 49: + $tmp = jl_String_valueOf($e); + if ($rt_suspending()) { + break main; + } + $e = $tmp; var$11 = jl_StringBuilder__init_(); var$12 = $rt_s(6095); - $ptr = 37; - case 37: + $ptr = 50; + case 50: $tmp = jl_StringBuilder_append(var$11, var$12); if ($rt_suspending()) { break main; } var$12 = $tmp; - $ptr = 38; - case 38: + $ptr = 51; + case 51: $tmp = jl_StringBuilder_append(var$12, $potions); if ($rt_suspending()) { break main; } $potions = $tmp; $potions = jl_StringBuilder_append1($potions, $i); - $ptr = 39; - case 39: + $ptr = 52; + case 52: $tmp = jl_StringBuilder_append($potions, $line); if ($rt_suspending()) { break main; } $potions = $tmp; $line = $rt_s(2471); - $ptr = 40; - case 40: + $ptr = 53; + case 53: $tmp = jl_StringBuilder_append($potions, $line); if ($rt_suspending()) { break main; } $potions = $tmp; - $ptr = 41; - case 41: + $ptr = 54; + case 54: $tmp = jl_StringBuilder_append($potions, $e); if ($rt_suspending()) { break main; } $potions = $tmp; jl_StringBuilder_append1($potions, $xpc); - $ptr = 42; - case 42: + $ptr = 55; + case 55: $tmp = jl_StringBuilder_toString(var$11); if ($rt_suspending()) { break main; @@ -842184,30 +844049,30 @@ var$10 = $x - $i | 0; var$14 = $y - $lw | 0; $lw = 16777215; - $ptr = 43; - case 43: + $ptr = 56; + case 56: nmcg_FontRenderer_drawStringWithShadow($potions, $line, var$10, var$14, $lw); if ($rt_suspending()) { break main; } $lw = 53; $potions = $this.$mc9.$thePlayer; - $ptr = 44; - case 44: + $ptr = 57; + case 57: $tmp = nme_EntityLivingBase_getActivePotionEffects($potions); if ($rt_suspending()) { break main; } $potions = $tmp; - $ptr = 45; - case 45: + $ptr = 58; + case 58: $tmp = $potions.$iterator(); if ($rt_suspending()) { break main; } $potions = $tmp; - $ptr = 46; - case 46: + $ptr = 59; + case 59: $tmp = $potions.$hasNext(); if ($rt_suspending()) { break main; @@ -842217,8 +844082,8 @@ return; var$16 = 93; var$17 = 32; - $ptr = 47; - case 47: + $ptr = 60; + case 60: $tmp = $potions.$hasNext(); if ($rt_suspending()) { break main; @@ -842227,16 +844092,16 @@ if (!$i) return; $lw = $lw + 11 | 0; - $ptr = 48; - case 48: + $ptr = 61; + case 61: $tmp = $potions.$next(); if ($rt_suspending()) { break main; } $line = $tmp; $e = $line; - $ptr = 49; - case 49: + $ptr = 62; + case 62: $tmp = nmp_PotionEffect_getDuration($e); if ($rt_suspending()) { break main; @@ -842245,84 +844110,98 @@ $t = $i / 20 | 0; $m = $t / 60 | 0; $s = $t % 60 | 0; - $ptr = 50; - case 50: + $ptr = 63; + case 63: $tmp = nmp_PotionEffect_getAmplifier($e); if ($rt_suspending()) { break main; } $j = $tmp; if ($j <= 0) { - $ptr = 51; + $ptr = 64; continue main; } - $ptr = 60; + $ptr = 75; continue main; - case 51: + case 64: $tmp = nmp_PotionEffect_getEffectName($e); if ($rt_suspending()) { break main; } $line = $tmp; var$6 = $rt_createArray(jl_Object, 0); - $ptr = 52; - case 52: + $ptr = 65; + case 65: $tmp = nmcr_I18n_format($line, var$6); if ($rt_suspending()) { break main; } $line = $tmp; $e = nmu_EnumChatFormatting_YELLOW; + $ptr = 66; + case 66: + $tmp = jl_String_valueOf($e); + if ($rt_suspending()) { + break main; + } + $e = $tmp; var$11 = $rt_s(6096); var$6 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($m), jl_Integer_valueOf0($s)]); - $ptr = 53; - case 53: + $ptr = 67; + case 67: $tmp = nlev_HString_format(var$11, var$6); if ($rt_suspending()) { break main; } var$11 = $tmp; var$12 = nmu_EnumChatFormatting_RESET; + $ptr = 68; + case 68: + $tmp = jl_String_valueOf(var$12); + if ($rt_suspending()) { + break main; + } + var$12 = $tmp; var$13 = jl_StringBuilder__init_(); - $ptr = 54; - case 54: + $ptr = 69; + case 69: $tmp = jl_StringBuilder_append(var$13, $line); if ($rt_suspending()) { break main; } $line = $tmp; var$22 = $rt_s(3314); - $ptr = 55; - case 55: + $ptr = 70; + case 70: $tmp = jl_StringBuilder_append($line, var$22); if ($rt_suspending()) { break main; } $line = $tmp; - $ptr = 56; - case 56: + $ptr = 71; + case 71: $tmp = jl_StringBuilder_append($line, $e); if ($rt_suspending()) { break main; } $line = $tmp; - $ptr = 57; - case 57: + $ptr = 72; + case 72: $tmp = jl_StringBuilder_append($line, var$11); if ($rt_suspending()) { break main; } $line = $tmp; - $ptr = 58; - case 58: + $ptr = 73; + case 73: $tmp = jl_StringBuilder_append($line, var$12); if ($rt_suspending()) { break main; } $line = $tmp; jl_StringBuilder_append5($line, var$16); - $ptr = 59; - case 59: + $ptr = 74; + case 74: $tmp = jl_StringBuilder_toString(var$13); if ($rt_suspending()) { break main; @@ -842333,17 +844212,17 @@ var$10 = $x - $i | 0; var$14 = $y - $lw | 0; $i = 16777215; - $ptr = 62; + $ptr = 77; continue main; - case 60: + case 75: $tmp = nmp_PotionEffect_getEffectName($e); if ($rt_suspending()) { break main; } $line = $tmp; var$6 = $rt_createArray(jl_Object, 0); - $ptr = 61; - case 61: + $ptr = 76; + case 76: $tmp = nmcr_I18n_format($line, var$6); if ($rt_suspending()) { break main; @@ -842351,142 +844230,175 @@ $line = $tmp; if ($j > 0) { $e = nmu_EnumChatFormatting_YELLOW; - var$11 = nmu_EnumChatFormatting_BOLD; - var$12 = jl_StringBuilder__init_(); - var$13 = $rt_s(2404); - $ptr = 63; + $ptr = 78; continue main; } $e = $rt_s(14); var$11 = nmu_EnumChatFormatting_YELLOW; - var$12 = $rt_s(6096); - var$6 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($m), jl_Integer_valueOf0($s)]); - $ptr = 71; + $ptr = 89; continue main; - case 62: + case 77: nmcg_FontRenderer_drawStringWithShadow($e, $line, var$10, var$14, $i); if ($rt_suspending()) { break main; } - $ptr = 47; + $ptr = 60; continue main; - case 63: + case 78: + $tmp = jl_String_valueOf($e); + if ($rt_suspending()) { + break main; + } + $e = $tmp; + var$11 = nmu_EnumChatFormatting_BOLD; + $ptr = 79; + case 79: + $tmp = jl_String_valueOf(var$11); + if ($rt_suspending()) { + break main; + } + var$11 = $tmp; + var$12 = jl_StringBuilder__init_(); + var$13 = $rt_s(2404); + $ptr = 80; + case 80: $tmp = jl_StringBuilder_append(var$12, var$13); if ($rt_suspending()) { break main; } var$13 = $tmp; jl_StringBuilder_append1(var$13, $j); - $ptr = 64; - case 64: + $ptr = 81; + case 81: $tmp = jl_StringBuilder_toString(var$12); if ($rt_suspending()) { break main; } var$12 = $tmp; var$6 = $rt_createArray(jl_Object, 0); - $ptr = 65; - case 65: + $ptr = 82; + case 82: $tmp = nmcr_I18n_format(var$12, var$6); if ($rt_suspending()) { break main; } var$12 = $tmp; var$13 = nmu_EnumChatFormatting_RESET; + $ptr = 83; + case 83: + $tmp = jl_String_valueOf(var$13); + if ($rt_suspending()) { + break main; + } + var$13 = $tmp; var$22 = jl_StringBuilder__init_(); var$23 = jl_StringBuilder_append5(var$22, var$17); - $ptr = 66; - case 66: + $ptr = 84; + case 84: $tmp = jl_StringBuilder_append(var$23, $e); if ($rt_suspending()) { break main; } $e = $tmp; - $ptr = 67; - case 67: + $ptr = 85; + case 85: $tmp = jl_StringBuilder_append($e, var$11); if ($rt_suspending()) { break main; } $e = $tmp; - $ptr = 68; - case 68: + $ptr = 86; + case 86: $tmp = jl_StringBuilder_append($e, var$12); if ($rt_suspending()) { break main; } $e = $tmp; - $ptr = 69; - case 69: + $ptr = 87; + case 87: jl_StringBuilder_append($e, var$13); if ($rt_suspending()) { break main; } - $ptr = 70; - case 70: + $ptr = 88; + case 88: $tmp = jl_StringBuilder_toString(var$22); if ($rt_suspending()) { break main; } $e = $tmp; var$11 = nmu_EnumChatFormatting_YELLOW; + $ptr = 89; + case 89: + $tmp = jl_String_valueOf(var$11); + if ($rt_suspending()) { + break main; + } + var$11 = $tmp; var$12 = $rt_s(6096); var$6 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($m), jl_Integer_valueOf0($s)]); - $ptr = 71; - case 71: + $ptr = 90; + case 90: $tmp = nlev_HString_format(var$12, var$6); if ($rt_suspending()) { break main; } var$12 = $tmp; var$13 = nmu_EnumChatFormatting_RESET; + $ptr = 91; + case 91: + $tmp = jl_String_valueOf(var$13); + if ($rt_suspending()) { + break main; + } + var$13 = $tmp; var$22 = jl_StringBuilder__init_(); - $ptr = 72; - case 72: + $ptr = 92; + case 92: $tmp = jl_StringBuilder_append(var$22, $line); if ($rt_suspending()) { break main; } $line = $tmp; - $ptr = 73; - case 73: + $ptr = 93; + case 93: $tmp = jl_StringBuilder_append($line, $e); if ($rt_suspending()) { break main; } $line = $tmp; $e = $rt_s(3314); - $ptr = 74; - case 74: + $ptr = 94; + case 94: $tmp = jl_StringBuilder_append($line, $e); if ($rt_suspending()) { break main; } $line = $tmp; - $ptr = 75; - case 75: + $ptr = 95; + case 95: $tmp = jl_StringBuilder_append($line, var$11); if ($rt_suspending()) { break main; } $line = $tmp; - $ptr = 76; - case 76: + $ptr = 96; + case 96: $tmp = jl_StringBuilder_append($line, var$12); if ($rt_suspending()) { break main; } $line = $tmp; - $ptr = 77; - case 77: + $ptr = 97; + case 97: $tmp = jl_StringBuilder_append($line, var$13); if ($rt_suspending()) { break main; } $line = $tmp; jl_StringBuilder_append5($line, var$16); - $ptr = 78; - case 78: + $ptr = 98; + case 98: $tmp = jl_StringBuilder_toString(var$22); if ($rt_suspending()) { break main; @@ -842497,18 +844409,18 @@ var$10 = $x - $i | 0; var$14 = $y - $lw | 0; $i = 16777215; - $ptr = 62; + $ptr = 77; continue main; default: $rt_invalidPointer(); }} $rt_nativeThread().push($this, $x, $y, $i, $potions, $e, var$6, var$7, $lw, $line, var$10, var$11, var$12, var$13, var$14, $xpc, var$16, var$17, $t, $m, $s, $j, var$22, var$23, $ptr); } function nmcg_GuiOverlayDebug_drawWorldHUD($this, $x, $y) { - var $totalTicks, $minutes, $days, $hours, $dticks, $seconds, $blockpos, $biome, $cal, $blockLight, $totalLight, $c, $e, $lightColor, var$17, $skyLight, $temp, var$20, var$21, var$22, $ptr, $tmp; + var $totalTicks, $minutes, $days, $hours, $dticks, $seconds, $blockpos, $biome, $cal, $blockLight, $totalLight, $c, $lightColor, $e, $skyLight, var$18, $temp, var$20, var$21, var$22, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$22 = $thread.pop();var$21 = $thread.pop();var$20 = $thread.pop();$temp = $thread.pop();$skyLight = $thread.pop();var$17 = $thread.pop();$lightColor = $thread.pop();$e = $thread.pop();$c = $thread.pop();$totalLight = $thread.pop();$blockLight = $thread.pop();$cal = $thread.pop();$biome = $thread.pop();$blockpos = $thread.pop();$seconds = $thread.pop();$dticks = $thread.pop();$hours = $thread.pop();$days = $thread.pop();$minutes = $thread.pop();$totalTicks = $thread.pop();$y + $ptr = $thread.pop();var$22 = $thread.pop();var$21 = $thread.pop();var$20 = $thread.pop();$temp = $thread.pop();var$18 = $thread.pop();$skyLight = $thread.pop();$e = $thread.pop();$lightColor = $thread.pop();$c = $thread.pop();$totalLight = $thread.pop();$blockLight = $thread.pop();$cal = $thread.pop();$biome = $thread.pop();$blockpos = $thread.pop();$seconds = $thread.pop();$dticks = $thread.pop();$hours = $thread.pop();$days = $thread.pop();$minutes = $thread.pop();$totalTicks = $thread.pop();$y = $thread.pop();$x = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { @@ -842528,14 +844440,14 @@ if ($rt_suspending()) { break main; } - $blockpos = $tmp; + $biome = $tmp; ju_Locale_$callClinit(); - $biome = ju_Locale_ENGLISH; + $blockpos = ju_Locale_ENGLISH; ju_Calendar_$callClinit(); $cal = new ju_GregorianCalendar; $ptr = 2; case 2: - ju_GregorianCalendar__init_6($cal, $blockpos, $biome); + ju_GregorianCalendar__init_6($cal, $biome, $blockpos); if ($rt_suspending()) { break main; } @@ -842580,123 +844492,144 @@ break main; } $blockpos = nmu_EnumChatFormatting_WHITE; + $ptr = 8; + case 8: + $tmp = jl_String_valueOf($blockpos); + if ($rt_suspending()) { + break main; + } + $blockpos = $tmp; $days = Long_div(Long_add($totalTicks, Long_fromInt(30000)), Long_fromInt(24000)); $biome = nmu_EnumChatFormatting_YELLOW; + $ptr = 9; + case 9: + $tmp = jl_String_valueOf($biome); + if ($rt_suspending()) { + break main; + } + $biome = $tmp; if (!$this.$mc9.$gameSettings.$hud24h) { - $ptr = 8; + $ptr = 10; continue main; } - $ptr = 9; + $ptr = 11; continue main; - case 8: + case 10: nmcg_GuiOverlayDebug_$callClinit(); if ($rt_suspending()) { break main; } $c = nmcg_GuiOverlayDebug_SDFTwelve; - $ptr = 10; + $ptr = 12; continue main; - case 9: + case 11: nmcg_GuiOverlayDebug_$callClinit(); if ($rt_suspending()) { break main; } $c = nmcg_GuiOverlayDebug_SDFTwentyFour; - $ptr = 10; - case 10: + $ptr = 12; + case 12: $tmp = ju_Calendar_getTime($cal); if ($rt_suspending()) { break main; } - $e = $tmp; - $ptr = 11; - case 11: - $tmp = jt_DateFormat_format($c, $e); + $lightColor = $tmp; + $ptr = 13; + case 13: + $tmp = jt_DateFormat_format($c, $lightColor); if ($rt_suspending()) { break main; } $c = $tmp; - $e = nmu_EnumChatFormatting_WHITE; - $lightColor = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($lightColor); - $ptr = 12; - case 12: - jl_AbstractStringBuilder_append($lightColor, $blockpos); + $lightColor = nmu_EnumChatFormatting_WHITE; + $ptr = 14; + case 14: + $tmp = jl_String_valueOf($lightColor); + if ($rt_suspending()) { + break main; + } + $lightColor = $tmp; + $e = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($e); + $ptr = 15; + case 15: + jl_AbstractStringBuilder_append($e, $blockpos); if ($rt_suspending()) { break main; } $blockpos = $rt_s(6097); - $ptr = 13; - case 13: - jl_AbstractStringBuilder_append($lightColor, $blockpos); - if ($rt_suspending()) { - break main; - } - jl_AbstractStringBuilder_append2($lightColor, $days); - $blockpos = $rt_s(209); - $ptr = 14; - case 14: - jl_AbstractStringBuilder_append($lightColor, $blockpos); - if ($rt_suspending()) { - break main; - } - $ptr = 15; - case 15: - jl_AbstractStringBuilder_append($lightColor, $biome); - if ($rt_suspending()) { - break main; - } $ptr = 16; case 16: - jl_AbstractStringBuilder_append($lightColor, $c); + jl_AbstractStringBuilder_append($e, $blockpos); if ($rt_suspending()) { break main; } + jl_AbstractStringBuilder_append2($e, $days); + $blockpos = $rt_s(209); $ptr = 17; case 17: - jl_AbstractStringBuilder_append($lightColor, $e); + jl_AbstractStringBuilder_append($e, $blockpos); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append0($lightColor, 41); $ptr = 18; case 18: - $tmp = jl_AbstractStringBuilder_toString($lightColor); + jl_AbstractStringBuilder_append($e, $biome); if ($rt_suspending()) { break main; } - var$17 = $tmp; + $ptr = 19; + case 19: + jl_AbstractStringBuilder_append($e, $c); + if ($rt_suspending()) { + break main; + } + $ptr = 20; + case 20: + jl_AbstractStringBuilder_append($e, $lightColor); + if ($rt_suspending()) { + break main; + } + jl_AbstractStringBuilder_append0($e, 41); + $ptr = 21; + case 21: + $tmp = jl_AbstractStringBuilder_toString($e); + if ($rt_suspending()) { + break main; + } + $cal = $tmp; $e = $this.$mc9.$renderViewEntity; $blockpos = nmu_BlockPos__init_1($e.$posX, nmu_MathHelper_clamp_double($e.$boundingBox.$minY0, 0.0, 254.0), $e.$posZ); $biome = $this.$mc9.$theWorld; - $ptr = 19; - case 19: + $ptr = 22; + case 22: $tmp = nmw_World_getBiomeGenForCoords($biome, $blockpos); if ($rt_suspending()) { break main; } $biome = $tmp; $c = $this.$mc9.$theWorld; - $ptr = 20; - case 20: + $ptr = 23; + case 23: $tmp = nmw_World_getChunkFromBlockCoords($c, $blockpos); if ($rt_suspending()) { break main; } $c = $tmp; nmw_EnumSkyBlock_$callClinit(); - $e = nmw_EnumSkyBlock_BLOCK; - $ptr = 21; - case 21: - $tmp = $c.$getLightFor($e, $blockpos); + $lightColor = nmw_EnumSkyBlock_BLOCK; + $ptr = 24; + case 24: + $tmp = $c.$getLightFor($lightColor, $blockpos); if ($rt_suspending()) { break main; } $blockLight = $tmp; - $e = nmw_EnumSkyBlock_SKY; - $ptr = 22; - case 22: - $tmp = $c.$getLightFor($e, $blockpos); + $lightColor = nmw_EnumSkyBlock_SKY; + $ptr = 25; + case 25: + $tmp = $c.$getLightFor($lightColor, $blockpos); if ($rt_suspending()) { break main; } @@ -842704,134 +844637,169 @@ $skyLight = $totalLight - nmw_World_calculateSkylightSubtracted($this.$mc9.$theWorld, 1.0) | 0; $totalLight = jl_Math_max($blockLight, $skyLight); $lightColor = $blockLight >= 8 ? nmu_EnumChatFormatting_GREEN : $skyLight >= 8 && nmw_World_isDaytime($this.$mc9.$theWorld) ? nmu_EnumChatFormatting_YELLOW : nmu_EnumChatFormatting_RED; - $cal = nmu_EnumChatFormatting_WHITE; - $c = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($c); - $e = $rt_s(6098); - $ptr = 23; - case 23: - jl_AbstractStringBuilder_append($c, $e); + $ptr = 26; + case 26: + $tmp = jl_String_valueOf($lightColor); if ($rt_suspending()) { break main; } - $ptr = 24; - case 24: + $e = $tmp; + $c = nmu_EnumChatFormatting_WHITE; + $ptr = 27; + case 27: + $tmp = jl_String_valueOf($c); + if ($rt_suspending()) { + break main; + } + var$18 = $tmp; + $c = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($c); + $lightColor = $rt_s(6098); + $ptr = 28; + case 28: jl_AbstractStringBuilder_append($c, $lightColor); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append1($c, $totalLight); - $ptr = 25; - case 25: - jl_AbstractStringBuilder_append($c, $cal); - if ($rt_suspending()) { - break main; - } - $ptr = 26; - case 26: - $tmp = jl_AbstractStringBuilder_toString($c); - if ($rt_suspending()) { - break main; - } - $cal = $tmp; - $ptr = 27; - case 27: - $tmp = nmwb_BiomeGenBase_getFloatTemperature($biome, $blockpos); - if ($rt_suspending()) { - break main; - } - $temp = $tmp; - var$20 = $blockLight <= 11 && $temp <= 0.15000000596046448 ? nmu_EnumChatFormatting_AQUA : nmu_EnumChatFormatting_YELLOW; - $c = $rt_s(3706); - var$21 = $rt_createArray(jl_Object, 1); - var$21.data[0] = jl_Float_valueOf($temp); - $ptr = 28; - case 28: - $tmp = nlev_HString_format($c, var$21); - if ($rt_suspending()) { - break main; - } - $blockpos = $tmp; - $c = nmu_EnumChatFormatting_WHITE; - $e = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($e); - $lightColor = $rt_s(6099); $ptr = 29; case 29: - jl_AbstractStringBuilder_append($e, $lightColor); + jl_AbstractStringBuilder_append($c, $e); if ($rt_suspending()) { break main; } + jl_AbstractStringBuilder_append1($c, $totalLight); $ptr = 30; case 30: - jl_AbstractStringBuilder_append($e, var$20); + jl_AbstractStringBuilder_append($c, var$18); if ($rt_suspending()) { break main; } $ptr = 31; case 31: - jl_AbstractStringBuilder_append($e, $blockpos); - if ($rt_suspending()) { - break main; - } - $ptr = 32; - case 32: - jl_AbstractStringBuilder_append($e, $c); - if ($rt_suspending()) { - break main; - } - $ptr = 33; - case 33: - $tmp = jl_AbstractStringBuilder_toString($e); + $tmp = jl_AbstractStringBuilder_toString($c); if ($rt_suspending()) { break main; } $e = $tmp; - $blockpos = $this.$fontRenderer; - $temp = $x; - var$22 = $y - 30 | 0; - $x = 16777215; + $ptr = 32; + case 32: + $tmp = nmwb_BiomeGenBase_getFloatTemperature($biome, $blockpos); + if ($rt_suspending()) { + break main; + } + $temp = $tmp; + $blockpos = $blockLight <= 11 && $temp <= 0.15000000596046448 ? nmu_EnumChatFormatting_AQUA : nmu_EnumChatFormatting_YELLOW; + $ptr = 33; + case 33: + $tmp = jl_String_valueOf($blockpos); + if ($rt_suspending()) { + break main; + } + var$18 = $tmp; + $blockpos = $rt_s(3706); + var$20 = $rt_createArray(jl_Object, 1); + var$20.data[0] = jl_Float_valueOf($temp); $ptr = 34; case 34: - nmcg_FontRenderer_drawStringWithShadow($blockpos, var$17, $temp, var$22, $x); + $tmp = nlev_HString_format($blockpos, var$20); if ($rt_suspending()) { break main; } - $blockpos = $this.$fontRenderer; - $c = nmu_EnumChatFormatting_AQUA; - $biome = $biome.$biomeName; - $lightColor = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($lightColor); - var$17 = $rt_s(6100); + var$21 = $tmp; + $blockpos = nmu_EnumChatFormatting_WHITE; $ptr = 35; case 35: - jl_AbstractStringBuilder_append($lightColor, var$17); + $tmp = jl_String_valueOf($blockpos); if ($rt_suspending()) { break main; } + $blockpos = $tmp; + $c = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($c); + $lightColor = $rt_s(6099); $ptr = 36; case 36: - jl_AbstractStringBuilder_append($lightColor, $c); + jl_AbstractStringBuilder_append($c, $lightColor); if ($rt_suspending()) { break main; } $ptr = 37; case 37: - jl_AbstractStringBuilder_append($lightColor, $biome); + jl_AbstractStringBuilder_append($c, var$18); if ($rt_suspending()) { break main; } $ptr = 38; case 38: - $tmp = jl_AbstractStringBuilder_toString($lightColor); + jl_AbstractStringBuilder_append($c, var$21); + if ($rt_suspending()) { + break main; + } + $ptr = 39; + case 39: + jl_AbstractStringBuilder_append($c, $blockpos); + if ($rt_suspending()) { + break main; + } + $ptr = 40; + case 40: + $tmp = jl_AbstractStringBuilder_toString($c); + if ($rt_suspending()) { + break main; + } + $lightColor = $tmp; + $blockpos = $this.$fontRenderer; + $temp = $x; + var$22 = $y - 30 | 0; + $x = 16777215; + $ptr = 41; + case 41: + nmcg_FontRenderer_drawStringWithShadow($blockpos, $cal, $temp, var$22, $x); + if ($rt_suspending()) { + break main; + } + $blockpos = $this.$fontRenderer; + $c = nmu_EnumChatFormatting_AQUA; + $ptr = 42; + case 42: + $tmp = jl_String_valueOf($c); + if ($rt_suspending()) { + break main; + } + $c = $tmp; + $biome = $biome.$biomeName; + $cal = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($cal); + var$18 = $rt_s(6100); + $ptr = 43; + case 43: + jl_AbstractStringBuilder_append($cal, var$18); + if ($rt_suspending()) { + break main; + } + $ptr = 44; + case 44: + jl_AbstractStringBuilder_append($cal, $c); + if ($rt_suspending()) { + break main; + } + $ptr = 45; + case 45: + jl_AbstractStringBuilder_append($cal, $biome); + if ($rt_suspending()) { + break main; + } + $ptr = 46; + case 46: + $tmp = jl_AbstractStringBuilder_toString($cal); if ($rt_suspending()) { break main; } $biome = $tmp; var$22 = $y - 19 | 0; $x = 16777215; - $ptr = 39; - case 39: + $ptr = 47; + case 47: nmcg_FontRenderer_drawStringWithShadow($blockpos, $biome, $temp, var$22, $x); if ($rt_suspending()) { break main; @@ -842839,21 +844807,21 @@ $blockpos = $this.$fontRenderer; $biome = new jl_StringBuilder; jl_AbstractStringBuilder__init_($biome); - $ptr = 40; - case 40: - jl_AbstractStringBuilder_append($biome, $cal); - if ($rt_suspending()) { - break main; - } - jl_AbstractStringBuilder_append0($biome, 32); - $ptr = 41; - case 41: + $ptr = 48; + case 48: jl_AbstractStringBuilder_append($biome, $e); if ($rt_suspending()) { break main; } - $ptr = 42; - case 42: + jl_AbstractStringBuilder_append0($biome, 32); + $ptr = 49; + case 49: + jl_AbstractStringBuilder_append($biome, $lightColor); + if ($rt_suspending()) { + break main; + } + $ptr = 50; + case 50: $tmp = jl_AbstractStringBuilder_toString($biome); if ($rt_suspending()) { break main; @@ -842861,8 +844829,8 @@ $biome = $tmp; var$22 = $y - 8 | 0; $x = 16777215; - $ptr = 43; - case 43: + $ptr = 51; + case 51: nmcg_FontRenderer_drawStringWithShadow($blockpos, $biome, $temp, var$22, $x); if ($rt_suspending()) { break main; @@ -842870,7 +844838,7 @@ return; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $x, $y, $totalTicks, $minutes, $days, $hours, $dticks, $seconds, $blockpos, $biome, $cal, $blockLight, $totalLight, $c, $e, $lightColor, var$17, $skyLight, $temp, var$20, var$21, var$22, $ptr); + $rt_nativeThread().push($this, $x, $y, $totalTicks, $minutes, $days, $hours, $dticks, $seconds, $blockpos, $biome, $cal, $blockLight, $totalLight, $c, $lightColor, $e, $skyLight, var$18, $temp, var$20, var$21, var$22, $ptr); } function nmcg_GuiOverlayDebug_isReducedDebug($this) { var var$1, $ptr, $tmp; @@ -843756,12 +845724,12 @@ } $k = $tmp; $l = Long_sub($j, $k); - var$2 = $rt_createArray(jl_String, 9); - var$7 = 0; + var$8 = $rt_createArray(jl_String, 9); + var$9 = 0; $arraylist = $rt_s(6122); - var$3 = $rt_createArray(jl_Object, 2); - var$6 = var$3.data; - var$4 = 0; + var$2 = $rt_createArray(jl_Object, 2); + var$3 = var$2.data; + var$7 = 0; $iblockstate = $rt_s(31); $ptr = 11; case 11: @@ -843770,10 +845738,10 @@ break main; } $iblockstate = $tmp; - var$6[var$4] = $iblockstate; - var$9 = !$this.$mc9.$jvm64bit ? 32 : 64; - var$8 = var$2.data; - var$6[1] = jl_Integer_valueOf0(var$9); + var$3[var$7] = $iblockstate; + var$4 = !$this.$mc9.$jvm64bit ? 32 : 64; + var$6 = var$8.data; + var$3[1] = jl_Integer_valueOf0(var$4); $ptr = 13; continue main; case 12: @@ -843800,17 +845768,17 @@ } return $arraylist; case 13: - $tmp = nlev_HString_format($arraylist, var$3); + $tmp = nlev_HString_format($arraylist, var$2); if ($rt_suspending()) { break main; } $arraylist = $tmp; - var$8[var$7] = $arraylist; + var$6[var$9] = $arraylist; var$7 = 1; $arraylist = $rt_s(6123); - var$3 = $rt_createArray(jl_Object, 3); - var$6 = var$3.data; - var$6[0] = jl_Long_valueOf(Long_div(Long_mul($l, Long_fromInt(100)), $i)); + var$2 = $rt_createArray(jl_Object, 3); + var$3 = var$2.data; + var$3[0] = jl_Long_valueOf(Long_div(Long_mul($l, Long_fromInt(100)), $i)); var$4 = 1; $ptr = 14; case 14: @@ -843819,7 +845787,7 @@ break main; } $k = $tmp; - var$6[var$4] = jl_Long_valueOf($k); + var$3[var$4] = jl_Long_valueOf($k); var$4 = 2; $ptr = 15; case 15: @@ -843828,20 +845796,20 @@ break main; } $k = $tmp; - var$6[var$4] = jl_Long_valueOf($k); + var$3[var$4] = jl_Long_valueOf($k); $ptr = 16; case 16: - $tmp = nlev_HString_format($arraylist, var$3); + $tmp = nlev_HString_format($arraylist, var$2); if ($rt_suspending()) { break main; } $arraylist = $tmp; - var$8[var$7] = $arraylist; + var$6[var$7] = $arraylist; var$7 = 2; $arraylist = $rt_s(6124); - var$3 = $rt_createArray(jl_Object, 2); - var$6 = var$3.data; - var$6[0] = jl_Long_valueOf(Long_div(Long_mul($j, Long_fromInt(100)), $i)); + var$2 = $rt_createArray(jl_Object, 2); + var$3 = var$2.data; + var$3[0] = jl_Long_valueOf(Long_div(Long_mul($j, Long_fromInt(100)), $i)); var$4 = 1; $ptr = 17; case 17: @@ -843850,35 +845818,35 @@ break main; } $k = $tmp; - var$6[var$4] = jl_Long_valueOf($k); + var$3[var$4] = jl_Long_valueOf($k); $ptr = 18; case 18: - $tmp = nlev_HString_format($arraylist, var$3); + $tmp = nlev_HString_format($arraylist, var$2); if ($rt_suspending()) { break main; } $arraylist = $tmp; - var$8[var$7] = $arraylist; - var$8[3] = $rt_s(14); + var$6[var$7] = $arraylist; + var$6[3] = $rt_s(14); var$7 = 4; $arraylist = $rt_s(6119); - var$3 = $rt_createArray(jl_Object, 1); - var$3.data[0] = $rt_s(6120); + var$2 = $rt_createArray(jl_Object, 1); + var$2.data[0] = $rt_s(6120); $ptr = 19; case 19: - $tmp = nlev_HString_format($arraylist, var$3); + $tmp = nlev_HString_format($arraylist, var$2); if ($rt_suspending()) { break main; } $arraylist = $tmp; - var$8[var$7] = $arraylist; - var$8[5] = $rt_s(14); + var$6[var$7] = $arraylist; + var$6[5] = $rt_s(14); var$7 = 6; $arraylist = $rt_s(6121); - var$3 = $rt_createArray(jl_Object, 3); - var$6 = var$3.data; - var$6[0] = jl_Integer_valueOf0(nlevi_PlatformInput_windowWidth); - var$6[1] = jl_Integer_valueOf0(nlevi_PlatformInput_windowHeight); + var$2 = $rt_createArray(jl_Object, 3); + var$3 = var$2.data; + var$3[0] = jl_Integer_valueOf0(nlevi_PlatformInput_windowWidth); + var$3[1] = jl_Integer_valueOf0(nlevi_PlatformInput_windowHeight); var$4 = 2; var$9 = 7936; $ptr = 20; @@ -843888,15 +845856,15 @@ break main; } $iblockstate = $tmp; - var$6[var$4] = $iblockstate; + var$3[var$4] = $iblockstate; $ptr = 21; case 21: - $tmp = nlev_HString_format($arraylist, var$3); + $tmp = nlev_HString_format($arraylist, var$2); if ($rt_suspending()) { break main; } $arraylist = $tmp; - var$8[var$7] = $arraylist; + var$6[var$7] = $arraylist; var$7 = 7; var$4 = 7937; $ptr = 22; @@ -843906,7 +845874,7 @@ break main; } $arraylist = $tmp; - var$8[var$7] = $arraylist; + var$6[var$7] = $arraylist; var$7 = 8; var$4 = 7938; $ptr = 23; @@ -843916,10 +845884,10 @@ break main; } $arraylist = $tmp; - var$8[var$7] = $arraylist; + var$6[var$7] = $arraylist; $ptr = 24; case 24: - $tmp = cgcc_Lists_newArrayList1(var$2); + $tmp = cgcc_Lists_newArrayList1(var$8); if ($rt_suspending()) { break main; } @@ -844012,10 +845980,10 @@ continue main; } if ($entry.$getValue() === jl_Boolean_FALSE) { - $ptr = 40; + $ptr = 41; continue main; } - $ptr = 44; + $ptr = 46; continue main; case 36: nmu_EnumChatFormatting_$callClinit(); @@ -844023,58 +845991,72 @@ break main; } $blockpos = nmu_EnumChatFormatting_GREEN; - var$17 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$17); $ptr = 37; case 37: - jl_AbstractStringBuilder_append(var$17, $blockpos); + $tmp = jl_String_valueOf($blockpos); if ($rt_suspending()) { break main; } + $blockpos = $tmp; + var$17 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$17); $ptr = 38; case 38: - jl_AbstractStringBuilder_append(var$17, $s); + jl_AbstractStringBuilder_append(var$17, $blockpos); if ($rt_suspending()) { break main; } $ptr = 39; case 39: + jl_AbstractStringBuilder_append(var$17, $s); + if ($rt_suspending()) { + break main; + } + $ptr = 40; + case 40: $tmp = jl_AbstractStringBuilder_toString(var$17); if ($rt_suspending()) { break main; } $s = $tmp; - $ptr = 44; + $ptr = 46; continue main; - case 40: + case 41: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } $blockpos = nmu_EnumChatFormatting_RED; + $ptr = 42; + case 42: + $tmp = jl_String_valueOf($blockpos); + if ($rt_suspending()) { + break main; + } + $blockpos = $tmp; var$17 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$17); - $ptr = 41; - case 41: + $ptr = 43; + case 43: jl_AbstractStringBuilder_append(var$17, $blockpos); if ($rt_suspending()) { break main; } - $ptr = 42; - case 42: + $ptr = 44; + case 44: jl_AbstractStringBuilder_append(var$17, $s); if ($rt_suspending()) { break main; } - $ptr = 43; - case 43: + $ptr = 45; + case 45: $tmp = jl_AbstractStringBuilder_toString(var$17); if ($rt_suspending()) { break main; } $s = $tmp; - $ptr = 44; - case 44: + $ptr = 46; + case 46: $tmp = $entry.$getKey(); if ($rt_suspending()) { break main; @@ -844083,34 +846065,34 @@ $entry = $blockpos.$name49; $blockpos = new jl_StringBuilder; jl_AbstractStringBuilder__init_($blockpos); - $ptr = 45; - case 45: + $ptr = 47; + case 47: jl_AbstractStringBuilder_append($blockpos, $entry); if ($rt_suspending()) { break main; } $entry = $rt_s(18); - $ptr = 46; - case 46: + $ptr = 48; + case 48: jl_AbstractStringBuilder_append($blockpos, $entry); if ($rt_suspending()) { break main; } - $ptr = 47; - case 47: + $ptr = 49; + case 49: jl_AbstractStringBuilder_append($blockpos, $s); if ($rt_suspending()) { break main; } - $ptr = 48; - case 48: + $ptr = 50; + case 50: $tmp = jl_AbstractStringBuilder_toString($blockpos); if ($rt_suspending()) { break main; } $blockpos = $tmp; - $ptr = 49; - case 49: + $ptr = 51; + case 51: ju_ArrayList_add($arraylist, $blockpos); if ($rt_suspending()) { break main; @@ -846198,12 +848180,12 @@ $rt_nativeThread().push($this, $willBeRendered, var$2, $ptr); } function nmcg_GuiPlayerTabOverlay_renderPlayerlist($this, $width, $scoreboardIn, $scoreObjectiveIn) { - var $nethandlerplayclient, $networkplayerinfo, $list, $i, $l, $m, $n, $n_0, $k, $l3, $j4, $m_0, $i2, $i1, $j3, $j1, $k1, $list1, $list2, $s3, $k3, $k4, $l4, $i5, $j2, $k2, var$30, var$31, var$32, var$33, $networkplayerinfo1, $s1, $gameprofile, $entityplayer, $flag1, $s4, $j5, $l2, $i3, $k5, $l5, $ptr, $tmp; + var $nethandlerplayclient, $networkplayerinfo, $list2, $list, $i, $l, $m, $n, $n_0, $k, $l3, $j4, $m_0, $i1, $l2, $j1, $k1, $list1, $i2, $j5, $k4, $l4, $i5, $j2, $k2, $s3, var$30, var$31, var$32, var$33, $networkplayerinfo1, $s1, $gameprofile, $entityplayer, $flag1, $s4, $i3, $j3, $k3, $k5, $l5, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$l5 = $thread.pop();$k5 = $thread.pop();$i3 = $thread.pop();$l2 = $thread.pop();$j5 = $thread.pop();$s4 = $thread.pop();$flag1 = $thread.pop();$entityplayer = $thread.pop();$gameprofile = $thread.pop();$s1 = $thread.pop();$networkplayerinfo1 = $thread.pop();var$33 = $thread.pop();var$32 = $thread.pop();var$31 = $thread.pop();var$30 = $thread.pop();$k2 = $thread.pop();$j2 = $thread.pop();$i5 = $thread.pop();$l4 = $thread.pop();$k4 = $thread.pop();$k3 = $thread.pop();$s3 = $thread.pop();$list2 - = $thread.pop();$list1 = $thread.pop();$k1 = $thread.pop();$j1 = $thread.pop();$j3 = $thread.pop();$i1 = $thread.pop();$i2 = $thread.pop();$m_0 = $thread.pop();$j4 = $thread.pop();$l3 = $thread.pop();$k = $thread.pop();$n_0 = $thread.pop();$n = $thread.pop();$m = $thread.pop();$l = $thread.pop();$i = $thread.pop();$list = $thread.pop();$networkplayerinfo = $thread.pop();$nethandlerplayclient = $thread.pop();$scoreObjectiveIn = $thread.pop();$scoreboardIn = $thread.pop();$width = $thread.pop();$this + $ptr = $thread.pop();$l5 = $thread.pop();$k5 = $thread.pop();$k3 = $thread.pop();$j3 = $thread.pop();$i3 = $thread.pop();$s4 = $thread.pop();$flag1 = $thread.pop();$entityplayer = $thread.pop();$gameprofile = $thread.pop();$s1 = $thread.pop();$networkplayerinfo1 = $thread.pop();var$33 = $thread.pop();var$32 = $thread.pop();var$31 = $thread.pop();var$30 = $thread.pop();$s3 = $thread.pop();$k2 = $thread.pop();$j2 = $thread.pop();$i5 = $thread.pop();$l4 = $thread.pop();$k4 = $thread.pop();$j5 = $thread.pop();$i2 + = $thread.pop();$list1 = $thread.pop();$k1 = $thread.pop();$j1 = $thread.pop();$l2 = $thread.pop();$i1 = $thread.pop();$m_0 = $thread.pop();$j4 = $thread.pop();$l3 = $thread.pop();$k = $thread.pop();$n_0 = $thread.pop();$n = $thread.pop();$m = $thread.pop();$l = $thread.pop();$i = $thread.pop();$list = $thread.pop();$list2 = $thread.pop();$networkplayerinfo = $thread.pop();$nethandlerplayclient = $thread.pop();$scoreObjectiveIn = $thread.pop();$scoreboardIn = $thread.pop();$width = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { @@ -846216,10 +848198,10 @@ if ($rt_suspending()) { break main; } - $nethandlerplayclient = $tmp; + $list2 = $tmp; $ptr = 2; case 2: - $tmp = cgcc_Ordering_sortedCopy($networkplayerinfo, $nethandlerplayclient); + $tmp = cgcc_Ordering_sortedCopy($networkplayerinfo, $list2); if ($rt_suspending()) { break main; } @@ -846268,11 +848250,11 @@ } $l = 0; $m_0 = $rt_imul($j4, ((9 + $i | 0) + $l | 0) + 13 | 0); - $i2 = $width - 50 | 0; - $i1 = jl_Math_min($m_0, $i2) / $j4 | 0; - $k = $width / 2 | 0; - $j3 = $rt_imul($i1, $j4) + (($j4 - 1 | 0) * 5 | 0) | 0; - $j1 = $k - ($j3 / 2 | 0) | 0; + $k = $width - 50 | 0; + $i1 = jl_Math_min($m_0, $k) / $j4 | 0; + $n = $width / 2 | 0; + $l2 = $rt_imul($i1, $j4) + (($j4 - 1 | 0) * 5 | 0) | 0; + $j1 = $n - ($l2 / 2 | 0) | 0; $k1 = 10; $list1 = null; $list2 = null; @@ -846289,18 +848271,18 @@ continue main; } if ($list1 !== null) { - $width = $j3 / 2 | 0; - $m_0 = ($k - $width | 0) - 1 | 0; + $width = $l2 / 2 | 0; + $m_0 = ($n - $width | 0) - 1 | 0; $n_0 = 9; - $width = ($k + $width | 0) + 1 | 0; + $width = ($n + $width | 0) + 1 | 0; $ptr = 19; continue main; } - $width = $j3 / 2 | 0; - $i2 = ($k - $width | 0) - 1 | 0; + $width = $l2 / 2 | 0; + $i2 = ($n - $width | 0) - 1 | 0; $m_0 = $k1 - 1 | 0; - $n = ($k + $width | 0) + 1 | 0; - $j4 = $k1 + ($m * 9 | 0) | 0; + $j4 = ($n + $width | 0) + 1 | 0; + $j5 = $k1 + ($m * 9 | 0) | 0; $width = (-2147483648); $ptr = 23; continue main; @@ -846311,17 +848293,17 @@ } $networkplayerinfo = $tmp; $networkplayerinfo = $networkplayerinfo; - $nethandlerplayclient = $this.$mc11.$fontRendererObj; + $list2 = $this.$mc11.$fontRendererObj; $ptr = 7; case 7: $tmp = nmcg_GuiPlayerTabOverlay_getPlayerName($this, $networkplayerinfo); if ($rt_suspending()) { break main; } - $s3 = $tmp; - $i = jl_Math_max($i, nmcg_FontRenderer_getStringWidth($nethandlerplayclient, $s3)); + $nethandlerplayclient = $tmp; + $i = jl_Math_max($i, nmcg_FontRenderer_getStringWidth($list2, $nethandlerplayclient)); if ($scoreObjectiveIn !== null) { - $nethandlerplayclient = nms_ScoreObjective_getRenderType($scoreObjectiveIn); + $list2 = nms_ScoreObjective_getRenderType($scoreObjectiveIn); $ptr = 8; continue main; } @@ -846338,8 +848320,8 @@ if ($rt_suspending()) { break main; } - if ($nethandlerplayclient !== nms_IScoreObjectiveCriteria$EnumRenderType_HEARTS) { - $nethandlerplayclient = $this.$mc11.$fontRendererObj; + if ($list2 !== nms_IScoreObjectiveCriteria$EnumRenderType_HEARTS) { + $list2 = $this.$mc11.$fontRendererObj; $networkplayerinfo = nlevma_GameProfile_getName(nmcn_NetworkPlayerInfo_getGameProfile($networkplayerinfo)); $ptr = 9; continue main; @@ -846368,7 +848350,7 @@ break main; } $networkplayerinfo = $tmp; - $l = jl_Math_max($l, nmcg_FontRenderer_getStringWidth($nethandlerplayclient, $networkplayerinfo)); + $l = jl_Math_max($l, nmcg_FontRenderer_getStringWidth($list2, $networkplayerinfo)); $m = $m + 1 | 0; if ($m < $n) { $ptr = 6; @@ -846385,11 +848367,11 @@ if ($scoreboardIn === nms_IScoreObjectiveCriteria$EnumRenderType_HEARTS) $l = 90; $m_0 = $rt_imul($j4, ((9 + $i | 0) + $l | 0) + 13 | 0); - $i2 = $width - 50 | 0; - $i1 = jl_Math_min($m_0, $i2) / $j4 | 0; - $k = $width / 2 | 0; - $j3 = $rt_imul($i1, $j4) + (($j4 - 1 | 0) * 5 | 0) | 0; - $j1 = $k - ($j3 / 2 | 0) | 0; + $k = $width - 50 | 0; + $i1 = jl_Math_min($m_0, $k) / $j4 | 0; + $n = $width / 2 | 0; + $l2 = $rt_imul($i1, $j4) + (($j4 - 1 | 0) * 5 | 0) | 0; + $j1 = $n - ($l2 / 2 | 0) | 0; $k1 = 10; $list1 = null; $list2 = null; @@ -846406,18 +848388,18 @@ continue main; } if ($list1 !== null) { - $width = $j3 / 2 | 0; - $m_0 = ($k - $width | 0) - 1 | 0; + $width = $l2 / 2 | 0; + $m_0 = ($n - $width | 0) - 1 | 0; $n_0 = 9; - $width = ($k + $width | 0) + 1 | 0; + $width = ($n + $width | 0) + 1 | 0; $ptr = 19; continue main; } - $width = $j3 / 2 | 0; - $i2 = ($k - $width | 0) - 1 | 0; + $width = $l2 / 2 | 0; + $i2 = ($n - $width | 0) - 1 | 0; $m_0 = $k1 - 1 | 0; - $n = ($k + $width | 0) + 1 | 0; - $j4 = $k1 + ($m * 9 | 0) | 0; + $j4 = ($n + $width | 0) + 1 | 0; + $j5 = $k1 + ($m * 9 | 0) | 0; $width = (-2147483648); $ptr = 23; continue main; @@ -846429,7 +848411,7 @@ $networkplayerinfo = $tmp; $ptr = 13; case 13: - $tmp = nmcg_FontRenderer_listFormattedStringToWidth($scoreboardIn, $networkplayerinfo, $i2); + $tmp = nmcg_FontRenderer_listFormattedStringToWidth($scoreboardIn, $networkplayerinfo, $k); if ($rt_suspending()) { break main; } @@ -846454,18 +848436,18 @@ continue main; } if ($list1 !== null) { - $width = $j3 / 2 | 0; - $m_0 = ($k - $width | 0) - 1 | 0; + $width = $l2 / 2 | 0; + $m_0 = ($n - $width | 0) - 1 | 0; $n_0 = 9; - $width = ($k + $width | 0) + 1 | 0; + $width = ($n + $width | 0) + 1 | 0; $ptr = 19; continue main; } - $width = $j3 / 2 | 0; - $i2 = ($k - $width | 0) - 1 | 0; + $width = $l2 / 2 | 0; + $i2 = ($n - $width | 0) - 1 | 0; $m_0 = $k1 - 1 | 0; - $n = ($k + $width | 0) + 1 | 0; - $j4 = $k1 + ($m * 9 | 0) | 0; + $j4 = ($n + $width | 0) + 1 | 0; + $j5 = $k1 + ($m * 9 | 0) | 0; $width = (-2147483648); $ptr = 23; continue main; @@ -846477,7 +848459,7 @@ $networkplayerinfo = $tmp; $ptr = 16; case 16: - $tmp = nmcg_FontRenderer_listFormattedStringToWidth($scoreboardIn, $networkplayerinfo, $i2); + $tmp = nmcg_FontRenderer_listFormattedStringToWidth($scoreboardIn, $networkplayerinfo, $k); if ($rt_suspending()) { break main; } @@ -846496,18 +848478,18 @@ continue main; } if ($list1 !== null) { - $width = $j3 / 2 | 0; - $m_0 = ($k - $width | 0) - 1 | 0; + $width = $l2 / 2 | 0; + $m_0 = ($n - $width | 0) - 1 | 0; $n_0 = 9; - $width = ($k + $width | 0) + 1 | 0; + $width = ($n + $width | 0) + 1 | 0; $ptr = 19; continue main; } - $width = $j3 / 2 | 0; - $i2 = ($k - $width | 0) - 1 | 0; + $width = $l2 / 2 | 0; + $i2 = ($n - $width | 0) - 1 | 0; $m_0 = $k1 - 1 | 0; - $n = ($k + $width | 0) + 1 | 0; - $j4 = $k1 + ($m * 9 | 0) | 0; + $j4 = ($n + $width | 0) + 1 | 0; + $j5 = $k1 + ($m * 9 | 0) | 0; $width = (-2147483648); $ptr = 23; continue main; @@ -846517,7 +848499,7 @@ break main; } $networkplayerinfo = $tmp; - $j3 = jl_Math_max($j3, nmcg_FontRenderer_getStringWidth($scoreboardIn, $networkplayerinfo)); + $l2 = jl_Math_max($l2, nmcg_FontRenderer_getStringWidth($scoreboardIn, $networkplayerinfo)); $m_0 = $m_0 + 1 | 0; if ($m_0 < $n_0) { $scoreboardIn = $this.$mc11.$fontRendererObj; @@ -846530,18 +848512,18 @@ continue main; } if ($list1 !== null) { - $width = $j3 / 2 | 0; - $m_0 = ($k - $width | 0) - 1 | 0; + $width = $l2 / 2 | 0; + $m_0 = ($n - $width | 0) - 1 | 0; $n_0 = 9; - $width = ($k + $width | 0) + 1 | 0; + $width = ($n + $width | 0) + 1 | 0; $ptr = 19; continue main; } - $width = $j3 / 2 | 0; - $i2 = ($k - $width | 0) - 1 | 0; + $width = $l2 / 2 | 0; + $i2 = ($n - $width | 0) - 1 | 0; $m_0 = $k1 - 1 | 0; - $n = ($k + $width | 0) + 1 | 0; - $j4 = $k1 + ($m * 9 | 0) | 0; + $j4 = ($n + $width | 0) + 1 | 0; + $j5 = $k1 + ($m * 9 | 0) | 0; $width = (-2147483648); $ptr = 23; continue main; @@ -846550,12 +848532,12 @@ if ($rt_suspending()) { break main; } - $i2 = $tmp; - $i2 = $k1 + $rt_imul($i2, $this.$mc11.$fontRendererObj.$FONT_HEIGHT) | 0; - $k3 = (-2147483648); + $k = $tmp; + $k = $k1 + $rt_imul($k, $this.$mc11.$fontRendererObj.$FONT_HEIGHT) | 0; + $i2 = (-2147483648); $ptr = 20; case 20: - nmcg_Gui_drawRect($m_0, $n_0, $width, $i2, $k3); + nmcg_Gui_drawRect($m_0, $n_0, $width, $k, $i2); if ($rt_suspending()) { break main; } @@ -846572,11 +848554,11 @@ continue main; } $k1 = $k1 + 1 | 0; - $width = $j3 / 2 | 0; - $i2 = ($k - $width | 0) - 1 | 0; + $width = $l2 / 2 | 0; + $i2 = ($n - $width | 0) - 1 | 0; $m_0 = $k1 - 1 | 0; - $n = ($k + $width | 0) + 1 | 0; - $j4 = $k1 + ($m * 9 | 0) | 0; + $j4 = ($n + $width | 0) + 1 | 0; + $j5 = $k1 + ($m * 9 | 0) | 0; $width = (-2147483648); $ptr = 23; continue main; @@ -846586,38 +848568,38 @@ break main; } $networkplayerinfo = $tmp; - $j3 = jl_Math_max($j3, nmcg_FontRenderer_getStringWidth($scoreboardIn, $networkplayerinfo)); + $l2 = jl_Math_max($l2, nmcg_FontRenderer_getStringWidth($scoreboardIn, $networkplayerinfo)); $m_0 = $m_0 + 1 | 0; if ($m_0 < $n_0) { $scoreboardIn = $this.$mc11.$fontRendererObj; continue main; } if ($list1 !== null) { - $width = $j3 / 2 | 0; - $m_0 = ($k - $width | 0) - 1 | 0; + $width = $l2 / 2 | 0; + $m_0 = ($n - $width | 0) - 1 | 0; $n_0 = 9; - $width = ($k + $width | 0) + 1 | 0; + $width = ($n + $width | 0) + 1 | 0; $ptr = 19; continue main; } - $width = $j3 / 2 | 0; - $i2 = ($k - $width | 0) - 1 | 0; + $width = $l2 / 2 | 0; + $i2 = ($n - $width | 0) - 1 | 0; $m_0 = $k1 - 1 | 0; - $n = ($k + $width | 0) + 1 | 0; - $j4 = $k1 + ($m * 9 | 0) | 0; + $j4 = ($n + $width | 0) + 1 | 0; + $j5 = $k1 + ($m * 9 | 0) | 0; $width = (-2147483648); $ptr = 23; case 23: - nmcg_Gui_drawRect($i2, $m_0, $n, $j4, $width); + nmcg_Gui_drawRect($i2, $m_0, $j4, $j5, $width); if ($rt_suspending()) { break main; } $k4 = 0; - $n_0 = 9; + $width = 9; if ($k4 >= $l3) { if ($list2 === null) return; - $width = $j4 + 1 | 0; + $width = $j5 + 1 | 0; $m_0 = $width - 1 | 0; $ptr = 32; continue main; @@ -846626,9 +848608,9 @@ $i5 = $k4 % $m | 0; $j2 = ($j1 + $rt_imul($l4, $i1) | 0) + ($l4 * 5 | 0) | 0; $k2 = $k1 + ($i5 * 9 | 0) | 0; - $width = $j2 + $i1 | 0; - $m_0 = $k2 + 8 | 0; - $j3 = 553648127; + $m_0 = $j2 + $i1 | 0; + $n_0 = $k2 + 8 | 0; + $k = 553648127; $ptr = 26; continue main; case 24: @@ -846640,7 +848622,7 @@ $s3 = $scoreboardIn; $i2 = nmcg_FontRenderer_getStringWidth($this.$mc11.$fontRendererObj, $s3); $scoreboardIn = $this.$mc11.$fontRendererObj; - var$30 = $k - ($i2 / 2 | 0) | 0; + var$30 = $n - ($i2 / 2 | 0) | 0; var$31 = $k1; $width = (-1); $ptr = 25; @@ -846656,16 +848638,16 @@ continue main; } $k1 = $k1 + 1 | 0; - $width = $j3 / 2 | 0; - $i2 = ($k - $width | 0) - 1 | 0; + $width = $l2 / 2 | 0; + $i2 = ($n - $width | 0) - 1 | 0; $m_0 = $k1 - 1 | 0; - $n = ($k + $width | 0) + 1 | 0; - $j4 = $k1 + ($m * 9 | 0) | 0; + $j4 = ($n + $width | 0) + 1 | 0; + $j5 = $k1 + ($m * 9 | 0) | 0; $width = (-2147483648); $ptr = 23; continue main; case 26: - nmcg_Gui_drawRect($j2, $k2, $width, $m_0, $j3); + nmcg_Gui_drawRect($j2, $k2, $m_0, $n_0, $k); if ($rt_suspending()) { break main; } @@ -846691,13 +848673,13 @@ if ($rt_suspending()) { break main; } - $width = 770; - $m_0 = 771; - $j3 = 1; - $k3 = 0; + $m_0 = 770; + $n_0 = 771; + $k = 1; + $l2 = 0; $ptr = 30; case 30: - nlevo_GlStateManager_tryBlendFuncSeparate($width, $m_0, $j3, $k3); + nlevo_GlStateManager_tryBlendFuncSeparate($m_0, $n_0, $k, $l2); if ($rt_suspending()) { break main; } @@ -846707,8 +848689,8 @@ if ($rt_suspending()) { break main; } - $width = $tmp; - if ($k4 < $width) { + $m_0 = $tmp; + if ($k4 < $m_0) { $ptr = 35; continue main; } @@ -846716,7 +848698,7 @@ if ($k4 >= $l3) { if ($list2 === null) return; - $width = $j4 + 1 | 0; + $width = $j5 + 1 | 0; $m_0 = $width - 1 | 0; $ptr = 32; continue main; @@ -846725,9 +848707,9 @@ $i5 = $k4 % $m | 0; $j2 = ($j1 + $rt_imul($l4, $i1) | 0) + ($l4 * 5 | 0) | 0; $k2 = $k1 + ($i5 * 9 | 0) | 0; - $width = $j2 + $i1 | 0; - $m_0 = $k2 + 8 | 0; - $j3 = 553648127; + $m_0 = $j2 + $i1 | 0; + $n_0 = $k2 + 8 | 0; + $k = 553648127; $ptr = 26; continue main; case 32: @@ -846737,10 +848719,10 @@ } $n_0 = $tmp; $n_0 = $width + $rt_imul($n_0, $this.$mc11.$fontRendererObj.$FONT_HEIGHT) | 0; - $i = (-2147483648); + $k = (-2147483648); $ptr = 33; case 33: - nmcg_Gui_drawRect($i2, $m_0, $n, $n_0, $i); + nmcg_Gui_drawRect($i2, $m_0, $j4, $n_0, $k); if ($rt_suspending()) { break main; } @@ -846792,8 +848774,8 @@ if ($rt_suspending()) { break main; } - $width = $tmp; - if ($width) { + $m_0 = $tmp; + if ($m_0) { $scoreboardIn = nlevma_GameProfile_getName($gameprofile); $networkplayerinfo = $rt_s(5961); $ptr = 44; @@ -846812,12 +848794,12 @@ $s4 = $scoreboardIn; $j5 = nmcg_FontRenderer_getStringWidth($this.$mc11.$fontRendererObj, $s4); $scoreboardIn = $this.$mc11.$fontRendererObj; - var$30 = $k - ($j5 / 2 | 0) | 0; + var$30 = $n - ($j5 / 2 | 0) | 0; var$31 = $width; - $i = (-1); + $k = (-1); $ptr = 40; case 40: - nmcg_FontRenderer_drawStringWithShadow($scoreboardIn, $s4, var$30, var$31, $i); + nmcg_FontRenderer_drawStringWithShadow($scoreboardIn, $s4, var$30, var$31, $k); if ($rt_suspending()) { break main; } @@ -846848,13 +848830,13 @@ } $l2 = 8 + (!$flag1 ? 0 : 8) | 0; $i3 = 8 * (!$flag1 ? 1 : (-1)) | 0; - var$32 = 8.0; - var$33 = $l2; - $j3 = 8; - $width = 8; + var$30 = 8.0; + var$31 = $l2; $m_0 = 8; - var$30 = 64.0; - var$31 = 64.0; + $n_0 = 8; + $k = 8; + var$32 = 64.0; + var$33 = 64.0; $ptr = 46; continue main; case 44: @@ -846862,8 +848844,8 @@ if ($rt_suspending()) { break main; } - $width = $tmp; - if (!$width) { + $m_0 = $tmp; + if (!$m_0) { $scoreboardIn = nlevma_GameProfile_getName($gameprofile); $networkplayerinfo = $rt_s(5962); $ptr = 45; @@ -846878,13 +848860,13 @@ if ($rt_suspending()) { break main; } - $width = $tmp; - $flag1 = !$width ? 0 : 1; + $m_0 = $tmp; + $flag1 = !$m_0 ? 0 : 1; $scoreboardIn = $this.$mc11; $ptr = 41; continue main; case 46: - nmcg_Gui_drawScaledCustomSizeModalRect($j2, $k2, var$32, var$33, $j3, $i3, $width, $m_0, var$30, var$31); + nmcg_Gui_drawScaledCustomSizeModalRect($j2, $k2, var$30, var$31, $m_0, $i3, $n_0, $k, var$32, var$33); if ($rt_suspending()) { break main; } @@ -846896,12 +848878,12 @@ $k3 = 8 * (!$flag1 ? 1 : (-1)) | 0; var$30 = 40.0; var$31 = $j3; - $width = 8; $m_0 = 8; - $j3 = 8; + $n_0 = 8; + $k = 8; var$32 = 64.0; var$33 = 64.0; - $ptr = 55; + $ptr = 56; continue main; case 47: nmep_EnumPlayerModelParts_$callClinit(); @@ -846915,8 +848897,8 @@ if ($rt_suspending()) { break main; } - $width = $tmp; - if (!$width) { + $m_0 = $tmp; + if (!$m_0) { $m_0 = $j2 + 9 | 0; $scoreboardIn = nmcn_NetworkPlayerInfo_getGameType($networkplayerinfo1); nmw_WorldSettings$GameType_$callClinit(); @@ -846927,7 +848909,7 @@ $scoreboardIn = $this.$mc11.$fontRendererObj; var$30 = $m_0; var$31 = $k2; - $width = (-1); + $n_0 = (-1); $ptr = 49; continue main; } @@ -846935,15 +848917,15 @@ $k3 = 8 * (!$flag1 ? 1 : (-1)) | 0; var$30 = 40.0; var$31 = $j3; - $width = 8; $m_0 = 8; - $j3 = 8; + $n_0 = 8; + $k = 8; var$32 = 64.0; var$33 = 64.0; - $ptr = 55; + $ptr = 56; continue main; case 49: - nmcg_FontRenderer_drawStringWithShadow($scoreboardIn, $s1, var$30, var$31, $width); + nmcg_FontRenderer_drawStringWithShadow($scoreboardIn, $s1, var$30, var$31, $n_0); if ($rt_suspending()) { break main; } @@ -846952,35 +848934,42 @@ $l5 = $k5 + $l | 0; if (($l5 - $k5 | 0) > 5) { $scoreboardIn = nlevma_GameProfile_getName($gameprofile); - $ptr = 57; + $ptr = 58; continue main; } } - $width = $m_0 - $n_0 | 0; - $ptr = 56; + $m_0 = $m_0 - $width | 0; + $ptr = 57; continue main; case 50: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } - $networkplayerinfo = nmu_EnumChatFormatting_ITALIC; - $scoreboardIn = jl_StringBuilder__init_(); + $scoreboardIn = nmu_EnumChatFormatting_ITALIC; $ptr = 51; case 51: + $tmp = jl_String_valueOf($scoreboardIn); + if ($rt_suspending()) { + break main; + } + $networkplayerinfo = $tmp; + $scoreboardIn = jl_StringBuilder__init_(); + $ptr = 52; + case 52: $tmp = jl_StringBuilder_append($scoreboardIn, $networkplayerinfo); if ($rt_suspending()) { break main; } $networkplayerinfo = $tmp; - $ptr = 52; - case 52: + $ptr = 53; + case 53: jl_StringBuilder_append($networkplayerinfo, $s1); if ($rt_suspending()) { break main; } - $ptr = 53; - case 53: + $ptr = 54; + case 54: $tmp = jl_StringBuilder_toString($scoreboardIn); if ($rt_suspending()) { break main; @@ -846989,10 +848978,10 @@ $networkplayerinfo = $this.$mc11.$fontRendererObj; var$30 = $m_0; var$31 = $k2; - $width = (-1862270977); - $ptr = 54; - case 54: - nmcg_FontRenderer_drawStringWithShadow($networkplayerinfo, $scoreboardIn, var$30, var$31, $width); + $n_0 = (-1862270977); + $ptr = 55; + case 55: + nmcg_FontRenderer_drawStringWithShadow($networkplayerinfo, $scoreboardIn, var$30, var$31, $n_0); if ($rt_suspending()) { break main; } @@ -847001,15 +848990,15 @@ $l5 = $k5 + $l | 0; if (($l5 - $k5 | 0) > 5) { $scoreboardIn = nlevma_GameProfile_getName($gameprofile); - $ptr = 57; + $ptr = 58; continue main; } } - $width = $m_0 - $n_0 | 0; - $ptr = 56; + $m_0 = $m_0 - $width | 0; + $ptr = 57; continue main; - case 55: - nmcg_Gui_drawScaledCustomSizeModalRect($j2, $k2, var$30, var$31, $width, $k3, $m_0, $j3, var$32, var$33); + case 56: + nmcg_Gui_drawScaledCustomSizeModalRect($j2, $k2, var$30, var$31, $m_0, $k3, $n_0, $k, var$32, var$33); if ($rt_suspending()) { break main; } @@ -847023,11 +849012,11 @@ $scoreboardIn = $this.$mc11.$fontRendererObj; var$30 = $m_0; var$31 = $k2; - $width = (-1); + $n_0 = (-1); $ptr = 49; continue main; - case 56: - nmcg_GuiPlayerTabOverlay_drawPing($this, $i1, $width, $k2, $networkplayerinfo1); + case 57: + nmcg_GuiPlayerTabOverlay_drawPing($this, $i1, $m_0, $k2, $networkplayerinfo1); if ($rt_suspending()) { break main; } @@ -847035,7 +849024,7 @@ if ($k4 >= $l3) { if ($list2 === null) return; - $width = $j4 + 1 | 0; + $width = $j5 + 1 | 0; $m_0 = $width - 1 | 0; $ptr = 32; continue main; @@ -847044,22 +849033,22 @@ $i5 = $k4 % $m | 0; $j2 = ($j1 + $rt_imul($l4, $i1) | 0) + ($l4 * 5 | 0) | 0; $k2 = $k1 + ($i5 * 9 | 0) | 0; - $width = $j2 + $i1 | 0; - $m_0 = $k2 + 8 | 0; - $j3 = 553648127; + $m_0 = $j2 + $i1 | 0; + $n_0 = $k2 + 8 | 0; + $k = 553648127; $ptr = 26; continue main; - case 57: + case 58: nmcg_GuiPlayerTabOverlay_drawScoreboardValues($this, $scoreObjectiveIn, $k2, $scoreboardIn, $k5, $l5, $networkplayerinfo1); if ($rt_suspending()) { break main; } - $width = $m_0 - $n_0 | 0; - $ptr = 56; + $m_0 = $m_0 - $width | 0; + $ptr = 57; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $width, $scoreboardIn, $scoreObjectiveIn, $nethandlerplayclient, $networkplayerinfo, $list, $i, $l, $m, $n, $n_0, $k, $l3, $j4, $m_0, $i2, $i1, $j3, $j1, $k1, $list1, $list2, $s3, $k3, $k4, $l4, $i5, $j2, $k2, var$30, var$31, var$32, var$33, $networkplayerinfo1, $s1, $gameprofile, $entityplayer, $flag1, $s4, $j5, $l2, $i3, $k5, $l5, $ptr); + $rt_nativeThread().push($this, $width, $scoreboardIn, $scoreObjectiveIn, $nethandlerplayclient, $networkplayerinfo, $list2, $list, $i, $l, $m, $n, $n_0, $k, $l3, $j4, $m_0, $i1, $l2, $j1, $k1, $list1, $i2, $j5, $k4, $l4, $i5, $j2, $k2, $s3, var$30, var$31, var$32, var$33, $networkplayerinfo1, $s1, $gameprofile, $entityplayer, $flag1, $s4, $i3, $j3, $k3, $k5, $l5, $ptr); } function nmcg_GuiPlayerTabOverlay_drawPing($this, $networkPlayerInfoIn, $parInt2, $parInt3, $parNetworkPlayerInfo) { var var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, $ptr, $tmp; @@ -847145,7 +849134,7 @@ continue main; } $parScoreObjective = $this.$mc11.$renderEngine; - $ptr = 7; + $ptr = 8; continue main; case 3: nmu_EnumChatFormatting_$callClinit(); @@ -847153,17 +849142,24 @@ break main; } $parScoreObjective = nmu_EnumChatFormatting_YELLOW; - $parString1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($parString1); $ptr = 4; case 4: + $tmp = jl_String_valueOf($parScoreObjective); + if ($rt_suspending()) { + break main; + } + $parScoreObjective = $tmp; + $parString1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($parString1); + $ptr = 5; + case 5: jl_AbstractStringBuilder_append($parString1, $parScoreObjective); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append1($parString1, $i); - $ptr = 5; - case 5: + $ptr = 6; + case 6: $tmp = jl_AbstractStringBuilder_toString($parString1); if ($rt_suspending()) { break main; @@ -847173,21 +849169,21 @@ var$9 = $parInt3 - nmcg_FontRenderer_getStringWidth($parScoreObjective, $parString1) | 0; var$10 = $parInt1; $parInt1 = 16777215; - $ptr = 6; - case 6: + $ptr = 7; + case 7: nmcg_FontRenderer_drawStringWithShadow($parScoreObjective, $parString1, var$9, var$10, $parInt1); if ($rt_suspending()) { break main; } return; - case 7: + case 8: nmcg_Gui_$callClinit(); if ($rt_suspending()) { break main; } $parString1 = nmcg_Gui_icons; - $ptr = 8; - case 8: + $ptr = 9; + case 9: nmcrt_TextureManager_bindTexture($parScoreObjective, $parString1); if ($rt_suspending()) { break main; @@ -847195,49 +849191,34 @@ if (Long_eq($this.$lastTimeOpened, $parNetworkPlayerInfo.$field_178869_m)) { $i1 = $rt_compare($i, $parNetworkPlayerInfo.$field_178873_i); if ($i1 < 0) { - $ptr = 11; + $ptr = 12; continue main; } if ($i1 > 0) { - $ptr = 13; + $ptr = 14; continue main; } } - $ptr = 9; - case 9: - $tmp = nmc_Minecraft_getSystemTime(); - if ($rt_suspending()) { - break main; - } - var$12 = $tmp; - if (Long_le(Long_sub(var$12, $parNetworkPlayerInfo.$field_178871_k), Long_fromInt(1000)) && Long_eq($this.$lastTimeOpened, $parNetworkPlayerInfo.$field_178869_m)) { - $parNetworkPlayerInfo.$field_178869_m = $this.$lastTimeOpened; - nmcn_NetworkPlayerInfo_func_178836_b($parNetworkPlayerInfo, $i); - $j = nmu_MathHelper_ceiling_float_int(jl_Math_max($i, nmcn_NetworkPlayerInfo_func_178860_m($parNetworkPlayerInfo)) / 2.0); - $k = jl_Math_max(nmu_MathHelper_ceiling_float_int($i / 2 | 0), jl_Math_max(nmu_MathHelper_ceiling_float_int(nmcn_NetworkPlayerInfo_func_178860_m($parNetworkPlayerInfo) / 2 | 0), 10)); - var$15 = nmcn_NetworkPlayerInfo_func_178858_o($parNetworkPlayerInfo); - $parScoreObjective = $this.$guiIngame; - $ptr = 12; - continue main; - } - $parNetworkPlayerInfo.$field_178873_i = $i; - $parNetworkPlayerInfo.$field_178870_j = $i; $ptr = 10; case 10: $tmp = nmc_Minecraft_getSystemTime(); if ($rt_suspending()) { break main; } - var$15 = $tmp; - $parNetworkPlayerInfo.$field_178871_k = var$15; - $parNetworkPlayerInfo.$field_178869_m = $this.$lastTimeOpened; - nmcn_NetworkPlayerInfo_func_178836_b($parNetworkPlayerInfo, $i); - $j = nmu_MathHelper_ceiling_float_int(jl_Math_max($i, nmcn_NetworkPlayerInfo_func_178860_m($parNetworkPlayerInfo)) / 2.0); - $k = jl_Math_max(nmu_MathHelper_ceiling_float_int($i / 2 | 0), jl_Math_max(nmu_MathHelper_ceiling_float_int(nmcn_NetworkPlayerInfo_func_178860_m($parNetworkPlayerInfo) / 2 | 0), 10)); - var$15 = nmcn_NetworkPlayerInfo_func_178858_o($parNetworkPlayerInfo); - $parScoreObjective = $this.$guiIngame; - $ptr = 12; - continue main; + var$12 = $tmp; + if (Long_le(Long_sub(var$12, $parNetworkPlayerInfo.$field_178871_k), Long_fromInt(1000)) && Long_eq($this.$lastTimeOpened, $parNetworkPlayerInfo.$field_178869_m)) { + nmcn_NetworkPlayerInfo_func_178843_c($parNetworkPlayerInfo, $this.$lastTimeOpened); + nmcn_NetworkPlayerInfo_func_178836_b($parNetworkPlayerInfo, $i); + $j = nmu_MathHelper_ceiling_float_int(jl_Math_max($i, nmcn_NetworkPlayerInfo_func_178860_m($parNetworkPlayerInfo)) / 2.0); + $k = jl_Math_max(nmu_MathHelper_ceiling_float_int($i / 2 | 0), jl_Math_max(nmu_MathHelper_ceiling_float_int(nmcn_NetworkPlayerInfo_func_178860_m($parNetworkPlayerInfo) / 2 | 0), 10)); + var$15 = nmcn_NetworkPlayerInfo_func_178858_o($parNetworkPlayerInfo); + $parScoreObjective = $this.$guiIngame; + $ptr = 13; + continue main; + } + $parNetworkPlayerInfo.$field_178873_i = $i; + $parNetworkPlayerInfo.$field_178870_j = $i; + $ptr = 11; case 11: $tmp = nmc_Minecraft_getSystemTime(); if ($rt_suspending()) { @@ -847245,10 +849226,25 @@ } var$15 = $tmp; $parNetworkPlayerInfo.$field_178871_k = var$15; - $parNetworkPlayerInfo.$field_178868_l = Long_fromInt($this.$guiIngame.$updateCounter + 20 | 0); - $ptr = 9; + nmcn_NetworkPlayerInfo_func_178843_c($parNetworkPlayerInfo, $this.$lastTimeOpened); + nmcn_NetworkPlayerInfo_func_178836_b($parNetworkPlayerInfo, $i); + $j = nmu_MathHelper_ceiling_float_int(jl_Math_max($i, nmcn_NetworkPlayerInfo_func_178860_m($parNetworkPlayerInfo)) / 2.0); + $k = jl_Math_max(nmu_MathHelper_ceiling_float_int($i / 2 | 0), jl_Math_max(nmu_MathHelper_ceiling_float_int(nmcn_NetworkPlayerInfo_func_178860_m($parNetworkPlayerInfo) / 2 | 0), 10)); + var$15 = nmcn_NetworkPlayerInfo_func_178858_o($parNetworkPlayerInfo); + $parScoreObjective = $this.$guiIngame; + $ptr = 13; continue main; case 12: + $tmp = nmc_Minecraft_getSystemTime(); + if ($rt_suspending()) { + break main; + } + var$15 = $tmp; + $parNetworkPlayerInfo.$field_178871_k = var$15; + $parNetworkPlayerInfo.$field_178868_l = Long_fromInt($this.$guiIngame.$updateCounter + 20 | 0); + $ptr = 10; + continue main; + case 13: $tmp = nmcg_GuiIngame_getUpdateCounter($parScoreObjective); if ($rt_suspending()) { break main; @@ -847257,7 +849253,7 @@ if (Long_gt(var$15, Long_fromInt($i1))) { var$15 = nmcn_NetworkPlayerInfo_func_178858_o($parNetworkPlayerInfo); $parScoreObjective = $this.$guiIngame; - $ptr = 15; + $ptr = 16; continue main; } $flag = 0; @@ -847270,7 +849266,7 @@ var$9 = var$10 / 2.0; $parScoreObjective = jl_StringBuilder__init_(); jl_StringBuilder_append3($parScoreObjective, var$9); - $ptr = 16; + $ptr = 17; continue main; } $f1 = $parInt2; @@ -847282,7 +849278,7 @@ $parInt2 = 0; $parInt3 = 9; $i1 = 9; - $ptr = 24; + $ptr = 25; continue main; } $j1 = 0; @@ -847292,12 +849288,12 @@ $i1 = 0; $parInt1 = 9; $parInt2 = 9; - $ptr = 25; + $ptr = 26; continue main; } } return; - case 13: + case 14: $tmp = nmc_Minecraft_getSystemTime(); if ($rt_suspending()) { break main; @@ -847305,17 +849301,17 @@ var$15 = $tmp; nmcn_NetworkPlayerInfo_func_178846_a($parNetworkPlayerInfo, var$15); $parScoreObjective = $this.$guiIngame; - $ptr = 14; - case 14: + $ptr = 15; + case 15: $tmp = nmcg_GuiIngame_getUpdateCounter($parScoreObjective); if ($rt_suspending()) { break main; } $i1 = $tmp; nmcn_NetworkPlayerInfo_func_178844_b($parNetworkPlayerInfo, Long_fromInt($i1 + 10 | 0)); - $ptr = 9; + $ptr = 10; continue main; - case 15: + case 16: $tmp = nmcg_GuiIngame_getUpdateCounter($parScoreObjective); if ($rt_suspending()) { break main; @@ -847331,7 +849327,7 @@ var$9 = var$10 / 2.0; $parScoreObjective = jl_StringBuilder__init_(); jl_StringBuilder_append3($parScoreObjective, var$9); - $ptr = 16; + $ptr = 17; continue main; } $f1 = $parInt2; @@ -847343,7 +849339,7 @@ $parInt2 = 0; $parInt3 = 9; $i1 = 9; - $ptr = 24; + $ptr = 25; continue main; } $j1 = 0; @@ -847353,12 +849349,12 @@ $i1 = 0; $parInt1 = 9; $parInt2 = 9; - $ptr = 25; + $ptr = 26; continue main; } } return; - case 16: + case 17: $tmp = jl_StringBuilder_toString($parScoreObjective); if ($rt_suspending()) { break main; @@ -847366,22 +849362,22 @@ $s = $tmp; $parScoreObjective = $this.$mc11.$fontRendererObj; $parString1 = jl_StringBuilder__init_(); - $ptr = 17; - case 17: + $ptr = 18; + case 18: $tmp = jl_StringBuilder_append($parString1, $s); if ($rt_suspending()) { break main; } $parNetworkPlayerInfo = $tmp; var$21 = $rt_s(6131); - $ptr = 18; - case 18: + $ptr = 19; + case 19: jl_StringBuilder_append($parNetworkPlayerInfo, var$21); if ($rt_suspending()) { break main; } - $ptr = 19; - case 19: + $ptr = 20; + case 20: $tmp = jl_StringBuilder_toString($parString1); if ($rt_suspending()) { break main; @@ -847389,29 +849385,29 @@ $parString1 = $tmp; if (($parInt3 - nmcg_FontRenderer_getStringWidth($parScoreObjective, $parString1) | 0) >= $parInt2) { $parScoreObjective = jl_StringBuilder__init_(); - $ptr = 20; + $ptr = 21; continue main; } $parScoreObjective = $this.$mc11.$fontRendererObj; var$9 = (($parInt3 + $parInt2 | 0) / 2 | 0) - (nmcg_FontRenderer_getStringWidth($parScoreObjective, $s) / 2 | 0) | 0; var$10 = $parInt1; - $ptr = 23; + $ptr = 24; continue main; - case 20: + case 21: $tmp = jl_StringBuilder_append($parScoreObjective, $s); if ($rt_suspending()) { break main; } $parString1 = $tmp; $parNetworkPlayerInfo = $rt_s(6131); - $ptr = 21; - case 21: + $ptr = 22; + case 22: jl_StringBuilder_append($parString1, $parNetworkPlayerInfo); if ($rt_suspending()) { break main; } - $ptr = 22; - case 22: + $ptr = 23; + case 23: $tmp = jl_StringBuilder_toString($parScoreObjective); if ($rt_suspending()) { break main; @@ -847420,14 +849416,14 @@ $parScoreObjective = $this.$mc11.$fontRendererObj; var$9 = (($parInt3 + $parInt2 | 0) / 2 | 0) - (nmcg_FontRenderer_getStringWidth($parScoreObjective, $s) / 2 | 0) | 0; var$10 = $parInt1; - $ptr = 23; - case 23: + $ptr = 24; + case 24: nmcg_FontRenderer_drawStringWithShadow($parScoreObjective, $s, var$9, var$10, $i1); if ($rt_suspending()) { break main; } return; - case 24: + case 25: nmcg_Gui_drawTexturedModalRect0($this, var$9, var$10, $parInt1, $parInt2, $parInt3, $i1); if ($rt_suspending()) { break main; @@ -847449,8 +849445,8 @@ $i1 = 0; $parInt1 = 9; $parInt2 = 9; - $ptr = 25; - case 25: + $ptr = 26; + case 26: nmcg_Gui_drawTexturedModalRect0($this, var$9, var$10, $parInt3, $i1, $parInt1, $parInt2); if ($rt_suspending()) { break main; @@ -847462,15 +849458,15 @@ $parInt2 = 0; $parInt3 = 9; $i1 = 9; - $ptr = 26; + $ptr = 27; continue main; } if ($k == nmcn_NetworkPlayerInfo_func_178860_m($parNetworkPlayerInfo)) { - $i1 = 79; - $parInt1 = 0; - $parInt2 = 9; - $parInt3 = 9; - $ptr = 27; + $parInt2 = 79; + $parInt3 = 0; + $i1 = 9; + $parInt1 = 9; + $ptr = 28; continue main; } } @@ -847480,7 +849476,7 @@ $parInt3 = 0; $i1 = 9; $k = 9; - $ptr = 28; + $ptr = 29; continue main; } if (!$parInt1) { @@ -847488,7 +849484,7 @@ $parInt2 = 0; $parInt3 = 9; $i1 = 9; - $ptr = 29; + $ptr = 30; continue main; } $j1 = $j1 + 1 | 0; @@ -847500,17 +849496,17 @@ $parInt1 = 9; $parInt2 = 9; continue main; - case 26: + case 27: nmcg_Gui_drawTexturedModalRect0($this, var$9, var$10, $parInt1, $parInt2, $parInt3, $i1); if ($rt_suspending()) { break main; } if ($k == nmcn_NetworkPlayerInfo_func_178860_m($parNetworkPlayerInfo)) { - $i1 = 79; - $parInt1 = 0; - $parInt2 = 9; - $parInt3 = 9; - $ptr = 27; + $parInt2 = 79; + $parInt3 = 0; + $i1 = 9; + $parInt1 = 9; + $ptr = 28; continue main; } $parInt1 = $rt_compare(($j1 * 2 | 0) + 1 | 0, $i); @@ -847519,7 +849515,7 @@ $parInt3 = 0; $i1 = 9; $k = 9; - $ptr = 28; + $ptr = 29; continue main; } if (!$parInt1) { @@ -847527,7 +849523,7 @@ $parInt2 = 0; $parInt3 = 9; $i1 = 9; - $ptr = 29; + $ptr = 30; continue main; } $j1 = $j1 + 1 | 0; @@ -847538,10 +849534,10 @@ $i1 = 0; $parInt1 = 9; $parInt2 = 9; - $ptr = 25; + $ptr = 26; continue main; - case 27: - nmcg_Gui_drawTexturedModalRect0($this, var$9, var$10, $i1, $parInt1, $parInt2, $parInt3); + case 28: + nmcg_Gui_drawTexturedModalRect0($this, var$9, var$10, $parInt2, $parInt3, $i1, $parInt1); if ($rt_suspending()) { break main; } @@ -847551,7 +849547,7 @@ $parInt3 = 0; $i1 = 9; $k = 9; - $ptr = 28; + $ptr = 29; continue main; } if (!$parInt1) { @@ -847559,7 +849555,7 @@ $parInt2 = 0; $parInt3 = 9; $i1 = 9; - $ptr = 29; + $ptr = 30; continue main; } $j1 = $j1 + 1 | 0; @@ -847570,9 +849566,9 @@ $i1 = 0; $parInt1 = 9; $parInt2 = 9; - $ptr = 25; + $ptr = 26; continue main; - case 28: + case 29: nmcg_Gui_drawTexturedModalRect0($this, var$9, var$10, $parInt2, $parInt3, $i1, $k); if ($rt_suspending()) { break main; @@ -847582,7 +849578,7 @@ $parInt2 = 0; $parInt3 = 9; $i1 = 9; - $ptr = 29; + $ptr = 30; continue main; } $j1 = $j1 + 1 | 0; @@ -847593,9 +849589,9 @@ $i1 = 0; $parInt1 = 9; $parInt2 = 9; - $ptr = 25; + $ptr = 26; continue main; - case 29: + case 30: nmcg_Gui_drawTexturedModalRect0($this, var$9, var$10, $parInt1, $parInt2, $parInt3, $i1); if ($rt_suspending()) { break main; @@ -847608,7 +849604,7 @@ $i1 = 0; $parInt1 = 9; $parInt2 = 9; - $ptr = 25; + $ptr = 26; continue main; default: $rt_invalidPointer(); }} @@ -847724,7 +849720,7 @@ break main; } var$8 = $tmp; - $mc = !$mc.$gameSettings.$enableUpdateSvc ? $rt_s(5637) : $rt_s(5636); + $mc = !$mc.$gameSettings.$enableUpdateSvc ? $rt_s(5636) : $rt_s(5635); var$9 = $rt_createArray(jl_Object, 0); $ptr = 3; case 3: @@ -848142,14 +850138,14 @@ if ($rt_suspending()) { break main; } - $shownSP = 0; - $j = 1; - $l = 2; - var$21 = (-16777216); - $i = (-16777216); + var$21 = 0; + $i = 1; + $shownSP = 2; + $j = (-16777216); + $l = (-16777216); $ptr = 25; case 25: - nmcg_Gui_drawGradientRect($this, $shownSP, $j, $embedWidth2, $l, var$21, $i); + nmcg_Gui_drawGradientRect($this, var$21, $i, $embedWidth2, $shownSP, $j, $l); if ($rt_suspending()) { break main; } @@ -848274,23 +850270,30 @@ break main; } $progressState = nmu_EnumChatFormatting_UNDERLINE; - var$22 = $cert.$bundleDisplayName; - var$23 = jl_StringBuilder__init_(); $ptr = 40; case 40: + $tmp = jl_String_valueOf($progressState); + if ($rt_suspending()) { + break main; + } + $progressState = $tmp; + var$22 = $cert.$bundleDisplayName; + var$23 = jl_StringBuilder__init_(); + $ptr = 41; + case 41: $tmp = jl_StringBuilder_append(var$23, $progressState); if ($rt_suspending()) { break main; } $progressState = $tmp; - $ptr = 41; - case 41: + $ptr = 42; + case 42: jl_StringBuilder_append($progressState, var$22); if ($rt_suspending()) { break main; } - $ptr = 42; - case 42: + $ptr = 43; + case 43: $tmp = jl_StringBuilder_toString(var$23); if ($rt_suspending()) { break main; @@ -848299,8 +850302,8 @@ $i = 45; $shownSP = 11; $j = 0; - $ptr = 43; - case 43: + $ptr = 44; + case 44: nmcg_FontRenderer_drawString($str, $progressState, $i, $shownSP, $j); if ($rt_suspending()) { break main; @@ -848308,18 +850311,25 @@ $str = $this.$mc17.$fontRendererObj; $progressState = $rt_s(6138); var$9 = $rt_createArray(jl_Object, 0); - $ptr = 44; - case 44: + $ptr = 45; + case 45: $tmp = nmcr_I18n_format($progressState, var$9); if ($rt_suspending()) { break main; } $progressState = $tmp; var$22 = nmu_EnumChatFormatting_DARK_RED; + $ptr = 46; + case 46: + $tmp = jl_String_valueOf(var$22); + if ($rt_suspending()) { + break main; + } + var$22 = $tmp; var$23 = $cert.$bundleDisplayVersion; var$24 = jl_StringBuilder__init_(); - $ptr = 45; - case 45: + $ptr = 47; + case 47: $tmp = jl_StringBuilder_append(var$24, $progressState); if ($rt_suspending()) { break main; @@ -848327,21 +850337,21 @@ $progressState = $tmp; $embedHeight2 = 32; $progressState = jl_StringBuilder_append5($progressState, $embedHeight2); - $ptr = 46; - case 46: + $ptr = 48; + case 48: $tmp = jl_StringBuilder_append($progressState, var$22); if ($rt_suspending()) { break main; } $progressState = $tmp; - $ptr = 47; - case 47: + $ptr = 49; + case 49: jl_StringBuilder_append($progressState, var$23); if ($rt_suspending()) { break main; } - $ptr = 48; - case 48: + $ptr = 50; + case 50: $tmp = jl_StringBuilder_toString(var$24); if ($rt_suspending()) { break main; @@ -848350,22 +850360,22 @@ $i = 45; $shownSP = 25; $j = 0; - $ptr = 49; - case 49: + $ptr = 51; + case 51: nmcg_FontRenderer_drawString($str, $progressState, $i, $shownSP, $j); if ($rt_suspending()) { break main; } if ($lst !== null) { $j = 0; - $ptr = 54; + $ptr = 56; continue main; } $str = $this.$mc17.$fontRendererObj; $progressState = $rt_s(6139); var$9 = $rt_createArray(jl_Object, 0); - $ptr = 50; - case 50: + $ptr = 52; + case 52: $tmp = nmcr_I18n_format($progressState, var$9); if ($rt_suspending()) { break main; @@ -848373,22 +850383,22 @@ $progressState = $tmp; $cert = $cert.$bundleAuthorName; var$22 = jl_StringBuilder__init_(); - $ptr = 51; - case 51: + $ptr = 53; + case 53: $tmp = jl_StringBuilder_append(var$22, $progressState); if ($rt_suspending()) { break main; } $progressState = $tmp; $progressState = jl_StringBuilder_append5($progressState, $embedHeight2); - $ptr = 52; - case 52: + $ptr = 54; + case 54: jl_StringBuilder_append($progressState, $cert); if ($rt_suspending()) { break main; } - $ptr = 53; - case 53: + $ptr = 55; + case 55: $tmp = jl_StringBuilder_toString(var$22); if ($rt_suspending()) { break main; @@ -848398,14 +850408,14 @@ $shownSP = 44; if ($lst !== null) { $j = 3; - $ptr = 55; + $ptr = 57; continue main; } $shownSP = $shownSP + 0 | 0; $j = 7829367; - $ptr = 56; + $ptr = 58; continue main; - case 54: + case 56: $tmp = ju_Arrays$ArrayAsList_size($lst); if ($rt_suspending()) { break main; @@ -848413,15 +850423,15 @@ $l = $tmp; if ($j < $l) { $str = $this.$mc17.$fontRendererObj; - $ptr = 58; + $ptr = 60; continue main; } $str = $this.$mc17.$fontRendererObj; $progressState = $rt_s(6139); var$9 = $rt_createArray(jl_Object, 0); - $ptr = 50; + $ptr = 52; continue main; - case 55: + case 57: $tmp = ju_Arrays$ArrayAsList_size($lst); if ($rt_suspending()) { break main; @@ -848429,8 +850439,8 @@ $l = $tmp; $shownSP = $shownSP + ($j + ($l * 8 | 0) | 0) | 0; $j = 7829367; - $ptr = 56; - case 56: + $ptr = 58; + case 58: nmcg_FontRenderer_drawString($str, $cert, $i, $shownSP, $j); if ($rt_suspending()) { break main; @@ -848445,8 +850455,8 @@ $i = $i + 22 | 0; $cert.$yPosition = $i; $this.$totalHeightOffset = $i + 20 | 0; - $ptr = 57; - case 57: + $ptr = 59; + case 59: nlevo_GlStateManager_popMatrix(); if ($rt_suspending()) { break main; @@ -848455,7 +850465,7 @@ $str = $this.$mc17; $ptr = 8; continue main; - case 58: + case 60: $tmp = ju_Arrays$ArrayAsList_get($lst, $j); if ($rt_suspending()) { break main; @@ -848465,8 +850475,8 @@ $i = 5; $shownSP = 42 + ($j * 8 | 0) | 0; $embedWidth2 = 0; - $ptr = 59; - case 59: + $ptr = 61; + case 61: nmcg_FontRenderer_drawString($str, $progressState, $i, $shownSP, $embedWidth2); if ($rt_suspending()) { break main; @@ -848474,13 +850484,13 @@ $j = $j + 1 | 0; if ($j < $l) { $str = $this.$mc17.$fontRendererObj; - $ptr = 58; + $ptr = 60; continue main; } $str = $this.$mc17.$fontRendererObj; $progressState = $rt_s(6139); var$9 = $rt_createArray(jl_Object, 0); - $ptr = 50; + $ptr = 52; continue main; default: $rt_invalidPointer(); }} @@ -848937,7 +850947,7 @@ break main; } var$6 = $tmp; - var$7 = !$this.$mc17.$gameSettings.$enableUpdateSvc ? $rt_s(5637) : $rt_s(5636); + var$7 = !$this.$mc17.$gameSettings.$enableUpdateSvc ? $rt_s(5636) : $rt_s(5635); var$8 = $rt_createArray(jl_Object, 0); $ptr = 15; continue main; @@ -851372,24 +853382,38 @@ break main; } var$1 = $tmp; - var$2 = $this.$getValue(); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); $ptr = 2; case 2: + $tmp = jl_String_valueOf(var$1); + if ($rt_suspending()) { + break main; + } + var$1 = $tmp; + var$2 = $this.$getValue(); + $ptr = 3; + case 3: + $tmp = jl_String_valueOf(var$2); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + $ptr = 4; + case 4: jl_AbstractStringBuilder_append(var$3, var$1); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append0(var$3, 61); - $ptr = 3; - case 3: + $ptr = 5; + case 5: jl_AbstractStringBuilder_append(var$3, var$2); if ($rt_suspending()) { break main; } - $ptr = 4; - case 4: + $ptr = 6; + case 6: $tmp = jl_AbstractStringBuilder_toString(var$3); if ($rt_suspending()) { break main; @@ -851672,7 +853696,6 @@ $k = $k + 1 | 0; } $bitset = new nlevo_WorldRenderer$1; - $bitset.$this$0152 = $this; $bitset.$val$afloat = $afloat; $ptr = 13; continue main; @@ -851799,7 +853822,6 @@ $k = $k + 1 | 0; } $bitset = new nlevo_WorldRenderer$1; - $bitset.$this$0152 = $this; $bitset.$val$afloat = $afloat; $ptr = 13; continue main; @@ -856809,11 +858831,11 @@ $rt_nativeThread().push($this, $index, $j, var$3, var$4, $i, var$6, $ptr); } function nlevoedt_EaglerTextureAtlasSpritePBR_generateMipmaps($this, $level) { - var $arraylist, var$3, $j, $i, $aint, $crashreportcategory, var$8, $throwable, $crashreport, var$11, var$12, $$je, $ptr, $tmp; + var $arraylist, var$3, $j, $i, $aint, $throwable, var$8, $crashreport, $crashreportcategory, var$11, var$12, $$je, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();$crashreport = $thread.pop();$throwable = $thread.pop();var$8 = $thread.pop();$crashreportcategory = $thread.pop();$aint = $thread.pop();$i = $thread.pop();$j = $thread.pop();var$3 = $thread.pop();$arraylist = $thread.pop();$level = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();$crashreportcategory = $thread.pop();$crashreport = $thread.pop();var$8 = $thread.pop();$throwable = $thread.pop();$aint = $thread.pop();$i = $thread.pop();$j = $thread.pop();var$3 = $thread.pop();$arraylist = $thread.pop();$level = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -856835,7 +858857,7 @@ break; $j = $j + 1 | 0; } - $crashreportcategory = $aint[$j]; + $throwable = $aint[$j]; $ptr = 2; continue main; case 1: @@ -856845,21 +858867,21 @@ } return; case 2: - $tmp = ju_ArrayList_get($crashreportcategory, $i); + $tmp = ju_ArrayList_get($throwable, $i); if ($rt_suspending()) { break main; } - $crashreportcategory = $tmp; - $aint = $crashreportcategory; + $throwable = $tmp; + $aint = $throwable; if ($aint !== null) { try { if ($j) { - $crashreportcategory = var$3[$j]; + $throwable = var$3[$j]; var$8 = $this.$width9; $ptr = 8; continue main; } - $crashreportcategory = var$3[$j]; + $throwable = var$3[$j]; var$8 = $this.$width9; $ptr = 10; continue main; @@ -856871,7 +858893,7 @@ throw $$e; } } - $crashreportcategory = $rt_s(6169); + $crashreport = $rt_s(6169); $ptr = 3; continue main; } @@ -856888,18 +858910,18 @@ } $i = 0; } - $crashreportcategory = $aint[$j]; + $throwable = $aint[$j]; continue main; case 3: - $tmp = nmc_CrashReport_makeCrashReport($throwable, $crashreportcategory); + $tmp = nmc_CrashReport_makeCrashReport($throwable, $crashreport); if ($rt_suspending()) { break main; } $crashreport = $tmp; - $crashreportcategory = $rt_s(6063); + $throwable = $rt_s(6063); $ptr = 4; case 4: - $tmp = nmc_CrashReport_makeCategory($crashreport, $crashreportcategory); + $tmp = nmc_CrashReport_makeCategory($crashreport, $throwable); if ($rt_suspending()) { break main; } @@ -856922,7 +858944,6 @@ } $throwable = $rt_s(6065); var$11 = new nlevoedt_EaglerTextureAtlasSpritePBR$1; - var$11.$this$0153 = $this; var$11.$val$aint0 = $aint; $ptr = 7; case 7: @@ -856948,13 +858969,13 @@ throw $$e; } } - $crashreportcategory = $rt_s(6169); + $crashreport = $rt_s(6169); $ptr = 3; continue main; case 9: a: { try { - ju_ArrayList_add($crashreportcategory, var$12); + ju_ArrayList_add($throwable, var$12); if ($rt_suspending()) { break main; } @@ -856967,7 +858988,7 @@ throw $$e; } } - $crashreportcategory = $rt_s(6169); + $crashreport = $rt_s(6169); $ptr = 3; continue main; } @@ -856984,7 +859005,7 @@ } $i = 0; } - $crashreportcategory = $aint[$j]; + $throwable = $aint[$j]; $ptr = 2; continue main; case 10: @@ -857004,13 +859025,13 @@ throw $$e; } } - $crashreportcategory = $rt_s(6169); + $crashreport = $rt_s(6169); $ptr = 3; continue main; case 11: a: { try { - ju_ArrayList_add($crashreportcategory, var$12); + ju_ArrayList_add($throwable, var$12); if ($rt_suspending()) { break main; } @@ -857023,7 +859044,7 @@ throw $$e; } } - $crashreportcategory = $rt_s(6169); + $crashreport = $rt_s(6169); $ptr = 3; continue main; } @@ -857040,12 +859061,12 @@ } $i = 0; } - $crashreportcategory = $aint[$j]; + $throwable = $aint[$j]; $ptr = 2; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $level, $arraylist, var$3, $j, $i, $aint, $crashreportcategory, var$8, $throwable, $crashreport, var$11, var$12, $ptr); + $rt_nativeThread().push($this, $level, $arraylist, var$3, $j, $i, $aint, $throwable, var$8, $crashreport, $crashreportcategory, var$11, var$12, $ptr); } function nlevoedt_EaglerTextureAtlasSpritePBR_bakeAnimationCache($this) { var $i, var$2, $mipLevels, var$4, var$5, $ptr, $tmp; @@ -857784,18 +859805,13 @@ $rt_nativeThread().push($this, $identityhashmap, var$2, var$3, var$4, $block, var$6, $ptr); } var nmcr_ItemMeshDefinition = $rt_classWithoutFields(0); - function nmcre_RenderItem$7() { - jl_Object.call(this); - this.$this$0154 = null; - } + var nmcre_RenderItem$7 = $rt_classWithoutFields(); function nmcre_RenderItem$7__init_(var_0) { var var_1 = new nmcre_RenderItem$7(); nmcre_RenderItem$7__init_0(var_1, var_0); return var_1; } - function nmcre_RenderItem$7__init_0($this, $this$0) { - $this.$this$0154 = $this$0; - } + function nmcre_RenderItem$7__init_0($this, $this$0) {} function nmcre_RenderItem$7_getModelLocation($this, $itemstack) { var var$2, var$3, $ptr, $tmp; $ptr = 0; @@ -857833,18 +859849,13 @@ }} $rt_nativeThread().push($this, $itemstack, var$2, var$3, $ptr); } - function nmcre_RenderItem$8() { - jl_Object.call(this); - this.$this$0155 = null; - } + var nmcre_RenderItem$8 = $rt_classWithoutFields(); function nmcre_RenderItem$8__init_(var_0) { var var_1 = new nmcre_RenderItem$8(); nmcre_RenderItem$8__init_0(var_1, var_0); return var_1; } - function nmcre_RenderItem$8__init_0($this, $this$0) { - $this.$this$0155 = $this$0; - } + function nmcre_RenderItem$8__init_0($this, $this$0) {} function nmcre_RenderItem$8_getModelLocation($this, $var1) { var var$2, var$3, $ptr, $tmp; $ptr = 0; @@ -857868,18 +859879,13 @@ }} $rt_nativeThread().push($this, $var1, var$2, var$3, $ptr); } - function nmcre_RenderItem$9() { - jl_Object.call(this); - this.$this$0156 = null; - } + var nmcre_RenderItem$9 = $rt_classWithoutFields(); function nmcre_RenderItem$9__init_(var_0) { var var_1 = new nmcre_RenderItem$9(); nmcre_RenderItem$9__init_0(var_1, var_0); return var_1; } - function nmcre_RenderItem$9__init_0($this, $this$0) { - $this.$this$0156 = $this$0; - } + function nmcre_RenderItem$9__init_0($this, $this$0) {} function nmcre_RenderItem$9_getModelLocation($this, $var1) { var var$2, var$3, $ptr, $tmp; $ptr = 0; @@ -857903,18 +859909,13 @@ }} $rt_nativeThread().push($this, $var1, var$2, var$3, $ptr); } - function nmcre_RenderItem$10() { - jl_Object.call(this); - this.$this$0157 = null; - } + var nmcre_RenderItem$10 = $rt_classWithoutFields(); function nmcre_RenderItem$10__init_(var_0) { var var_1 = new nmcre_RenderItem$10(); nmcre_RenderItem$10__init_0(var_1, var_0); return var_1; } - function nmcre_RenderItem$10__init_0($this, $this$0) { - $this.$this$0157 = $this$0; - } + function nmcre_RenderItem$10__init_0($this, $this$0) {} function nmcre_RenderItem$10_getModelLocation($this, $var1) { var var$2, var$3, $ptr, $tmp; $ptr = 0; @@ -857938,18 +859939,13 @@ }} $rt_nativeThread().push($this, $var1, var$2, var$3, $ptr); } - function nmcre_RenderItem$11() { - jl_Object.call(this); - this.$this$0158 = null; - } + var nmcre_RenderItem$11 = $rt_classWithoutFields(); function nmcre_RenderItem$11__init_(var_0) { var var_1 = new nmcre_RenderItem$11(); nmcre_RenderItem$11__init_0(var_1, var_0); return var_1; } - function nmcre_RenderItem$11__init_0($this, $this$0) { - $this.$this$0158 = $this$0; - } + function nmcre_RenderItem$11__init_0($this, $this$0) {} function nmcre_RenderItem$11_getModelLocation($this, $var1) { var var$2, var$3, $ptr, $tmp; $ptr = 0; @@ -858472,7 +860468,7 @@ nlevv_Matrix4f__init_2(var$1, var$11); var$11 = nlevoed_DeferredStateManager_forwardCallbackHandler; var$18 = new nmcrel_LayerSpiderEyes$1; - var$18.$this$0159 = $this; + var$18.$this$0103 = $this; var$18.$val$mat2 = var$1; var$18.$val$entityspider = var$9; var$18.$val$f6 = var$2; @@ -860928,7 +862924,7 @@ nlevv_Matrix4f__init_2(var$11, var$1); var$15 = nlevoed_DeferredStateManager_forwardCallbackHandler; var$1 = new nmcrel_LayerCreeperCharge$1; - var$1.$this$0160 = $this; + var$1.$this$0104 = $this; var$1.$val$entitycreeper = var$9; var$1.$val$mat3 = var$11; var$1.$val$f21 = var$4; @@ -861339,7 +863335,7 @@ nlevv_Matrix4f__init_2(var$1, var$11); var$11 = nlevoed_DeferredStateManager_forwardCallbackHandler; var$17 = new nmcrel_LayerEndermanEyes$1; - var$17.$this$0161 = $this; + var$17.$this$0105 = $this; var$17.$val$mat4 = var$1; var$17.$val$entityenderman = var$9; var$17.$val$f8 = var$2; @@ -861598,7 +863594,7 @@ var$3 = $tmp; var$10 = nlevoed_DeferredStateManager_forwardCallbackHandler; var$16 = new nmcrel_LayerHeldBlock$1; - var$16.$this$0162 = $this; + var$16.$this$0106 = $this; var$16.$val$mat5 = var$15; var$16.$val$lx2 = var$2; var$16.$val$ly2 = var$3; @@ -862577,7 +864573,7 @@ break main; } $f = nlevoed_EaglerDeferredPipeline_instance.$partialTicks; - $itemarmor.$this$0163 = $this; + $itemarmor.$this$0107 = $this; $itemarmor.$val$mat6 = $mat; $itemarmor.$val$lx3 = $lx; $itemarmor.$val$ly3 = $ly; @@ -863077,10 +865073,7 @@ function nmcrel_LayerBipedArmor_func_177179_a0($this, var$1, var$2) { nmcrel_LayerBipedArmor_func_177179_a($this, var$1, var$2); } - function nmcre_RenderSkeleton$1() { - nmcrel_LayerBipedArmor.call(this); - this.$this$0145 = null; - } + var nmcre_RenderSkeleton$1 = $rt_classWithoutFields(nmcrel_LayerBipedArmor); function nmcre_RenderSkeleton$1_initArmor($this) { $this.$field_177189_c = nmcm_ModelSkeleton__init_1(0.5, 1); $this.$field_177186_d = nmcm_ModelSkeleton__init_1(1.0, 1); @@ -863816,10 +865809,7 @@ $var7.$rotateAngleY = $f1 / 57.2957763671875; $var7.$rotateAngleX = $f2 / 57.2957763671875; } - function nmcre_RenderPigZombie$1() { - nmcrel_LayerBipedArmor.call(this); - this.$this$0146 = null; - } + var nmcre_RenderPigZombie$1 = $rt_classWithoutFields(nmcrel_LayerBipedArmor); function nmcre_RenderPigZombie$1_initArmor($this) { $this.$field_177189_c = nmcm_ModelZombie__init_1(0.5, 0); $this.$field_177186_d = nmcm_ModelZombie__init_1(1.0, 0); @@ -863885,10 +865875,7 @@ $entity = $this.$bipedLeftArm; $entity.$rotateAngleX = $entity.$rotateAngleX - nmu_MathHelper_sin($f1) * 0.05000000074505806; } - function nmcre_RenderZombie$1() { - nmcrel_LayerBipedArmor.call(this); - this.$this$0147 = null; - } + var nmcre_RenderZombie$1 = $rt_classWithoutFields(nmcrel_LayerBipedArmor); function nmcre_RenderZombie$1_initArmor($this) { $this.$field_177189_c = nmcm_ModelZombie__init_1(0.5, 0); $this.$field_177186_d = nmcm_ModelZombie__init_1(1.0, 0); @@ -864377,7 +866364,7 @@ nlevv_Matrix4f__init_2(var$1, var$15); var$15 = nlevoed_DeferredStateManager_forwardCallbackHandler; var$16 = new nmcrel_LayerSlimeGel$1; - var$16.$this$0164 = $this; + var$16.$this$0108 = $this; var$16.$val$entityslime = var$9; var$16.$val$mat7 = var$1; var$16.$val$f9 = var$2; @@ -864488,10 +866475,7 @@ }} $rt_nativeThread().push($this, $entity, $f, $f1, $f2, $f3, $f4, $f5, $i, var$9, $ptr); } - function nmcre_RenderGiantZombie$1() { - nmcrel_LayerBipedArmor.call(this); - this.$this$0148 = null; - } + var nmcre_RenderGiantZombie$1 = $rt_classWithoutFields(nmcrel_LayerBipedArmor); function nmcre_RenderGiantZombie$1_initArmor($this) { $this.$field_177189_c = nmcm_ModelZombie__init_1(0.5, 0); $this.$field_177186_d = nmcm_ModelZombie__init_1(1.0, 0); @@ -866996,7 +868980,7 @@ break main; } var$15 = nlevoed_EaglerDeferredPipeline_instance.$partialTicks; - var$14.$this$0165 = $this; + var$14.$this$0109 = $this; var$14.$val$ly4 = var$13; var$14.$val$mat8 = var$11; var$14.$val$entitydragon = var$9; @@ -867382,7 +869366,7 @@ nlevv_Matrix4f__init_2(var$1, var$11); var$11 = nlevoed_DeferredStateManager_forwardCallbackHandler; var$16 = new nmcrel_LayerWitherAura$1; - var$16.$this$0166 = $this; + var$16.$this$0110 = $this; var$16.$val$entitywither = var$9; var$16.$val$mat9 = var$1; var$16.$val$f23 = var$4; @@ -868035,10 +870019,7 @@ }} $rt_nativeThread().push($this, $scale, var$2, $flag, $ptr); } - function nmcre_ArmorStandRenderer$1() { - nmcrel_LayerBipedArmor.call(this); - this.$this$0149 = null; - } + var nmcre_ArmorStandRenderer$1 = $rt_classWithoutFields(nmcrel_LayerBipedArmor); function nmcre_ArmorStandRenderer$1_initArmor($this) { $this.$field_177189_c = nmcm_ModelArmorStandArmor__init_1(0.5); $this.$field_177186_d = nmcm_ModelArmorStandArmor__init_1(1.0); @@ -872579,6 +874560,28 @@ }} $rt_nativeThread().push($this, $ptr); } + function nmu_EnumParticleTypes_$values() { + var $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + nmu_EnumParticleTypes_$callClinit(); + if ($rt_suspending()) { + break main; + } + return $rt_createArrayFromData(nmu_EnumParticleTypes, [nmu_EnumParticleTypes_EXPLOSION_NORMAL, nmu_EnumParticleTypes_EXPLOSION_LARGE, nmu_EnumParticleTypes_EXPLOSION_HUGE, nmu_EnumParticleTypes_FIREWORKS_SPARK, nmu_EnumParticleTypes_WATER_BUBBLE, nmu_EnumParticleTypes_WATER_SPLASH, nmu_EnumParticleTypes_WATER_WAKE, nmu_EnumParticleTypes_SUSPENDED, nmu_EnumParticleTypes_SUSPENDED_DEPTH, nmu_EnumParticleTypes_CRIT, nmu_EnumParticleTypes_CRIT_MAGIC, nmu_EnumParticleTypes_SMOKE_NORMAL, nmu_EnumParticleTypes_SMOKE_LARGE, + nmu_EnumParticleTypes_SPELL, nmu_EnumParticleTypes_SPELL_INSTANT, nmu_EnumParticleTypes_SPELL_MOB, nmu_EnumParticleTypes_SPELL_MOB_AMBIENT, nmu_EnumParticleTypes_SPELL_WITCH, nmu_EnumParticleTypes_DRIP_WATER, nmu_EnumParticleTypes_DRIP_LAVA, nmu_EnumParticleTypes_VILLAGER_ANGRY, nmu_EnumParticleTypes_VILLAGER_HAPPY, nmu_EnumParticleTypes_TOWN_AURA, nmu_EnumParticleTypes_NOTE, nmu_EnumParticleTypes_PORTAL, nmu_EnumParticleTypes_ENCHANTMENT_TABLE, nmu_EnumParticleTypes_FLAME, nmu_EnumParticleTypes_LAVA, + nmu_EnumParticleTypes_FOOTSTEP, nmu_EnumParticleTypes_CLOUD, nmu_EnumParticleTypes_REDSTONE, nmu_EnumParticleTypes_SNOWBALL, nmu_EnumParticleTypes_SNOW_SHOVEL, nmu_EnumParticleTypes_SLIME, nmu_EnumParticleTypes_HEART, nmu_EnumParticleTypes_BARRIER, nmu_EnumParticleTypes_ITEM_CRACK, nmu_EnumParticleTypes_BLOCK_CRACK, nmu_EnumParticleTypes_BLOCK_DUST, nmu_EnumParticleTypes_WATER_DROP, nmu_EnumParticleTypes_ITEM_TAKE, nmu_EnumParticleTypes_MOB_APPEARANCE]); + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($ptr); + } function nmu_EnumParticleTypes__clinit_() { var $arraylist, $enumparticletypes, $i, var$4, var$5, var$6, var$7, $types, var$9, var$10, $ptr, $tmp; $ptr = 0; @@ -873137,11 +875140,16 @@ break main; } nmu_EnumParticleTypes_MOB_APPEARANCE = $arraylist; - nmu_EnumParticleTypes_$VALUES = $rt_createArrayFromData(nmu_EnumParticleTypes, [nmu_EnumParticleTypes_EXPLOSION_NORMAL, nmu_EnumParticleTypes_EXPLOSION_LARGE, nmu_EnumParticleTypes_EXPLOSION_HUGE, nmu_EnumParticleTypes_FIREWORKS_SPARK, nmu_EnumParticleTypes_WATER_BUBBLE, nmu_EnumParticleTypes_WATER_SPLASH, nmu_EnumParticleTypes_WATER_WAKE, nmu_EnumParticleTypes_SUSPENDED, nmu_EnumParticleTypes_SUSPENDED_DEPTH, nmu_EnumParticleTypes_CRIT, nmu_EnumParticleTypes_CRIT_MAGIC, nmu_EnumParticleTypes_SMOKE_NORMAL, - nmu_EnumParticleTypes_SMOKE_LARGE, nmu_EnumParticleTypes_SPELL, nmu_EnumParticleTypes_SPELL_INSTANT, nmu_EnumParticleTypes_SPELL_MOB, nmu_EnumParticleTypes_SPELL_MOB_AMBIENT, nmu_EnumParticleTypes_SPELL_WITCH, nmu_EnumParticleTypes_DRIP_WATER, nmu_EnumParticleTypes_DRIP_LAVA, nmu_EnumParticleTypes_VILLAGER_ANGRY, nmu_EnumParticleTypes_VILLAGER_HAPPY, nmu_EnumParticleTypes_TOWN_AURA, nmu_EnumParticleTypes_NOTE, nmu_EnumParticleTypes_PORTAL, nmu_EnumParticleTypes_ENCHANTMENT_TABLE, nmu_EnumParticleTypes_FLAME, - nmu_EnumParticleTypes_LAVA, nmu_EnumParticleTypes_FOOTSTEP, nmu_EnumParticleTypes_CLOUD, nmu_EnumParticleTypes_REDSTONE, nmu_EnumParticleTypes_SNOWBALL, nmu_EnumParticleTypes_SNOW_SHOVEL, nmu_EnumParticleTypes_SLIME, nmu_EnumParticleTypes_HEART, nmu_EnumParticleTypes_BARRIER, nmu_EnumParticleTypes_ITEM_CRACK, nmu_EnumParticleTypes_BLOCK_CRACK, nmu_EnumParticleTypes_BLOCK_DUST, nmu_EnumParticleTypes_WATER_DROP, nmu_EnumParticleTypes_ITEM_TAKE, $arraylist]); $ptr = 43; case 43: + $tmp = nmu_EnumParticleTypes_$values(); + if ($rt_suspending()) { + break main; + } + $types = $tmp; + nmu_EnumParticleTypes_$VALUES = $types; + $ptr = 44; + case 44: $tmp = nmu_EnumParticleTypes_values(); if ($rt_suspending()) { break main; @@ -873150,8 +875158,8 @@ nmu_EnumParticleTypes__VALUES = $types; nmu_EnumParticleTypes_PARTICLES = cgcc_Maps_newHashMap(); $arraylist = cgcc_Lists_newArrayList(); - $ptr = 44; - case 44: + $ptr = 45; + case 45: $tmp = nmu_EnumParticleTypes_values(); if ($rt_suspending()) { break main; @@ -873160,22 +875168,22 @@ $i = 0; var$9 = $types.data; if ($i >= var$9.length) { - $ptr = 45; + $ptr = 46; continue main; } $enumparticletypes = var$9[$i]; var$4 = nmu_EnumParticleTypes_PARTICLES; - $ptr = 47; + $ptr = 48; continue main; - case 45: + case 46: $tmp = ju_ArrayList_size($arraylist); if ($rt_suspending()) { break main; } $i = $tmp; $types = $rt_createArray(jl_String, $i); - $ptr = 46; - case 46: + $ptr = 47; + case 47: $tmp = ju_AbstractCollection_toArray($arraylist, $types); if ($rt_suspending()) { break main; @@ -873183,48 +875191,48 @@ $types = $tmp; nmu_EnumParticleTypes_PARTICLE_NAMES = $types; return; - case 47: + case 48: $tmp = nmu_EnumParticleTypes_getParticleID($enumparticletypes); if ($rt_suspending()) { break main; } var$5 = $tmp; var$10 = jl_Integer_valueOf0(var$5); - $ptr = 48; - case 48: + $ptr = 49; + case 49: ju_HashMap_put(var$4, var$10, $enumparticletypes); if ($rt_suspending()) { break main; } - $ptr = 49; - case 49: + $ptr = 50; + case 50: $tmp = nmu_EnumParticleTypes_getParticleName($enumparticletypes); if ($rt_suspending()) { break main; } var$4 = $tmp; if (!jl_String_endsWith(var$4, $rt_s(551))) { - $ptr = 50; + $ptr = 51; continue main; } $i = $i + 1 | 0; var$9 = $types.data; if ($i >= var$9.length) { - $ptr = 45; + $ptr = 46; continue main; } $enumparticletypes = var$9[$i]; var$4 = nmu_EnumParticleTypes_PARTICLES; - $ptr = 47; + $ptr = 48; continue main; - case 50: + case 51: $tmp = nmu_EnumParticleTypes_getParticleName($enumparticletypes); if ($rt_suspending()) { break main; } $enumparticletypes = $tmp; - $ptr = 51; - case 51: + $ptr = 52; + case 52: ju_ArrayList_add($arraylist, $enumparticletypes); if ($rt_suspending()) { break main; @@ -873232,12 +875240,12 @@ $i = $i + 1 | 0; var$9 = $types.data; if ($i >= var$9.length) { - $ptr = 45; + $ptr = 46; continue main; } $enumparticletypes = var$9[$i]; var$4 = nmu_EnumParticleTypes_PARTICLES; - $ptr = 47; + $ptr = 48; continue main; default: $rt_invalidPointer(); }} @@ -876197,7 +878205,7 @@ function cgcc_ImmutableEnumMap_createKeySet($this) { var var$1; var$1 = new cgcc_ImmutableEnumMap$1; - var$1.$this$0167 = $this; + var$1.$this$0111 = $this; return var$1; } function cgcc_ImmutableEnumMap_size($this) { @@ -876212,7 +878220,7 @@ function cgcc_ImmutableEnumMap_createEntrySet($this) { var var$1; var$1 = new cgcc_ImmutableEnumMap$2; - var$1.$this$0168 = $this; + var$1.$this$0112 = $this; return var$1; } function cgcc_ImmutableEnumMap_isPartialView($this) { @@ -879614,17 +881622,13 @@ }} $rt_nativeThread().push($this, $blockIn, var$2, $iblockstate, var$4, var$5, $ptr); } - function nmcr_BlockModelShapes$1() { - nmcrbs_StateMapperBase.call(this); - this.$this$0169 = null; - } + var nmcr_BlockModelShapes$1 = $rt_classWithoutFields(nmcrbs_StateMapperBase); function nmcr_BlockModelShapes$1__init_(var_0) { var var_1 = new nmcr_BlockModelShapes$1(); nmcr_BlockModelShapes$1__init_0(var_1, var_0); return var_1; } function nmcr_BlockModelShapes$1__init_0($this, $this$0) { - $this.$this$0169 = $this$0; nmcrbs_StateMapperBase__init_($this); } function nmcr_BlockModelShapes$1_getModelResourceLocation($this, $state) { @@ -879713,17 +881717,13 @@ }} $rt_nativeThread().push($this, $state, $blockquartz$enumtype, var$3, $ptr); } - function nmcr_BlockModelShapes$2() { - nmcrbs_StateMapperBase.call(this); - this.$this$0170 = null; - } + var nmcr_BlockModelShapes$2 = $rt_classWithoutFields(nmcrbs_StateMapperBase); function nmcr_BlockModelShapes$2__init_(var_0) { var var_1 = new nmcr_BlockModelShapes$2(); nmcr_BlockModelShapes$2__init_0(var_1, var_0); return var_1; } function nmcr_BlockModelShapes$2__init_0($this, $this$0) { - $this.$this$0170 = $this$0; nmcrbs_StateMapperBase__init_($this); } function nmcr_BlockModelShapes$2_getModelResourceLocation($this, $var1) { @@ -879749,17 +881749,13 @@ }} $rt_nativeThread().push($this, $var1, var$2, var$3, $ptr); } - function nmcr_BlockModelShapes$3() { - nmcrbs_StateMapperBase.call(this); - this.$this$0171 = null; - } + var nmcr_BlockModelShapes$3 = $rt_classWithoutFields(nmcrbs_StateMapperBase); function nmcr_BlockModelShapes$3__init_(var_0) { var var_1 = new nmcr_BlockModelShapes$3(); nmcr_BlockModelShapes$3__init_0(var_1, var_0); return var_1; } function nmcr_BlockModelShapes$3__init_0($this, $this$0) { - $this.$this$0171 = $this$0; nmcrbs_StateMapperBase__init_($this); } function nmcr_BlockModelShapes$3_getModelResourceLocation($this, $iblockstate) { @@ -879848,17 +881844,13 @@ }} $rt_nativeThread().push($this, $iblockstate, var$2, $linkedhashmap, var$4, $ptr); } - function nmcr_BlockModelShapes$4() { - nmcrbs_StateMapperBase.call(this); - this.$this$0172 = null; - } + var nmcr_BlockModelShapes$4 = $rt_classWithoutFields(nmcrbs_StateMapperBase); function nmcr_BlockModelShapes$4__init_(var_0) { var var_1 = new nmcr_BlockModelShapes$4(); nmcr_BlockModelShapes$4__init_0(var_1, var_0); return var_1; } function nmcr_BlockModelShapes$4__init_0($this, $this$0) { - $this.$this$0172 = $this$0; nmcrbs_StateMapperBase__init_($this); } function nmcr_BlockModelShapes$4_getModelResourceLocation($this, $iblockstate) { @@ -879947,17 +881939,13 @@ }} $rt_nativeThread().push($this, $iblockstate, var$2, $linkedhashmap, var$4, $ptr); } - function nmcr_BlockModelShapes$5() { - nmcrbs_StateMapperBase.call(this); - this.$this$0173 = null; - } + var nmcr_BlockModelShapes$5 = $rt_classWithoutFields(nmcrbs_StateMapperBase); function nmcr_BlockModelShapes$5__init_(var_0) { var var_1 = new nmcr_BlockModelShapes$5(); nmcr_BlockModelShapes$5__init_0(var_1, var_0); return var_1; } function nmcr_BlockModelShapes$5__init_0($this, $this$0) { - $this.$this$0173 = $this$0; nmcrbs_StateMapperBase__init_($this); } function nmcr_BlockModelShapes$5_getModelResourceLocation($this, $iblockstate) { @@ -880042,17 +882030,13 @@ }} $rt_nativeThread().push($this, $iblockstate, $linkedhashmap, $s, var$4, var$5, $ptr); } - function nmcr_BlockModelShapes$6() { - nmcrbs_StateMapperBase.call(this); - this.$this$0174 = null; - } + var nmcr_BlockModelShapes$6 = $rt_classWithoutFields(nmcrbs_StateMapperBase); function nmcr_BlockModelShapes$6__init_(var_0) { var var_1 = new nmcr_BlockModelShapes$6(); nmcr_BlockModelShapes$6__init_0(var_1, var_0); return var_1; } function nmcr_BlockModelShapes$6__init_0($this, $this$0) { - $this.$this$0174 = $this$0; nmcrbs_StateMapperBase__init_($this); } function nmcr_BlockModelShapes$6_getModelResourceLocation($this, $iblockstate) { @@ -880144,17 +882128,13 @@ }} $rt_nativeThread().push($this, $iblockstate, $linkedhashmap, $s, $s1, $ptr); } - function nmcr_BlockModelShapes$7() { - nmcrbs_StateMapperBase.call(this); - this.$this$0175 = null; - } + var nmcr_BlockModelShapes$7 = $rt_classWithoutFields(nmcrbs_StateMapperBase); function nmcr_BlockModelShapes$7__init_(var_0) { var var_1 = new nmcr_BlockModelShapes$7(); nmcr_BlockModelShapes$7__init_0(var_1, var_0); return var_1; } function nmcr_BlockModelShapes$7__init_0($this, $this$0) { - $this.$this$0175 = $this$0; nmcrbs_StateMapperBase__init_($this); } function nmcr_BlockModelShapes$7_getModelResourceLocation($this, $iblockstate) { @@ -881957,7 +883937,7 @@ $crashreportcategory = $tmp; var$3 = $rt_s(6432); $crashreport = new nmcm_WorldClient$1; - $crashreport.$this$0176 = $this; + $crashreport.$this$0113 = $this; $ptr = 2; case 2: nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, var$3, $crashreport); @@ -881966,7 +883946,7 @@ } $crashreport = $rt_s(6433); var$3 = new nmcm_WorldClient$2; - var$3.$this$0177 = $this; + var$3.$this$0114 = $this; $ptr = 3; case 3: nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, $crashreport, var$3); @@ -881975,7 +883955,7 @@ } $crashreport = $rt_s(6434); var$3 = new nmcm_WorldClient$3; - var$3.$this$0178 = $this; + var$3.$this$0115 = $this; $ptr = 4; case 4: nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, $crashreport, var$3); @@ -881984,7 +883964,6 @@ } $crashreport = $rt_s(6435); var$3 = new nmcm_WorldClient$4; - var$3.$this$0179 = $this; $ptr = 5; case 5: nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, $crashreport, var$3); @@ -882624,7 +884603,7 @@ a.$texturePackIcon = null; a.$locationTexturePackIcon = null; a.$iconTextureManager = null; - a.$this$0120 = null; + a.$this$090 = null; } function nmcr_ResourcePackRepository$Entry_updateResourcePack($this) { var var$1, var$2, $var2, var$4, $$je, $ptr, $tmp; @@ -882636,7 +884615,7 @@ main: while (true) { switch ($ptr) { case 0: var$1 = $this.$reResourcePack; - var$2 = $this.$this$0120.$rprMetadataSerializer; + var$2 = $this.$this$090.$rprMetadataSerializer; $var2 = $rt_s(5921); $ptr = 1; case 1: @@ -882685,7 +884664,7 @@ $ptr = 6; continue main; } - $var2 = $this.$this$0120.$rprDefaultResourcePack; + $var2 = $this.$this$090.$rprDefaultResourcePack; $ptr = 7; continue main; case 3: @@ -882714,7 +884693,7 @@ $ptr = 6; continue main; } - $var2 = $this.$this$0120.$rprDefaultResourcePack; + $var2 = $this.$this$090.$rprDefaultResourcePack; $ptr = 7; continue main; case 6: @@ -882935,10 +884914,10 @@ function cgcb_Splitter$5() { var a = this; jl_Object.call(a); a.$val$sequence = null; - a.$this$031 = null; + a.$this$018 = null; } function cgcb_Splitter$5_iterator($this) { - return cgcb_Splitter_splittingIterator($this.$this$031, $this.$val$sequence); + return cgcb_Splitter_splittingIterator($this.$this$018, $this.$val$sequence); } function cgcb_Splitter$5_toString($this) { var var$1, var$2, $ptr, $tmp; @@ -883058,15 +885037,15 @@ } function ju_HashMap$2() { ju_AbstractCollection.call(this); - this.$this$011 = null; + this.$this$07 = null; } function ju_HashMap$2_size($this) { - return $this.$this$011.$elementCount; + return $this.$this$07.$elementCount; } function ju_HashMap$2_iterator($this) { var var$1; var$1 = new ju_HashMap$ValueIterator; - ju_HashMap$AbstractMapIterator__init_(var$1, $this.$this$011); + ju_HashMap$AbstractMapIterator__init_(var$1, $this.$this$07); return var$1; } var nea_BaseData$ObjectCallback = $rt_classWithoutFields(0); @@ -883769,10 +885748,7 @@ }} $rt_nativeThread().push($this, var$1, $ptr); } - function nmwb_BiomeGenForest$2() { - nmwb_BiomeGenMutated.call(this); - this.$this$037 = null; - } + var nmwb_BiomeGenForest$2 = $rt_classWithoutFields(nmwb_BiomeGenMutated); function nmwb_BiomeGenForest$2_genBigTreeChance($this, $random) { var $ptr, $tmp; $ptr = 0; @@ -883804,10 +885780,7 @@ }} $rt_nativeThread().push($this, $random, $ptr); } - function nmwb_BiomeGenForest$1() { - nmwb_BiomeGenMutated.call(this); - this.$this$036 = null; - } + var nmwb_BiomeGenForest$1 = $rt_classWithoutFields(nmwb_BiomeGenMutated); function nmwb_BiomeGenForest$1_decorate($this, $world, $random, $blockpos) { var var$4, $ptr, $tmp; $ptr = 0; @@ -883940,20 +885913,6 @@ }} $rt_nativeThread().push($this, $t, var$2, var$3, var$4, var$5, var$6, $ptr); } - var cgcc_AbstractIterator$1 = $rt_classWithoutFields(); - var cgcc_AbstractIterator$1_$SwitchMap$com$google$common$collect$AbstractIterator$State = null; - function cgcc_AbstractIterator$1_$callClinit() { - cgcc_AbstractIterator$1_$callClinit = $rt_eraseClinit(cgcc_AbstractIterator$1); - cgcc_AbstractIterator$1__clinit_(); - } - function cgcc_AbstractIterator$1__clinit_() { - var var$1, var$2; - var$1 = $rt_createIntArray((cgcc_AbstractIterator$State_values()).data.length); - var$2 = var$1.data; - cgcc_AbstractIterator$1_$SwitchMap$com$google$common$collect$AbstractIterator$State = var$1; - var$2[cgcc_AbstractIterator$State_DONE.$ordinal] = 1; - var$2[cgcc_AbstractIterator$State_READY.$ordinal] = 2; - } var nPs_Lagometer = $rt_classWithoutFields(); var nPs_Lagometer_mc = null; var nPs_Lagometer_gameSettings = null; @@ -884743,7 +886702,7 @@ } function nmcr_EntityRenderer$2() { jl_Object.call(this); - this.$this$0180 = null; + this.$this$0116 = null; } function nmcr_EntityRenderer$2__init_(var_0) { var var_1 = new nmcr_EntityRenderer$2(); @@ -884751,16 +886710,15 @@ return var_1; } function nmcr_EntityRenderer$2__init_0($this, $this$0) { - $this.$this$0180 = $this$0; + $this.$this$0116 = $this$0; } function nmcr_EntityRenderer$2_call($this) { - return jl_Class_getName(jl_Object_getClass($this.$this$0180.$mc5.$currentScreen)); + return jl_Class_getName(jl_Object_getClass($this.$this$0116.$mc5.$currentScreen)); } function nmcr_EntityRenderer$3() { var a = this; jl_Object.call(a); a.$val$j1 = 0; a.$val$k1 = 0; - a.$this$0181 = null; } function nmcr_EntityRenderer$3__init_(var_0, var_1, var_2) { var var_3 = new nmcr_EntityRenderer$3(); @@ -884768,7 +886726,6 @@ return var_3; } function nmcr_EntityRenderer$3__init_0($this, $this$0, var$2, var$3) { - $this.$this$0181 = $this$0; $this.$val$j1 = var$2; $this.$val$k1 = var$3; } @@ -884798,7 +886755,7 @@ function nmcr_EntityRenderer$4() { var a = this; jl_Object.call(a); a.$val$scaledresolution = null; - a.$this$0182 = null; + a.$this$0117 = null; } function nmcr_EntityRenderer$4__init_(var_0, var_1) { var var_2 = new nmcr_EntityRenderer$4(); @@ -884806,7 +886763,7 @@ return var_2; } function nmcr_EntityRenderer$4__init_0($this, $this$0, var$2) { - $this.$this$0182 = $this$0; + $this.$this$0117 = $this$0; $this.$val$scaledresolution = var$2; } function nmcr_EntityRenderer$4_call($this) { @@ -884819,7 +886776,7 @@ main: while (true) { switch ($ptr) { case 0: var$1 = $rt_s(6439); - var$2 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0(nmcg_ScaledResolution_scaledWidth), jl_Integer_valueOf0(nmcg_ScaledResolution_scaledHeight), jl_Integer_valueOf0($this.$this$0182.$mc5.$displayWidth), jl_Integer_valueOf0($this.$this$0182.$mc5.$displayHeight), jl_Integer_valueOf0(nmcg_ScaledResolution_scaleFactor)]); + var$2 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0(nmcg_ScaledResolution_scaledWidth), jl_Integer_valueOf0(nmcg_ScaledResolution_scaledHeight), jl_Integer_valueOf0($this.$this$0117.$mc5.$displayWidth), jl_Integer_valueOf0($this.$this$0117.$mc5.$displayHeight), jl_Integer_valueOf0(nmcg_ScaledResolution_scaleFactor)]); $ptr = 1; case 1: $tmp = nlev_HString_format(var$1, var$2); @@ -885289,10 +887246,10 @@ } function cgcc_HashBiMap$Inverse() { ju_AbstractMap.call(this); - this.$this$0110 = null; + this.$this$080 = null; } function cgcc_HashBiMap$Inverse_size($this) { - return $this.$this$0110.$size10; + return $this.$this$080.$size10; } function cgcc_HashBiMap$Inverse_containsKey($this, $value) { var var$2, var$3, $ptr, $tmp; @@ -885303,7 +887260,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$2 = $this.$this$0110; + var$2 = $this.$this$080; $ptr = 1; case 1: $tmp = cgcc_HashBiMap_containsValue(var$2, $value); @@ -885325,7 +887282,7 @@ } main: while (true) { switch ($ptr) { case 0: - $entry = $this.$this$0110; + $entry = $this.$this$080; $ptr = 1; case 1: $tmp = cgcc_HashBiMap_hash($value); @@ -885354,7 +887311,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$3 = $this.$this$0110; + var$3 = $this.$this$080; $ptr = 1; case 1: $tmp = cgcc_HashBiMap_hash($value); @@ -885378,7 +887335,7 @@ var$6 = $tmp; if (var$6 !== null && var$5 == var$6.$keyHash) { var$7 = var$6.$key5; - $ptr = 8; + $ptr = 9; continue main; } $ptr = 4; @@ -885397,23 +887354,30 @@ return $key; } $value = new jl_IllegalArgumentException; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - var$7 = $rt_s(4483); $ptr = 5; case 5: - jl_AbstractStringBuilder_append(var$3, var$7); + $tmp = jl_String_valueOf($key); if ($rt_suspending()) { break main; } + $key = $tmp; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + var$7 = $rt_s(4483); $ptr = 6; case 6: - jl_AbstractStringBuilder_append(var$3, $key); + jl_AbstractStringBuilder_append(var$3, var$7); if ($rt_suspending()) { break main; } $ptr = 7; case 7: + jl_AbstractStringBuilder_append(var$3, $key); + if ($rt_suspending()) { + break main; + } + $ptr = 8; + case 8: $tmp = jl_AbstractStringBuilder_toString(var$3); if ($rt_suspending()) { break main; @@ -885421,7 +887385,7 @@ $key = $tmp; jl_Throwable__init_($value, $key); $rt_throw($value); - case 8: + case 9: $tmp = cgcb_Objects_equal($key, var$7); if ($rt_suspending()) { break main; @@ -885444,7 +887408,7 @@ } main: while (true) { switch ($ptr) { case 0: - $entry = $this.$this$0110; + $entry = $this.$this$080; $ptr = 1; case 1: $tmp = cgcc_HashBiMap_hash($value); @@ -885461,17 +887425,17 @@ $entry = $tmp; if ($entry === null) return null; - cgcc_HashBiMap_delete($this.$this$0110, $entry); + cgcc_HashBiMap_delete($this.$this$080, $entry); return $entry.$key5; default: $rt_invalidPointer(); }} $rt_nativeThread().push($this, $value, $entry, var$3, $ptr); } function cgcc_HashBiMap$Inverse_inverse($this) { - return $this.$this$0110; + return $this.$this$080; } function cgcc_HashBiMap$Inverse_values($this) { - return cgcc_HashBiMap_keySet($this.$this$0110); + return cgcc_HashBiMap_keySet($this.$this$080); } function cgcc_HashBiMap$Inverse_entrySet($this) { var var$1; @@ -885492,16 +887456,16 @@ } function cgcc_HashBiMap$EntrySet() { cgcc_Maps$EntrySet.call(this); - this.$this$0109 = null; + this.$this$079 = null; } function cgcc_HashBiMap$EntrySet_map($this) { - return $this.$this$0109; + return $this.$this$079; } function cgcc_HashBiMap$EntrySet_iterator($this) { var var$1; var$1 = new cgcc_HashBiMap$EntrySet$1; var$1.$this$12 = $this; - cgcc_HashBiMap$Itr__init_(var$1, $this.$this$0109); + cgcc_HashBiMap$Itr__init_(var$1, $this.$this$079); return var$1; } var otcic_Console = $rt_classWithoutFields(); @@ -885525,51 +887489,6 @@ ju_LinkedHashMapIterator__init_(var$1, $this.$base, $this.$reversed); return var$1; } - var jnci_Iso8859Decoder = $rt_classWithoutFields(jnci_BufferedDecoder); - function jnci_Iso8859Decoder_arrayDecode($this, $inArray, $inPos, $inSize, $outArray, $outPos, $outSize, $controller) { - var $result, var$9, var$10, var$11, $b, var$13; - $result = null; - while ($inPos < $inSize && $outPos < $outSize) { - var$9 = $inArray.data; - var$10 = $outArray.data; - var$11 = $inPos + 1 | 0; - $b = var$9[$inPos] & 255; - var$13 = $outPos + 1 | 0; - var$10[$outPos] = $b & 65535; - $inPos = var$11; - $outPos = var$13; - } - $controller.$inPosition = $inPos; - $controller.$outPosition = $outPos; - return $result; - } - var jnci_AsciiDecoder = $rt_classWithoutFields(jnci_BufferedDecoder); - function jnci_AsciiDecoder_arrayDecode($this, $inArray, $inPos, $inSize, $outArray, $outPos, $outSize, $controller) { - var $result, var$9, var$10, $b, var$12; - $result = null; - a: { - while ($inPos < $inSize) { - if ($outPos >= $outSize) - break a; - var$9 = $inArray.data; - var$10 = $inPos + 1 | 0; - $b = var$9[$inPos] & 255; - if ($b & 128) { - $result = jnc_CoderResult_malformedForLength(1); - $inPos = var$10 + (-1) | 0; - break a; - } - var$9 = $outArray.data; - var$12 = $outPos + 1 | 0; - var$9[$outPos] = $b & 65535; - $inPos = var$10; - $outPos = var$12; - } - } - $controller.$inPosition = $inPos; - $controller.$outPosition = $outPos; - return $result; - } function jnci_UTF16Decoder() { var a = this; jnci_BufferedDecoder.call(a); a.$bom0 = 0; @@ -885726,6 +887645,51 @@ $controller.$outPosition = $outPos; return $result; } + var jnci_Iso8859Decoder = $rt_classWithoutFields(jnci_BufferedDecoder); + function jnci_Iso8859Decoder_arrayDecode($this, $inArray, $inPos, $inSize, $outArray, $outPos, $outSize, $controller) { + var $result, var$9, var$10, var$11, $b, var$13; + $result = null; + while ($inPos < $inSize && $outPos < $outSize) { + var$9 = $inArray.data; + var$10 = $outArray.data; + var$11 = $inPos + 1 | 0; + $b = var$9[$inPos] & 255; + var$13 = $outPos + 1 | 0; + var$10[$outPos] = $b & 65535; + $inPos = var$11; + $outPos = var$13; + } + $controller.$inPosition = $inPos; + $controller.$outPosition = $outPos; + return $result; + } + var jnci_AsciiDecoder = $rt_classWithoutFields(jnci_BufferedDecoder); + function jnci_AsciiDecoder_arrayDecode($this, $inArray, $inPos, $inSize, $outArray, $outPos, $outSize, $controller) { + var $result, var$9, var$10, $b, var$12; + $result = null; + a: { + while ($inPos < $inSize) { + if ($outPos >= $outSize) + break a; + var$9 = $inArray.data; + var$10 = $inPos + 1 | 0; + $b = var$9[$inPos] & 255; + if ($b & 128) { + $result = jnc_CoderResult_malformedForLength(1); + $inPos = var$10 + (-1) | 0; + break a; + } + var$9 = $outArray.data; + var$12 = $outPos + 1 | 0; + var$9[$outPos] = $b & 65535; + $inPos = var$10; + $outPos = var$12; + } + } + $controller.$inPosition = $inPos; + $controller.$outPosition = $outPos; + return $result; + } var juz_DataFormatException = $rt_classWithoutFields(jl_Exception); function juz_DataFormatException__init_0() { var var_0 = new juz_DataFormatException(); @@ -885737,7 +887701,7 @@ } function ju_HashMap$1() { ju_AbstractSet.call(this); - this.$this$010 = null; + this.$this$06 = null; } function ju_HashMap$1_contains($this, $object) { var var$2, var$3, $ptr, $tmp; @@ -885748,7 +887712,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$2 = $this.$this$010; + var$2 = $this.$this$06; $ptr = 1; case 1: $tmp = ju_HashMap_containsKey(var$2, $object); @@ -885762,7 +887726,7 @@ $rt_nativeThread().push($this, $object, var$2, var$3, $ptr); } function ju_HashMap$1_size($this) { - return $this.$this$010.$elementCount; + return $this.$this$06.$elementCount; } function ju_HashMap$1_remove($this, $key) { var $entry, $ptr, $tmp; @@ -885773,7 +887737,7 @@ } main: while (true) { switch ($ptr) { case 0: - $entry = $this.$this$010; + $entry = $this.$this$06; $ptr = 1; case 1: $tmp = ju_HashMap_removeByKey($entry, $key); @@ -885789,7 +887753,7 @@ function ju_HashMap$1_iterator($this) { var var$1; var$1 = new ju_HashMap$KeyIterator; - ju_HashMap$AbstractMapIterator__init_(var$1, $this.$this$010); + ju_HashMap$AbstractMapIterator__init_(var$1, $this.$this$06); return var$1; } function nmc_Minecraft$4() { @@ -885799,10 +887763,7 @@ function nmc_Minecraft$4_call($this) { return $this.$this$0.$launchedVersion; } - function nmc_Minecraft$5() { - jl_Object.call(this); - this.$this$00 = null; - } + var nmc_Minecraft$5 = $rt_classWithoutFields(); function nmc_Minecraft$5_call($this) { var var$1, $ptr, $tmp; $ptr = 0; @@ -885824,10 +887785,7 @@ }} $rt_nativeThread().push($this, var$1, $ptr); } - function nmc_Minecraft$6() { - jl_Object.call(this); - this.$this$01 = null; - } + var nmc_Minecraft$6 = $rt_classWithoutFields(); function nmc_Minecraft$6_call($this) { var var$1, var$2, var$3, var$4, var$5, $ptr, $tmp; $ptr = 0; @@ -885907,23 +887865,17 @@ }} $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, var$5, $ptr); } - function nmc_Minecraft$7() { - jl_Object.call(this); - this.$this$02 = null; - } + var nmc_Minecraft$7 = $rt_classWithoutFields(); function nmc_Minecraft$7_call($this) { return $rt_s(6445); } - function nmc_Minecraft$8() { - jl_Object.call(this); - this.$this$03 = null; - } + var nmc_Minecraft$8 = $rt_classWithoutFields(); function nmc_Minecraft$8_call($this) { return $rt_s(6446); } function nmc_Minecraft$9() { jl_Object.call(this); - this.$this$04 = null; + this.$this$00 = null; } function nmc_Minecraft$9_call($this) { var var$1, var$2, var$3, var$4, var$5, $ptr, $tmp; @@ -885936,7 +887888,7 @@ case 0: var$1 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$1); - var$2 = $this.$this$04.$gameSettings.$resourcePacks; + var$2 = $this.$this$00.$gameSettings.$resourcePacks; $ptr = 1; case 1: $tmp = ju_AbstractList_iterator(var$2); @@ -885973,7 +887925,7 @@ if (var$1.$length0 > 0) jl_AbstractStringBuilder_append5(var$1, $rt_s(554)); jl_AbstractStringBuilder_append5(var$1, var$4); - var$5 = $this.$this$04.$gameSettings.$field_183018_l; + var$5 = $this.$this$00.$gameSettings.$field_183018_l; $ptr = 5; case 5: $tmp = ju_AbstractCollection_contains(var$5, var$4); @@ -885991,7 +887943,7 @@ } function nmc_Minecraft$10() { jl_Object.call(this); - this.$this$05 = null; + this.$this$01 = null; } function nmc_Minecraft$10_call($this) { var var$1, $ptr, $tmp; @@ -886002,7 +887954,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$05.$mcLanguageManager; + var$1 = $this.$this$01.$mcLanguageManager; $ptr = 1; case 1: $tmp = nmcr_LanguageManager_getCurrentLanguage(var$1); @@ -886024,7 +887976,7 @@ } function nmc_Minecraft$11() { jl_Object.call(this); - this.$this$06 = null; + this.$this$02 = null; } function nmc_Minecraft$11_call($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -886035,7 +887987,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$06.$mcProfiler; + var$1 = $this.$this$02.$mcProfiler; if (!var$1.$profilingEnabled) var$1 = $rt_s(6448); else { @@ -886365,7 +888317,7 @@ var$3 = $blockpos.$getY(); var$4 = $blockpos.$getZ() & 15; if (!var$2.$numBlocksToUpdate) { - $blockpos = var$2.$this$0106.$playerInstancesToUpdate; + $blockpos = var$2.$this$076.$playerInstancesToUpdate; $ptr = 2; continue main; } @@ -886544,7 +888496,7 @@ a.$currentEntry = null; a.$index13 = 0; a.$version0 = 0; - a.$this$014 = null; + a.$this$010 = null; } function ju_LinkedList$SequentialListIterator__init_(var_0, var_1, var_2, var_3) { var var_4 = new ju_LinkedList$SequentialListIterator(); @@ -886552,7 +888504,7 @@ return var_4; } function ju_LinkedList$SequentialListIterator__init_0($this, var$1, $nextEntry, $prevEntry, $index) { - $this.$this$014 = var$1; + $this.$this$010 = var$1; $this.$version0 = var$1.$modCount0; $this.$nextEntry = $nextEntry; $this.$prevEntry = $prevEntry; @@ -886585,7 +888537,7 @@ jl_Throwable__init_0(var$1); $rt_throw(var$1); } - var$2 = $this.$this$014; + var$2 = $this.$this$010; var$3 = var$1.$previous0; if (var$3 === null) var$2.$firstEntry = var$1.$next6; @@ -886604,12 +888556,12 @@ $this.$index13 = $this.$index13 - 1 | 0; } else if (var$1 === $this.$nextEntry) $this.$nextEntry = !(var$2 === null ? 0 : 1) ? null : var$2.$next6; - $this.$version0 = $this.$this$014.$modCount0; + $this.$version0 = $this.$this$010.$modCount0; $this.$currentEntry = null; } function ju_LinkedList$SequentialListIterator_checkConcurrentModification($this) { var var$1; - if ($this.$version0 >= $this.$this$014.$modCount0) + if ($this.$version0 >= $this.$this$010.$modCount0) return; var$1 = new ju_ConcurrentModificationException; jl_Throwable__init_0(var$1); @@ -888396,10 +890348,7 @@ }} $rt_nativeThread().push(var$1, var$2, var$3, var$4, var$5, var$6, $ptr); } - function nlevi_PlatformInput$13$1() { - jl_Object.call(this); - this.$this$023 = null; - } + var nlevi_PlatformInput$13$1 = $rt_classWithoutFields(); function nlevi_PlatformInput$13$1_onTimer$exported$0(var$0) { var var$1; var$1 = $rt_globals.document.pointerLockElement != null ? 1 : 0; @@ -962053,7 +964002,6 @@ } $throwable = $rt_s(6898); var$8 = new nmep_InventoryPlayer$1; - var$8.$this$0183 = $this; var$8.$val$itemStackIn = $itemStackIn; $ptr = 7; case 7: @@ -963092,17 +965040,24 @@ break main; } $s = nmu_EnumChatFormatting_YELLOW; - $slot = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($slot); $ptr = 43; case 43: + $tmp = jl_String_valueOf($s); + if ($rt_suspending()) { + break main; + } + $s = $tmp; + $slot = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($slot); + $ptr = 44; + case 44: jl_AbstractStringBuilder_append($slot, $s); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append0($slot, 48); - $ptr = 44; - case 44: + $ptr = 45; + case 45: $tmp = jl_AbstractStringBuilder_toString($slot); if ($rt_suspending()) { break main; @@ -963160,11 +965115,11 @@ $rt_nativeThread().push($this, $stack, $x, $y, $altText, var$5, var$6, var$7, var$8, var$9, var$10, $ptr); } function nmcgi_GuiContainer_drawSlot($this, $slotIn) { - var $i, $j, $itemstack, $flag, $textureatlassprite, $flag1, $itemstack1, $s, $s1, var$11, var$12, $ptr, $tmp; + var $i, $j, $itemstack, $flag, $s1, $flag1, $itemstack1, $s, var$10, var$11, $textureatlassprite, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();$s1 = $thread.pop();$s = $thread.pop();$itemstack1 = $thread.pop();$flag1 = $thread.pop();$textureatlassprite = $thread.pop();$flag = $thread.pop();$itemstack = $thread.pop();$j = $thread.pop();$i = $thread.pop();$slotIn = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();$textureatlassprite = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();$s = $thread.pop();$itemstack1 = $thread.pop();$flag1 = $thread.pop();$s1 = $thread.pop();$flag = $thread.pop();$itemstack = $thread.pop();$j = $thread.pop();$i = $thread.pop();$slotIn = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -963178,16 +965133,16 @@ } $itemstack = $tmp; $flag = 0; - $textureatlassprite = $this.$clickedSlot; - $flag1 = $slotIn === $textureatlassprite && $this.$draggedStack !== null && !$this.$isRightMouseClick ? 1 : 0; + $s1 = $this.$clickedSlot; + $flag1 = $slotIn === $s1 && $this.$draggedStack !== null && !$this.$isRightMouseClick ? 1 : 0; $itemstack1 = $this.$mc15.$thePlayer.$inventory.$itemStack0; $s = null; - if ($slotIn === $textureatlassprite && $this.$draggedStack !== null && $this.$isRightMouseClick && $itemstack !== null) { + if ($slotIn === $s1 && $this.$draggedStack !== null && $this.$isRightMouseClick && $itemstack !== null) { $ptr = 4; continue main; } if ($this.$dragSplitting) { - $textureatlassprite = $this.$dragSplittingSlots; + $s1 = $this.$dragSplittingSlots; $ptr = 2; continue main; } @@ -963210,19 +965165,19 @@ $ptr = 13; continue main; } - var$11 = $i + 16 | 0; - var$12 = $j + 16 | 0; - $flag1 = (-2130706433); + var$10 = $i + 16 | 0; + var$11 = $j + 16 | 0; + $flag = (-2130706433); $ptr = 16; continue main; case 2: - $tmp = ju_HashSet_contains($textureatlassprite, $slotIn); + $tmp = ju_HashSet_contains($s1, $slotIn); if ($rt_suspending()) { break main; } var$11 = $tmp; if (var$11 && $itemstack1 !== null) { - $textureatlassprite = $this.$dragSplittingSlots; + $s1 = $this.$dragSplittingSlots; $ptr = 3; continue main; } @@ -963245,13 +965200,13 @@ $ptr = 13; continue main; } - var$11 = $i + 16 | 0; - var$12 = $j + 16 | 0; - $flag1 = (-2130706433); + var$10 = $i + 16 | 0; + var$11 = $j + 16 | 0; + $flag = (-2130706433); $ptr = 16; continue main; case 3: - $tmp = ju_HashSet_size($textureatlassprite); + $tmp = ju_HashSet_size($s1); if ($rt_suspending()) { break main; } @@ -963287,9 +965242,9 @@ $ptr = 13; continue main; } - var$11 = $i + 16 | 0; - var$12 = $j + 16 | 0; - $flag1 = (-2130706433); + var$10 = $i + 16 | 0; + var$11 = $j + 16 | 0; + $flag = (-2130706433); $ptr = 16; continue main; case 5: @@ -963304,19 +965259,19 @@ if ($rt_suspending()) { break main; } - $slotIn = $this.$mc15.$renderEngine; - $itemstack1 = nmcrt_TextureMap_locationBlocksTexture; + $s1 = $this.$mc15.$renderEngine; + $slotIn = nmcrt_TextureMap_locationBlocksTexture; $ptr = 7; case 7: - nmcrt_TextureManager_bindTexture($slotIn, $itemstack1); + nmcrt_TextureManager_bindTexture($s1, $slotIn); if ($rt_suspending()) { break main; } - var$12 = 16; var$11 = 16; + var$10 = 16; $ptr = 8; case 8: - nmcg_Gui_drawTexturedModalRect1($this, $i, $j, $textureatlassprite, var$12, var$11); + nmcg_Gui_drawTexturedModalRect1($this, $i, $j, $textureatlassprite, var$11, var$10); if ($rt_suspending()) { break main; } @@ -963336,9 +965291,9 @@ $ptr = 13; continue main; } - var$11 = $i + 16 | 0; - var$12 = $j + 16 | 0; - $flag1 = (-2130706433); + var$10 = $i + 16 | 0; + var$11 = $j + 16 | 0; + $flag = (-2130706433); $ptr = 16; continue main; case 10: @@ -963351,10 +965306,10 @@ $ptr = 17; continue main; } - $textureatlassprite = $this.$dragSplittingSlots; + $s1 = $this.$dragSplittingSlots; $ptr = 11; case 11: - ju_HashSet_remove($textureatlassprite, $slotIn); + ju_HashSet_remove($s1, $slotIn); if ($rt_suspending()) { break main; } @@ -963383,9 +965338,9 @@ $ptr = 13; continue main; } - var$11 = $i + 16 | 0; - var$12 = $j + 16 | 0; - $flag1 = (-2130706433); + var$10 = $i + 16 | 0; + var$11 = $j + 16 | 0; + $flag = (-2130706433); $ptr = 16; continue main; case 13: @@ -963401,10 +965356,10 @@ break main; } $slotIn = $this.$itemRender; - $textureatlassprite = $this.$fontRendererObj0; + $s1 = $this.$fontRendererObj0; $ptr = 15; case 15: - nmcre_RenderItem_renderItemOverlayIntoGUI($slotIn, $textureatlassprite, $itemstack, $i, $j, $s); + nmcre_RenderItem_renderItemOverlayIntoGUI($slotIn, $s1, $itemstack, $i, $j, $s); if ($rt_suspending()) { break main; } @@ -963412,7 +965367,7 @@ $this.$zLevel0 = 0.0; return; case 16: - nmcg_Gui_drawRect($i, $j, var$11, var$12, $flag1); + nmcg_Gui_drawRect($i, $j, var$10, var$11, $flag); if ($rt_suspending()) { break main; } @@ -963425,7 +965380,7 @@ } $itemstack = $tmp; $flag = 1; - $textureatlassprite = $this.$dragSplittingSlots; + $s1 = $this.$dragSplittingSlots; var$11 = $this.$dragSplittingLimit; $ptr = 18; case 18: @@ -963438,7 +965393,7 @@ $ptr = 19; continue main; } - var$12 = 0; + var$10 = 0; $ptr = 20; continue main; case 19: @@ -963447,10 +965402,10 @@ break main; } $itemstack1 = $tmp; - var$12 = $itemstack1.$stackSize; + var$10 = $itemstack1.$stackSize; $ptr = 20; case 20: - nmi_Container_computeStackSize($textureatlassprite, var$11, $itemstack, var$12); + nmi_Container_computeStackSize($s1, var$11, $itemstack, var$10); if ($rt_suspending()) { break main; } @@ -963461,22 +965416,29 @@ if ($rt_suspending()) { break main; } - var$12 = $tmp; - if (var$11 > var$12) { + var$10 = $tmp; + if (var$11 > var$10) { $ptr = 22; continue main; } var$11 = $itemstack.$stackSize; - $ptr = 27; + $ptr = 28; continue main; case 22: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } - $textureatlassprite = nmu_EnumChatFormatting_YELLOW; + $s1 = nmu_EnumChatFormatting_YELLOW; $ptr = 23; case 23: + $tmp = jl_String_valueOf($s1); + if ($rt_suspending()) { + break main; + } + $s1 = $tmp; + $ptr = 24; + case 24: $tmp = nmi_ItemStack_getMaxStackSize($itemstack); if ($rt_suspending()) { break main; @@ -963484,22 +965446,22 @@ var$11 = $tmp; $itemstack1 = new jl_StringBuilder; jl_AbstractStringBuilder__init_($itemstack1); - $ptr = 24; - case 24: - jl_AbstractStringBuilder_append($itemstack1, $textureatlassprite); + $ptr = 25; + case 25: + jl_AbstractStringBuilder_append($itemstack1, $s1); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append1($itemstack1, var$11); - $ptr = 25; - case 25: + $ptr = 26; + case 26: $tmp = jl_AbstractStringBuilder_toString($itemstack1); if ($rt_suspending()) { break main; } $s = $tmp; - $ptr = 26; - case 26: + $ptr = 27; + case 27: $tmp = nmi_ItemStack_getMaxStackSize($itemstack); if ($rt_suspending()) { break main; @@ -963507,15 +965469,15 @@ var$11 = $tmp; $itemstack.$stackSize = var$11; var$11 = $itemstack.$stackSize; - $ptr = 27; - case 27: + $ptr = 28; + case 28: $tmp = $slotIn.$getItemStackLimit($itemstack); if ($rt_suspending()) { break main; } - var$12 = $tmp; - if (var$11 > var$12) { - $ptr = 28; + var$10 = $tmp; + if (var$11 > var$10) { + $ptr = 29; continue main; } $this.$zLevel0 = 100.0; @@ -963537,19 +965499,26 @@ $ptr = 13; continue main; } - var$11 = $i + 16 | 0; - var$12 = $j + 16 | 0; - $flag1 = (-2130706433); + var$10 = $i + 16 | 0; + var$11 = $j + 16 | 0; + $flag = (-2130706433); $ptr = 16; continue main; - case 28: + case 29: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } - $textureatlassprite = nmu_EnumChatFormatting_YELLOW; - $ptr = 29; - case 29: + $s1 = nmu_EnumChatFormatting_YELLOW; + $ptr = 30; + case 30: + $tmp = jl_String_valueOf($s1); + if ($rt_suspending()) { + break main; + } + $s1 = $tmp; + $ptr = 31; + case 31: $tmp = $slotIn.$getItemStackLimit($itemstack); if ($rt_suspending()) { break main; @@ -963557,22 +965526,22 @@ var$11 = $tmp; $itemstack1 = new jl_StringBuilder; jl_AbstractStringBuilder__init_($itemstack1); - $ptr = 30; - case 30: - jl_AbstractStringBuilder_append($itemstack1, $textureatlassprite); + $ptr = 32; + case 32: + jl_AbstractStringBuilder_append($itemstack1, $s1); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append1($itemstack1, var$11); - $ptr = 31; - case 31: + $ptr = 33; + case 33: $tmp = jl_AbstractStringBuilder_toString($itemstack1); if ($rt_suspending()) { break main; } $s = $tmp; - $ptr = 32; - case 32: + $ptr = 34; + case 34: $tmp = $slotIn.$getItemStackLimit($itemstack); if ($rt_suspending()) { break main; @@ -963598,14 +965567,14 @@ $ptr = 13; continue main; } - var$11 = $i + 16 | 0; - var$12 = $j + 16 | 0; - $flag1 = (-2130706433); + var$10 = $i + 16 | 0; + var$11 = $j + 16 | 0; + $flag = (-2130706433); $ptr = 16; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $slotIn, $i, $j, $itemstack, $flag, $textureatlassprite, $flag1, $itemstack1, $s, $s1, var$11, var$12, $ptr); + $rt_nativeThread().push($this, $slotIn, $i, $j, $itemstack, $flag, $s1, $flag1, $itemstack1, $s, var$10, var$11, $textureatlassprite, $ptr); } function nmcgi_GuiContainer_updateDragSplitting($this) { var $itemstack, var$2, $i, $slot, $itemstack1, var$6, var$7, var$8, $ptr, $tmp; @@ -967345,44 +969314,51 @@ main: while (true) { switch ($ptr) { case 0: var$1 = $this.$action0; + $ptr = 1; + case 1: + $tmp = jl_String_valueOf(var$1); + if ($rt_suspending()) { + break main; + } + var$1 = $tmp; var$2 = $this.$value7; var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); var$4 = $rt_s(6913); - $ptr = 1; - case 1: + $ptr = 2; + case 2: jl_AbstractStringBuilder_append(var$3, var$4); if ($rt_suspending()) { break main; } - $ptr = 2; - case 2: - jl_AbstractStringBuilder_append(var$3, var$1); - if ($rt_suspending()) { - break main; - } - var$1 = $rt_s(4492); $ptr = 3; case 3: jl_AbstractStringBuilder_append(var$3, var$1); if ($rt_suspending()) { break main; } + var$1 = $rt_s(4492); $ptr = 4; case 4: + jl_AbstractStringBuilder_append(var$3, var$1); + if ($rt_suspending()) { + break main; + } + $ptr = 5; + case 5: jl_AbstractStringBuilder_append(var$3, var$2); if ($rt_suspending()) { break main; } var$1 = $rt_s(4493); - $ptr = 5; - case 5: + $ptr = 6; + case 6: jl_AbstractStringBuilder_append(var$3, var$1); if ($rt_suspending()) { break main; } - $ptr = 6; - case 6: + $ptr = 7; + case 7: $tmp = jl_AbstractStringBuilder_toString(var$3); if ($rt_suspending()) { break main; @@ -968510,7 +970486,7 @@ } function nmc_Minecraft$2() { jl_Object.call(this); - this.$this$0184 = null; + this.$this$0118 = null; } function nmc_Minecraft$2__init_(var_0) { var var_1 = new nmc_Minecraft$2(); @@ -968518,14 +970494,14 @@ return var_1; } function nmc_Minecraft$2__init_0($this, $this$0) { - $this.$this$0184 = $this$0; + $this.$this$0118 = $this$0; } function nmc_Minecraft$2_call($this) { - return jl_Class_getName(jl_Object_getClass($this.$this$0184.$currentScreen)); + return jl_Class_getName(jl_Object_getClass($this.$this$0118.$currentScreen)); } function nmc_Minecraft$3() { jl_Object.call(this); - this.$this$0185 = null; + this.$this$0119 = null; } function nmc_Minecraft$3__init_(var_0) { var var_1 = new nmc_Minecraft$3(); @@ -968533,10 +970509,10 @@ return var_1; } function nmc_Minecraft$3__init_0($this, $this$0) { - $this.$this$0185 = $this$0; + $this.$this$0119 = $this$0; } function nmc_Minecraft$3_call($this) { - return jl_Class_getName(jl_Object_getClass($this.$this$0185.$currentScreen)); + return jl_Class_getName(jl_Object_getClass($this.$this$0119.$currentScreen)); } var nlevoed_DeferredStateManager = $rt_classWithoutFields(); var nlevoed_DeferredStateManager_sunAngle = 0.0; @@ -969627,7 +971603,7 @@ var$8 = $flag1; var$9 = $flag; $inputstream = var$3; - $parIResourceManager = $rt_s(5269); + $parIResourceManager = $rt_s(5267); $ptr = 4; continue main; } catch ($$e) { @@ -969743,7 +971719,7 @@ } return; } - $ptr = 13; + $ptr = 14; continue main; } if ($inputstream === null) @@ -969757,9 +971733,7 @@ break main; } $texturemetadatasection = nmcrt_SimpleTexture_logger; - var$12 = $this.$textureLocation; - $iresource = jl_StringBuilder__init_(); - $parIResourceManager = $rt_s(6940); + $parIResourceManager = $this.$textureLocation; $ptr = 9; continue main; } catch ($$e) { @@ -969773,11 +971747,13 @@ continue main; case 9: try { - $tmp = jl_StringBuilder_append($iresource, $parIResourceManager); + $tmp = jl_String_valueOf($parIResourceManager); if ($rt_suspending()) { break main; } - $parIResourceManager = $tmp; + var$12 = $tmp; + $iresource = jl_StringBuilder__init_(); + $parIResourceManager = $rt_s(6940); $ptr = 10; continue main; } catch ($$e) { @@ -969791,10 +971767,11 @@ continue main; case 10: try { - jl_StringBuilder_append($parIResourceManager, var$12); + $tmp = jl_StringBuilder_append($iresource, $parIResourceManager); if ($rt_suspending()) { break main; } + $parIResourceManager = $tmp; $ptr = 11; continue main; } catch ($$e) { @@ -969808,14 +971785,10 @@ continue main; case 11: try { - $tmp = jl_StringBuilder_toString($iresource); + jl_StringBuilder_append($parIResourceManager, var$12); if ($rt_suspending()) { break main; } - $parIResourceManager = $tmp; - $inputstream = var$3; - var$13 = $rt_createArray(jl_Object, 1); - var$13.data[0] = $runtimeexception; $ptr = 12; continue main; } catch ($$e) { @@ -969828,6 +971801,27 @@ $ptr = 5; continue main; case 12: + try { + $tmp = jl_StringBuilder_toString($iresource); + if ($rt_suspending()) { + break main; + } + $parIResourceManager = $tmp; + $inputstream = var$3; + var$13 = $rt_createArray(jl_Object, 1); + var$13.data[0] = $runtimeexception; + $ptr = 13; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $parIResourceManager = $$je; + + } + if ($inputstream === null) + $rt_throw($parIResourceManager); + $ptr = 5; + continue main; + case 13: try { nlevl_Logger_warn0($texturemetadatasection, $parIResourceManager, var$13); if ($rt_suspending()) { @@ -969847,7 +971841,7 @@ $rt_throw($parIResourceManager); $ptr = 5; continue main; - case 13: + case 14: var$3.$close(); if ($rt_suspending()) { break main; @@ -970409,7 +972403,7 @@ $s = $this.$fontRendererObj0; var$15 = $rt_s(6949); var$14 = $rt_createArray(jl_Object, 0); - $ptr = 17; + $ptr = 18; continue main; case 8: $tmp = nmcr_I18n_format(var$15, var$14); @@ -970424,9 +972418,16 @@ break main; } var$16 = nmu_EnumChatFormatting_YELLOW; - var$17 = $this.$mc15.$thePlayer; $ptr = 10; case 10: + $tmp = jl_String_valueOf(var$16); + if ($rt_suspending()) { + break main; + } + var$16 = $tmp; + var$17 = $this.$mc15.$thePlayer; + $ptr = 11; + case 11: $tmp = nmep_EntityPlayer_getScore(var$17); if ($rt_suspending()) { break main; @@ -970434,28 +972435,28 @@ $flag = $tmp; var$17 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$17); - $ptr = 11; - case 11: - jl_AbstractStringBuilder_append(var$17, var$15); - if ($rt_suspending()) { - break main; - } - var$15 = $rt_s(18); $ptr = 12; case 12: jl_AbstractStringBuilder_append(var$17, var$15); if ($rt_suspending()) { break main; } + var$15 = $rt_s(18); $ptr = 13; case 13: + jl_AbstractStringBuilder_append(var$17, var$15); + if ($rt_suspending()) { + break main; + } + $ptr = 14; + case 14: jl_AbstractStringBuilder_append(var$17, var$16); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append1(var$17, $flag); - $ptr = 14; - case 14: + $ptr = 15; + case 15: $tmp = jl_AbstractStringBuilder_toString(var$17); if ($rt_suspending()) { break main; @@ -970464,20 +972465,20 @@ $flag = $this.$width7 / 2 | 0; var$7 = 100; var$4 = 16777215; - $ptr = 15; - case 15: + $ptr = 16; + case 16: nmcg_Gui_drawCenteredString($this, $s, var$15, $flag, var$7, var$4); if ($rt_suspending()) { break main; } - $ptr = 16; - case 16: + $ptr = 17; + case 17: nmcg_GuiScreen_drawScreen($this, $i, $j, $f); if ($rt_suspending()) { break main; } return; - case 17: + case 18: $tmp = nmcr_I18n_format(var$15, var$14); if ($rt_suspending()) { break main; @@ -970486,8 +972487,8 @@ $flag = $this.$width7 / 2 | 0; var$7 = 144; var$4 = 16777215; - $ptr = 18; - case 18: + $ptr = 19; + case 19: nmcg_Gui_drawCenteredString($this, $s, var$15, $flag, var$7, var$4); if ($rt_suspending()) { break main; @@ -971878,7 +973879,6 @@ var a = this; jl_Object.call(a); a.$field_110502_a = null; a.$field_110500_b = null; - a.$this$022 = null; } var ji_FileNotFoundException = $rt_classWithoutFields(ji_IOException); function ji_FileNotFoundException__init_0() { @@ -972000,7 +974000,7 @@ } function ju_EnumMap$1() { ju_AbstractSet.call(this); - this.$this$084 = null; + this.$this$056 = null; } function ju_EnumMap$1_iterator($this) { var var$1; @@ -973878,43 +975878,50 @@ break main; } var$3 = $tmp; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); $ptr = 3; case 3: - jl_AbstractStringBuilder_append(var$4, var$3); + $tmp = jl_String_valueOf($ichatcomponent); if ($rt_suspending()) { break main; } - var$3 = $rt_s(2705); + $ichatcomponent = $tmp; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); $ptr = 4; case 4: jl_AbstractStringBuilder_append(var$4, var$3); if ($rt_suspending()) { break main; } + var$3 = $rt_s(2705); $ptr = 5; case 5: - jl_AbstractStringBuilder_append(var$4, $ichatcomponent); + jl_AbstractStringBuilder_append(var$4, var$3); if ($rt_suspending()) { break main; } $ptr = 6; case 6: + jl_AbstractStringBuilder_append(var$4, $ichatcomponent); + if ($rt_suspending()) { + break main; + } + $ptr = 7; + case 7: $tmp = jl_AbstractStringBuilder_toString(var$4); if ($rt_suspending()) { break main; } $ichatcomponent = $tmp; - $ptr = 7; - case 7: + $ptr = 8; + case 8: nlevl_Logger_info($chatcomponenttranslation, $ichatcomponent); if ($rt_suspending()) { break main; } $ichatcomponent = $this.$serverController; - $ptr = 8; - case 8: + $ptr = 9; + case 9: nms_MinecraftServer_refreshStatusNextTick($ichatcomponent); if ($rt_suspending()) { break main; @@ -973925,31 +975932,31 @@ var$6 = var$5.data; var$7 = 0; var$3 = $this.$playerEntity; - $ptr = 9; - case 9: + $ptr = 10; + case 10: $tmp = nmep_EntityPlayer_getDisplayName(var$3); if ($rt_suspending()) { break main; } var$3 = $tmp; var$6[var$7] = var$3; - $ptr = 10; - case 10: + $ptr = 11; + case 11: nmu_ChatComponentTranslation__init_($chatcomponenttranslation, $ichatcomponent, var$5); if ($rt_suspending()) { break main; } $ichatcomponent = nmu_ChatComponentStyle_getChatStyle($chatcomponenttranslation); - $ptr = 11; - case 11: + $ptr = 12; + case 12: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } $ichatcomponent.$color2 = nmu_EnumChatFormatting_YELLOW; $ichatcomponent = $this.$serverController.$serverConfigManager; - $ptr = 12; - case 12: + $ptr = 13; + case 13: nmsm_ServerConfigurationManager_sendChatMsg($ichatcomponent, $chatcomponenttranslation); if ($rt_suspending()) { break main; @@ -973957,21 +975964,21 @@ $ichatcomponent = $this.$playerEntity; $chatcomponenttranslation = $ichatcomponent.$riddenByEntity; if ($chatcomponenttranslation !== null) { - $ptr = 13; + $ptr = 14; continue main; } if ($ichatcomponent.$sleeping) { var$7 = 1; var$8 = 0; var$9 = 0; - $ptr = 18; + $ptr = 19; continue main; } var$10 = $this.$serverController.$serverConfigManager; $ichatcomponent = $this.$playerEntity; - $ptr = 14; + $ptr = 15; continue main; - case 13: + case 14: $chatcomponenttranslation.$mountEntity($ichatcomponent); if ($rt_suspending()) { break main; @@ -973980,32 +975987,32 @@ var$7 = 1; var$8 = 0; var$9 = 0; - $ptr = 18; + $ptr = 19; continue main; } var$10 = $this.$serverController.$serverConfigManager; $ichatcomponent = $this.$playerEntity; - $ptr = 14; - case 14: + $ptr = 15; + case 15: nms_StatList_$callClinit(); if ($rt_suspending()) { break main; } $chatcomponenttranslation = nms_StatList_leaveGameStat; - $ptr = 15; - case 15: - nmep_EntityPlayer_triggerAchievement($ichatcomponent, $chatcomponenttranslation); - if ($rt_suspending()) { - break main; - } $ptr = 16; case 16: - nlevss_EaglerPlayerList_writePlayerData(var$10, $ichatcomponent); + nmep_EntityPlayer_triggerAchievement($ichatcomponent, $chatcomponenttranslation); if ($rt_suspending()) { break main; } $ptr = 17; case 17: + nlevss_EaglerPlayerList_writePlayerData(var$10, $ichatcomponent); + if ($rt_suspending()) { + break main; + } + $ptr = 18; + case 18: $tmp = nmep_EntityPlayerMP_getServerForPlayer($ichatcomponent); if ($rt_suspending()) { break main; @@ -974013,43 +976020,43 @@ $chatcomponenttranslation = $tmp; var$3 = $ichatcomponent.$ridingEntity; if (var$3 === null) { - $ptr = 19; + $ptr = 20; continue main; } - $ptr = 23; + $ptr = 24; continue main; - case 18: + case 19: nmep_EntityPlayerMP_wakeUpPlayer($ichatcomponent, var$7, var$8, var$9); if ($rt_suspending()) { break main; } var$10 = $this.$serverController.$serverConfigManager; $ichatcomponent = $this.$playerEntity; - $ptr = 14; + $ptr = 15; continue main; - case 19: + case 20: nmw_World_removeEntity($chatcomponenttranslation, $ichatcomponent); if ($rt_suspending()) { break main; } $chatcomponenttranslation = $chatcomponenttranslation.$thePlayerManager; - $ptr = 20; - case 20: + $ptr = 21; + case 21: nmsm_PlayerManager_removePlayer($chatcomponenttranslation, $ichatcomponent); if ($rt_suspending()) { break main; } $chatcomponenttranslation = var$10.$playerEntityList; - $ptr = 21; - case 21: + $ptr = 22; + case 22: ju_ArrayList_remove0($chatcomponenttranslation, $ichatcomponent); if ($rt_suspending()) { break main; } var$4 = $ichatcomponent.$entityUniqueID; $chatcomponenttranslation = var$10.$uuidToPlayerMap; - $ptr = 22; - case 22: + $ptr = 23; + case 23: $tmp = ju_HashMap_get($chatcomponenttranslation, var$4); if ($rt_suspending()) { break main; @@ -974058,35 +976065,35 @@ $chatcomponenttranslation = $chatcomponenttranslation; if ($chatcomponenttranslation === $ichatcomponent) { var$3 = var$10.$uuidToPlayerMap; - $ptr = 27; + $ptr = 28; continue main; } $chatcomponenttranslation = var$10.$mcServer0.$skinService; - $ptr = 25; + $ptr = 26; continue main; - case 23: + case 24: nmw_World_removePlayerEntityDangerously($chatcomponenttranslation, var$3); if ($rt_suspending()) { break main; } var$3 = nmsm_ServerConfigurationManager_logger; var$4 = $rt_s(6963); - $ptr = 24; - case 24: + $ptr = 25; + case 25: nlevl_Logger_debug(var$3, var$4); if ($rt_suspending()) { break main; } - $ptr = 19; + $ptr = 20; continue main; - case 25: + case 26: nlevsss_IntegratedSkinService_unregisterPlayer($chatcomponenttranslation, var$4); if ($rt_suspending()) { break main; } $chatcomponenttranslation = var$10.$mcServer0.$capeService; - $ptr = 26; - case 26: + $ptr = 27; + case 27: nlevsss_IntegratedCapeService_unregisterPlayer($chatcomponenttranslation, var$4); if ($rt_suspending()) { break main; @@ -974094,7 +976101,7 @@ var$3 = var$10.$mcServer0.$voiceService; if (var$3 !== null) { $chatcomponenttranslation = $ichatcomponent.$entityUniqueID; - $ptr = 36; + $ptr = 37; continue main; } var$3 = new nmnps_S38PacketPlayerListItem; @@ -974102,37 +976109,37 @@ $chatcomponenttranslation = nmnps_S38PacketPlayerListItem$Action_REMOVE_PLAYER; var$5 = $rt_createArray(nmep_EntityPlayerMP, 1); var$5.data[0] = $ichatcomponent; - $ptr = 30; + $ptr = 31; continue main; - case 27: + case 28: ju_HashMap_remove(var$3, var$4); if ($rt_suspending()) { break main; } var$3 = var$10.$playerStatFiles; - $ptr = 28; - case 28: + $ptr = 29; + case 29: $tmp = nmep_EntityPlayer_getName($chatcomponenttranslation); if ($rt_suspending()) { break main; } $chatcomponenttranslation = $tmp; - $ptr = 29; - case 29: + $ptr = 30; + case 30: ju_HashMap_remove(var$3, $chatcomponenttranslation); if ($rt_suspending()) { break main; } $chatcomponenttranslation = var$10.$mcServer0.$skinService; - $ptr = 25; + $ptr = 26; continue main; - case 30: + case 31: nmnps_S38PacketPlayerListItem__init_0(var$3, $chatcomponenttranslation, var$5); if ($rt_suspending()) { break main; } - $ptr = 31; - case 31: + $ptr = 32; + case 32: nmsm_ServerConfigurationManager_sendPacketToAllPlayers(var$10, var$3); if ($rt_suspending()) { break main; @@ -974140,31 +976147,31 @@ var$4 = var$10.$mcServer0; $chatcomponenttranslation = var$4.$skinService; var$3 = $ichatcomponent.$entityUniqueID; - $ptr = 32; - case 32: + $ptr = 33; + case 33: nlevsss_IntegratedSkinService_unregisterPlayer($chatcomponenttranslation, var$3); if ($rt_suspending()) { break main; } $chatcomponenttranslation = var$4.$capeService; $ichatcomponent = $ichatcomponent.$entityUniqueID; - $ptr = 33; - case 33: + $ptr = 34; + case 34: nlevsss_IntegratedCapeService_unregisterPlayer($chatcomponenttranslation, $ichatcomponent); if ($rt_suspending()) { break main; } $ichatcomponent = $this.$playerEntity; - $ptr = 34; - case 34: + $ptr = 35; + case 35: $tmp = nmep_EntityPlayer_getName($ichatcomponent); if ($rt_suspending()) { break main; } $ichatcomponent = $tmp; $chatcomponenttranslation = $this.$serverController.$serverOwner; - $ptr = 35; - case 35: + $ptr = 36; + case 36: $tmp = jl_String_equals($ichatcomponent, $chatcomponenttranslation); if ($rt_suspending()) { break main; @@ -974174,9 +976181,9 @@ return; $ichatcomponent = nmn_NetHandlerPlayServer_logger; $chatcomponenttranslation = $rt_s(6964); - $ptr = 37; + $ptr = 38; continue main; - case 36: + case 37: nlevssv_IntegratedVoiceService_removeUser(var$3, $chatcomponenttranslation); if ($rt_suspending()) { break main; @@ -974186,16 +976193,16 @@ $chatcomponenttranslation = nmnps_S38PacketPlayerListItem$Action_REMOVE_PLAYER; var$5 = $rt_createArray(nmep_EntityPlayerMP, 1); var$5.data[0] = $ichatcomponent; - $ptr = 30; + $ptr = 31; continue main; - case 37: + case 38: nlevl_Logger_info($ichatcomponent, $chatcomponenttranslation); if ($rt_suspending()) { break main; } $ichatcomponent = $this.$serverController; - $ptr = 38; - case 38: + $ptr = 39; + case 39: nms_MinecraftServer_initiateShutdown($ichatcomponent); if ($rt_suspending()) { break main; @@ -974227,7 +976234,7 @@ } } try { - $throwable = $this.$netManager; + $s02packetchat = $this.$netManager; $ptr = 1; continue main; } catch ($$e) { @@ -974238,13 +976245,13 @@ throw $$e; } } - $crashreport = $rt_s(6965); + $s02packetchat = $rt_s(6965); $ptr = 2; continue main; case 1: a: { try { - nlevsss_IntegratedServerPlayerNetworkManager_sendPacket($throwable, $packetIn); + nlevsss_IntegratedServerPlayerNetworkManager_sendPacket($s02packetchat, $packetIn); if ($rt_suspending()) { break main; } @@ -974259,29 +976266,28 @@ } return; } - $crashreport = $rt_s(6965); + $s02packetchat = $rt_s(6965); $ptr = 2; case 2: - $tmp = nmc_CrashReport_makeCrashReport($throwable, $crashreport); + $tmp = nmc_CrashReport_makeCrashReport($throwable, $s02packetchat); if ($rt_suspending()) { break main; } $crashreport = $tmp; - $throwable = $rt_s(6966); + $s02packetchat = $rt_s(6966); $ptr = 3; case 3: - $tmp = nmc_CrashReport_makeCategory($crashreport, $throwable); + $tmp = nmc_CrashReport_makeCategory($crashreport, $s02packetchat); if ($rt_suspending()) { break main; } $crashreportcategory = $tmp; - $s02packetchat = $rt_s(6967); - $throwable = new nmn_NetHandlerPlayServer$1; - $throwable.$this$0186 = $this; - $throwable.$val$packetIn = $packetIn; + $throwable = $rt_s(6967); + $s02packetchat = new nmn_NetHandlerPlayServer$1; + $s02packetchat.$val$packetIn = $packetIn; $ptr = 4; case 4: - nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, $s02packetchat, $throwable); + nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, $throwable, $s02packetchat); if ($rt_suspending()) { break main; } @@ -976764,6 +978770,21 @@ }} $rt_nativeThread().push(var$1, $ptr); } + var nlevsi_IPCPacket19Autosave = $rt_classWithoutFields(); + function nlevsi_IPCPacket19Autosave__init_0() { + var var_0 = new nlevsi_IPCPacket19Autosave(); + nlevsi_IPCPacket19Autosave__init_(var_0); + return var_0; + } + function nlevsi_IPCPacket19Autosave__init_($this) {} + function nlevsi_IPCPacket19Autosave_deserialize($this, $bin) {} + function nlevsi_IPCPacket19Autosave_serialize($this, $bin) {} + function nlevsi_IPCPacket19Autosave_id($this) { + return 25; + } + function nlevsi_IPCPacket19Autosave_size($this) { + return 0; + } function nlevsi_IPCPacket0FListFiles() { jl_Object.call(this); this.$path1 = null; @@ -976799,41 +978820,6 @@ function nlevsi_IPCPacket0FListFiles_id($this) { return 15; } - function nlevsi_IPCPacket10FileRead() { - jl_Object.call(this); - this.$file = null; - } - function nlevsi_IPCPacket10FileRead__init_0() { - var var_0 = new nlevsi_IPCPacket10FileRead(); - nlevsi_IPCPacket10FileRead__init_(var_0); - return var_0; - } - function nlevsi_IPCPacket10FileRead__init_($this) {} - function nlevsi_IPCPacket10FileRead_deserialize($this, $bin) { - var $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$bin = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - $tmp = ji_DataInputStream_readUTF($bin); - if ($rt_suspending()) { - break main; - } - $bin = $tmp; - $this.$file = $bin; - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $bin, $ptr); - } - function nlevsi_IPCPacket10FileRead_id($this) { - return 16; - } function nlevsi_IPCPacket12FileWrite() { jl_Object.call(this); this.$path2 = null; @@ -976869,36 +978855,6 @@ function nlevsi_IPCPacket12FileWrite_id($this) { return 18; } - var nlevsi_IPCPacket01StopServer = $rt_classWithoutFields(); - function nlevsi_IPCPacket01StopServer__init_0() { - var var_0 = new nlevsi_IPCPacket01StopServer(); - nlevsi_IPCPacket01StopServer__init_(var_0); - return var_0; - } - function nlevsi_IPCPacket01StopServer__init_($this) {} - function nlevsi_IPCPacket01StopServer_deserialize($this, $bin) {} - function nlevsi_IPCPacket01StopServer_serialize($this, $bin) {} - function nlevsi_IPCPacket01StopServer_id($this) { - return 1; - } - function nlevsi_IPCPacket01StopServer_size($this) { - return 0; - } - var nlevsi_IPCPacket19Autosave = $rt_classWithoutFields(); - function nlevsi_IPCPacket19Autosave__init_0() { - var var_0 = new nlevsi_IPCPacket19Autosave(); - nlevsi_IPCPacket19Autosave__init_(var_0); - return var_0; - } - function nlevsi_IPCPacket19Autosave__init_($this) {} - function nlevsi_IPCPacket19Autosave_deserialize($this, $bin) {} - function nlevsi_IPCPacket19Autosave_serialize($this, $bin) {} - function nlevsi_IPCPacket19Autosave_id($this) { - return 25; - } - function nlevsi_IPCPacket19Autosave_size($this) { - return 0; - } var nlevsi_IPCPacket0EListWorlds = $rt_classWithoutFields(); function nlevsi_IPCPacket0EListWorlds__init_0() { var var_0 = new nlevsi_IPCPacket0EListWorlds(); @@ -976914,6 +978870,21 @@ function nlevsi_IPCPacket0EListWorlds_size($this) { return 0; } + var nlevsi_IPCPacket01StopServer = $rt_classWithoutFields(); + function nlevsi_IPCPacket01StopServer__init_0() { + var var_0 = new nlevsi_IPCPacket01StopServer(); + nlevsi_IPCPacket01StopServer__init_(var_0); + return var_0; + } + function nlevsi_IPCPacket01StopServer__init_($this) {} + function nlevsi_IPCPacket01StopServer_deserialize($this, $bin) {} + function nlevsi_IPCPacket01StopServer_serialize($this, $bin) {} + function nlevsi_IPCPacket01StopServer_id($this) { + return 1; + } + function nlevsi_IPCPacket01StopServer_size($this) { + return 0; + } function nlevsi_IPCPacket13FileCopyMove() { var a = this; jl_Object.call(a); a.$fileOldName = null; @@ -976967,6 +978938,41 @@ function nlevsi_IPCPacket13FileCopyMove_id($this) { return 19; } + function nlevsi_IPCPacket10FileRead() { + jl_Object.call(this); + this.$file = null; + } + function nlevsi_IPCPacket10FileRead__init_0() { + var var_0 = new nlevsi_IPCPacket10FileRead(); + nlevsi_IPCPacket10FileRead__init_(var_0); + return var_0; + } + function nlevsi_IPCPacket10FileRead__init_($this) {} + function nlevsi_IPCPacket10FileRead_deserialize($this, $bin) { + var $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();$bin = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + $tmp = ji_DataInputStream_readUTF($bin); + if ($rt_suspending()) { + break main; + } + $bin = $tmp; + $this.$file = $bin; + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $bin, $ptr); + } + function nlevsi_IPCPacket10FileRead_id($this) { + return 16; + } var nPs_TextureUtils = $rt_classWithoutFields(); var nPs_TextureUtils_iconGrassTop = null; var nPs_TextureUtils_iconGrassSide = null; @@ -978602,7 +980608,7 @@ var nmwb_IBorderListener = $rt_classWithoutFields(0); function nmw_WorldServerMulti$1() { jl_Object.call(this); - this.$this$016 = null; + this.$this$012 = null; } function nmw_WorldServerMulti$1_onSizeChanged($this, $var1, $d0) { var $ptr, $tmp; @@ -978613,7 +980619,7 @@ } main: while (true) { switch ($ptr) { case 0: - $var1 = $this.$this$016.$worldBorder; + $var1 = $this.$this$012.$worldBorder; $ptr = 1; case 1: nmwb_WorldBorder_setTransition($var1, $d0); @@ -978634,7 +980640,7 @@ } main: while (true) { switch ($ptr) { case 0: - $var1 = $this.$this$016.$worldBorder; + $var1 = $this.$this$012.$worldBorder; $ptr = 1; case 1: nmwb_WorldBorder_setTransition0($var1, $d0, $d1, $i); @@ -978655,7 +980661,7 @@ } main: while (true) { switch ($ptr) { case 0: - $var1 = $this.$this$016.$worldBorder; + $var1 = $this.$this$012.$worldBorder; $ptr = 1; case 1: nmwb_WorldBorder_setCenter($var1, $d0, $d1); @@ -978676,7 +980682,7 @@ } main: while (true) { switch ($ptr) { case 0: - $var1 = $this.$this$016.$worldBorder; + $var1 = $this.$this$012.$worldBorder; $ptr = 1; case 1: nmwb_WorldBorder_setWarningTime($var1, $i); @@ -978697,7 +980703,7 @@ } main: while (true) { switch ($ptr) { case 0: - $var1 = $this.$this$016.$worldBorder; + $var1 = $this.$this$012.$worldBorder; $ptr = 1; case 1: nmwb_WorldBorder_setWarningDistance($var1, $i); @@ -978718,7 +980724,7 @@ } main: while (true) { switch ($ptr) { case 0: - $var1 = $this.$this$016.$worldBorder; + $var1 = $this.$this$012.$worldBorder; $ptr = 1; case 1: nmwb_WorldBorder_setDamageAmount($var1, $d0); @@ -978739,7 +980745,7 @@ } main: while (true) { switch ($ptr) { case 0: - $var1 = $this.$this$016.$worldBorder; + $var1 = $this.$this$012.$worldBorder; $ptr = 1; case 1: nmwb_WorldBorder_setDamageBuffer($var1, $d0); @@ -981186,7 +983192,6 @@ } $entitytrackerentry = $rt_s(7012); $throwable = new nme_EntityTracker$1; - $throwable.$this$0187 = $this; $throwable.$val$updateFrequency = $updateFrequency; $ptr = 6; case 6: @@ -981566,7 +983571,7 @@ $playermanager$playerinstance = nmu_LongHashMap_getValueByKey($this.$playerInstances, $i); if ($playermanager$playerinstance === null && $createIfAbsent) { $playermanager$playerinstance = new nmsm_PlayerManager$PlayerInstance; - $playermanager$playerinstance.$this$0106 = $this; + $playermanager$playerinstance.$this$076 = $this; $playermanager$playerinstance.$playersWatchingChunk = cgcc_Lists_newArrayList(); $playermanager$playerinstance.$locationOfBlockChange = $rt_createShortArray(64); $playermanager$playerinstance.$chunkCoords = nmw_ChunkCoordIntPair__init_0($chunkX, $chunkZ); @@ -982250,11 +984255,11 @@ a.$destinationCoordinateKeys = null; } function nmw_Teleporter_placeInExistingPortal($this, $entityIn, $rotationYaw) { - var $d0, $i, $j, $flag1, $teleporter$portalposition, $k, $blockpos2, $l, $i1, $blockpos, $d5, $d7, var$15, var$16, $blockpattern$patternhelper, $flag2, $d2, $d1, $blockpos1, $f, $f1, $f2, $f3, $d3, $d4, $ptr, $tmp; + var $d0, $i, $j, $flag1, $teleporter$portalposition, $k, $blockpos2, $l, $i1, $blockpos, var$13, var$14, $d5, $d7, $blockpattern$patternhelper, $flag2, $d2, $d1, $blockpos1, $f, $f1, $f2, $f3, $d3, $d4, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$d4 = $thread.pop();$d3 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$blockpos1 = $thread.pop();$d1 = $thread.pop();$d2 = $thread.pop();$flag2 = $thread.pop();$blockpattern$patternhelper = $thread.pop();var$16 = $thread.pop();var$15 = $thread.pop();$d7 = $thread.pop();$d5 = $thread.pop();$blockpos = $thread.pop();$i1 = $thread.pop();$l = $thread.pop();$blockpos2 = $thread.pop();$k = $thread.pop();$teleporter$portalposition = $thread.pop();$flag1 + $ptr = $thread.pop();$d4 = $thread.pop();$d3 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$blockpos1 = $thread.pop();$d1 = $thread.pop();$d2 = $thread.pop();$flag2 = $thread.pop();$blockpattern$patternhelper = $thread.pop();$d7 = $thread.pop();$d5 = $thread.pop();var$14 = $thread.pop();var$13 = $thread.pop();$blockpos = $thread.pop();$i1 = $thread.pop();$l = $thread.pop();$blockpos2 = $thread.pop();$k = $thread.pop();$teleporter$portalposition = $thread.pop();$flag1 = $thread.pop();$j = $thread.pop();$i = $thread.pop();$d0 = $thread.pop();$rotationYaw = $thread.pop();$entityIn = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { @@ -982289,55 +984294,53 @@ } if ($d0 < 0.0) return 0; - if (!$flag1) { - $d5 = $teleporter$portalposition.$getX() + 0.5; - $teleporter$portalposition.$getY(); - $d7 = $teleporter$portalposition.$getZ() + 0.5; - var$15 = nmi_Blocks_portal; - $blockpos2 = $this.$worldServerInstance; - $ptr = 1; + if ($flag1) { + var$13 = $this.$destinationCoordinateCache; + $blockpos2 = new nmw_Teleporter$PortalPosition; + var$14 = nmw_World_getTotalWorldTime($this.$worldServerInstance); + nmu_BlockPos__init_2($blockpos2, $teleporter$portalposition.$getX(), $teleporter$portalposition.$getY(), $teleporter$portalposition.$getZ()); + $blockpos2.$lastUpdateTime = var$14; + nmu_LongHashMap_add(var$13, $k, $blockpos2); + var$13 = $this.$destinationCoordinateKeys; + $blockpos2 = jl_Long_valueOf($k); + $ptr = 3; continue main; } - var$15 = $this.$destinationCoordinateCache; - $blockpos2 = new nmw_Teleporter$PortalPosition; - var$16 = nmw_World_getTotalWorldTime($this.$worldServerInstance); - $blockpos2.$this$0188 = $this; - nmu_BlockPos__init_2($blockpos2, $teleporter$portalposition.$getX(), $teleporter$portalposition.$getY(), $teleporter$portalposition.$getZ()); - $blockpos2.$lastUpdateTime = var$16; - nmu_LongHashMap_add(var$15, $k, $blockpos2); - var$15 = $this.$destinationCoordinateKeys; - $blockpos2 = jl_Long_valueOf($k); - $ptr = 3; - continue main; + $d5 = $teleporter$portalposition.$getX() + 0.5; + $teleporter$portalposition.$getY(); + $d7 = $teleporter$portalposition.$getZ() + 0.5; + var$13 = nmi_Blocks_portal; + $blockpos2 = $this.$worldServerInstance; + $ptr = 1; case 1: - $tmp = nmb_BlockPortal_func_181089_f(var$15, $blockpos2, $teleporter$portalposition); + $tmp = nmb_BlockPortal_func_181089_f(var$13, $blockpos2, $teleporter$portalposition); if ($rt_suspending()) { break main; } $blockpattern$patternhelper = $tmp; - var$15 = $blockpattern$patternhelper.$finger; + var$13 = $blockpattern$patternhelper.$finger; $ptr = 2; case 2: - $tmp = nmu_EnumFacing_rotateY(var$15); + $tmp = nmu_EnumFacing_rotateY(var$13); if ($rt_suspending()) { break main; } - var$15 = $tmp; - var$15 = var$15.$axisDirection; + var$13 = $tmp; + var$13 = var$13.$axisDirection; nmu_EnumFacing$AxisDirection_$callClinit(); - $flag2 = var$15 !== nmu_EnumFacing$AxisDirection_NEGATIVE ? 0 : 1; - var$15 = $blockpattern$patternhelper.$finger.$axis; + $flag2 = var$13 !== nmu_EnumFacing$AxisDirection_NEGATIVE ? 0 : 1; + var$13 = $blockpattern$patternhelper.$finger.$axis; $ptr = 4; continue main; case 3: - ju_ArrayList_add(var$15, $blockpos2); + ju_ArrayList_add(var$13, $blockpos2); if ($rt_suspending()) { break main; } $d5 = $teleporter$portalposition.$getX() + 0.5; $teleporter$portalposition.$getY(); $d7 = $teleporter$portalposition.$getZ() + 0.5; - var$15 = nmi_Blocks_portal; + var$13 = nmi_Blocks_portal; $blockpos2 = $this.$worldServerInstance; $ptr = 1; continue main; @@ -982346,7 +984349,7 @@ if ($rt_suspending()) { break main; } - $d2 = var$15 !== nmu_EnumFacing$Axis_X ? $blockpattern$patternhelper.$pos2.$getX() : $blockpattern$patternhelper.$pos2.$getZ(); + $d2 = var$13 !== nmu_EnumFacing$Axis_X ? $blockpattern$patternhelper.$pos2.$getX() : $blockpattern$patternhelper.$pos2.$getZ(); $d0 = $blockpattern$patternhelper.$pos2.$getY() + 1 | 0; $blockpos = $entityIn.$field_181017_ao; $d1 = $d0 - $blockpos.$yCoord * $blockpattern$patternhelper.$field_181121_f; @@ -982367,17 +984370,17 @@ break main; } $blockpos1 = $tmp; - var$15 = $this.$worldServerInstance; + var$13 = $this.$worldServerInstance; $ptr = 6; case 6: - $tmp = nmw_World_getBlockState(var$15, $blockpos); + $tmp = nmw_World_getBlockState(var$13, $blockpos); if ($rt_suspending()) { break main; } - var$15 = $tmp; - if (var$15.$block === nmi_Blocks_portal) { + var$13 = $tmp; + if (var$13.$block === nmi_Blocks_portal) { $blockpattern$patternhelper = $blockpos; - var$15 = $this.$worldServerInstance; + var$13 = $this.$worldServerInstance; $ptr = 7; continue main; } @@ -982389,25 +984392,24 @@ if ($l > 128) { if ($d0 < 0.0) return 0; - if (!$flag1) { - $d5 = $teleporter$portalposition.$getX() + 0.5; - $teleporter$portalposition.$getY(); - $d7 = $teleporter$portalposition.$getZ() + 0.5; - var$15 = nmi_Blocks_portal; - $blockpos2 = $this.$worldServerInstance; - $ptr = 1; + if ($flag1) { + var$13 = $this.$destinationCoordinateCache; + $blockpos2 = new nmw_Teleporter$PortalPosition; + var$14 = nmw_World_getTotalWorldTime($this.$worldServerInstance); + nmu_BlockPos__init_2($blockpos2, $teleporter$portalposition.$getX(), $teleporter$portalposition.$getY(), $teleporter$portalposition.$getZ()); + $blockpos2.$lastUpdateTime = var$14; + nmu_LongHashMap_add(var$13, $k, $blockpos2); + var$13 = $this.$destinationCoordinateKeys; + $blockpos2 = jl_Long_valueOf($k); + $ptr = 3; continue main; } - var$15 = $this.$destinationCoordinateCache; - $blockpos2 = new nmw_Teleporter$PortalPosition; - var$16 = nmw_World_getTotalWorldTime($this.$worldServerInstance); - $blockpos2.$this$0188 = $this; - nmu_BlockPos__init_2($blockpos2, $teleporter$portalposition.$getX(), $teleporter$portalposition.$getY(), $teleporter$portalposition.$getZ()); - $blockpos2.$lastUpdateTime = var$16; - nmu_LongHashMap_add(var$15, $k, $blockpos2); - var$15 = $this.$destinationCoordinateKeys; - $blockpos2 = jl_Long_valueOf($k); - $ptr = 3; + $d5 = $teleporter$portalposition.$getX() + 0.5; + $teleporter$portalposition.$getY(); + $d7 = $teleporter$portalposition.$getZ() + 0.5; + var$13 = nmi_Blocks_portal; + $blockpos2 = $this.$worldServerInstance; + $ptr = 1; continue main; } $i1 = (-128); @@ -982424,14 +984426,14 @@ $blockpos = $tmp; $ptr = 8; case 8: - $tmp = nmw_World_getBlockState(var$15, $blockpos); + $tmp = nmw_World_getBlockState(var$13, $blockpos); if ($rt_suspending()) { break main; } - var$15 = $tmp; - if (var$15.$block === nmi_Blocks_portal) { + var$13 = $tmp; + if (var$13.$block === nmi_Blocks_portal) { $blockpattern$patternhelper = $blockpos; - var$15 = $this.$worldServerInstance; + var$13 = $this.$worldServerInstance; $ptr = 7; continue main; } @@ -982447,25 +984449,24 @@ if ($l > 128) { if ($d0 < 0.0) return 0; - if (!$flag1) { - $d5 = $teleporter$portalposition.$getX() + 0.5; - $teleporter$portalposition.$getY(); - $d7 = $teleporter$portalposition.$getZ() + 0.5; - var$15 = nmi_Blocks_portal; - $blockpos2 = $this.$worldServerInstance; - $ptr = 1; + if ($flag1) { + var$13 = $this.$destinationCoordinateCache; + $blockpos2 = new nmw_Teleporter$PortalPosition; + var$14 = nmw_World_getTotalWorldTime($this.$worldServerInstance); + nmu_BlockPos__init_2($blockpos2, $teleporter$portalposition.$getX(), $teleporter$portalposition.$getY(), $teleporter$portalposition.$getZ()); + $blockpos2.$lastUpdateTime = var$14; + nmu_LongHashMap_add(var$13, $k, $blockpos2); + var$13 = $this.$destinationCoordinateKeys; + $blockpos2 = jl_Long_valueOf($k); + $ptr = 3; continue main; } - var$15 = $this.$destinationCoordinateCache; - $blockpos2 = new nmw_Teleporter$PortalPosition; - var$16 = nmw_World_getTotalWorldTime($this.$worldServerInstance); - $blockpos2.$this$0188 = $this; - nmu_BlockPos__init_2($blockpos2, $teleporter$portalposition.$getX(), $teleporter$portalposition.$getY(), $teleporter$portalposition.$getZ()); - $blockpos2.$lastUpdateTime = var$16; - nmu_LongHashMap_add(var$15, $k, $blockpos2); - var$15 = $this.$destinationCoordinateKeys; - $blockpos2 = jl_Long_valueOf($k); - $ptr = 3; + $d5 = $teleporter$portalposition.$getX() + 0.5; + $teleporter$portalposition.$getY(); + $d7 = $teleporter$portalposition.$getZ() + 0.5; + var$13 = nmi_Blocks_portal; + $blockpos2 = $this.$worldServerInstance; + $ptr = 1; continue main; } $i1 = (-128); @@ -982479,13 +984480,13 @@ if ($rt_suspending()) { break main; } - var$15 = $tmp; - $d5 = $d2 + $d0 * var$15.$axisDirection.$offset3; + var$13 = $tmp; + $d5 = $d2 + $d0 * var$13.$axisDirection.$offset3; $f = 0.0; $f1 = 0.0; $f2 = 0.0; $f3 = 0.0; - var$15 = $blockpattern$patternhelper.$finger; + var$13 = $blockpattern$patternhelper.$finger; $ptr = 11; continue main; case 10: @@ -982493,22 +984494,22 @@ if ($rt_suspending()) { break main; } - var$15 = $tmp; - $d7 = $d2 + $d0 * var$15.$axisDirection.$offset3; + var$13 = $tmp; + $d7 = $d2 + $d0 * var$13.$axisDirection.$offset3; $f = 0.0; $f1 = 0.0; $f2 = 0.0; $f3 = 0.0; - var$15 = $blockpattern$patternhelper.$finger; + var$13 = $blockpattern$patternhelper.$finger; $ptr = 11; case 11: - $tmp = nmu_EnumFacing_getOpposite(var$15); + $tmp = nmu_EnumFacing_getOpposite(var$13); if ($rt_suspending()) { break main; } $blockpos2 = $tmp; if ($blockpos2 !== $entityIn.$field_181018_ap) { - var$15 = $blockpattern$patternhelper.$finger; + var$13 = $blockpattern$patternhelper.$finger; $ptr = 12; continue main; } @@ -982518,25 +984519,25 @@ $d4 = $entityIn.$motionZ; $entityIn.$motionX = $d3 * $f + $d4 * $f3; $entityIn.$motionZ = $d3 * $f2 + $d4 * $f1; - var$15 = $entityIn.$field_181018_ap; + var$13 = $entityIn.$field_181018_ap; $ptr = 16; continue main; case 12: - $tmp = nmu_EnumFacing_getOpposite(var$15); + $tmp = nmu_EnumFacing_getOpposite(var$13); if ($rt_suspending()) { break main; } $blockpos2 = $tmp; - var$15 = $entityIn.$field_181018_ap; + var$13 = $entityIn.$field_181018_ap; $ptr = 13; case 13: - $tmp = nmu_EnumFacing_getOpposite(var$15); + $tmp = nmu_EnumFacing_getOpposite(var$13); if ($rt_suspending()) { break main; } - var$15 = $tmp; - if ($blockpos2 !== var$15) { - var$15 = $blockpattern$patternhelper.$finger; + var$13 = $tmp; + if ($blockpos2 !== var$13) { + var$13 = $blockpattern$patternhelper.$finger; $ptr = 14; continue main; } @@ -982546,24 +984547,24 @@ $d4 = $entityIn.$motionZ; $entityIn.$motionX = $d3 * $f + $d4 * $f3; $entityIn.$motionZ = $d3 * $f2 + $d4 * $f1; - var$15 = $entityIn.$field_181018_ap; + var$13 = $entityIn.$field_181018_ap; $ptr = 16; continue main; case 14: - $tmp = nmu_EnumFacing_getOpposite(var$15); + $tmp = nmu_EnumFacing_getOpposite(var$13); if ($rt_suspending()) { break main; } $blockpos2 = $tmp; - var$15 = $entityIn.$field_181018_ap; + var$13 = $entityIn.$field_181018_ap; $ptr = 15; case 15: - $tmp = nmu_EnumFacing_rotateY(var$15); + $tmp = nmu_EnumFacing_rotateY(var$13); if ($rt_suspending()) { break main; } - var$15 = $tmp; - if ($blockpos2 !== var$15) { + var$13 = $tmp; + if ($blockpos2 !== var$13) { $f2 = (-1.0); $f3 = 1.0; } else { @@ -982574,15 +984575,15 @@ $d4 = $entityIn.$motionZ; $entityIn.$motionX = $d3 * $f + $d4 * $f3; $entityIn.$motionZ = $d3 * $f2 + $d4 * $f1; - var$15 = $entityIn.$field_181018_ap; + var$13 = $entityIn.$field_181018_ap; $ptr = 16; case 16: - $tmp = nmu_EnumFacing_getOpposite(var$15); + $tmp = nmu_EnumFacing_getOpposite(var$13); if ($rt_suspending()) { break main; } - var$15 = $tmp; - $rotationYaw = $rotationYaw - (var$15.$horizontalIndex * 90 | 0) + ($blockpattern$patternhelper.$finger.$horizontalIndex * 90 | 0); + var$13 = $tmp; + $rotationYaw = $rotationYaw - (var$13.$horizontalIndex * 90 | 0) + ($blockpattern$patternhelper.$finger.$horizontalIndex * 90 | 0); $entityIn.$rotationYaw = $rotationYaw; $f1 = $entityIn.$rotationPitch; $ptr = 17; @@ -982594,7 +984595,7 @@ return 1; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $entityIn, $rotationYaw, $d0, $i, $j, $flag1, $teleporter$portalposition, $k, $blockpos2, $l, $i1, $blockpos, $d5, $d7, var$15, var$16, $blockpattern$patternhelper, $flag2, $d2, $d1, $blockpos1, $f, $f1, $f2, $f3, $d3, $d4, $ptr); + $rt_nativeThread().push($this, $entityIn, $rotationYaw, $d0, $i, $j, $flag1, $teleporter$portalposition, $k, $blockpos2, $l, $i1, $blockpos, var$13, var$14, $d5, $d7, $blockpattern$patternhelper, $flag2, $d2, $d1, $blockpos1, $f, $f1, $f2, $f3, $d3, $d4, $ptr); } function nmw_Teleporter_makePortal($this, $parEntity) { var $d0, $i, $j, $k, $k1, $l1, $blockpos$mutableblockpos, $k5, $l8, $k6, $l2, $l7, $i2, $i3, $d3, $d5, $i6, $d4, $l6, $iblockstate, $blockpos, $i7, $k7, $j8, $b0, $j9, $j10, $j11, $flag, $d1, $k2, $d2, $j3, $k3, $l3, $i4, $j4, $k4, $j5, $d7, $j7, $i8, $i9, $i10, $i11, $d6, $d8, $k8, $k9, $k10, $k11, $j12, $flag1, $l9, $ptr, $tmp; @@ -989013,7 +991014,7 @@ break main; } $parGuiScreen = nlevp_DefaultSkins_defaultSkinsMap.data[0].$model0; - $parGameProfile.$this$0189 = var$6; + $parGameProfile.$this$0120 = var$6; $parGameProfile.$lastCacheHit0 = jl_System_currentTimeMillis(); $parGameProfile.$isPresetSkin = 0; $parGameProfile.$presetSkinId = (-1); @@ -989036,7 +991037,7 @@ continue main; } $parGuiScreen = var$8[var$7].$model0; - $parGameProfile.$this$0189 = var$6; + $parGameProfile.$this$0120 = var$6; $parGameProfile.$lastCacheHit0 = jl_System_currentTimeMillis(); $parGameProfile.$isPresetSkin = 0; $parGameProfile.$presetSkinId = (-1); @@ -989053,7 +991054,7 @@ break main; } $parGuiScreen = nlevp_DefaultSkins_defaultSkinsMap.data[0].$model0; - $parGameProfile.$this$0189 = var$6; + $parGameProfile.$this$0120 = var$6; $parGameProfile.$lastCacheHit0 = jl_System_currentTimeMillis(); $parGameProfile.$isPresetSkin = 0; $parGameProfile.$presetSkinId = (-1); @@ -989093,7 +991094,7 @@ break main; } $parGuiScreen = $tmp; - $mcIn.$this$0190 = var$9; + $mcIn.$this$0121 = var$9; $mcIn.$lastCacheHit = jl_System_currentTimeMillis(); $mcIn.$isPresetCape = 0; $mcIn.$presetCapeId = (-1); @@ -989109,7 +991110,7 @@ } $parGuiScreen = $tmp; $parGuiScreen = $parGuiScreen.$model; - $parGameProfile.$this$0189 = var$6; + $parGameProfile.$this$0120 = var$6; $parGameProfile.$lastCacheHit0 = jl_System_currentTimeMillis(); $parGameProfile.$isPresetSkin = 0; $parGameProfile.$presetSkinId = (-1); @@ -993504,7 +995505,7 @@ $crashreportcategory = $tmp; var$7 = $rt_s(4371); var$9 = new nmwc_Chunk$1; - var$9.$this$0191 = $this; + var$9.$this$0122 = $this; var$9.$val$x = $x; var$9.$val$y = $y; var$9.$val$z = $z; @@ -993576,7 +995577,6 @@ $crashreportcategory = $tmp; var$6 = $rt_s(4371); var$8 = new nmwc_Chunk$2; - var$8.$this$0192 = $this; var$8.$val$blockpos3 = $blockpos; $ptr = 3; case 3: @@ -993642,7 +995642,6 @@ $crashreportcategory = $tmp; $extendedblockstorage = $rt_s(4371); $throwable = new nmwc_Chunk$3; - $throwable.$this$0193 = $this; $throwable.$val$pos2 = $pos; $ptr = 3; case 3: @@ -994364,11 +996363,11 @@ $rt_nativeThread().push(var$1, $ptr); } function nmwc_Chunk_addEntity($this, $entity) { - var $i, $j, $k, var$5, var$6, var$7, var$8, var$9, $ptr, $tmp; + var $i, $j, $k, var$5, var$6, var$7, var$8, var$9, var$10, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();$k = $thread.pop();$j = $thread.pop();$i = $thread.pop();$entity = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();$k = $thread.pop();$j = $thread.pop();$i = $thread.pop();$entity = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -994390,7 +996389,7 @@ $entity.$chunkCoordZ = $this.$zPosition; var$6 = var$5[$k]; var$7 = var$6.$knownKeys; - $ptr = 11; + $ptr = 12; continue main; } $ptr = 1; @@ -994399,57 +996398,64 @@ if ($rt_suspending()) { break main; } - var$7 = nmwc_Chunk_logger; - var$8 = $this.$zPosition; - var$6 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$6); - var$9 = $rt_s(7079); + var$8 = nmwc_Chunk_logger; + var$9 = $this.$zPosition; $ptr = 2; case 2: - jl_AbstractStringBuilder_append(var$6, var$9); + $tmp = jl_String_valueOf($entity); + if ($rt_suspending()) { + break main; + } + var$10 = $tmp; + var$6 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$6); + var$7 = $rt_s(7079); + $ptr = 3; + case 3: + jl_AbstractStringBuilder_append(var$6, var$7); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append1(var$6, $i); - var$9 = $rt_s(554); - $ptr = 3; - case 3: - jl_AbstractStringBuilder_append(var$6, var$9); + var$7 = $rt_s(554); + $ptr = 4; + case 4: + jl_AbstractStringBuilder_append(var$6, var$7); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append1(var$6, $j); - var$9 = $rt_s(7080); - $ptr = 4; - case 4: - jl_AbstractStringBuilder_append(var$6, var$9); + var$7 = $rt_s(7080); + $ptr = 5; + case 5: + jl_AbstractStringBuilder_append(var$6, var$7); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append1(var$6, $k); - var$9 = $rt_s(554); - $ptr = 5; - case 5: - jl_AbstractStringBuilder_append(var$6, var$9); - if ($rt_suspending()) { - break main; - } - jl_AbstractStringBuilder_append1(var$6, var$8); - var$9 = $rt_s(4348); + var$7 = $rt_s(554); $ptr = 6; case 6: - jl_AbstractStringBuilder_append(var$6, var$9); + jl_AbstractStringBuilder_append(var$6, var$7); if ($rt_suspending()) { break main; } + jl_AbstractStringBuilder_append1(var$6, var$9); + var$7 = $rt_s(4348); $ptr = 7; case 7: - jl_AbstractStringBuilder_append(var$6, $entity); + jl_AbstractStringBuilder_append(var$6, var$7); if ($rt_suspending()) { break main; } $ptr = 8; case 8: + jl_AbstractStringBuilder_append(var$6, var$10); + if ($rt_suspending()) { + break main; + } + $ptr = 9; + case 9: $tmp = jl_AbstractStringBuilder_toString(var$6); if ($rt_suspending()) { break main; @@ -994457,14 +996463,14 @@ var$6 = $tmp; var$5 = $rt_createArray(jl_Object, 1); var$5.data[0] = $entity; - $ptr = 9; - case 9: - nlevl_Logger_warn0(var$7, var$6, var$5); + $ptr = 10; + case 10: + nlevl_Logger_warn0(var$8, var$6, var$5); if ($rt_suspending()) { break main; } - $ptr = 10; - case 10: + $ptr = 11; + case 11: $entity.$setDead(); if ($rt_suspending()) { break main; @@ -994482,15 +996488,15 @@ $entity.$chunkCoordZ = $this.$zPosition; var$6 = var$5[$k]; var$7 = var$6.$knownKeys; - $ptr = 11; - case 11: + $ptr = 12; + case 12: $tmp = ju_SetFromMap_iterator(var$7); if ($rt_suspending()) { break main; } var$7 = $tmp; - $ptr = 12; - case 12: + $ptr = 13; + case 13: $tmp = var$7.$hasNext(); if ($rt_suspending()) { break main; @@ -994498,30 +996504,30 @@ $i = $tmp; if (!$i) return; - $ptr = 13; - case 13: + $ptr = 14; + case 14: $tmp = var$7.$next(); if ($rt_suspending()) { break main; } - var$9 = $tmp; - var$9 = var$9; - if (jl_Class_isAssignableFrom(var$9, jl_Object_getClass($entity))) { - $ptr = 14; + var$8 = $tmp; + var$8 = var$8; + if (jl_Class_isAssignableFrom(var$8, jl_Object_getClass($entity))) { + $ptr = 15; continue main; } - $ptr = 12; + $ptr = 13; continue main; - case 14: - nmu_ClassInheritanceMultiMap_func_181743_a(var$6, $entity, var$9); + case 15: + nmu_ClassInheritanceMultiMap_func_181743_a(var$6, $entity, var$8); if ($rt_suspending()) { break main; } - $ptr = 12; + $ptr = 13; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $entity, $i, $j, $k, var$5, var$6, var$7, var$8, var$9, $ptr); + $rt_nativeThread().push($this, $entity, $i, $j, $k, var$5, var$6, var$7, var$8, var$9, var$10, $ptr); } function nmwc_Chunk_removeEntity($this, $entity) { var var$2, $ptr, $tmp; @@ -995215,29 +997221,37 @@ return; var$8 = $this.$entityLists.data[$k]; $entity = var$8.$map5; - if (jl_Class_isAssignableFrom(var$8.$baseClass, $oclass)) { - var$10 = var$8.$knownKeys; - $ptr = 4; + if (!jl_Class_isAssignableFrom(var$8.$baseClass, $oclass)) { + $axisalignedbb = new jl_IllegalArgumentException; + $ptr = 1; continue main; } - $axisalignedbb = new jl_IllegalArgumentException; - $list = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($list); - $predicate = $rt_s(7081); - $ptr = 1; + var$10 = var$8.$knownKeys; + $ptr = 5; + continue main; case 1: - jl_AbstractStringBuilder_append($list, $predicate); + $tmp = jl_String_valueOf($oclass); if ($rt_suspending()) { break main; } + $oclass = $tmp; + $list = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($list); + $predicate = $rt_s(7081); $ptr = 2; case 2: - jl_AbstractStringBuilder_append($list, $oclass); + jl_AbstractStringBuilder_append($list, $predicate); if ($rt_suspending()) { break main; } $ptr = 3; case 3: + jl_AbstractStringBuilder_append($list, $oclass); + if ($rt_suspending()) { + break main; + } + $ptr = 4; + case 4: $tmp = jl_AbstractStringBuilder_toString($list); if ($rt_suspending()) { break main; @@ -995245,58 +997259,58 @@ $oclass = $tmp; jl_Throwable__init_($axisalignedbb, $oclass); $rt_throw($axisalignedbb); - case 4: + case 5: $tmp = ju_SetFromMap_contains(var$10, $oclass); if ($rt_suspending()) { break main; } var$11 = $tmp; if (var$11) { - $ptr = 5; + $ptr = 6; continue main; } - $ptr = 6; + $ptr = 7; continue main; - case 5: + case 6: $tmp = ju_HashMap_get($entity, $oclass); if ($rt_suspending()) { break main; } - var$8 = $tmp; - var$8 = var$8; - if (var$8 !== null) { - $ptr = 7; + $entity = $tmp; + $entity = $entity; + if ($entity !== null) { + $ptr = 8; continue main; } var$8 = cgcc_Iterators_EMPTY_LIST_ITERATOR; - $ptr = 8; + $ptr = 9; continue main; - case 6: + case 7: nmu_ClassInheritanceMultiMap_createLookup(var$8, $oclass); if ($rt_suspending()) { break main; } - $ptr = 5; + $ptr = 6; continue main; - case 7: - $tmp = var$8.$iterator(); + case 8: + $tmp = $entity.$iterator(); if ($rt_suspending()) { break main; } - var$8 = $tmp; + $entity = $tmp; cgcb_Predicates_$callClinit(); - $entity = new cgcb_Predicates$InstanceOfPredicate; - $entity.$clazz0 = cgcb_Preconditions_checkNotNull($oclass); - var$8 = cgcc_Iterators_filter(var$8, $entity); - $ptr = 8; - case 8: + var$10 = new cgcb_Predicates$InstanceOfPredicate; + var$10.$clazz0 = cgcb_Preconditions_checkNotNull($oclass); + var$8 = cgcc_Iterators_filter($entity, var$10); + $ptr = 9; + case 9: $tmp = var$8.$hasNext(); if ($rt_suspending()) { break main; } var$11 = $tmp; if (var$11) { - $ptr = 9; + $ptr = 10; continue main; } $k = $k + 1 | 0; @@ -995304,18 +997318,15 @@ return; var$8 = $this.$entityLists.data[$k]; $entity = var$8.$map5; - if (jl_Class_isAssignableFrom(var$8.$baseClass, $oclass)) { - var$10 = var$8.$knownKeys; - $ptr = 4; + if (!jl_Class_isAssignableFrom(var$8.$baseClass, $oclass)) { + $axisalignedbb = new jl_IllegalArgumentException; + $ptr = 1; continue main; } - $axisalignedbb = new jl_IllegalArgumentException; - $list = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($list); - $predicate = $rt_s(7081); - $ptr = 1; + var$10 = var$8.$knownKeys; + $ptr = 5; continue main; - case 9: + case 10: $tmp = var$8.$next(); if ($rt_suspending()) { break main; @@ -995323,33 +997334,33 @@ $entity = $tmp; $entity = $entity; if (!nmu_AxisAlignedBB_intersectsWith($entity.$boundingBox, $axisalignedbb)) { - $ptr = 8; + $ptr = 9; continue main; } if ($predicate === null) { - $ptr = 10; + $ptr = 11; continue main; } - $ptr = 11; + $ptr = 12; continue main; - case 10: + case 11: ju_ArrayList_add($list, $entity); if ($rt_suspending()) { break main; } - $ptr = 8; + $ptr = 9; continue main; - case 11: + case 12: $tmp = $predicate.$apply0($entity); if ($rt_suspending()) { break main; } var$11 = $tmp; if (var$11) { - $ptr = 10; + $ptr = 11; continue main; } - $ptr = 8; + $ptr = 9; continue main; default: $rt_invalidPointer(); }} @@ -1002117,7 +1004128,7 @@ break main; } var$2 = new cgcc_MultimapBuilder$MultimapBuilderWithKeys$1; - var$2.$this$0194 = $this; + var$2.$this$0123 = $this; var$2.$val$expectedValuesPerKey = var$1; return var$2; default: $rt_invalidPointer(); @@ -1003496,7 +1005507,6 @@ function nmw_WorldProviderHell_getWorldBorder($this) { var var$1; var$1 = new nmw_WorldProviderHell$1; - var$1.$this$0195 = $this; nmwb_WorldBorder__init_(var$1); return var$1; } @@ -1011601,7 +1013611,6 @@ } $rp = $this.$renderPassList; var$7 = new nlevoed_ForwardRenderCallbackHandler$1; - var$7.$this$0196 = $this; $ptr = 1; case 1: ju_Collections_sort($rp, var$7); @@ -1011627,7 +1013636,6 @@ } $rp = $this.$renderPassList; var$7 = new nlevoed_ForwardRenderCallbackHandler$1; - var$7.$this$0196 = $this; $ptr = 1; continue main; default: $rt_invalidPointer(); @@ -1011966,7 +1013974,7 @@ function cgcc_LinkedListMultimap_get($this, $key) { var var$2; var$2 = new cgcc_LinkedListMultimap$1; - var$2.$this$0197 = $this; + var$2.$this$0124 = $this; var$2.$val$key0 = $key; return var$2; } @@ -1013002,8 +1015010,6 @@ } $nbttagcompound = new jl_RuntimeException; $s = jl_Object_getClass($this); - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); $ptr = 7; continue main; case 3: @@ -1013037,19 +1015043,28 @@ } return; case 7: - jl_AbstractStringBuilder_append(var$3, $s); + $tmp = jl_String_valueOf($s); if ($rt_suspending()) { break main; } - $s = $rt_s(7179); + $s = $tmp; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); $ptr = 8; case 8: jl_AbstractStringBuilder_append(var$3, $s); if ($rt_suspending()) { break main; } + $s = $rt_s(7179); $ptr = 9; case 9: + jl_AbstractStringBuilder_append(var$3, $s); + if ($rt_suspending()) { + break main; + } + $ptr = 10; + case 10: $tmp = jl_AbstractStringBuilder_toString(var$3); if ($rt_suspending()) { break main; @@ -1013555,7 +1015570,7 @@ case 0: var$2 = $rt_s(1456); var$3 = new nmt_TileEntity$1; - var$3.$this$0198 = $this; + var$3.$this$0125 = $this; $ptr = 1; case 1: nmc_CrashReportCategory_addCrashSectionCallable($reportCategory, var$2, var$3); @@ -1013587,7 +1015602,7 @@ } var$2 = $rt_s(7182); var$3 = new nmt_TileEntity$2; - var$3.$this$0199 = $this; + var$3.$this$0126 = $this; $ptr = 5; case 5: nmc_CrashReportCategory_addCrashSectionCallable($reportCategory, var$2, var$3); @@ -1013596,7 +1015611,7 @@ } var$2 = $rt_s(7183); var$3 = new nmt_TileEntity$3; - var$3.$this$0200 = $this; + var$3.$this$0127 = $this; $ptr = 6; case 6: nmc_CrashReportCategory_addCrashSectionCallable($reportCategory, var$2, var$3); @@ -1019860,7 +1021875,7 @@ break main; } $icommandsender = new nmt_TileEntitySign$1; - $icommandsender.$this$0201 = $this; + $icommandsender.$this$0128 = $this; $i = 0; var$4 = null; if ($i >= 4) { @@ -1020058,7 +1022073,7 @@ break main; } var$1 = new nmt_TileEntityMobSpawner$1; - var$1.$this$0202 = $this; + var$1.$this$0129 = $this; nmt_MobSpawnerBaseLogic__init_(var$1); $this.$spawnerLogic = var$1; return; @@ -1022843,7 +1024858,7 @@ break main; } var$1 = new nmt_TileEntityCommandBlock$1; - var$1.$this$0203 = $this; + var$1.$this$0130 = $this; $ptr = 2; case 2: nmcs_CommandBlockLogic__init_(var$1); @@ -1027293,10 +1029308,10 @@ a.$next15 = null; a.$toRemove = null; a.$expectedModCount1 = 0; - a.$this$0204 = null; + a.$this$0131 = null; } function cgcc_HashBiMap$Itr__init_($this, $this$0) { - $this.$this$0204 = $this$0; + $this.$this$0131 = $this$0; $this.$nextBucket = 0; $this.$next15 = null; $this.$toRemove = null; @@ -1027304,7 +1029319,7 @@ } function cgcc_HashBiMap$Itr_checkForConcurrentModification($this) { var var$1; - if ($this.$this$0204.$modCount4 == $this.$expectedModCount1) + if ($this.$this$0131.$modCount4 == $this.$expectedModCount1) return; var$1 = new ju_ConcurrentModificationException; jl_Throwable__init_0(var$1); @@ -1027317,7 +1029332,7 @@ return 1; while (true) { var$1 = $this.$nextBucket; - var$2 = $this.$this$0204.$hashTableKToV.data; + var$2 = $this.$this$0131.$hashTableKToV.data; if (var$1 >= var$2.length) break; if (var$2[var$1] !== null) { @@ -1030315,12 +1032330,12 @@ $rt_nativeThread().push($this, var$1, var$2, $ptr); } function nlevu_GuiUpdateVersionSlot_drawSlot($this, $id, $xx, $yy, $width, $height, $ii) { - var $strs, var$8, var$9, var$10, var$11, $iconSize, var$13, var$14, var$15, var$16, $cert, var$18, var$19, var$20, var$21, var$22, var$23, var$24, var$25, var$26, $hexStr1, $hexStr2, var$29, var$30, $ptr, $tmp; + var $strs, var$8, var$9, var$10, var$11, $iconSize, var$13, var$14, var$15, var$16, $cert, var$18, var$19, var$20, var$21, var$22, var$23, var$24, var$25, var$26, var$27, $hexStr1, $hexStr2, var$30, var$31, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$30 = $thread.pop();var$29 = $thread.pop();$hexStr2 = $thread.pop();$hexStr1 = $thread.pop();var$26 = $thread.pop();var$25 = $thread.pop();var$24 = $thread.pop();var$23 = $thread.pop();var$22 = $thread.pop();var$21 = $thread.pop();var$20 = $thread.pop();var$19 = $thread.pop();var$18 = $thread.pop();$cert = $thread.pop();var$16 = $thread.pop();var$15 = $thread.pop();var$14 = $thread.pop();var$13 = $thread.pop();$iconSize = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 - = $thread.pop();var$8 = $thread.pop();$strs = $thread.pop();$ii = $thread.pop();$height = $thread.pop();$width = $thread.pop();$yy = $thread.pop();$xx = $thread.pop();$id = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$31 = $thread.pop();var$30 = $thread.pop();$hexStr2 = $thread.pop();$hexStr1 = $thread.pop();var$27 = $thread.pop();var$26 = $thread.pop();var$25 = $thread.pop();var$24 = $thread.pop();var$23 = $thread.pop();var$22 = $thread.pop();var$21 = $thread.pop();var$20 = $thread.pop();var$19 = $thread.pop();var$18 = $thread.pop();$cert = $thread.pop();var$16 = $thread.pop();var$15 = $thread.pop();var$14 = $thread.pop();var$13 = $thread.pop();$iconSize = $thread.pop();var$11 = $thread.pop();var$10 + = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();$strs = $thread.pop();$ii = $thread.pop();$height = $thread.pop();$width = $thread.pop();$yy = $thread.pop();$xx = $thread.pop();$id = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -1030466,110 +1032481,153 @@ if ($rt_suspending()) { break main; } - var$20 = nmu_EnumChatFormatting_WHITE; - var$21 = $cert.$bundleDisplayName; - var$22 = nmu_EnumChatFormatting_GRAY; - $id = $cert.$bundleVersionInteger; - $width = $rt_compare($id, 29); - var$23 = $width > 0 ? nmu_EnumChatFormatting_GREEN : $width >= 0 ? nmu_EnumChatFormatting_YELLOW : nmu_EnumChatFormatting_RED; - var$24 = $cert.$bundleDisplayVersion; - $strs = nmu_EnumChatFormatting_DARK_GRAY; - var$8 = nlevu_GuiUpdateVersionSlot_dateFmt; - var$25 = ju_Date__init_1($cert.$sigTimestamp); + $strs = nmu_EnumChatFormatting_WHITE; $ptr = 18; case 18: - $tmp = jt_DateFormat_format(var$8, var$25); - if ($rt_suspending()) { - break main; - } - var$8 = $tmp; - var$25 = nmu_EnumChatFormatting_WHITE; - $width = $cert.$bundleDataLength / 1024 | 0; - var$26 = jl_StringBuilder__init_(); - $ptr = 19; - case 19: - $tmp = jl_StringBuilder_append(var$26, var$20); + $tmp = jl_String_valueOf($strs); if ($rt_suspending()) { break main; } var$20 = $tmp; + var$21 = $cert.$bundleDisplayName; + $strs = nmu_EnumChatFormatting_GRAY; + $ptr = 19; + case 19: + $tmp = jl_String_valueOf($strs); + if ($rt_suspending()) { + break main; + } + var$22 = $tmp; + $id = $rt_compare($cert.$bundleVersionInteger, 29); + $strs = $id > 0 ? nmu_EnumChatFormatting_GREEN : $id >= 0 ? nmu_EnumChatFormatting_YELLOW : nmu_EnumChatFormatting_RED; $ptr = 20; case 20: + $tmp = jl_String_valueOf($strs); + if ($rt_suspending()) { + break main; + } + var$23 = $tmp; + var$24 = $cert.$bundleDisplayVersion; + $strs = nmu_EnumChatFormatting_DARK_GRAY; + $ptr = 21; + case 21: + $tmp = jl_String_valueOf($strs); + if ($rt_suspending()) { + break main; + } + var$25 = $tmp; + $id = $cert.$bundleVersionInteger; + $strs = nmu_EnumChatFormatting_GRAY; + $ptr = 22; + case 22: + $tmp = jl_String_valueOf($strs); + if ($rt_suspending()) { + break main; + } + var$26 = $tmp; + $strs = nlevu_GuiUpdateVersionSlot_dateFmt; + var$8 = ju_Date__init_1($cert.$sigTimestamp); + $ptr = 23; + case 23: + $tmp = jt_DateFormat_format($strs, var$8); + if ($rt_suspending()) { + break main; + } + $strs = $tmp; + var$8 = nmu_EnumChatFormatting_WHITE; + $ptr = 24; + case 24: + $tmp = jl_String_valueOf(var$8); + if ($rt_suspending()) { + break main; + } + var$27 = $tmp; + $width = $cert.$bundleDataLength / 1024 | 0; + var$8 = jl_StringBuilder__init_(); + $ptr = 25; + case 25: + $tmp = jl_StringBuilder_append(var$8, var$20); + if ($rt_suspending()) { + break main; + } + var$20 = $tmp; + $ptr = 26; + case 26: $tmp = jl_StringBuilder_append(var$20, var$21); if ($rt_suspending()) { break main; } var$20 = $tmp; - $ptr = 21; - case 21: + $ptr = 27; + case 27: $tmp = jl_StringBuilder_append(var$20, var$22); if ($rt_suspending()) { break main; } var$20 = $tmp; var$21 = $rt_s(7244); - $ptr = 22; - case 22: + $ptr = 28; + case 28: $tmp = jl_StringBuilder_append(var$20, var$21); if ($rt_suspending()) { break main; } var$20 = $tmp; - $ptr = 23; - case 23: + $ptr = 29; + case 29: $tmp = jl_StringBuilder_append(var$20, var$23); if ($rt_suspending()) { break main; } var$20 = $tmp; - $ptr = 24; - case 24: + $ptr = 30; + case 30: $tmp = jl_StringBuilder_append(var$20, var$24); if ($rt_suspending()) { break main; } var$20 = $tmp; - $ptr = 25; - case 25: + $ptr = 31; + case 31: + $tmp = jl_StringBuilder_append(var$20, var$25); + if ($rt_suspending()) { + break main; + } + var$20 = $tmp; + $height = 32; + var$20 = jl_StringBuilder_append5(jl_StringBuilder_append1(jl_StringBuilder_append5(var$20, $height), $id), $height); + $ptr = 32; + case 32: + $tmp = jl_StringBuilder_append(var$20, var$26); + if ($rt_suspending()) { + break main; + } + var$20 = $tmp; + $ptr = 33; + case 33: $tmp = jl_StringBuilder_append(var$20, $strs); if ($rt_suspending()) { break main; } $strs = $tmp; - $height = 32; - $strs = jl_StringBuilder_append5(jl_StringBuilder_append1(jl_StringBuilder_append5($strs, $height), $id), $height); - $ptr = 26; - case 26: - $tmp = jl_StringBuilder_append($strs, var$22); - if ($rt_suspending()) { - break main; - } - $strs = $tmp; - $ptr = 27; - case 27: - $tmp = jl_StringBuilder_append($strs, var$8); - if ($rt_suspending()) { - break main; - } - $strs = $tmp; - $ptr = 28; - case 28: - $tmp = jl_StringBuilder_append($strs, var$25); + $ptr = 34; + case 34: + $tmp = jl_StringBuilder_append($strs, var$27); if ($rt_suspending()) { break main; } $strs = $tmp; $strs = jl_StringBuilder_append1(jl_StringBuilder_append5($strs, $height), $width); - var$8 = $rt_s(7245); - $ptr = 29; - case 29: - jl_StringBuilder_append($strs, var$8); + var$20 = $rt_s(7245); + $ptr = 35; + case 35: + jl_StringBuilder_append($strs, var$20); if ($rt_suspending()) { break main; } - $ptr = 30; - case 30: - $tmp = jl_StringBuilder_toString(var$26); + $ptr = 36; + case 36: + $tmp = jl_StringBuilder_toString(var$8); if ($rt_suspending()) { break main; } @@ -1030577,79 +1032635,79 @@ $id = 2; $width = 2; $height = 16777215; - $ptr = 31; - case 31: + $ptr = 37; + case 37: nmcg_Gui_drawString(var$18, var$19, $strs, $id, $width, $height); if ($rt_suspending()) { break main; } $strs = $this.$mc21.$fontRendererObj; var$8 = $cert.$bundleVersionComment; - $ptr = 32; - case 32: + $ptr = 38; + case 38: $tmp = nlevu_GuiUpdateVersionSlot_getListWidth($this); if ($rt_suspending()) { break main; } $id = $tmp; $id = (($id - $iconSize | 0) - 6 | 0) * 1.25 | 0; - $ptr = 33; - case 33: + $ptr = 39; + case 39: $tmp = nmcg_FontRenderer_listFormattedStringToWidth($strs, var$8, $id); if ($rt_suspending()) { break main; } $strs = $tmp; - $ptr = 34; - case 34: + $ptr = 40; + case 40: $tmp = ju_Arrays$ArrayAsList_size($strs); if ($rt_suspending()) { break main; } $id = $tmp; if ($id <= 0) { - $ptr = 35; + $ptr = 41; continue main; } var$8 = $this.$screen; - var$25 = $this.$mc21.$fontRendererObj; + var$18 = $this.$mc21.$fontRendererObj; $id = 0; - $ptr = 36; + $ptr = 42; continue main; - case 35: + case 41: $tmp = ju_Arrays$ArrayAsList_size($strs); if ($rt_suspending()) { break main; } $id = $tmp; if ($id <= 1) { - $ptr = 38; + $ptr = 44; continue main; } var$8 = $this.$screen; - var$25 = $this.$mc21.$fontRendererObj; + var$18 = $this.$mc21.$fontRendererObj; $id = 1; - $ptr = 39; + $ptr = 45; continue main; - case 36: + case 42: $tmp = ju_Arrays$ArrayAsList_get($strs, $id); if ($rt_suspending()) { break main; } - var$18 = $tmp; - var$18 = var$18; + var$19 = $tmp; + var$19 = var$19; $id = 2; $width = 13; $height = 8947848; - $ptr = 37; - case 37: - nmcg_Gui_drawString(var$8, var$25, var$18, $id, $width, $height); + $ptr = 43; + case 43: + nmcg_Gui_drawString(var$8, var$18, var$19, $id, $width, $height); if ($rt_suspending()) { break main; } - $ptr = 35; + $ptr = 41; continue main; - case 38: + case 44: $tmp = ju_Arrays$ArrayAsList_size($strs); if ($rt_suspending()) { break main; @@ -1030659,145 +1032717,167 @@ $strs = $this.$screen; $id = $strs.$mx; if ($id > ($xx + $iconSize | 0) && $strs.$my > ($yy + 8 | 0)) { - $ptr = 54; + $ptr = 63; continue main; } } $hexStr1 = $rt_createCharArray(6); $hexStr2 = $hexStr1.data; - var$29 = nlevu_GuiUpdateVersionSlot_hexChars.data; - var$30 = $cert.$bundleDataHash.data; - $hexStr2[0] = var$29[var$30[0] >> 4 & 15]; - $hexStr2[1] = var$29[var$30[1] & 15]; - $hexStr2[2] = var$29[var$30[1] >> 4 & 15]; - $hexStr2[3] = var$29[var$30[1] & 15]; - $hexStr2[4] = var$29[var$30[2] >> 4 & 15]; - $hexStr2[5] = var$29[var$30[2] & 15]; - $hexStr2 = $rt_createCharArrayFromData([var$29[var$30[29] >> 4 & 15], var$29[var$30[29] & 15], var$29[var$30[30] >> 4 & 15], var$29[var$30[30] & 15], var$29[var$30[31] >> 4 & 15], var$29[var$30[31] & 15]]); + var$30 = nlevu_GuiUpdateVersionSlot_hexChars.data; + var$31 = $cert.$bundleDataHash.data; + $hexStr2[0] = var$30[var$31[0] >> 4 & 15]; + $hexStr2[1] = var$30[var$31[1] & 15]; + $hexStr2[2] = var$30[var$31[1] >> 4 & 15]; + $hexStr2[3] = var$30[var$31[1] & 15]; + $hexStr2[4] = var$30[var$31[2] >> 4 & 15]; + $hexStr2[5] = var$30[var$31[2] & 15]; + $hexStr2 = $rt_createCharArrayFromData([var$30[var$31[29] >> 4 & 15], var$30[var$31[29] & 15], var$30[var$31[30] >> 4 & 15], var$30[var$31[30] & 15], var$30[var$31[31] >> 4 & 15], var$30[var$31[31] & 15]]); $strs = $this.$screen; var$8 = $this.$mc21.$fontRendererObj; - var$25 = nmu_EnumChatFormatting_GRAY; - $cert = $cert.$bundleAuthorName; - var$19 = nmu_EnumChatFormatting_WHITE; - var$20 = jl_String__init_($hexStr1); - var$21 = jl_String__init_($hexStr2); - var$22 = jl_StringBuilder__init_(); - var$18 = $rt_s(7246); - $ptr = 41; + var$18 = nmu_EnumChatFormatting_GRAY; + $ptr = 47; continue main; - case 39: + case 45: $tmp = ju_Arrays$ArrayAsList_get($strs, $id); if ($rt_suspending()) { break main; } - var$18 = $tmp; - var$18 = var$18; + var$19 = $tmp; + var$19 = var$19; $id = 2; $width = 24; $height = 8947848; - $ptr = 40; - case 40: - nmcg_Gui_drawString(var$8, var$25, var$18, $id, $width, $height); + $ptr = 46; + case 46: + nmcg_Gui_drawString(var$8, var$18, var$19, $id, $width, $height); if ($rt_suspending()) { break main; } - $ptr = 38; + $ptr = 44; continue main; - case 41: - $tmp = jl_StringBuilder_append(var$22, var$18); + case 47: + $tmp = jl_String_valueOf(var$18); if ($rt_suspending()) { break main; } var$18 = $tmp; - $ptr = 42; - case 42: - $tmp = jl_StringBuilder_append(var$18, var$25); + $cert = $cert.$bundleAuthorName; + var$19 = nmu_EnumChatFormatting_WHITE; + $ptr = 48; + case 48: + $tmp = jl_String_valueOf(var$19); + if ($rt_suspending()) { + break main; + } + var$19 = $tmp; + var$20 = nmu_EnumChatFormatting_GRAY; + $ptr = 49; + case 49: + $tmp = jl_String_valueOf(var$20); + if ($rt_suspending()) { + break main; + } + var$20 = $tmp; + var$21 = jl_String__init_($hexStr1); + var$22 = jl_String__init_($hexStr2); + var$23 = jl_StringBuilder__init_(); + var$24 = $rt_s(7246); + $ptr = 50; + case 50: + $tmp = jl_StringBuilder_append(var$23, var$24); + if ($rt_suspending()) { + break main; + } + var$24 = $tmp; + $ptr = 51; + case 51: + $tmp = jl_StringBuilder_append(var$24, var$18); if ($rt_suspending()) { break main; } var$18 = $tmp; - $ptr = 43; - case 43: + $ptr = 52; + case 52: $tmp = jl_StringBuilder_append(var$18, $cert); if ($rt_suspending()) { break main; } $cert = $tmp; - $ptr = 44; - case 44: + $ptr = 53; + case 53: $tmp = jl_StringBuilder_append($cert, var$19); if ($rt_suspending()) { break main; } $cert = $tmp; var$18 = $rt_s(7247); - $ptr = 45; - case 45: + $ptr = 54; + case 54: $tmp = jl_StringBuilder_append($cert, var$18); if ($rt_suspending()) { break main; } $cert = $tmp; - $ptr = 46; - case 46: - $tmp = jl_StringBuilder_append($cert, var$25); + $ptr = 55; + case 55: + $tmp = jl_StringBuilder_append($cert, var$20); if ($rt_suspending()) { break main; } - var$25 = $tmp; - $cert = $rt_s(983); - $ptr = 47; - case 47: - $tmp = jl_StringBuilder_append(var$25, $cert); + $cert = $tmp; + var$18 = $rt_s(983); + $ptr = 56; + case 56: + $tmp = jl_StringBuilder_append($cert, var$18); if ($rt_suspending()) { break main; } - var$25 = $tmp; - $ptr = 48; - case 48: - $tmp = jl_StringBuilder_append(var$25, var$20); + $cert = $tmp; + $ptr = 57; + case 57: + $tmp = jl_StringBuilder_append($cert, var$21); if ($rt_suspending()) { break main; } - var$25 = $tmp; - $cert = $rt_s(7248); - $ptr = 49; - case 49: - $tmp = jl_StringBuilder_append(var$25, $cert); + $cert = $tmp; + var$18 = $rt_s(7248); + $ptr = 58; + case 58: + $tmp = jl_StringBuilder_append($cert, var$18); if ($rt_suspending()) { break main; } - var$25 = $tmp; - $ptr = 50; - case 50: - jl_StringBuilder_append(var$25, var$21); + $cert = $tmp; + $ptr = 59; + case 59: + jl_StringBuilder_append($cert, var$22); if ($rt_suspending()) { break main; } - $ptr = 51; - case 51: - $tmp = jl_StringBuilder_toString(var$22); + $ptr = 60; + case 60: + $tmp = jl_StringBuilder_toString(var$23); if ($rt_suspending()) { break main; } - var$25 = $tmp; + $cert = $tmp; $id = 2; $xx = 35; $yy = 16777215; - $ptr = 52; - case 52: - nmcg_Gui_drawString($strs, var$8, var$25, $id, $xx, $yy); + $ptr = 61; + case 61: + nmcg_Gui_drawString($strs, var$8, $cert, $id, $xx, $yy); if ($rt_suspending()) { break main; } - $ptr = 53; - case 53: + $ptr = 62; + case 62: nlevo_GlStateManager_popMatrix(); if ($rt_suspending()) { break main; } return; - case 54: + case 63: $tmp = nlevu_GuiUpdateVersionSlot_getListWidth($this); if ($rt_suspending()) { break main; @@ -1030810,29 +1032890,23 @@ } $hexStr1 = $rt_createCharArray(6); $hexStr2 = $hexStr1.data; - var$29 = nlevu_GuiUpdateVersionSlot_hexChars.data; - var$30 = $cert.$bundleDataHash.data; - $hexStr2[0] = var$29[var$30[0] >> 4 & 15]; - $hexStr2[1] = var$29[var$30[1] & 15]; - $hexStr2[2] = var$29[var$30[1] >> 4 & 15]; - $hexStr2[3] = var$29[var$30[1] & 15]; - $hexStr2[4] = var$29[var$30[2] >> 4 & 15]; - $hexStr2[5] = var$29[var$30[2] & 15]; - $hexStr2 = $rt_createCharArrayFromData([var$29[var$30[29] >> 4 & 15], var$29[var$30[29] & 15], var$29[var$30[30] >> 4 & 15], var$29[var$30[30] & 15], var$29[var$30[31] >> 4 & 15], var$29[var$30[31] & 15]]); + var$30 = nlevu_GuiUpdateVersionSlot_hexChars.data; + var$31 = $cert.$bundleDataHash.data; + $hexStr2[0] = var$30[var$31[0] >> 4 & 15]; + $hexStr2[1] = var$30[var$31[1] & 15]; + $hexStr2[2] = var$30[var$31[1] >> 4 & 15]; + $hexStr2[3] = var$30[var$31[1] & 15]; + $hexStr2[4] = var$30[var$31[2] >> 4 & 15]; + $hexStr2[5] = var$30[var$31[2] & 15]; + $hexStr2 = $rt_createCharArrayFromData([var$30[var$31[29] >> 4 & 15], var$30[var$31[29] & 15], var$30[var$31[30] >> 4 & 15], var$30[var$31[30] & 15], var$30[var$31[31] >> 4 & 15], var$30[var$31[31] & 15]]); $strs = $this.$screen; var$8 = $this.$mc21.$fontRendererObj; - var$25 = nmu_EnumChatFormatting_GRAY; - $cert = $cert.$bundleAuthorName; - var$19 = nmu_EnumChatFormatting_WHITE; - var$20 = jl_String__init_($hexStr1); - var$21 = jl_String__init_($hexStr2); - var$22 = jl_StringBuilder__init_(); - var$18 = $rt_s(7246); - $ptr = 41; + var$18 = nmu_EnumChatFormatting_GRAY; + $ptr = 47; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $id, $xx, $yy, $width, $height, $ii, $strs, var$8, var$9, var$10, var$11, $iconSize, var$13, var$14, var$15, var$16, $cert, var$18, var$19, var$20, var$21, var$22, var$23, var$24, var$25, var$26, $hexStr1, $hexStr2, var$29, var$30, $ptr); + $rt_nativeThread().push($this, $id, $xx, $yy, $width, $height, $ii, $strs, var$8, var$9, var$10, var$11, $iconSize, var$13, var$14, var$15, var$16, $cert, var$18, var$19, var$20, var$21, var$22, var$23, var$24, var$25, var$26, var$27, $hexStr1, $hexStr2, var$30, var$31, $ptr); } function nlevu_GuiUpdateVersionSlot_getListWidth($this) { var $ptr, $tmp; @@ -1030888,11 +1032962,6 @@ }} $rt_nativeThread().push(var$1, var$2, $ptr); } - function nlevi_FileChooserResult() { - var a = this; jl_Object.call(a); - a.$fileName0 = null; - a.$fileData = null; - } function nmcg_GuiButton() { var a = this; nmcg_Gui.call(a); a.$width14 = 0; @@ -1031385,10 +1033454,14 @@ }} $rt_nativeThread().push(var$1, var$2, $ptr); } - function nmcre_RenderItem$3() { + function nlevi_FileChooserResult() { var a = this; jl_Object.call(a); - a.$val$stack0 = null; - a.$this$0130 = null; + a.$fileName0 = null; + a.$fileData = null; + } + function nmcre_RenderItem$3() { + jl_Object.call(this); + this.$val$stack0 = null; } function nmcre_RenderItem$3_call($this) { var var$1, $ptr, $tmp; @@ -1031413,9 +1033486,8 @@ $rt_nativeThread().push($this, var$1, $ptr); } function nmcre_RenderItem$4() { - var a = this; jl_Object.call(a); - a.$val$stack1 = null; - a.$this$0131 = null; + jl_Object.call(this); + this.$val$stack1 = null; } function nmcre_RenderItem$4_call($this) { var var$1, var$2, $ptr, $tmp; @@ -1031440,9 +1033512,8 @@ $rt_nativeThread().push($this, var$1, var$2, $ptr); } function nmcre_RenderItem$5() { - var a = this; jl_Object.call(a); - a.$val$stack2 = null; - a.$this$0132 = null; + jl_Object.call(this); + this.$val$stack2 = null; } function nmcre_RenderItem$5_call($this) { var var$1, $ptr, $tmp; @@ -1031467,9 +1033538,8 @@ $rt_nativeThread().push($this, var$1, $ptr); } function nmcre_RenderItem$6() { - var a = this; jl_Object.call(a); - a.$val$stack3 = null; - a.$this$0133 = null; + jl_Object.call(this); + this.$val$stack3 = null; } function nmcre_RenderItem$6_call($this) { var var$1, var$2, $ptr, $tmp; @@ -1031501,13 +1033571,13 @@ a.$this$13 = null; } function ju_EnumMap$1$1_hasNext($this) { - return $this.$index15 >= $this.$this$13.$this$084.$data16.data.length ? 0 : 1; + return $this.$index15 >= $this.$this$13.$this$056.$data16.data.length ? 0 : 1; } function ju_EnumMap$1$1_find($this) { var var$1, var$2; while (true) { var$1 = $this.$index15; - var$2 = $this.$this$13.$this$084.$provided.data; + var$2 = $this.$this$13.$this$056.$provided.data; if (var$1 >= var$2.length) break; if (var$2[var$1]) @@ -1031523,7 +1033593,7 @@ jl_Throwable__init_0(var$2); $rt_throw(var$2); } - var$3 = $this.$this$13.$this$084; + var$3 = $this.$this$13.$this$056; var$3.$data16.data[var$1] = null; var$3.$provided.data[var$1] = 0; var$3.$size9 = var$3.$size9 - 1 | 0; @@ -1031533,7 +1033603,7 @@ var var$1, var$2, var$3; var$1 = $this.$index15; var$2 = $this.$this$13; - if (var$1 >= var$2.$this$084.$data16.data.length) { + if (var$1 >= var$2.$this$056.$data16.data.length) { var$2 = new ju_NoSuchElementException; jl_Throwable__init_0(var$2); $rt_throw(var$2); @@ -1031701,10 +1033771,7 @@ }} $rt_nativeThread().push($this, $iblockstate, $linkedhashmap, $s, $iproperty, var$5, $ptr); } - function nmw_WorldProviderHell$1() { - nmwb_WorldBorder.call(this); - this.$this$0195 = null; - } + var nmw_WorldProviderHell$1 = $rt_classWithoutFields(nmwb_WorldBorder); function nmw_WorldProviderHell$1_getCenterX($this) { return $this.$centerX0 / 8.0; } @@ -1032028,7 +1034095,7 @@ var$1 = $this.$cellSet0; if (var$1 === null) { var$1 = new cgcc_AbstractTable$CellSet; - var$1.$this$0205 = $this; + var$1.$this$0132 = $this; $this.$cellSet0 = var$1; } return var$1; @@ -1032232,56 +1034299,56 @@ } function jur_AbstractCharClass$LazyJavaLowerCase$1() { jur_AbstractCharClass.call(this); - this.$this$086 = null; + this.$this$058 = null; } function jur_AbstractCharClass$LazyJavaLowerCase$1_contains($this, $ch) { return jl_Character_isLowerCase($ch); } function jur_AbstractCharClass$LazyJavaUpperCase$1() { jur_AbstractCharClass.call(this); - this.$this$087 = null; + this.$this$059 = null; } function jur_AbstractCharClass$LazyJavaUpperCase$1_contains($this, $ch) { return jl_Character_isUpperCase($ch); } function jur_AbstractCharClass$LazyJavaWhitespace$1() { jur_AbstractCharClass.call(this); - this.$this$088 = null; + this.$this$060 = null; } function jur_AbstractCharClass$LazyJavaWhitespace$1_contains($this, $ch) { return jl_Character_isWhitespace($ch); } function jur_AbstractCharClass$LazyJavaMirrored$1() { jur_AbstractCharClass.call(this); - this.$this$089 = null; + this.$this$061 = null; } function jur_AbstractCharClass$LazyJavaMirrored$1_contains($this, $ch) { return 0; } function jur_AbstractCharClass$LazyJavaDefined$1() { jur_AbstractCharClass.call(this); - this.$this$090 = null; + this.$this$062 = null; } function jur_AbstractCharClass$LazyJavaDefined$1_contains($this, $ch) { return !jl_Character_getType($ch) ? 0 : 1; } function jur_AbstractCharClass$LazyJavaDigit$1() { jur_AbstractCharClass.call(this); - this.$this$091 = null; + this.$this$063 = null; } function jur_AbstractCharClass$LazyJavaDigit$1_contains($this, $ch) { return jl_Character_isDigit($ch); } function jur_AbstractCharClass$LazyJavaIdentifierIgnorable$1() { jur_AbstractCharClass.call(this); - this.$this$092 = null; + this.$this$064 = null; } function jur_AbstractCharClass$LazyJavaIdentifierIgnorable$1_contains($this, $ch) { return jl_Character_isIdentifierIgnorable($ch); } function jur_AbstractCharClass$LazyJavaISOControl$1() { jur_AbstractCharClass.call(this); - this.$this$093 = null; + this.$this$065 = null; } function jur_AbstractCharClass$LazyJavaISOControl$1_contains($this, $ch) { a: { @@ -1032301,7 +1034368,7 @@ } function jur_AbstractCharClass$LazyJavaJavaIdentifierPart$1() { jur_AbstractCharClass.call(this); - this.$this$094 = null; + this.$this$066 = null; } function jur_AbstractCharClass$LazyJavaJavaIdentifierPart$1_contains($this, $ch) { a: { @@ -1032347,7 +1034414,7 @@ } function jur_AbstractCharClass$LazyJavaJavaIdentifierStart$1() { jur_AbstractCharClass.call(this); - this.$this$095 = null; + this.$this$067 = null; } function jur_AbstractCharClass$LazyJavaJavaIdentifierStart$1_contains($this, $ch) { a: { @@ -1032393,7 +1034460,7 @@ } function jur_AbstractCharClass$LazyJavaLetter$1() { jur_AbstractCharClass.call(this); - this.$this$096 = null; + this.$this$068 = null; } function jur_AbstractCharClass$LazyJavaLetter$1_contains($this, $ch) { a: { @@ -1032414,28 +1034481,28 @@ } function jur_AbstractCharClass$LazyJavaLetterOrDigit$1() { jur_AbstractCharClass.call(this); - this.$this$097 = null; + this.$this$069 = null; } function jur_AbstractCharClass$LazyJavaLetterOrDigit$1_contains($this, $ch) { return jl_Character_isLetterOrDigit($ch); } function jur_AbstractCharClass$LazyJavaSpaceChar$1() { jur_AbstractCharClass.call(this); - this.$this$098 = null; + this.$this$070 = null; } function jur_AbstractCharClass$LazyJavaSpaceChar$1_contains($this, $ch) { return jl_Character_isSpaceChar($ch); } function jur_AbstractCharClass$LazyJavaTitleCase$1() { jur_AbstractCharClass.call(this); - this.$this$099 = null; + this.$this$071 = null; } function jur_AbstractCharClass$LazyJavaTitleCase$1_contains($this, $ch) { return jl_Character_getType($ch) != 3 ? 0 : 1; } function jur_AbstractCharClass$LazyJavaUnicodeIdentifierPart$1() { jur_AbstractCharClass.call(this); - this.$this$0100 = null; + this.$this$072 = null; } function jur_AbstractCharClass$LazyJavaUnicodeIdentifierPart$1_contains($this, $ch) { a: { @@ -1032478,7 +1034545,7 @@ } function jur_AbstractCharClass$LazyJavaUnicodeIdentifierStart$1() { jur_AbstractCharClass.call(this); - this.$this$0101 = null; + this.$this$073 = null; } function jur_AbstractCharClass$LazyJavaUnicodeIdentifierStart$1_contains($this, $ch) { a: { @@ -1032645,7 +1034712,7 @@ var$2.$applyVolumeButton = null; var$2.$noticeContinueButton = null; var$2.$noticeCancelButton = null; - var$2.$parent1 = $this; + var$2.$parent0 = $this; $this.$voiceMenu = var$2; return; default: $rt_invalidPointer(); @@ -1033556,7 +1035623,7 @@ $w = nmcg_FontRenderer_getStringWidth($this.$fontRendererObj0, $str); $hover = $i > 4 && $i < (8 + (($w * 3 | 0) / 4 | 0) | 0) && $j > (24 + $offset | 0) && $j < ((25 + $offset | 0) + 8 | 0) ? 1 : 0; var$4 = $this.$fontRendererObj0; - $ptr = 27; + $ptr = 28; continue main; case 19: try { @@ -1033610,7 +1035677,7 @@ break main; } $str = $this.$voiceMenu; - $ptr = 31; + $ptr = 33; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1033627,7 +1035694,7 @@ break main; } $str = $this.$voiceMenu; - $ptr = 31; + $ptr = 33; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1033643,22 +1035710,29 @@ break main; } var$15 = nmu_EnumChatFormatting_UNDERLINE; - var$16 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$16); $ptr = 24; case 24: - jl_AbstractStringBuilder_append(var$16, var$15); + $tmp = jl_String_valueOf(var$15); if ($rt_suspending()) { break main; } + var$15 = $tmp; + var$16 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$16); $ptr = 25; case 25: - jl_AbstractStringBuilder_append(var$16, $str); + jl_AbstractStringBuilder_append(var$16, var$15); if ($rt_suspending()) { break main; } $ptr = 26; case 26: + jl_AbstractStringBuilder_append(var$16, $str); + if ($rt_suspending()) { + break main; + } + $ptr = 27; + case 27: $tmp = jl_AbstractStringBuilder_toString(var$16); if ($rt_suspending()) { break main; @@ -1033667,30 +1035741,37 @@ $w = 0; var$9 = 0; $hover = !$hover ? 13421653 : 15658666; - $ptr = 32; + $ptr = 34; continue main; - case 27: + case 28: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } var$15 = nmu_EnumChatFormatting_UNDERLINE; + $ptr = 29; + case 29: + $tmp = jl_String_valueOf(var$15); + if ($rt_suspending()) { + break main; + } + var$15 = $tmp; var$16 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$16); - $ptr = 28; - case 28: + $ptr = 30; + case 30: jl_AbstractStringBuilder_append(var$16, var$15); if ($rt_suspending()) { break main; } - $ptr = 29; - case 29: + $ptr = 31; + case 31: jl_AbstractStringBuilder_append(var$16, $str); if ($rt_suspending()) { break main; } - $ptr = 30; - case 30: + $ptr = 32; + case 32: $tmp = jl_AbstractStringBuilder_toString(var$16); if ($rt_suspending()) { break main; @@ -1033699,9 +1035780,9 @@ $w = 0; var$9 = 0; $hover = !$hover ? 13421653 : 15658666; - $ptr = 43; + $ptr = 49; continue main; - case 31: + case 33: a: { try { nlevv_GuiVoiceMenu_drawScreen($str, $i, $j, $f); @@ -1033718,31 +1035799,45 @@ } } return; - case 32: + case 34: nmcg_Gui_drawString($this, var$4, $str, $w, var$9, $hover); if ($rt_suspending()) { break main; } - $ptr = 33; - case 33: + $ptr = 35; + case 35: nlevo_GlStateManager_popMatrix(); if ($rt_suspending()) { break main; } $str = $this.$fontRendererObj0; var$4 = nmu_EnumChatFormatting_GRAY; + $ptr = 36; + case 36: + $tmp = jl_String_valueOf(var$4); + if ($rt_suspending()) { + break main; + } + var$4 = $tmp; var$15 = $rt_s(7266); var$6 = $rt_createArray(jl_Object, 0); - $ptr = 34; - case 34: + $ptr = 37; + case 37: $tmp = nmcr_I18n_format(var$15, var$6); if ($rt_suspending()) { break main; } var$15 = $tmp; var$16 = nmu_EnumChatFormatting_RESET; - $ptr = 35; - case 35: + $ptr = 38; + case 38: + $tmp = jl_String_valueOf(var$16); + if ($rt_suspending()) { + break main; + } + var$16 = $tmp; + $ptr = 39; + case 39: $tmp = nlevsl_LANServerController_getCurrentURI(); if ($rt_suspending()) { break main; @@ -1033750,34 +1035845,34 @@ var$17 = $tmp; var$18 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$18); - $ptr = 36; - case 36: + $ptr = 40; + case 40: jl_AbstractStringBuilder_append(var$18, var$4); if ($rt_suspending()) { break main; } - $ptr = 37; - case 37: + $ptr = 41; + case 41: jl_AbstractStringBuilder_append(var$18, var$15); if ($rt_suspending()) { break main; } $w2 = 32; jl_AbstractStringBuilder_append0(var$18, $w2); - $ptr = 38; - case 38: + $ptr = 42; + case 42: jl_AbstractStringBuilder_append(var$18, var$16); if ($rt_suspending()) { break main; } - $ptr = 39; - case 39: + $ptr = 43; + case 43: jl_AbstractStringBuilder_append(var$18, var$17); if ($rt_suspending()) { break main; } - $ptr = 40; - case 40: + $ptr = 44; + case 44: $tmp = jl_AbstractStringBuilder_toString(var$18); if ($rt_suspending()) { break main; @@ -1033786,38 +1035881,52 @@ $w = 6; $hover = 25 + $offset | 0; var$9 = 16777215; - $ptr = 41; - case 41: + $ptr = 45; + case 45: nmcg_Gui_drawString($this, $str, var$4, $w, $hover, var$9); if ($rt_suspending()) { break main; } $str = $this.$fontRendererObj0; var$4 = nmu_EnumChatFormatting_GRAY; + $ptr = 46; + case 46: + $tmp = jl_String_valueOf(var$4); + if ($rt_suspending()) { + break main; + } + var$4 = $tmp; var$15 = $rt_s(7267); var$6 = $rt_createArray(jl_Object, 0); - $ptr = 42; - case 42: + $ptr = 47; + case 47: $tmp = nmcr_I18n_format(var$15, var$6); if ($rt_suspending()) { break main; } var$15 = $tmp; var$16 = nmu_EnumChatFormatting_RESET; + $ptr = 48; + case 48: + $tmp = jl_String_valueOf(var$16); + if ($rt_suspending()) { + break main; + } + var$16 = $tmp; var$18 = nlevsl_LANServerController_currentCode; if (var$18 === null) var$18 = $rt_s(448); var$17 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$17); - $ptr = 45; + $ptr = 51; continue main; - case 43: + case 49: nmcg_Gui_drawString($this, var$4, $str, $w, var$9, $hover); if ($rt_suspending()) { break main; } - $ptr = 44; - case 44: + $ptr = 50; + case 50: nlevo_GlStateManager_popMatrix(); if ($rt_suspending()) { break main; @@ -1033833,32 +1035942,32 @@ } } return; - case 45: + case 51: jl_AbstractStringBuilder_append(var$17, var$4); if ($rt_suspending()) { break main; } - $ptr = 46; - case 46: + $ptr = 52; + case 52: jl_AbstractStringBuilder_append(var$17, var$15); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append0(var$17, $w2); - $ptr = 47; - case 47: + $ptr = 53; + case 53: jl_AbstractStringBuilder_append(var$17, var$16); if ($rt_suspending()) { break main; } - $ptr = 48; - case 48: + $ptr = 54; + case 54: jl_AbstractStringBuilder_append(var$17, var$18); if ($rt_suspending()) { break main; } - $ptr = 49; - case 49: + $ptr = 55; + case 55: $tmp = jl_AbstractStringBuilder_toString(var$17); if ($rt_suspending()) { break main; @@ -1033867,8 +1035976,8 @@ $w = 6; $hover = 35 + $offset | 0; var$9 = 16777215; - $ptr = 50; - case 50: + $ptr = 56; + case 56: nmcg_Gui_drawString($this, $str, var$4, $w, $hover, var$9); if ($rt_suspending()) { break main; @@ -1036702,7 +1038811,7 @@ } function nmsm_ServerConfigurationManager$1() { jl_Object.call(this); - this.$this$015 = null; + this.$this$011 = null; } function nmsm_ServerConfigurationManager$1_onSizeChanged($this, $worldborder, $var2) { var var$3, var$4, var$5, $ptr, $tmp; @@ -1036713,7 +1038822,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$3 = $this.$this$015; + var$3 = $this.$this$011; var$4 = new nmnps_S44PacketWorldBorder; nmnps_S44PacketWorldBorder$Action_$callClinit(); var$5 = nmnps_S44PacketWorldBorder$Action_SET_SIZE; @@ -1036743,7 +1038852,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$5 = $this.$this$015; + var$5 = $this.$this$011; var$6 = new nmnps_S44PacketWorldBorder; nmnps_S44PacketWorldBorder$Action_$callClinit(); var$7 = nmnps_S44PacketWorldBorder$Action_LERP_SIZE; @@ -1036773,7 +1038882,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$4 = $this.$this$015; + var$4 = $this.$this$011; var$5 = new nmnps_S44PacketWorldBorder; nmnps_S44PacketWorldBorder$Action_$callClinit(); var$6 = nmnps_S44PacketWorldBorder$Action_SET_CENTER; @@ -1036803,7 +1038912,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$3 = $this.$this$015; + var$3 = $this.$this$011; var$4 = new nmnps_S44PacketWorldBorder; nmnps_S44PacketWorldBorder$Action_$callClinit(); var$5 = nmnps_S44PacketWorldBorder$Action_SET_WARNING_TIME; @@ -1036833,7 +1038942,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$3 = $this.$this$015; + var$3 = $this.$this$011; var$4 = new nmnps_S44PacketWorldBorder; nmnps_S44PacketWorldBorder$Action_$callClinit(); var$5 = nmnps_S44PacketWorldBorder$Action_SET_WARNING_BLOCKS; @@ -1041491,10 +1043600,7 @@ nmu_EntitySelectors_selectInventories = new nmu_EntitySelectors$3; nmu_EntitySelectors_NOT_SPECTATING = new nmu_EntitySelectors$4; } - function nmcr_EntityRenderer$1() { - jl_Object.call(this); - this.$this$0134 = null; - } + var nmcr_EntityRenderer$1 = $rt_classWithoutFields(); function nmcr_EntityRenderer$1_apply($this, var$1) { var var$2, $ptr, $tmp; $ptr = 0; @@ -1041698,7 +1043804,7 @@ var$8 = $gamesettings$options.$listEntries.data; var$7 = var$3 + 1 | 0; var$17 = new nmcg_GuiKeyBindingList$CategoryEntry; - var$17.$this$0206 = $gamesettings$options; + var$17.$this$0133 = $gamesettings$options; var$9 = $rt_createArray(jl_Object, 0); $ptr = 12; case 12: @@ -1041726,7 +1043832,7 @@ var$9 = $gamesettings$options.$listEntries.data; var$3 = var$7 + 1 | 0; var$16 = new nmcg_GuiKeyBindingList$KeyEntry; - var$16.$this$0207 = $gamesettings$options; + var$16.$this$0134 = $gamesettings$options; var$16.$keybinding = var$12; var$11 = var$12.$keyDescription; var$8 = $rt_createArray(jl_Object, 0); @@ -1043443,11 +1045549,11 @@ $rt_nativeThread().push(var$1, $ptr); } function nPs_CustomSky_readCustomSkies() { - var $acustomskylayer, $s, $i, $j, $i1, $acustomskylayer1, $acustomskylayer2, $itextureobject, var$9, $list, $k, $l, $resourcelocation1, $resourcelocation, $ioexception, $inputstream, $properties, $s3, $customskylayer, $$je, $ptr, $tmp; + var $acustomskylayer, $s, $i, $j, $i1, $acustomskylayer1, $acustomskylayer2, $resourcelocation1, var$9, $list, $k, $l, $resourcelocation, $ioexception, $inputstream, $properties, $customskylayer, $itextureobject, $s3, $$je, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$customskylayer = $thread.pop();$s3 = $thread.pop();$properties = $thread.pop();$inputstream = $thread.pop();$ioexception = $thread.pop();$resourcelocation = $thread.pop();$resourcelocation1 = $thread.pop();$l = $thread.pop();$k = $thread.pop();$list = $thread.pop();var$9 = $thread.pop();$itextureobject = $thread.pop();$acustomskylayer2 = $thread.pop();$acustomskylayer1 = $thread.pop();$i1 = $thread.pop();$j = $thread.pop();$i = $thread.pop();$s = $thread.pop();$acustomskylayer + $ptr = $thread.pop();$s3 = $thread.pop();$itextureobject = $thread.pop();$customskylayer = $thread.pop();$properties = $thread.pop();$inputstream = $thread.pop();$ioexception = $thread.pop();$resourcelocation = $thread.pop();$l = $thread.pop();$k = $thread.pop();$list = $thread.pop();var$9 = $thread.pop();$resourcelocation1 = $thread.pop();$acustomskylayer2 = $thread.pop();$acustomskylayer1 = $thread.pop();$i1 = $thread.pop();$j = $thread.pop();$i = $thread.pop();$s = $thread.pop();$acustomskylayer = $thread.pop(); } main: while (true) { switch ($ptr) { @@ -1043470,25 +1045576,25 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; case 1: - jl_AbstractStringBuilder_append($itextureobject, $s); + jl_AbstractStringBuilder_append($resourcelocation1, $s); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append1($itextureobject, $j); + jl_AbstractStringBuilder_append1($resourcelocation1, $j); var$9 = $rt_s(7316); $ptr = 2; case 2: - jl_AbstractStringBuilder_append($itextureobject, var$9); + jl_AbstractStringBuilder_append($resourcelocation1, var$9); if ($rt_suspending()) { break main; } $ptr = 3; case 3: - $tmp = jl_AbstractStringBuilder_toString($itextureobject); + $tmp = jl_AbstractStringBuilder_toString($resourcelocation1); if ($rt_suspending()) { break main; } @@ -1043496,14 +1045602,14 @@ $list = ju_ArrayList__init_0(); $k = 1; if ($k < 1000) { - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 4; continue main; } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1043521,30 +1045627,30 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 4: - jl_AbstractStringBuilder_append($itextureobject, var$9); + jl_AbstractStringBuilder_append($resourcelocation1, var$9); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append1($itextureobject, $k); - $resourcelocation1 = $rt_s(5216); + jl_AbstractStringBuilder_append1($resourcelocation1, $k); + $resourcelocation = $rt_s(5216); $ptr = 5; case 5: - jl_AbstractStringBuilder_append($itextureobject, $resourcelocation1); + jl_AbstractStringBuilder_append($resourcelocation1, $resourcelocation); if ($rt_suspending()) { break main; } $ptr = 6; case 6: - $tmp = jl_AbstractStringBuilder_toString($itextureobject); + $tmp = jl_AbstractStringBuilder_toString($resourcelocation1); if ($rt_suspending()) { break main; } - $itextureobject = $tmp; + $resourcelocation1 = $tmp; a: { try { $resourcelocation = new nmu_ResourceLocation; @@ -1043565,7 +1045671,7 @@ } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1043583,17 +1045689,17 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 7: - $tmp = ju_AbstractCollection_toArray($list, $acustomskylayer1); + $tmp = ju_AbstractCollection_toArray($list, $acustomskylayer2); if ($rt_suspending()) { break main; } - $acustomskylayer1 = $tmp; - $acustomskylayer[$j] = $acustomskylayer1; + $acustomskylayer2 = $tmp; + $acustomskylayer[$j] = $acustomskylayer2; $i = $j; $j = $j + 1 | 0; if ($j >= $i1) { @@ -1043609,14 +1045715,14 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 8: a: { try { - nmu_ResourceLocation__init_($resourcelocation, $itextureobject); + nmu_ResourceLocation__init_($resourcelocation, $resourcelocation1); if ($rt_suspending()) { break main; } @@ -1043637,7 +1045743,7 @@ } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1043655,8 +1045761,8 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 9: @@ -1043686,7 +1045792,7 @@ } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1043704,8 +1045810,8 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 10: @@ -1043715,14 +1045821,14 @@ } $k = $k + 1 | 0; if ($k < 1000) { - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 4; continue main; } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1043740,8 +1045846,8 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 11: @@ -1043768,7 +1045874,7 @@ } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1043786,8 +1045892,8 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 12: @@ -1043797,8 +1045903,8 @@ if ($rt_suspending()) { break main; } - $resourcelocation1 = jl_StringBuilder__init_(); - $ioexception = $rt_s(7317); + $resourcelocation = jl_StringBuilder__init_(); + $customskylayer = $rt_s(7317); $ptr = 13; continue main; } catch ($$e) { @@ -1043816,7 +1045922,7 @@ } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1043834,18 +1045940,18 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 13: a: { try { - $tmp = jl_StringBuilder_append($resourcelocation1, $ioexception); + $tmp = jl_StringBuilder_append($resourcelocation, $customskylayer); if ($rt_suspending()) { break main; } - $ioexception = $tmp; + $customskylayer = $tmp; $ptr = 14; continue main; } catch ($$e) { @@ -1043863,7 +1045969,7 @@ } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1043881,14 +1045987,14 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 14: a: { try { - jl_StringBuilder_append($ioexception, $itextureobject); + jl_StringBuilder_append($customskylayer, $resourcelocation1); if ($rt_suspending()) { break main; } @@ -1043909,7 +1046015,7 @@ } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1043927,18 +1046033,18 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 15: a: { try { - $tmp = jl_StringBuilder_toString($resourcelocation1); + $tmp = jl_StringBuilder_toString($resourcelocation); if ($rt_suspending()) { break main; } - $resourcelocation1 = $tmp; + $resourcelocation = $tmp; $ptr = 16; continue main; } catch ($$e) { @@ -1043956,7 +1046062,7 @@ } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1043974,18 +1046080,18 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 16: a: { try { - nPs_Config_dbg($resourcelocation1); + nPs_Config_dbg($resourcelocation); if ($rt_suspending()) { break main; } - $resourcelocation1 = jl_StringBuilder__init_(); + $resourcelocation = jl_StringBuilder__init_(); $ptr = 17; continue main; } catch ($$e) { @@ -1044003,7 +1046109,7 @@ } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1044021,20 +1046127,20 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 17: a: { try { - $tmp = jl_StringBuilder_append($resourcelocation1, var$9); + $tmp = jl_StringBuilder_append($resourcelocation, var$9); if ($rt_suspending()) { break main; } - $ioexception = $tmp; - $ioexception = jl_StringBuilder_append1($ioexception, $k); - $s3 = $rt_s(536); + $customskylayer = $tmp; + $customskylayer = jl_StringBuilder_append1($customskylayer, $k); + $itextureobject = $rt_s(536); $ptr = 18; continue main; } catch ($$e) { @@ -1044052,7 +1046158,7 @@ } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1044070,14 +1046176,14 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 18: a: { try { - jl_StringBuilder_append($ioexception, $s3); + jl_StringBuilder_append($customskylayer, $itextureobject); if ($rt_suspending()) { break main; } @@ -1044098,7 +1046204,7 @@ } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1044116,14 +1046222,14 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 19: a: { try { - $tmp = jl_StringBuilder_toString($resourcelocation1); + $tmp = jl_StringBuilder_toString($resourcelocation); if ($rt_suspending()) { break main; } @@ -1044146,7 +1046252,7 @@ } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1044164,8 +1046270,8 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 20: @@ -1044192,7 +1046298,7 @@ } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1044210,8 +1046316,8 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 21: @@ -1044219,7 +1046325,7 @@ b: { c: { try { - $tmp = nPs_CustomSkyLayer_isValid($customskylayer, $itextureobject); + $tmp = nPs_CustomSkyLayer_isValid($customskylayer, $resourcelocation1); if ($rt_suspending()) { break main; } @@ -1044227,7 +1046333,7 @@ if (!$l) break b; $resourcelocation1 = new nmu_ResourceLocation; - $itextureobject = $customskylayer.$source2; + $resourcelocation = $customskylayer.$source2; $ptr = 22; continue main; } catch ($$e) { @@ -1044247,15 +1046353,15 @@ } $k = $k + 1 | 0; if ($k < 1000) { - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 4; continue main; } } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1044273,14 +1046379,14 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 22: a: { try { - nmu_ResourceLocation__init_($resourcelocation1, $itextureobject); + nmu_ResourceLocation__init_($resourcelocation1, $resourcelocation); if ($rt_suspending()) { break main; } @@ -1044301,7 +1046407,7 @@ } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1044319,8 +1046425,8 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 23: @@ -1044335,8 +1046441,6 @@ $ptr = 24; continue main; } - $ioexception = jl_StringBuilder__init_(); - $itextureobject = $rt_s(7318); $ptr = 27; continue main; } catch ($$e) { @@ -1044354,7 +1046458,7 @@ } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1044372,8 +1046476,8 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 24: @@ -1044402,7 +1046506,7 @@ } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1044420,8 +1046524,8 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 25: @@ -1044448,7 +1046552,7 @@ } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1044466,8 +1046570,8 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 26: @@ -1044497,15 +1046601,15 @@ } $k = $k + 1 | 0; if ($k < 1000) { - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 4; continue main; } } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1044523,18 +1046627,20 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 27: a: { try { - $tmp = jl_StringBuilder_append($ioexception, $itextureobject); + $tmp = jl_String_valueOf($resourcelocation1); if ($rt_suspending()) { break main; } - $itextureobject = $tmp; + $resourcelocation = $tmp; + $inputstream = jl_StringBuilder__init_(); + $resourcelocation1 = $rt_s(7318); $ptr = 28; continue main; } catch ($$e) { @@ -1044552,7 +1046658,7 @@ } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1044570,17 +1046676,18 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 28: a: { try { - jl_StringBuilder_append($itextureobject, $resourcelocation1); + $tmp = jl_StringBuilder_append($inputstream, $resourcelocation1); if ($rt_suspending()) { break main; } + $resourcelocation1 = $tmp; $ptr = 29; continue main; } catch ($$e) { @@ -1044598,7 +1046705,7 @@ } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1044616,18 +1046723,17 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 29: a: { try { - $tmp = jl_StringBuilder_toString($ioexception); + jl_StringBuilder_append($resourcelocation1, $resourcelocation); if ($rt_suspending()) { break main; } - $itextureobject = $tmp; $ptr = 30; continue main; } catch ($$e) { @@ -1044645,7 +1046751,7 @@ } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1044663,16 +1046769,63 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; case 30: + a: { + try { + $tmp = jl_StringBuilder_toString($inputstream); + if ($rt_suspending()) { + break main; + } + $resourcelocation1 = $tmp; + $ptr = 31; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof ji_FileNotFoundException) { + break a; + } else if ($$je instanceof ji_IOException) { + $ioexception = $$je; + } else { + throw $$e; + } + } + $ptr = 10; + continue main; + } + $l = $list.$size; + if ($l > 0) { + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); + $ptr = 7; + continue main; + } + $j = $j + 1 | 0; + if ($j >= $i1) { + if ($i < 0) + return null; + $acustomskylayer1 = $rt_createMultiArray(nPs_CustomSkyLayer, [0, $i + 1 | 0]); + $acustomskylayer2 = $acustomskylayer1.data; + $i1 = 0; + $i = $acustomskylayer2.length; + while ($i1 < $i) { + $acustomskylayer2[$i1] = $acustomskylayer[$i1]; + $i1 = $i1 + 1 | 0; + } + return $acustomskylayer1; + } + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); + $ptr = 1; + continue main; + case 31: a: { b: { c: { try { - nPs_Config_log($itextureobject); + nPs_Config_log($resourcelocation1); if ($rt_suspending()) { break main; } @@ -1044694,15 +1046847,15 @@ } $k = $k + 1 | 0; if ($k < 1000) { - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 4; continue main; } } $l = $list.$size; if ($l > 0) { - $acustomskylayer1 = $rt_createArray(nPs_CustomSkyLayer, $l); + $acustomskylayer2 = $rt_createArray(nPs_CustomSkyLayer, $l); $ptr = 7; continue main; } @@ -1044720,13 +1046873,13 @@ } return $acustomskylayer1; } - $itextureobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($itextureobject); + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); $ptr = 1; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($acustomskylayer, $s, $i, $j, $i1, $acustomskylayer1, $acustomskylayer2, $itextureobject, var$9, $list, $k, $l, $resourcelocation1, $resourcelocation, $ioexception, $inputstream, $properties, $s3, $customskylayer, $ptr); + $rt_nativeThread().push($acustomskylayer, $s, $i, $j, $i1, $acustomskylayer1, $acustomskylayer2, $resourcelocation1, var$9, $list, $k, $l, $resourcelocation, $ioexception, $inputstream, $properties, $customskylayer, $itextureobject, $s3, $ptr); } function nPs_CustomSky_renderSky($p_renderSky_0_, $p_renderSky_1_, $p_renderSky_2_, $p_renderSky_3_) { var $i, $acustomskylayer, $k, $l, var$9, var$10, $customskylayer, $j, var$13, var$14, var$15, $ptr, $tmp; @@ -1045201,7 +1047354,7 @@ $this.$messageLine10 = $parString1; $this.$messageLine20 = $parString2; $this.$parentButtonClickedId = $parInt1; - $parGuiYesNoCallback = $rt_s(5636); + $parGuiYesNoCallback = $rt_s(5635); var$5 = $rt_createArray(jl_Object, 0); $ptr = 2; case 2: @@ -1045211,7 +1047364,7 @@ } $parGuiYesNoCallback = $tmp; $this.$confirmButtonText1 = $parGuiYesNoCallback; - $parGuiYesNoCallback = $rt_s(5637); + $parGuiYesNoCallback = $rt_s(5636); var$5 = $rt_createArray(jl_Object, 0); $ptr = 3; case 3: @@ -1054681,7 +1056834,6 @@ } var$6 = $tmp; var$9 = var$6; - $guicontainercreative$creativeslot.$this$0208 = $this; nmi_Slot__init_0($guicontainercreative$creativeslot, var$9.$inventory0, $j, 0, 0); $guicontainercreative$creativeslot.$slot0 = var$9; var$6 = $guicontainercreative$containercreative.$inventorySlots; @@ -1055122,14 +1057274,14 @@ } $k = 0; if ($k >= $list.$size) { - $ptr = 17; + $ptr = 19; continue main; } if ($k) { - $ptr = 18; + $ptr = 20; continue main; } - $ptr = 23; + $ptr = 26; continue main; case 5: $tmp = nme_EnchantmentHelper_getEnchantments($itemstack); @@ -1055138,7 +1057290,7 @@ } $map = $tmp; if ($map.$elementCount == 1) { - $ptr = 13; + $ptr = 15; continue main; } $creativetabs1 = $creativetabs; @@ -1055149,14 +1057301,14 @@ } $k = 0; if ($k >= $list.$size) { - $ptr = 17; + $ptr = 19; continue main; } if ($k) { - $ptr = 18; + $ptr = 20; continue main; } - $ptr = 23; + $ptr = 26; continue main; case 6: nmu_EnumChatFormatting_$callClinit(); @@ -1055164,17 +1057316,31 @@ break main; } $creativetabs = nmu_EnumChatFormatting_BOLD; - $map = nmu_EnumChatFormatting_BLUE; $ptr = 7; case 7: + $tmp = jl_String_valueOf($creativetabs); + if ($rt_suspending()) { + break main; + } + $creativetabs = $tmp; + $map = nmu_EnumChatFormatting_BLUE; + $ptr = 8; + case 8: + $tmp = jl_String_valueOf($map); + if ($rt_suspending()) { + break main; + } + $map = $tmp; + $ptr = 9; + case 9: $tmp = nmc_CreativeTabs_getTranslatedTabLabel($creativetabs1); if ($rt_suspending()) { break main; } $creativetabs1 = $tmp; var$10 = $rt_createArray(jl_Object, 0); - $ptr = 8; - case 8: + $ptr = 10; + case 10: $tmp = nmcr_I18n_format($creativetabs1, var$10); if ($rt_suspending()) { break main; @@ -1055182,26 +1057348,26 @@ $creativetabs1 = $tmp; $enchantment = new jl_StringBuilder; jl_AbstractStringBuilder__init_($enchantment); - $ptr = 9; - case 9: - jl_AbstractStringBuilder_append($enchantment, $creativetabs); - if ($rt_suspending()) { - break main; - } - $ptr = 10; - case 10: - jl_AbstractStringBuilder_append($enchantment, $map); - if ($rt_suspending()) { - break main; - } $ptr = 11; case 11: - jl_AbstractStringBuilder_append($enchantment, $creativetabs1); + jl_AbstractStringBuilder_append($enchantment, $creativetabs); if ($rt_suspending()) { break main; } $ptr = 12; case 12: + jl_AbstractStringBuilder_append($enchantment, $map); + if ($rt_suspending()) { + break main; + } + $ptr = 13; + case 13: + jl_AbstractStringBuilder_append($enchantment, $creativetabs1); + if ($rt_suspending()) { + break main; + } + $ptr = 14; + case 14: $tmp = jl_AbstractStringBuilder_toString($enchantment); if ($rt_suspending()) { break main; @@ -1055210,38 +1057376,38 @@ ju_ArrayList_add0($list, $m, $creativetabs); $k = 0; if ($k >= $list.$size) { - $ptr = 17; + $ptr = 19; continue main; } if ($k) { - $ptr = 18; + $ptr = 20; continue main; } - $ptr = 23; + $ptr = 26; continue main; - case 13: + case 15: $tmp = ju_LinkedHashMap_keySet($map); if ($rt_suspending()) { break main; } $map = $tmp; - $ptr = 14; - case 14: + $ptr = 16; + case 16: $tmp = ju_LinkedHashMapKeySet_iterator($map); if ($rt_suspending()) { break main; } $map = $tmp; - $ptr = 15; - case 15: + $ptr = 17; + case 17: $tmp = ju_LinkedHashMapIterator$KeyIterator_next($map); if ($rt_suspending()) { break main; } $map = $tmp; $k = $map.$value; - $ptr = 16; - case 16: + $ptr = 18; + case 18: $tmp = nme_Enchantment_getEnchantmentById($k); if ($rt_suspending()) { break main; @@ -1055268,29 +1057434,36 @@ } $k = 0; if ($k >= $list.$size) { - $ptr = 17; + $ptr = 19; continue main; } if ($k) { - $ptr = 18; + $ptr = 20; continue main; } - $ptr = 23; + $ptr = 26; continue main; - case 17: + case 19: nmcg_GuiScreen_drawHoveringText($this, $list, $i, $j); if ($rt_suspending()) { break main; } return; - case 18: + case 20: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } $creativetabs = nmu_EnumChatFormatting_GRAY; - $ptr = 19; - case 19: + $ptr = 21; + case 21: + $tmp = jl_String_valueOf($creativetabs); + if ($rt_suspending()) { + break main; + } + $creativetabs = $tmp; + $ptr = 22; + case 22: $tmp = ju_ArrayList_get($list, $k); if ($rt_suspending()) { break main; @@ -1055299,20 +1057472,20 @@ $map = $map; $creativetabs1 = new jl_StringBuilder; jl_AbstractStringBuilder__init_($creativetabs1); - $ptr = 20; - case 20: + $ptr = 23; + case 23: jl_AbstractStringBuilder_append($creativetabs1, $creativetabs); if ($rt_suspending()) { break main; } - $ptr = 21; - case 21: + $ptr = 24; + case 24: jl_AbstractStringBuilder_append($creativetabs1, $map); if ($rt_suspending()) { break main; } - $ptr = 22; - case 22: + $ptr = 25; + case 25: $tmp = jl_AbstractStringBuilder_toString($creativetabs1); if ($rt_suspending()) { break main; @@ -1055321,23 +1057494,30 @@ ju_ArrayList_set($list, $k, $creativetabs); $k = $k + 1 | 0; if ($k >= $list.$size) { - $ptr = 17; + $ptr = 19; continue main; } if ($k) { - $ptr = 18; + $ptr = 20; continue main; } - $ptr = 23; - case 23: + $ptr = 26; + case 26: $tmp = nmi_ItemStack_getRarity($itemstack); if ($rt_suspending()) { break main; } $creativetabs = $tmp; $creativetabs = $creativetabs.$rarityColor; - $ptr = 24; - case 24: + $ptr = 27; + case 27: + $tmp = jl_String_valueOf($creativetabs); + if ($rt_suspending()) { + break main; + } + $creativetabs = $tmp; + $ptr = 28; + case 28: $tmp = ju_ArrayList_get($list, $k); if ($rt_suspending()) { break main; @@ -1055346,20 +1057526,20 @@ $map = $map; $creativetabs1 = new jl_StringBuilder; jl_AbstractStringBuilder__init_($creativetabs1); - $ptr = 25; - case 25: + $ptr = 29; + case 29: jl_AbstractStringBuilder_append($creativetabs1, $creativetabs); if ($rt_suspending()) { break main; } - $ptr = 26; - case 26: + $ptr = 30; + case 30: jl_AbstractStringBuilder_append($creativetabs1, $map); if ($rt_suspending()) { break main; } - $ptr = 27; - case 27: + $ptr = 31; + case 31: $tmp = jl_AbstractStringBuilder_toString($creativetabs1); if ($rt_suspending()) { break main; @@ -1055368,14 +1057548,14 @@ ju_ArrayList_set($list, $k, $creativetabs); $k = $k + 1 | 0; if ($k >= $list.$size) { - $ptr = 17; + $ptr = 19; continue main; } if ($k) { - $ptr = 18; + $ptr = 20; continue main; } - $ptr = 23; + $ptr = 26; continue main; default: $rt_invalidPointer(); }} @@ -1059226,7 +1061406,7 @@ var$5 = var$5; if (var$5 === null) { $parModelResourceLocation = new nmcrbm_ModelBlockDefinition$MissingVariantException; - $parModelResourceLocation.$this$0209 = $parModelBlockDefinition; + $parModelResourceLocation.$this$0135 = $parModelBlockDefinition; jl_Throwable__init_0($parModelResourceLocation); $rt_throw($parModelResourceLocation); } @@ -1059242,49 +1061422,49 @@ $rt_nativeThread().push($this, $parModelBlockDefinition, $parModelResourceLocation, var$3, var$4, var$5, $ptr); } function nmcrm_ModelBakery_getModelBlockDefinition($this, $parResourceLocation) { - var $resourcelocation, $arraylist, $modelblockdefinition, $exception, $iresource, $ioexception, var$8, var$9, $inputstream, var$11, $modelblockdefinition1, $$je, $ptr, $tmp; + var $resourcelocation, $iresource, $ioexception, $modelblockdefinition, $arraylist, var$7, var$8, $inputstream, var$10, $exception, $modelblockdefinition1, var$13, $$je, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$modelblockdefinition1 = $thread.pop();var$11 = $thread.pop();$inputstream = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();$ioexception = $thread.pop();$iresource = $thread.pop();$exception = $thread.pop();$modelblockdefinition = $thread.pop();$arraylist = $thread.pop();$resourcelocation = $thread.pop();$parResourceLocation = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$13 = $thread.pop();$modelblockdefinition1 = $thread.pop();$exception = $thread.pop();var$10 = $thread.pop();$inputstream = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();$arraylist = $thread.pop();$modelblockdefinition = $thread.pop();$ioexception = $thread.pop();$iresource = $thread.pop();$resourcelocation = $thread.pop();$parResourceLocation = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: $resourcelocation = new nmu_ResourceLocation; - $arraylist = $parResourceLocation.$resourceDomain; - $modelblockdefinition = $parResourceLocation.$resourcePath; - $exception = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($exception); - $iresource = $rt_s(7424); + $iresource = $parResourceLocation.$resourceDomain; + $ioexception = $parResourceLocation.$resourcePath; + $modelblockdefinition = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($modelblockdefinition); + $arraylist = $rt_s(7424); $ptr = 1; case 1: - jl_AbstractStringBuilder_append($exception, $iresource); + jl_AbstractStringBuilder_append($modelblockdefinition, $arraylist); if ($rt_suspending()) { break main; } $ptr = 2; case 2: - jl_AbstractStringBuilder_append($exception, $modelblockdefinition); + jl_AbstractStringBuilder_append($modelblockdefinition, $ioexception); if ($rt_suspending()) { break main; } - $modelblockdefinition = $rt_s(4470); + $arraylist = $rt_s(4470); $ptr = 3; case 3: - jl_AbstractStringBuilder_append($exception, $modelblockdefinition); + jl_AbstractStringBuilder_append($modelblockdefinition, $arraylist); if ($rt_suspending()) { break main; } $ptr = 4; case 4: - $tmp = jl_AbstractStringBuilder_toString($exception); + $tmp = jl_AbstractStringBuilder_toString($modelblockdefinition); if ($rt_suspending()) { break main; } $modelblockdefinition = $tmp; $ptr = 5; case 5: - nmu_ResourceLocation__init_4($resourcelocation, $arraylist, $modelblockdefinition); + nmu_ResourceLocation__init_4($resourcelocation, $iresource, $modelblockdefinition); if ($rt_suspending()) { break main; } @@ -1059341,7 +1061521,7 @@ if ($rt_suspending()) { break main; } - $exception = $tmp; + $ioexception = $tmp; $ptr = 13; continue main; } catch ($$e) { @@ -1059362,10 +1061542,10 @@ $modelblockdefinition = $tmp; $arraylist = new jl_StringBuilder; jl_AbstractStringBuilder__init_($arraylist); - $exception = $rt_s(7425); + $iresource = $rt_s(7425); $ptr = 10; case 10: - jl_AbstractStringBuilder_append($arraylist, $exception); + jl_AbstractStringBuilder_append($arraylist, $iresource); if ($rt_suspending()) { break main; } @@ -1059387,12 +1061567,12 @@ case 13: a: { try { - $tmp = ju_AbstractList$1_hasNext($exception); + $tmp = ju_AbstractList$1_hasNext($ioexception); if ($rt_suspending()) { break main; } - var$8 = $tmp; - if (!var$8) + var$7 = $tmp; + if (!var$7) break a; $ptr = 14; continue main; @@ -1059410,9 +1061590,9 @@ } $modelblockdefinition = new nmcrbm_ModelBlockDefinition; $modelblockdefinition.$mapVariants = cgcc_Maps_newHashMap(); - var$8 = 0; - var$9 = $arraylist.$size; - if (var$8 < var$9) { + var$7 = 0; + var$8 = $arraylist.$size; + if (var$7 < var$8) { $parResourceLocation = $modelblockdefinition.$mapVariants; $ptr = 20; continue main; @@ -1059422,7 +1061602,7 @@ continue main; case 14: try { - $tmp = ju_AbstractList$1_next($exception); + $tmp = ju_AbstractList$1_next($ioexception); if ($rt_suspending()) { break main; } @@ -1059431,10 +1061611,10 @@ $inputstream = null; try { try { - $ioexception = $inputstream; - var$11 = nmcr_SimpleResource_getInputStream($iresource); - $inputstream = var$11; - $ioexception = var$11; + var$10 = $inputstream; + $exception = nmcr_SimpleResource_getInputStream($iresource); + $inputstream = $exception; + var$10 = $exception; $modelblockdefinition1 = new ji_InputStreamReader; $ptr = 15; continue main; @@ -1059446,12 +1061626,8 @@ throw $$e; } } - $inputstream = $ioexception; - $modelblockdefinition = new jl_RuntimeException; - $arraylist = nmcr_SimpleResource_getResourceLocation($iresource); - $iresource = nmcr_SimpleResource_getResourcePackName($iresource); - $modelblockdefinition1 = jl_StringBuilder__init_(); - var$11 = $rt_s(7426); + $inputstream = var$10; + $modelblockdefinition1 = new jl_RuntimeException; $ptr = 22; continue main; } catch ($$e) { @@ -1059459,7 +1061635,7 @@ $parResourceLocation = $$je; } - $ptr = 30; + $ptr = 32; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1059491,12 +1061667,8 @@ throw $$e; } } - $inputstream = $ioexception; - $modelblockdefinition = new jl_RuntimeException; - $arraylist = nmcr_SimpleResource_getResourceLocation($iresource); - $iresource = nmcr_SimpleResource_getResourcePackName($iresource); - $modelblockdefinition1 = jl_StringBuilder__init_(); - var$11 = $rt_s(7426); + $inputstream = var$10; + $modelblockdefinition1 = new jl_RuntimeException; $ptr = 22; continue main; } catch ($$e) { @@ -1059504,7 +1061676,7 @@ $parResourceLocation = $$je; } - $ptr = 30; + $ptr = 32; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1059521,7 +1061693,7 @@ try { try { try { - ji_InputStreamReader__init_($modelblockdefinition1, var$11, $modelblockdefinition); + ji_InputStreamReader__init_($modelblockdefinition1, $exception, $modelblockdefinition); if ($rt_suspending()) { break main; } @@ -1059535,12 +1061707,8 @@ throw $$e; } } - $inputstream = $ioexception; - $modelblockdefinition = new jl_RuntimeException; - $arraylist = nmcr_SimpleResource_getResourceLocation($iresource); - $iresource = nmcr_SimpleResource_getResourcePackName($iresource); - $modelblockdefinition1 = jl_StringBuilder__init_(); - var$11 = $rt_s(7426); + $inputstream = var$10; + $modelblockdefinition1 = new jl_RuntimeException; $ptr = 22; continue main; } catch ($$e) { @@ -1059548,7 +1061716,7 @@ $parResourceLocation = $$je; } - $ptr = 30; + $ptr = 32; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1059580,12 +1061748,8 @@ throw $$e; } } - $inputstream = $ioexception; - $modelblockdefinition = new jl_RuntimeException; - $arraylist = nmcr_SimpleResource_getResourceLocation($iresource); - $iresource = nmcr_SimpleResource_getResourcePackName($iresource); - $modelblockdefinition1 = jl_StringBuilder__init_(); - var$11 = $rt_s(7426); + $inputstream = var$10; + $modelblockdefinition1 = new jl_RuntimeException; $ptr = 22; continue main; } catch ($$e) { @@ -1059593,7 +1061757,7 @@ $parResourceLocation = $$je; } - $ptr = 30; + $ptr = 32; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1059625,16 +1061789,12 @@ break b; } } - $ptr = 29; + $ptr = 31; continue main; } try { - $inputstream = $ioexception; - $modelblockdefinition = new jl_RuntimeException; - $arraylist = nmcr_SimpleResource_getResourceLocation($iresource); - $iresource = nmcr_SimpleResource_getResourcePackName($iresource); - $modelblockdefinition1 = jl_StringBuilder__init_(); - var$11 = $rt_s(7426); + $inputstream = var$10; + $modelblockdefinition1 = new jl_RuntimeException; $ptr = 22; continue main; } catch ($$e) { @@ -1059643,7 +1061803,7 @@ } } - $ptr = 30; + $ptr = 32; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1059663,20 +1061823,20 @@ } return $modelblockdefinition; case 20: - $tmp = ju_ArrayList_get($arraylist, var$8); + $tmp = ju_ArrayList_get($arraylist, var$7); if ($rt_suspending()) { break main; } - $exception = $tmp; - $exception = $exception.$mapVariants; + $ioexception = $tmp; + $ioexception = $ioexception.$mapVariants; $ptr = 21; case 21: - ju_HashMap_putAll($parResourceLocation, $exception); + ju_HashMap_putAll($parResourceLocation, $ioexception); if ($rt_suspending()) { break main; } - var$8 = var$8 + 1 | 0; - if (var$8 < var$9) { + var$7 = var$7 + 1 | 0; + if (var$7 < var$8) { $parResourceLocation = $modelblockdefinition.$mapVariants; $ptr = 20; continue main; @@ -1059687,11 +1061847,12 @@ case 22: try { try { - $tmp = jl_StringBuilder_append($modelblockdefinition1, var$11); + $tmp = jl_String_valueOf($parResourceLocation); if ($rt_suspending()) { break main; } - var$11 = $tmp; + var$13 = $tmp; + $parResourceLocation = nmcr_SimpleResource_getResourceLocation($iresource); $ptr = 23; continue main; } catch ($$e) { @@ -1059699,7 +1061860,7 @@ $parResourceLocation = $$je; } - $ptr = 30; + $ptr = 32; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1059715,12 +1061876,14 @@ case 23: try { try { - $tmp = jl_StringBuilder_append(var$11, $parResourceLocation); + $tmp = jl_String_valueOf($parResourceLocation); if ($rt_suspending()) { break main; } $parResourceLocation = $tmp; - var$11 = $rt_s(7427); + $modelblockdefinition = nmcr_SimpleResource_getResourcePackName($iresource); + $arraylist = jl_StringBuilder__init_(); + $ioexception = $rt_s(7426); $ptr = 24; continue main; } catch ($$e) { @@ -1059728,7 +1061891,7 @@ $parResourceLocation = $$je; } - $ptr = 30; + $ptr = 32; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1059744,11 +1061907,11 @@ case 24: try { try { - $tmp = jl_StringBuilder_append($parResourceLocation, var$11); + $tmp = jl_StringBuilder_append($arraylist, $ioexception); if ($rt_suspending()) { break main; } - $parResourceLocation = $tmp; + $ioexception = $tmp; $ptr = 25; continue main; } catch ($$e) { @@ -1059756,7 +1061919,7 @@ $parResourceLocation = $$je; } - $ptr = 30; + $ptr = 32; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1059772,12 +1061935,12 @@ case 25: try { try { - $tmp = jl_StringBuilder_append($parResourceLocation, $arraylist); + $tmp = jl_StringBuilder_append($ioexception, var$13); if ($rt_suspending()) { break main; } - $parResourceLocation = $tmp; - $arraylist = $rt_s(7428); + $ioexception = $tmp; + $iresource = $rt_s(7427); $ptr = 26; continue main; } catch ($$e) { @@ -1059785,7 +1061948,7 @@ $parResourceLocation = $$je; } - $ptr = 30; + $ptr = 32; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1059801,11 +1061964,11 @@ case 26: try { try { - $tmp = jl_StringBuilder_append($parResourceLocation, $arraylist); + $tmp = jl_StringBuilder_append($ioexception, $iresource); if ($rt_suspending()) { break main; } - $parResourceLocation = $tmp; + $ioexception = $tmp; $ptr = 27; continue main; } catch ($$e) { @@ -1059813,7 +1061976,7 @@ $parResourceLocation = $$je; } - $ptr = 30; + $ptr = 32; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1059829,12 +1061992,12 @@ case 27: try { try { - $tmp = jl_StringBuilder_append($parResourceLocation, $iresource); + $tmp = jl_StringBuilder_append($ioexception, $parResourceLocation); if ($rt_suspending()) { break main; } $parResourceLocation = $tmp; - jl_StringBuilder_append5($parResourceLocation, 39); + $ioexception = $rt_s(7428); $ptr = 28; continue main; } catch ($$e) { @@ -1059842,7 +1062005,7 @@ $parResourceLocation = $$je; } - $ptr = 30; + $ptr = 32; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1059858,20 +1062021,19 @@ case 28: try { try { - $tmp = jl_StringBuilder_toString($modelblockdefinition1); + $tmp = jl_StringBuilder_append($parResourceLocation, $ioexception); if ($rt_suspending()) { break main; } $parResourceLocation = $tmp; - $inputstream = $ioexception; - jl_RuntimeException__init_3($modelblockdefinition, $parResourceLocation, $exception); - $rt_throw($modelblockdefinition); + $ptr = 29; + continue main; } catch ($$e) { $$je = $rt_wrapException($$e); $parResourceLocation = $$je; } - $ptr = 30; + $ptr = 32; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1059886,7 +1062048,65 @@ continue main; case 29: try { - nlev_IOUtils_closeQuietly(var$11); + try { + $tmp = jl_StringBuilder_append($parResourceLocation, $modelblockdefinition); + if ($rt_suspending()) { + break main; + } + $parResourceLocation = $tmp; + jl_StringBuilder_append5($parResourceLocation, 39); + $ptr = 30; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $parResourceLocation = $$je; + + } + $ptr = 32; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof ji_IOException) { + $ioexception = $$je; + } else { + throw $$e; + } + } + $parResourceLocation = new jl_RuntimeException; + $ptr = 9; + continue main; + case 30: + try { + try { + $tmp = jl_StringBuilder_toString($arraylist); + if ($rt_suspending()) { + break main; + } + $parResourceLocation = $tmp; + $inputstream = var$10; + jl_RuntimeException__init_3($modelblockdefinition1, $parResourceLocation, $exception); + $rt_throw($modelblockdefinition1); + } catch ($$e) { + $$je = $rt_wrapException($$e); + $parResourceLocation = $$je; + + } + $ptr = 32; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof ji_IOException) { + $ioexception = $$je; + } else { + throw $$e; + } + } + $parResourceLocation = new jl_RuntimeException; + $ptr = 9; + continue main; + case 31: + try { + nlev_IOUtils_closeQuietly($exception); if ($rt_suspending()) { break main; } @@ -1059903,7 +1062123,7 @@ $parResourceLocation = new jl_RuntimeException; $ptr = 9; continue main; - case 30: + case 32: try { nlev_IOUtils_closeQuietly($inputstream); if ($rt_suspending()) { @@ -1059923,7 +1062143,7 @@ continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $parResourceLocation, $resourcelocation, $arraylist, $modelblockdefinition, $exception, $iresource, $ioexception, var$8, var$9, $inputstream, var$11, $modelblockdefinition1, $ptr); + $rt_nativeThread().push($this, $parResourceLocation, $resourcelocation, $iresource, $ioexception, $modelblockdefinition, $arraylist, var$7, var$8, $inputstream, var$10, $exception, $modelblockdefinition1, var$13, $ptr); } function nmcrm_ModelBakery_loadModel($this, $parResourceLocation) { var $s, $iresource, var$4, $s1, $is, $modelblock, $str, $$je, $ptr, $tmp; @@ -1061139,11 +1063359,11 @@ $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); } function nmcrm_ModelBakery_bakeBlockModels($this) { - var $entry, $deferred, $currentResourceLocation, $modelresourcelocation, $weightedbakedmodel$builder, $i, $resourcelocation, var$8, $modelblockdefinition$variant, $modelresourcelocation1, $modelblock1, $modelblock, $$je, $ptr, $tmp; + var $entry, $deferred, var$3, $modelresourcelocation, $weightedbakedmodel$builder, $i, $modelresourcelocation1, var$8, $resourcelocation, $modelblock1, $modelblockdefinition$variant, $modelblock, $currentResourceLocation, $$je, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$modelblock = $thread.pop();$modelblock1 = $thread.pop();$modelresourcelocation1 = $thread.pop();$modelblockdefinition$variant = $thread.pop();var$8 = $thread.pop();$resourcelocation = $thread.pop();$i = $thread.pop();$weightedbakedmodel$builder = $thread.pop();$modelresourcelocation = $thread.pop();$currentResourceLocation = $thread.pop();$deferred = $thread.pop();$entry = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();$currentResourceLocation = $thread.pop();$modelblock = $thread.pop();$modelblockdefinition$variant = $thread.pop();$modelblock1 = $thread.pop();$resourcelocation = $thread.pop();var$8 = $thread.pop();$modelresourcelocation1 = $thread.pop();$i = $thread.pop();$weightedbakedmodel$builder = $thread.pop();$modelresourcelocation = $thread.pop();var$3 = $thread.pop();$deferred = $thread.pop();$entry = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -1061188,8 +1063408,8 @@ if ($rt_suspending()) { break main; } - $currentResourceLocation = $tmp; - if (!ju_LinkedHashMapIterator_hasNext($currentResourceLocation)) + var$3 = $tmp; + if (!ju_LinkedHashMapIterator_hasNext(var$3)) return; $ptr = 10; continue main; @@ -1061198,29 +1063418,29 @@ if ($rt_suspending()) { break main; } - $currentResourceLocation = $tmp; - $modelresourcelocation = $currentResourceLocation; + var$3 = $tmp; + $modelresourcelocation = var$3; $weightedbakedmodel$builder = nmcrm_WeightedBakedModel$Builder__init_0(); $i = 0; - $currentResourceLocation = $this.$variants; + var$3 = $this.$variants; $ptr = 7; case 7: - $tmp = ju_LinkedHashMap_get($currentResourceLocation, $modelresourcelocation); + $tmp = ju_LinkedHashMap_get(var$3, $modelresourcelocation); if ($rt_suspending()) { break main; } - $currentResourceLocation = $tmp; - $currentResourceLocation = $currentResourceLocation.$listVariants; + var$3 = $tmp; + var$3 = var$3.$listVariants; $ptr = 8; case 8: - $tmp = ju_AbstractList_iterator($currentResourceLocation); + $tmp = ju_AbstractList_iterator(var$3); if ($rt_suspending()) { break main; } - $resourcelocation = $tmp; + $modelresourcelocation1 = $tmp; $ptr = 9; case 9: - $tmp = ju_AbstractList$1_hasNext($resourcelocation); + $tmp = ju_AbstractList$1_hasNext($modelresourcelocation1); if ($rt_suspending()) { break main; } @@ -1061230,33 +1063450,33 @@ continue main; } if (!$i) { - $ptr = 21; + $ptr = 22; continue main; } if ($i != 1) { - $resourcelocation = $this.$bakedRegistry; - $currentResourceLocation = $weightedbakedmodel$builder.$listItems; - $ptr = 33; + $modelresourcelocation1 = $this.$bakedRegistry; + var$3 = $weightedbakedmodel$builder.$listItems; + $ptr = 36; continue main; } - $modelblockdefinition$variant = $this.$bakedRegistry; - $currentResourceLocation = $weightedbakedmodel$builder.$listItems; + $resourcelocation = $this.$bakedRegistry; + var$3 = $weightedbakedmodel$builder.$listItems; var$8 = 0; - $ptr = 36; + $ptr = 39; continue main; case 10: - $tmp = ju_LinkedHashMapIterator$EntryIterator_next($currentResourceLocation); + $tmp = ju_LinkedHashMapIterator$EntryIterator_next(var$3); if ($rt_suspending()) { break main; } $entry = $tmp; $resourcelocation = $entry.$value4; $modelresourcelocation1 = new nmcrm_ModelResourceLocation; - $modelblockdefinition$variant = $entry.$key; + $modelresourcelocation = $entry.$key; $entry = $rt_s(2163); $ptr = 11; case 11: - nmcrm_ModelResourceLocation__init_0($modelresourcelocation1, $modelblockdefinition$variant, $entry); + nmcrm_ModelResourceLocation__init_0($modelresourcelocation1, $modelresourcelocation, $entry); if ($rt_suspending()) { break main; } @@ -1061273,30 +1063493,30 @@ $ptr = 15; continue main; } - $ptr = 20; + $ptr = 21; continue main; case 13: - $tmp = ju_AbstractList$1_next($resourcelocation); + $tmp = ju_AbstractList$1_next($modelresourcelocation1); if ($rt_suspending()) { break main; } - $currentResourceLocation = $tmp; - $modelblockdefinition$variant = $currentResourceLocation; - $modelblock = $this.$models; - $currentResourceLocation = $modelblockdefinition$variant.$modelLocation; + var$3 = $tmp; + $modelblockdefinition$variant = var$3; + $resourcelocation = $this.$models; + var$3 = $modelblockdefinition$variant.$modelLocation; $ptr = 14; case 14: - $tmp = ju_LinkedHashMap_get($modelblock, $currentResourceLocation); + $tmp = ju_LinkedHashMap_get($resourcelocation, var$3); if ($rt_suspending()) { break main; } - $currentResourceLocation = $tmp; - $modelblock = $currentResourceLocation; + var$3 = $tmp; + $modelblock = var$3; if ($modelblock === null) { - $ptr = 26; + $ptr = 28; continue main; } - $ptr = 31; + $ptr = 34; continue main; case 15: nmcrm_ModelBakery_$callClinit(); @@ -1061304,39 +1063524,46 @@ break main; } $entry = nmcrm_ModelBakery_LOGGER; - $modelblockdefinition$variant = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($modelblockdefinition$variant); - $modelresourcelocation = $rt_s(7433); $ptr = 16; case 16: - jl_AbstractStringBuilder_append($modelblockdefinition$variant, $modelresourcelocation); + $tmp = jl_String_valueOf($resourcelocation); if ($rt_suspending()) { break main; } + $resourcelocation = $tmp; + $modelresourcelocation = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($modelresourcelocation); + $weightedbakedmodel$builder = $rt_s(7433); $ptr = 17; case 17: - jl_AbstractStringBuilder_append($modelblockdefinition$variant, $resourcelocation); + jl_AbstractStringBuilder_append($modelresourcelocation, $weightedbakedmodel$builder); if ($rt_suspending()) { break main; } $ptr = 18; case 18: - $tmp = jl_AbstractStringBuilder_toString($modelblockdefinition$variant); + jl_AbstractStringBuilder_append($modelresourcelocation, $resourcelocation); if ($rt_suspending()) { break main; } - $modelblockdefinition$variant = $tmp; $ptr = 19; case 19: - nlevl_Logger_warn($entry, $modelblockdefinition$variant); + $tmp = jl_AbstractStringBuilder_toString($modelresourcelocation); if ($rt_suspending()) { break main; } - if (!ju_LinkedHashMapIterator_hasNext($currentResourceLocation)) + $resourcelocation = $tmp; + $ptr = 20; + case 20: + nlevl_Logger_warn($entry, $resourcelocation); + if ($rt_suspending()) { + break main; + } + if (!ju_LinkedHashMapIterator_hasNext(var$3)) return; $ptr = 10; continue main; - case 20: + case 21: $tmp = nmcrbm_ModelBlock_isResolved($modelblock1); if ($rt_suspending()) { break main; @@ -1061346,39 +1063573,46 @@ $ptr = 15; continue main; } - $ptr = 32; + $ptr = 35; continue main; - case 21: + case 22: nmcrm_ModelBakery_$callClinit(); if ($rt_suspending()) { break main; } $weightedbakedmodel$builder = nmcrm_ModelBakery_LOGGER; - $currentResourceLocation = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($currentResourceLocation); - $modelblockdefinition$variant = $rt_s(7434); - $ptr = 22; - case 22: - jl_AbstractStringBuilder_append($currentResourceLocation, $modelblockdefinition$variant); - if ($rt_suspending()) { - break main; - } $ptr = 23; case 23: - jl_AbstractStringBuilder_append($currentResourceLocation, $modelresourcelocation); + $tmp = jl_String_valueOf($modelresourcelocation); if ($rt_suspending()) { break main; } + $modelresourcelocation = $tmp; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + $resourcelocation = $rt_s(7434); $ptr = 24; case 24: - $tmp = jl_AbstractStringBuilder_toString($currentResourceLocation); + jl_AbstractStringBuilder_append(var$3, $resourcelocation); if ($rt_suspending()) { break main; } - $currentResourceLocation = $tmp; $ptr = 25; case 25: - nlevl_Logger_warn($weightedbakedmodel$builder, $currentResourceLocation); + jl_AbstractStringBuilder_append(var$3, $modelresourcelocation); + if ($rt_suspending()) { + break main; + } + $ptr = 26; + case 26: + $tmp = jl_AbstractStringBuilder_toString(var$3); + if ($rt_suspending()) { + break main; + } + var$3 = $tmp; + $ptr = 27; + case 27: + nlevl_Logger_warn($weightedbakedmodel$builder, var$3); if ($rt_suspending()) { break main; } @@ -1061389,119 +1063623,106 @@ $entry = $this.$itemLocations; $ptr = 4; continue main; - case 26: + case 28: nmcrm_ModelBakery_$callClinit(); if ($rt_suspending()) { break main; } - $modelblock = nmcrm_ModelBakery_LOGGER; - $currentResourceLocation = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($currentResourceLocation); - $modelblockdefinition$variant = $rt_s(7433); - $ptr = 27; - case 27: - jl_AbstractStringBuilder_append($currentResourceLocation, $modelblockdefinition$variant); - if ($rt_suspending()) { - break main; - } - $ptr = 28; - case 28: - jl_AbstractStringBuilder_append($currentResourceLocation, $modelresourcelocation); - if ($rt_suspending()) { - break main; - } + $modelblockdefinition$variant = nmcrm_ModelBakery_LOGGER; $ptr = 29; case 29: - $tmp = jl_AbstractStringBuilder_toString($currentResourceLocation); + $tmp = jl_String_valueOf($modelresourcelocation); if ($rt_suspending()) { break main; } - $currentResourceLocation = $tmp; + $modelblock = $tmp; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + $resourcelocation = $rt_s(7433); $ptr = 30; case 30: - nlevl_Logger_warn($modelblock, $currentResourceLocation); + jl_AbstractStringBuilder_append(var$3, $resourcelocation); + if ($rt_suspending()) { + break main; + } + $ptr = 31; + case 31: + jl_AbstractStringBuilder_append(var$3, $modelblock); + if ($rt_suspending()) { + break main; + } + $ptr = 32; + case 32: + $tmp = jl_AbstractStringBuilder_toString(var$3); + if ($rt_suspending()) { + break main; + } + var$3 = $tmp; + $ptr = 33; + case 33: + nlevl_Logger_warn($modelblockdefinition$variant, var$3); if ($rt_suspending()) { break main; } $ptr = 9; continue main; - case 31: + case 34: $tmp = nmcrbm_ModelBlock_isResolved($modelblock); if ($rt_suspending()) { break main; } var$8 = $tmp; if (!var$8) { - $ptr = 26; + $ptr = 28; continue main; } $i = $i + 1 | 0; if (!$deferred) { - $currentResourceLocation = $modelblockdefinition$variant.$modelRotation; + var$3 = $modelblockdefinition$variant.$modelRotation; var$8 = $modelblockdefinition$variant.$uvLock; - $ptr = 43; + $ptr = 46; continue main; } $currentResourceLocation = $modelblockdefinition$variant.$modelLocation; - $modelresourcelocation1 = $modelblock; - $ptr = 44; + $modelblock1 = $modelblock; + $ptr = 47; continue main; - case 32: + case 35: $tmp = nmcrm_ModelBakery_isCustomRenderer($this, $modelblock1); if ($rt_suspending()) { break main; } $deferred = $tmp; if (!$deferred) { - $modelblockdefinition$variant = $this.$bakedRegistry; - $ptr = 38; + $resourcelocation = $this.$bakedRegistry; + $ptr = 41; continue main; } $entry = $this.$bakedRegistry; - $modelblockdefinition$variant = new nmcrm_BuiltInModel; - $ptr = 41; - continue main; - case 33: - ju_Collections_sort0($currentResourceLocation); - if ($rt_suspending()) { - break main; - } - $currentResourceLocation = new nmcrm_WeightedBakedModel; - $modelblockdefinition$variant = $weightedbakedmodel$builder.$listItems; - $currentResourceLocation.$models0 = $modelblockdefinition$variant; - $currentResourceLocation.$totalWeight = nmu_WeightedRandom_getTotalWeight($modelblockdefinition$variant); - var$8 = 0; - $ptr = 34; - case 34: - $tmp = ju_ArrayList_get($modelblockdefinition$variant, var$8); - if ($rt_suspending()) { - break main; - } - $modelblockdefinition$variant = $tmp; - $currentResourceLocation.$baseModel0 = $modelblockdefinition$variant.$model2; - $ptr = 35; - case 35: - nmu_RegistrySimple_putObject($resourcelocation, $modelresourcelocation, $currentResourceLocation); - if ($rt_suspending()) { - break main; - } - if (ju_LinkedHashMapIterator_hasNext($entry)) { - $ptr = 6; - continue main; - } - $entry = $this.$itemLocations; - $ptr = 4; + $resourcelocation = new nmcrm_BuiltInModel; + $ptr = 44; continue main; case 36: - $tmp = ju_ArrayList_get($currentResourceLocation, var$8); + ju_Collections_sort0(var$3); if ($rt_suspending()) { break main; } - $currentResourceLocation = $tmp; - $currentResourceLocation = $currentResourceLocation.$model2; + var$3 = new nmcrm_WeightedBakedModel; + $resourcelocation = $weightedbakedmodel$builder.$listItems; + var$3.$models0 = $resourcelocation; + var$3.$totalWeight = nmu_WeightedRandom_getTotalWeight($resourcelocation); + var$8 = 0; $ptr = 37; case 37: - nmu_RegistrySimple_putObject($modelblockdefinition$variant, $modelresourcelocation, $currentResourceLocation); + $tmp = ju_ArrayList_get($resourcelocation, var$8); + if ($rt_suspending()) { + break main; + } + $resourcelocation = $tmp; + var$3.$baseModel0 = $resourcelocation.$model2; + $ptr = 38; + case 38: + nmu_RegistrySimple_putObject($modelresourcelocation1, $modelresourcelocation, var$3); if ($rt_suspending()) { break main; } @@ -1061512,89 +1063733,139 @@ $entry = $this.$itemLocations; $ptr = 4; continue main; - case 38: + case 39: + $tmp = ju_ArrayList_get(var$3, var$8); + if ($rt_suspending()) { + break main; + } + var$3 = $tmp; + var$3 = var$3.$model2; + $ptr = 40; + case 40: + nmu_RegistrySimple_putObject($resourcelocation, $modelresourcelocation, var$3); + if ($rt_suspending()) { + break main; + } + if (ju_LinkedHashMapIterator_hasNext($entry)) { + $ptr = 6; + continue main; + } + $entry = $this.$itemLocations; + $ptr = 4; + continue main; + case 41: nmcrm_ModelRotation_$callClinit(); if ($rt_suspending()) { break main; } $entry = nmcrm_ModelRotation_X0_Y0; $deferred = 0; - $ptr = 39; - case 39: + $ptr = 42; + case 42: $tmp = nmcrm_ModelBakery_bakeModel($this, $modelblock1, $entry, $deferred); if ($rt_suspending()) { break main; } $entry = $tmp; - $ptr = 40; - case 40: - nmu_RegistrySimple_putObject($modelblockdefinition$variant, $modelresourcelocation1, $entry); + $ptr = 43; + case 43: + nmu_RegistrySimple_putObject($resourcelocation, $modelresourcelocation1, $entry); if ($rt_suspending()) { break main; } - if (!ju_LinkedHashMapIterator_hasNext($currentResourceLocation)) + if (!ju_LinkedHashMapIterator_hasNext(var$3)) return; $ptr = 10; continue main; - case 41: + case 44: $tmp = nmcrbm_ModelBlock_func_181682_g($modelblock1); if ($rt_suspending()) { break main; } $modelresourcelocation = $tmp; - $modelblockdefinition$variant.$cameraTransforms = $modelresourcelocation; - $ptr = 42; - case 42: - nmu_RegistrySimple_putObject($entry, $modelresourcelocation1, $modelblockdefinition$variant); + $resourcelocation.$cameraTransforms = $modelresourcelocation; + $ptr = 45; + case 45: + nmu_RegistrySimple_putObject($entry, $modelresourcelocation1, $resourcelocation); if ($rt_suspending()) { break main; } - if (!ju_LinkedHashMapIterator_hasNext($currentResourceLocation)) + if (!ju_LinkedHashMapIterator_hasNext(var$3)) return; $ptr = 10; continue main; - case 43: - $tmp = nmcrm_ModelBakery_bakeModel($this, $modelblock, $currentResourceLocation, var$8); + case 46: + $tmp = nmcrm_ModelBakery_bakeModel($this, $modelblock, var$3, var$8); if ($rt_suspending()) { break main; } - $currentResourceLocation = $tmp; - nmcrm_WeightedBakedModel$Builder_add($weightedbakedmodel$builder, $currentResourceLocation, $modelblockdefinition$variant.$weight2); + var$3 = $tmp; + nmcrm_WeightedBakedModel$Builder_add($weightedbakedmodel$builder, var$3, $modelblockdefinition$variant.$weight2); $ptr = 9; continue main; - case 44: + case 47: nlevoed_BlockVertexIDs_$callClinit(); if ($rt_suspending()) { break main; } - $modelblock1 = nlevoed_BlockVertexIDs_modelToID; - $ptr = 45; - case 45: + var$3 = nlevoed_BlockVertexIDs_modelToID; + $ptr = 48; + case 48: $tmp = nmu_ResourceLocation_toString($currentResourceLocation); if ($rt_suspending()) { break main; } - $currentResourceLocation = $tmp; - $ptr = 46; - case 46: - $tmp = ju_HashMap_get($modelblock1, $currentResourceLocation); + $resourcelocation = $tmp; + $ptr = 49; + case 49: + $tmp = ju_HashMap_get(var$3, $resourcelocation); if ($rt_suspending()) { break main; } - $currentResourceLocation = $tmp; - $modelblock1 = $currentResourceLocation; - if ($modelblock1 === null) { - $currentResourceLocation = $modelresourcelocation1.$parentLocation; - $modelresourcelocation1 = $this.$models; + var$3 = $tmp; + $resourcelocation = var$3; + if ($resourcelocation === null) { + $currentResourceLocation = $modelblock1.$parentLocation; + var$3 = $this.$models; + $ptr = 50; + continue main; + } + if ($resourcelocation !== null) { + nlevoed_VertexMarkerState_markId = $resourcelocation.$value; + try { + var$3 = nmcrbm_ModelBlockDefinition$Variant_getRotation($modelblockdefinition$variant); + var$8 = nmcrbm_ModelBlockDefinition$Variant_isUvLocked($modelblockdefinition$variant); + $ptr = 51; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + $entry = $$je; + + } + nlevoed_VertexMarkerState_markId = 0; + $rt_throw($entry); + } + var$3 = $modelblockdefinition$variant.$modelRotation; + var$8 = $modelblockdefinition$variant.$uvLock; + $ptr = 46; + continue main; + case 50: + $tmp = ju_LinkedHashMap_get(var$3, $currentResourceLocation); + if ($rt_suspending()) { + break main; + } + var$3 = $tmp; + $modelblock1 = var$3; + if ($modelblock1 !== null) { $ptr = 47; continue main; } - if ($modelblock1 !== null) { - nlevoed_VertexMarkerState_markId = $modelblock1.$value; + if ($resourcelocation !== null) { + nlevoed_VertexMarkerState_markId = $resourcelocation.$value; try { - $currentResourceLocation = nmcrbm_ModelBlockDefinition$Variant_getRotation($modelblockdefinition$variant); + var$3 = nmcrbm_ModelBlockDefinition$Variant_getRotation($modelblockdefinition$variant); var$8 = nmcrbm_ModelBlockDefinition$Variant_isUvLocked($modelblockdefinition$variant); - $ptr = 48; + $ptr = 51; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1061604,49 +1063875,19 @@ nlevoed_VertexMarkerState_markId = 0; $rt_throw($entry); } - $currentResourceLocation = $modelblockdefinition$variant.$modelRotation; + var$3 = $modelblockdefinition$variant.$modelRotation; var$8 = $modelblockdefinition$variant.$uvLock; - $ptr = 43; + $ptr = 46; continue main; - case 47: - $tmp = ju_LinkedHashMap_get($modelresourcelocation1, $currentResourceLocation); - if ($rt_suspending()) { - break main; - } - $modelresourcelocation1 = $tmp; - $modelresourcelocation1 = $modelresourcelocation1; - if ($modelresourcelocation1 !== null) { - $ptr = 44; - continue main; - } - if ($modelblock1 !== null) { - nlevoed_VertexMarkerState_markId = $modelblock1.$value; - try { - $currentResourceLocation = nmcrbm_ModelBlockDefinition$Variant_getRotation($modelblockdefinition$variant); - var$8 = nmcrbm_ModelBlockDefinition$Variant_isUvLocked($modelblockdefinition$variant); - $ptr = 48; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - $entry = $$je; - - } - nlevoed_VertexMarkerState_markId = 0; - $rt_throw($entry); - } - $currentResourceLocation = $modelblockdefinition$variant.$modelRotation; - var$8 = $modelblockdefinition$variant.$uvLock; - $ptr = 43; - continue main; - case 48: + case 51: a: { try { - $tmp = nmcrm_ModelBakery_bakeModel($this, $modelblock, $currentResourceLocation, var$8); + $tmp = nmcrm_ModelBakery_bakeModel($this, $modelblock, var$3, var$8); if ($rt_suspending()) { break main; } - $currentResourceLocation = $tmp; - nmcrm_WeightedBakedModel$Builder_add($weightedbakedmodel$builder, $currentResourceLocation, nmcrbm_ModelBlockDefinition$Variant_getWeight($modelblockdefinition$variant)); + var$3 = $tmp; + nmcrm_WeightedBakedModel$Builder_add($weightedbakedmodel$builder, var$3, nmcrbm_ModelBlockDefinition$Variant_getWeight($modelblockdefinition$variant)); break a; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1061661,7 +1063902,7 @@ continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $entry, $deferred, $currentResourceLocation, $modelresourcelocation, $weightedbakedmodel$builder, $i, $resourcelocation, var$8, $modelblockdefinition$variant, $modelresourcelocation1, $modelblock1, $modelblock, $ptr); + $rt_nativeThread().push($this, $entry, $deferred, var$3, $modelresourcelocation, $weightedbakedmodel$builder, $i, $modelresourcelocation1, var$8, $resourcelocation, $modelblock1, $modelblockdefinition$variant, $modelblock, $currentResourceLocation, $ptr); } function nmcrm_ModelBakery_bakeModel($this, $modelBlockIn, $modelRotationIn, $uvLocked) { var $blockpart, $simplebakedmodel$builder, $textureatlassprite, var$7, var$8, $enumfacing, $blockpartface, $textureatlassprite1, var$12, var$13, $ptr, $tmp; @@ -1062004,8 +1064245,8 @@ if ($rt_suspending()) { break main; } - $modelblock = nmcrm_ModelBakery_LOGGER; - $resourcelocation3 = nmcrm_ModelBakery_JOINER; + $resourcelocation3 = nmcrm_ModelBakery_LOGGER; + $resourcelocation = nmcrm_ModelBakery_JOINER; var$11 = $rt_createArray(nmu_ResourceLocation, 1); var$11.data[0] = $resourcelocation2; $ptr = 11; @@ -1062014,9 +1064255,9 @@ if ($rt_suspending()) { break main; } - $resourcelocation = $tmp; - $resourcelocation1 = $resourcelocation2; - var$12 = $this.$models; + $resourcelocation1 = $tmp; + var$12 = $resourcelocation2; + $modelblock = $this.$models; $ptr = 15; continue main; case 12: @@ -1062095,29 +1064336,29 @@ $ptr = 10; continue main; case 15: - $tmp = ju_LinkedHashMap_entrySet(var$12); + $tmp = ju_LinkedHashMap_entrySet($modelblock); if ($rt_suspending()) { break main; } - var$12 = $tmp; + $modelblock = $tmp; $ptr = 16; case 16: - $tmp = ju_LinkedHashMapEntrySet_iterator(var$12); + $tmp = ju_LinkedHashMapEntrySet_iterator($modelblock); if ($rt_suspending()) { break main; } - var$12 = $tmp; - if (ju_LinkedHashMapIterator_hasNext(var$12)) { + var$13 = $tmp; + if (ju_LinkedHashMapIterator_hasNext(var$13)) { $ptr = 20; continue main; } - $resourcelocation1 = null; - if ($resourcelocation1 === null) { + var$12 = null; + if (var$12 === null) { $ptr = 22; continue main; } - ju_ArrayList_add0($resourcelocation, 0, $resourcelocation1); - var$12 = $this.$models; + ju_ArrayList_add0($resourcelocation1, 0, var$12); + $modelblock = $this.$models; $ptr = 15; continue main; case 17: @@ -1062186,103 +1064427,110 @@ $ptr = 10; continue main; case 20: - $tmp = ju_LinkedHashMapIterator$EntryIterator_next(var$12); + $tmp = ju_LinkedHashMapIterator$EntryIterator_next(var$13); if ($rt_suspending()) { break main; } - var$13 = $tmp; - var$14 = var$13.$value4; - if (var$14 !== null) { - var$14 = var$14.$parentLocation; + var$14 = $tmp; + $modelblock = var$14.$value4; + if ($modelblock !== null) { + $modelblock = $modelblock.$parentLocation; $ptr = 21; continue main; } - if (ju_LinkedHashMapIterator_hasNext(var$12)) { + if (ju_LinkedHashMapIterator_hasNext(var$13)) { continue main; } - $resourcelocation1 = null; - if ($resourcelocation1 === null) { + var$12 = null; + if (var$12 === null) { $ptr = 22; continue main; } - ju_ArrayList_add0($resourcelocation, 0, $resourcelocation1); - var$12 = $this.$models; + ju_ArrayList_add0($resourcelocation1, 0, var$12); + $modelblock = $this.$models; $ptr = 15; continue main; case 21: - $tmp = $resourcelocation1.$equals0(var$14); + $tmp = var$12.$equals0($modelblock); if ($rt_suspending()) { break main; } var$8 = $tmp; if (var$8) - $resourcelocation1 = var$13.$key; + var$12 = var$14.$key; else { - if (ju_LinkedHashMapIterator_hasNext(var$12)) { + if (ju_LinkedHashMapIterator_hasNext(var$13)) { $ptr = 20; continue main; } - $resourcelocation1 = null; + var$12 = null; } - if ($resourcelocation1 === null) { + if (var$12 === null) { $ptr = 22; continue main; } - ju_ArrayList_add0($resourcelocation, 0, $resourcelocation1); - var$12 = $this.$models; + ju_ArrayList_add0($resourcelocation1, 0, var$12); + $modelblock = $this.$models; $ptr = 15; continue main; case 22: - $tmp = cgcb_Joiner_join($resourcelocation3, $resourcelocation); + $tmp = cgcb_Joiner_join($resourcelocation, $resourcelocation1); if ($rt_suspending()) { break main; } - $resourcelocation3 = $tmp; - $resourcelocation = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($resourcelocation); - $resourcelocation1 = $rt_s(7435); + $modelblock = $tmp; $ptr = 23; case 23: - jl_AbstractStringBuilder_append($resourcelocation, $resourcelocation1); + $tmp = jl_String_valueOf($resourcelocation2); if ($rt_suspending()) { break main; } + $resourcelocation = $tmp; + $resourcelocation1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($resourcelocation1); + var$12 = $rt_s(7435); $ptr = 24; case 24: - jl_AbstractStringBuilder_append($resourcelocation, $resourcelocation3); + jl_AbstractStringBuilder_append($resourcelocation1, var$12); if ($rt_suspending()) { break main; } - $resourcelocation3 = $rt_s(7436); $ptr = 25; case 25: - jl_AbstractStringBuilder_append($resourcelocation, $resourcelocation3); + jl_AbstractStringBuilder_append($resourcelocation1, $modelblock); if ($rt_suspending()) { break main; } + $modelblock = $rt_s(7436); $ptr = 26; case 26: - jl_AbstractStringBuilder_append($resourcelocation, $resourcelocation2); + jl_AbstractStringBuilder_append($resourcelocation1, $modelblock); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append0($resourcelocation, var$4); $ptr = 27; case 27: - $tmp = jl_AbstractStringBuilder_toString($resourcelocation); + jl_AbstractStringBuilder_append($resourcelocation1, $resourcelocation); if ($rt_suspending()) { break main; } - $resourcelocation3 = $tmp; + jl_AbstractStringBuilder_append0($resourcelocation1, var$4); $ptr = 28; case 28: - nlevl_Logger_warn($modelblock, $resourcelocation3); + $tmp = jl_AbstractStringBuilder_toString($resourcelocation1); + if ($rt_suspending()) { + break main; + } + $modelblock = $tmp; + $ptr = 29; + case 29: + nlevl_Logger_warn($resourcelocation3, $modelblock); if ($rt_suspending()) { break main; } $modelblock = nmcrm_ModelBakery_LOGGER; - $ptr = 29; - case 29: + $ptr = 30; + case 30: nlevl_Logger_warn1($modelblock, $exception); if ($rt_suspending()) { break main; @@ -1062319,7 +1064567,6 @@ } var$3 = $tmp; $iiconcreator = new nmcrm_ModelBakery$1; - $iiconcreator.$this$0210 = $this; $ptr = 3; case 3: ju_Collections_sort(var$3, $iiconcreator); @@ -1062428,7 +1064675,7 @@ break main; } $iiconcreator = new nmcrm_ModelBakery$2; - $iiconcreator.$this$0126 = $this; + $iiconcreator.$this$094 = $this; $iiconcreator.$val$set = $set; var$3 = $this.$textureMap; var$5 = $this.$resourceManager; @@ -1062449,7 +1064696,7 @@ } var$5 = $this.$textureMap; var$5 = !var$5.$isEaglerPBRMode ? var$5.$missingImage : var$5.$missingImagePBR; - $ptr = 33; + $ptr = 34; continue main; case 18: $tmp = ju_LinkedHashMapIterator$ValueIterator_next(var$5); @@ -1062529,10 +1064776,10 @@ } var$4 = $tmp; if (!var$4) { - $ptr = 34; + $ptr = 35; continue main; } - $ptr = 35; + $ptr = 36; continue main; case 26: $tmp = nmcrbm_ModelBlock_getElements(var$6); @@ -1062547,7 +1064794,7 @@ break main; } var$8 = $tmp; - $ptr = 37; + $ptr = 38; continue main; case 28: nmcrm_ModelBakery_$callClinit(); @@ -1062555,50 +1064802,57 @@ break main; } var$6 = nmcrm_ModelBakery_LOGGER; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - var$8 = $rt_s(7433); $ptr = 29; case 29: - jl_AbstractStringBuilder_append(var$7, var$8); + $tmp = jl_String_valueOf(var$3); if ($rt_suspending()) { break main; } + var$7 = $tmp; + var$8 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$8); + var$9 = $rt_s(7433); $ptr = 30; case 30: - jl_AbstractStringBuilder_append(var$7, var$3); + jl_AbstractStringBuilder_append(var$8, var$9); if ($rt_suspending()) { break main; } $ptr = 31; case 31: - $tmp = jl_AbstractStringBuilder_toString(var$7); + jl_AbstractStringBuilder_append(var$8, var$7); + if ($rt_suspending()) { + break main; + } + $ptr = 32; + case 32: + $tmp = jl_AbstractStringBuilder_toString(var$8); if ($rt_suspending()) { break main; } var$7 = $tmp; - $ptr = 32; - case 32: + $ptr = 33; + case 33: nlevl_Logger_warn(var$6, var$7); if ($rt_suspending()) { break main; } $ptr = 12; continue main; - case 33: + case 34: ju_HashMap_putImpl($iiconcreator, var$3, var$5); if ($rt_suspending()) { break main; } return; - case 34: + case 35: $tmp = nmcrm_ModelBakery_isCustomRenderer($this, var$6); if ($rt_suspending()) { break main; } var$4 = $tmp; if (!var$4) { - $ptr = 38; + $ptr = 39; continue main; } if (!ju_LinkedHashMapIterator_hasNext(var$5)) { @@ -1062607,58 +1064861,58 @@ } $ptr = 18; continue main; - case 35: + case 36: nmcrbm_ItemModelGenerator_$callClinit(); if ($rt_suspending()) { break main; } var$3 = nmcrbm_ItemModelGenerator_LAYERS; - $ptr = 36; - case 36: + $ptr = 37; + case 37: $tmp = ju_AbstractList_iterator(var$3); if ($rt_suspending()) { break main; } var$3 = $tmp; - $ptr = 40; + $ptr = 41; continue main; - case 37: + case 38: $tmp = var$8.$hasNext(); if ($rt_suspending()) { break main; } var$4 = $tmp; if (var$4) { - $ptr = 45; + $ptr = 46; continue main; } var$8 = new nmu_ResourceLocation; var$9 = $rt_s(3652); - $ptr = 41; + $ptr = 42; continue main; - case 38: + case 39: $tmp = nmcrbm_ModelBlock_getElements(var$6); if ($rt_suspending()) { break main; } var$3 = $tmp; - $ptr = 39; - case 39: + $ptr = 40; + case 40: $tmp = var$3.$iterator(); if ($rt_suspending()) { break main; } var$9 = $tmp; - $ptr = 47; + $ptr = 48; continue main; - case 40: + case 41: $tmp = ju_AbstractList$1_hasNext(var$3); if ($rt_suspending()) { break main; } var$4 = $tmp; if (var$4) { - $ptr = 48; + $ptr = 49; continue main; } if (!ju_LinkedHashMapIterator_hasNext(var$5)) { @@ -1062667,56 +1064921,56 @@ } $ptr = 18; continue main; - case 41: + case 42: $tmp = nmcrbm_ModelBlock_resolveTextureName(var$6, var$9); if ($rt_suspending()) { break main; } var$6 = $tmp; - $ptr = 42; - case 42: - nmu_ResourceLocation__init_(var$8, var$6); - if ($rt_suspending()) { - break main; - } $ptr = 43; case 43: - ju_HashSet_add(var$7, var$8); + nmu_ResourceLocation__init_(var$8, var$6); if ($rt_suspending()) { break main; } $ptr = 44; case 44: + ju_HashSet_add(var$7, var$8); + if ($rt_suspending()) { + break main; + } + $ptr = 45; + case 45: ju_AbstractCollection_addAll($set, var$7); if ($rt_suspending()) { break main; } $ptr = 12; continue main; - case 45: + case 46: $tmp = var$8.$next(); if ($rt_suspending()) { break main; } var$9 = $tmp; var$9 = var$9.$mapFaces.$values(); - $ptr = 46; - case 46: + $ptr = 47; + case 47: $tmp = var$9.$iterator(); if ($rt_suspending()) { break main; } var$9 = $tmp; - $ptr = 52; + $ptr = 53; continue main; - case 47: + case 48: $tmp = var$9.$hasNext(); if ($rt_suspending()) { break main; } var$4 = $tmp; if (var$4) { - $ptr = 53; + $ptr = 54; continue main; } if (!ju_LinkedHashMapIterator_hasNext(var$5)) { @@ -1062725,7 +1064979,7 @@ } $ptr = 18; continue main; - case 48: + case 49: $tmp = ju_AbstractList$1_next(var$3); if ($rt_suspending()) { break main; @@ -1062733,92 +1064987,92 @@ var$7 = $tmp; var$7 = var$7; var$8 = new nmu_ResourceLocation; - $ptr = 49; - case 49: + $ptr = 50; + case 50: $tmp = nmcrbm_ModelBlock_resolveTextureName(var$6, var$7); if ($rt_suspending()) { break main; } var$7 = $tmp; - $ptr = 50; - case 50: + $ptr = 51; + case 51: nmu_ResourceLocation__init_(var$8, var$7); if ($rt_suspending()) { break main; } - $ptr = 51; - case 51: + $ptr = 52; + case 52: $tmp = nmcrbm_ModelBlock_getRootModel(var$6); if ($rt_suspending()) { break main; } var$7 = $tmp; if (var$7 !== nmcrm_ModelBakery_MODEL_COMPASS) { - $ptr = 55; + $ptr = 56; continue main; } - $ptr = 56; + $ptr = 57; continue main; - case 52: + case 53: $tmp = var$9.$hasNext(); if ($rt_suspending()) { break main; } var$4 = $tmp; if (var$4) { - $ptr = 58; + $ptr = 59; continue main; } - $ptr = 37; + $ptr = 38; continue main; - case 53: + case 54: $tmp = var$9.$next(); if ($rt_suspending()) { break main; } var$3 = $tmp; var$3 = var$3.$mapFaces.$values(); - $ptr = 54; - case 54: + $ptr = 55; + case 55: $tmp = var$3.$iterator(); if ($rt_suspending()) { break main; } var$3 = $tmp; - $ptr = 62; + $ptr = 63; continue main; - case 55: + case 56: $tmp = nmcrbm_ModelBlock_getRootModel(var$6); if ($rt_suspending()) { break main; } var$7 = $tmp; if (var$7 !== nmcrm_ModelBakery_MODEL_CLOCK) { - $ptr = 63; + $ptr = 64; continue main; } - $ptr = 64; + $ptr = 65; continue main; - case 56: + case 57: nmcrt_TextureMap_$callClinit(); if ($rt_suspending()) { break main; } var$7 = nmcrt_TextureMap_LOCATION_MISSING_TEXTURE; - $ptr = 57; - case 57: + $ptr = 58; + case 58: $tmp = nmu_ResourceLocation_equals(var$7, var$8); if ($rt_suspending()) { break main; } var$4 = $tmp; if (var$4) { - $ptr = 55; + $ptr = 56; continue main; } - $ptr = 66; + $ptr = 67; continue main; - case 58: + case 59: $tmp = var$9.$next(); if ($rt_suspending()) { break main; @@ -1062827,81 +1065081,81 @@ var$10 = var$10; var$11 = new nmu_ResourceLocation; var$10 = var$10.$texture3; - $ptr = 59; - case 59: + $ptr = 60; + case 60: $tmp = nmcrbm_ModelBlock_resolveTextureName(var$6, var$10); if ($rt_suspending()) { break main; } var$10 = $tmp; - $ptr = 60; - case 60: + $ptr = 61; + case 61: nmu_ResourceLocation__init_(var$11, var$10); if ($rt_suspending()) { break main; } - $ptr = 61; - case 61: + $ptr = 62; + case 62: ju_HashSet_add(var$7, var$11); if ($rt_suspending()) { break main; } - $ptr = 52; + $ptr = 53; continue main; - case 62: + case 63: $tmp = var$3.$hasNext(); if ($rt_suspending()) { break main; } var$4 = $tmp; if (var$4) { - $ptr = 68; + $ptr = 69; continue main; } - $ptr = 47; + $ptr = 48; continue main; - case 63: + case 64: ju_HashSet_add($iiconcreator, var$8); if ($rt_suspending()) { break main; } - $ptr = 40; + $ptr = 41; continue main; - case 64: + case 65: nmcrt_TextureMap_$callClinit(); if ($rt_suspending()) { break main; } var$7 = nmcrt_TextureMap_LOCATION_MISSING_TEXTURE; - $ptr = 65; - case 65: + $ptr = 66; + case 66: $tmp = nmu_ResourceLocation_equals(var$7, var$8); if ($rt_suspending()) { break main; } var$4 = $tmp; if (var$4) { - $ptr = 63; + $ptr = 64; continue main; } - $ptr = 72; + $ptr = 73; continue main; - case 66: + case 67: $tmp = nmu_ResourceLocation_toString(var$8); if ($rt_suspending()) { break main; } var$7 = $tmp; - $ptr = 67; - case 67: + $ptr = 68; + case 68: nlevm_EaglerTextureAtlasSprite_$callClinit(); if ($rt_suspending()) { break main; } nlevm_EaglerTextureAtlasSprite_locationNameCompass = var$7; - $ptr = 63; + $ptr = 64; continue main; - case 68: + case 69: $tmp = var$3.$next(); if ($rt_suspending()) { break main; @@ -1062910,41 +1065164,41 @@ var$7 = var$7; var$8 = new nmu_ResourceLocation; var$7 = var$7.$texture3; - $ptr = 69; - case 69: + $ptr = 70; + case 70: $tmp = nmcrbm_ModelBlock_resolveTextureName(var$6, var$7); if ($rt_suspending()) { break main; } var$7 = $tmp; - $ptr = 70; - case 70: + $ptr = 71; + case 71: nmu_ResourceLocation__init_(var$8, var$7); if ($rt_suspending()) { break main; } - $ptr = 71; - case 71: + $ptr = 72; + case 72: ju_HashSet_add($iiconcreator, var$8); if ($rt_suspending()) { break main; } - $ptr = 62; + $ptr = 63; continue main; - case 72: + case 73: $tmp = nmu_ResourceLocation_toString(var$8); if ($rt_suspending()) { break main; } var$7 = $tmp; - $ptr = 73; - case 73: + $ptr = 74; + case 74: nlevm_EaglerTextureAtlasSprite_$callClinit(); if ($rt_suspending()) { break main; } nlevm_EaglerTextureAtlasSprite_locationNameClock = var$7; - $ptr = 63; + $ptr = 64; continue main; default: $rt_invalidPointer(); }} @@ -1063450,10 +1065704,7 @@ $rt_nativeThread().push(var$1, var$2, var$3, var$4, var$5, var$6, $ptr); } var nmcrm_IBakedModel = $rt_classWithoutFields(0); - function nmcr_SimpleReloadableResourceManager$1() { - jl_Object.call(this); - this.$this$0121 = null; - } + var nmcr_SimpleReloadableResourceManager$1 = $rt_classWithoutFields(); function nmcr_SimpleReloadableResourceManager$1_apply($this, var$1) { var $ptr, $tmp; $ptr = 0; @@ -1063477,9 +1065728,8 @@ $rt_nativeThread().push($this, var$1, $ptr); } function nmcrt_TextureManager$1() { - var a = this; jl_Object.call(a); - a.$val$textureObj2 = null; - a.$this$0122 = null; + jl_Object.call(this); + this.$val$textureObj2 = null; } function nmcrt_TextureManager$1_call($this) { return jl_Class_getName(jl_Object_getClass($this.$val$textureObj2)); @@ -1065401,7 +1067651,7 @@ a.$numBlocksToUpdate = 0; a.$flagsYAreasToUpdate = 0; a.$previousWorldTime = Long_ZERO; - a.$this$0106 = null; + a.$this$076 = null; } function nmsm_PlayerManager$PlayerInstance_addPlayer($this, $player) { var var$2, var$3, var$4, var$5, $ptr, $tmp; @@ -1065433,7 +1067683,7 @@ } var$3 = $tmp; if (var$3) - $this.$previousWorldTime = nmw_World_getTotalWorldTime($this.$this$0106.$theWorldServer0); + $this.$previousWorldTime = nmw_World_getTotalWorldTime($this.$this$076.$theWorldServer0); var$2 = $this.$playersWatchingChunk; $ptr = 5; continue main; @@ -1065489,7 +1067739,7 @@ var$3 = $tmp; if (!var$3) return; - $chunk = $this.$this$0106.$theWorldServer0; + $chunk = $this.$this$076.$theWorldServer0; var$4 = $this.$chunkCoords; var$3 = var$4.$chunkXPos; var$5 = var$4.$chunkZPos; @@ -1065564,8 +1067814,8 @@ if ($rt_suspending()) { break main; } - nmu_LongHashMap_remove($this.$this$0106.$playerInstances, $i); - $player = $this.$this$0106.$playerInstanceList; + nmu_LongHashMap_remove($this.$this$076.$playerInstances, $i); + $player = $this.$this$076.$playerInstanceList; $ptr = 10; case 10: ju_ArrayList_remove0($player, $this); @@ -1065573,11 +1067823,11 @@ break main; } if ($this.$numBlocksToUpdate > 0) { - $player = $this.$this$0106.$playerInstancesToUpdate; + $player = $this.$this$076.$playerInstancesToUpdate; $ptr = 12; continue main; } - $player = $this.$this$0106.$theWorldServer0.$theChunkProviderServer; + $player = $this.$this$076.$theWorldServer0.$theChunkProviderServer; $chunk = $this.$chunkCoords; var$3 = $chunk.$chunkXPos; var$5 = $chunk.$chunkZPos; @@ -1065593,7 +1067843,7 @@ if ($rt_suspending()) { break main; } - $player = $this.$this$0106.$theWorldServer0.$theChunkProviderServer; + $player = $this.$this$076.$theWorldServer0.$theChunkProviderServer; $chunk = $this.$chunkCoords; var$3 = $chunk.$chunkXPos; var$5 = $chunk.$chunkZPos; @@ -1065612,8 +1067862,8 @@ } main: while (true) { switch ($ptr) { case 0: - $theChunk.$inhabitedTime = Long_sub(Long_add($theChunk.$inhabitedTime, nmw_World_getTotalWorldTime($this.$this$0106.$theWorldServer0)), $this.$previousWorldTime); - $this.$previousWorldTime = nmw_World_getTotalWorldTime($this.$this$0106.$theWorldServer0); + $theChunk.$inhabitedTime = Long_sub(Long_add($theChunk.$inhabitedTime, nmw_World_getTotalWorldTime($this.$this$076.$theWorldServer0)), $this.$previousWorldTime); + $this.$previousWorldTime = nmw_World_getTotalWorldTime($this.$this$076.$theWorldServer0); return; default: $rt_invalidPointer(); }} @@ -1065691,7 +1067941,7 @@ if ($l1 != 64) { $blockpos1 = new nmnps_S22PacketMultiBlockChange; var$3 = $this.$locationOfBlockChange; - $list = $this.$this$0106.$theWorldServer0; + $list = $this.$this$076.$theWorldServer0; $blockpos = $this.$chunkCoords; $j1 = $blockpos.$chunkXPos; $j2 = $blockpos.$chunkZPos; @@ -1065704,7 +1067954,7 @@ $l1 = $blockpos1.$chunkZPos; $k1 = $l1 * 16 | 0; $list = new nmnps_S21PacketChunkData; - $blockpos1 = $this.$this$0106.$theWorldServer0; + $blockpos1 = $this.$this$076.$theWorldServer0; $ptr = 5; continue main; } @@ -1065716,7 +1067966,7 @@ $k = (var$3[0] >> 8 & 15) + ($blockpos1.$chunkZPos * 16 | 0) | 0; $blockpos = nmu_BlockPos__init_($i, $j, $k); $blockpos1 = new nmnps_S23PacketBlockChange; - $list = $this.$this$0106.$theWorldServer0; + $list = $this.$this$076.$theWorldServer0; $ptr = 1; case 1: nmnps_S23PacketBlockChange__init_2($blockpos1, $list, $blockpos); @@ -1065729,7 +1067979,7 @@ if ($rt_suspending()) { break main; } - $blockpos1 = $this.$this$0106.$theWorldServer0; + $blockpos1 = $this.$this$076.$theWorldServer0; $ptr = 3; case 3: $tmp = nmw_World_getBlockState($blockpos1, $blockpos); @@ -1065742,7 +1067992,7 @@ $this.$flagsYAreasToUpdate = 0; return; } - $blockpos1 = $this.$this$0106.$theWorldServer0; + $blockpos1 = $this.$this$076.$theWorldServer0; $ptr = 8; continue main; case 4: @@ -1065762,7 +1068012,7 @@ var$14 = var$3.data; $blockpos = new nmnps_S22PacketMultiBlockChange$BlockUpdateData; $l1 = var$14[$j1]; - $blockpos.$this$080 = $blockpos1; + $blockpos.$this$053 = $blockpos1; $blockpos.$chunkPosCrammed = $l1; var$15 = nmnps_S22PacketMultiBlockChange$BlockUpdateData_getPos($blockpos); $ptr = 11; @@ -1065793,7 +1068043,7 @@ while ($i2 < 16) { if ($this.$flagsYAreasToUpdate & 1 << $i2) { $k2 = $i2 << 4; - $blockpos1 = $this.$this$0106.$theWorldServer0; + $blockpos1 = $this.$this$076.$theWorldServer0; $j1 = $k2 + 16 | 0; $ptr = 12; continue main; @@ -1065836,7 +1068086,7 @@ $j2 = var$3[$j1] & 255; $l2 = (var$3[$j1] >> 8 & 15) + ($blockpos1.$chunkZPos * 16 | 0) | 0; $blockpos1 = nmu_BlockPos__init_($l1, $j2, $l2); - $list = $this.$this$0106.$theWorldServer0; + $list = $this.$this$076.$theWorldServer0; $ptr = 13; continue main; case 11: @@ -1065856,7 +1068106,7 @@ var$14 = var$3.data; $blockpos = new nmnps_S22PacketMultiBlockChange$BlockUpdateData; $l1 = var$14[$j1]; - $blockpos.$this$080 = $blockpos1; + $blockpos.$this$053 = $blockpos1; $blockpos.$chunkPosCrammed = $l1; var$15 = nmnps_S22PacketMultiBlockChange$BlockUpdateData_getPos($blockpos); continue main; @@ -1065879,7 +1068129,7 @@ continue; else { $k2 = $i2 << 4; - $blockpos1 = $this.$this$0106.$theWorldServer0; + $blockpos1 = $this.$this$076.$theWorldServer0; $j1 = $k2 + 16 | 0; continue main; } @@ -1065894,7 +1068144,7 @@ } $list = $tmp; if ($list.$block.$isBlockContainer) { - $list = $this.$this$0106.$theWorldServer0; + $list = $this.$this$076.$theWorldServer0; $ptr = 14; continue main; } @@ -1065911,7 +1068161,7 @@ $j2 = var$3[$j1] & 255; $l2 = (var$3[$j1] >> 8 & 15) + ($blockpos1.$chunkZPos * 16 | 0) | 0; $blockpos1 = nmu_BlockPos__init_($l1, $j2, $l2); - $list = $this.$this$0106.$theWorldServer0; + $list = $this.$this$076.$theWorldServer0; continue main; case 14: $tmp = nmw_World_getTileEntity($list, $blockpos1); @@ -1065938,7 +1068188,7 @@ $j2 = var$3[$j1] & 255; $l2 = (var$3[$j1] >> 8 & 15) + ($blockpos1.$chunkZPos * 16 | 0) | 0; $blockpos1 = nmu_BlockPos__init_($l1, $j2, $l2); - $list = $this.$this$0106.$theWorldServer0; + $list = $this.$this$076.$theWorldServer0; $ptr = 13; continue main; case 16: @@ -1065967,7 +1068217,7 @@ continue; else { $k2 = $i2 << 4; - $blockpos1 = $this.$this$0106.$theWorldServer0; + $blockpos1 = $this.$this$076.$theWorldServer0; $j1 = $k2 + 16 | 0; $ptr = 12; continue main; @@ -1066492,7 +1068742,7 @@ var var$1; if ($this.$cachedKeySet0 === null) { var$1 = new juc_ConcurrentHashMap$1; - var$1.$this$0211 = $this; + var$1.$this$0136 = $this; $this.$cachedKeySet0 = var$1; } return $this.$cachedKeySet0; @@ -1066622,7 +1068872,7 @@ var a = this; jl_Object.call(a); a.$grN = 0; a.$val$gr = 0; - a.$this$0212 = null; + a.$this$0137 = null; } function jur_Matcher$1__init_(var_0, var_1) { var var_2 = new jur_Matcher$1(); @@ -1066630,7 +1068880,7 @@ return var_2; } function jur_Matcher$1__init_0($this, $this$0, var$2) { - $this.$this$0212 = $this$0; + $this.$this$0137 = $this$0; $this.$val$gr = var$2; $this.$grN = var$2; } @@ -1066643,7 +1068893,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0212; + var$1 = $this.$this$0137; var$2 = $this.$grN; $ptr = 1; case 1: @@ -1066928,10 +1069178,10 @@ else if ($jsonobject instanceof oj_JSONObject) { $jsonobject1 = $jsonobject; $jsonobject = $rt_s(2775); - $ptr = 16; + $ptr = 17; continue main; } - $ptr = 15; + $ptr = 16; continue main; case 7: nms_StatisticsFile_$callClinit(); @@ -1066940,51 +1069190,58 @@ } $jsonobject = nms_StatisticsFile_logger; $tupleintjsonserializable = $this.$statsFile; + $ptr = 8; + case 8: + $tmp = jl_String_valueOf($tupleintjsonserializable); + if ($rt_suspending()) { + break main; + } + $tupleintjsonserializable = $tmp; $jsonobject1 = $entry.$key; $value = new jl_StringBuilder; jl_AbstractStringBuilder__init_($value); $constructor = $rt_s(7482); - $ptr = 8; - case 8: + $ptr = 9; + case 9: jl_AbstractStringBuilder_append($value, $constructor); if ($rt_suspending()) { break main; } - $ptr = 9; - case 9: - jl_AbstractStringBuilder_append($value, $tupleintjsonserializable); - if ($rt_suspending()) { - break main; - } - $tupleintjsonserializable = $rt_s(7483); $ptr = 10; case 10: jl_AbstractStringBuilder_append($value, $tupleintjsonserializable); if ($rt_suspending()) { break main; } + $tupleintjsonserializable = $rt_s(7483); $ptr = 11; case 11: + jl_AbstractStringBuilder_append($value, $tupleintjsonserializable); + if ($rt_suspending()) { + break main; + } + $ptr = 12; + case 12: jl_AbstractStringBuilder_append($value, $jsonobject1); if ($rt_suspending()) { break main; } $tupleintjsonserializable = $rt_s(7484); - $ptr = 12; - case 12: + $ptr = 13; + case 13: jl_AbstractStringBuilder_append($value, $tupleintjsonserializable); if ($rt_suspending()) { break main; } - $ptr = 13; - case 13: + $ptr = 14; + case 14: $tmp = jl_AbstractStringBuilder_toString($value); if ($rt_suspending()) { break main; } $tupleintjsonserializable = $tmp; - $ptr = 14; - case 14: + $ptr = 15; + case 15: nlevl_Logger_warn($jsonobject, $tupleintjsonserializable); if ($rt_suspending()) { break main; @@ -1066993,7 +1069250,7 @@ return $hashmap; $ptr = 5; continue main; - case 15: + case 16: ju_HashMap_putImpl($hashmap, $statbase, $tupleintjsonserializable); if ($rt_suspending()) { break main; @@ -1067002,7 +1069259,7 @@ return $hashmap; $ptr = 5; continue main; - case 16: + case 17: $tmp = oj_JSONObject_opt($jsonobject1, $jsonobject); if ($rt_suspending()) { break main; @@ -1067010,12 +1069267,12 @@ $value = $tmp; if ($value !== null && $value instanceof jl_Integer) { $jsonobject = $rt_s(2775); - $ptr = 18; + $ptr = 19; continue main; } $jsonobject = $rt_s(2776); - $ptr = 17; - case 17: + $ptr = 18; + case 18: $tmp = oj_JSONObject_has($jsonobject1, $jsonobject); if ($rt_suspending()) { break main; @@ -1067023,7 +1069280,7 @@ var$10 = $tmp; if (var$10 && $statbase.$field_150956_d !== null) { try { - $ptr = 19; + $ptr = 20; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1067033,12 +1069290,12 @@ throw $$e; } } - $ptr = 23; + $ptr = 24; continue main; } - $ptr = 15; + $ptr = 16; continue main; - case 18: + case 19: $tmp = oj_JSONObject_getInt($jsonobject1, $jsonobject); if ($rt_suspending()) { break main; @@ -1067046,9 +1069303,9 @@ var$10 = $tmp; $tupleintjsonserializable.$integerValue = var$10; $jsonobject = $rt_s(2776); - $ptr = 17; + $ptr = 18; continue main; - case 19: + case 20: try { $tmp = nms_StatBase_func_150954_l($statbase); if ($rt_suspending()) { @@ -1067056,27 +1069313,6 @@ } $jsonobject = $tmp; var$12 = $rt_createArray(jl_Class, 0); - $ptr = 20; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $throwable = $$je; - } else { - throw $$e; - } - } - $ptr = 23; - continue main; - case 20: - try { - $tmp = jl_Class_getConstructor($jsonobject, var$12); - if ($rt_suspending()) { - break main; - } - $constructor = $tmp; - $ijsonserializable = jlr_Constructor_newInstance($constructor, $rt_createArray(jl_Object, 0)); - $jsonobject = $rt_s(2776); $ptr = 21; continue main; } catch ($$e) { @@ -1067087,15 +1069323,17 @@ throw $$e; } } - $ptr = 23; + $ptr = 24; continue main; case 21: try { - $tmp = oj_JSONObject_get($jsonobject1, $jsonobject); + $tmp = jl_Class_getConstructor($jsonobject, var$12); if ($rt_suspending()) { break main; } - $jsonobject = $tmp; + $constructor = $tmp; + $ijsonserializable = jlr_Constructor_newInstance($constructor, $rt_createArray(jl_Object, 0)); + $jsonobject = $rt_s(2776); $ptr = 22; continue main; } catch ($$e) { @@ -1067106,9 +1069344,28 @@ throw $$e; } } - $ptr = 23; + $ptr = 24; continue main; case 22: + try { + $tmp = oj_JSONObject_get($jsonobject1, $jsonobject); + if ($rt_suspending()) { + break main; + } + $jsonobject = $tmp; + $ptr = 23; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $throwable = $$je; + } else { + throw $$e; + } + } + $ptr = 24; + continue main; + case 23: a: { try { nmu_JsonSerializableSet_fromJson($ijsonserializable, $jsonobject); @@ -1067125,35 +1069382,42 @@ throw $$e; } } - $ptr = 23; + $ptr = 24; continue main; } - $ptr = 15; + $ptr = 16; continue main; - case 23: + case 24: nms_StatisticsFile_$callClinit(); if ($rt_suspending()) { break main; } $jsonobject = nms_StatisticsFile_logger; $jsonobject1 = $this.$statsFile; + $ptr = 25; + case 25: + $tmp = jl_String_valueOf($jsonobject1); + if ($rt_suspending()) { + break main; + } + $jsonobject1 = $tmp; $value = new jl_StringBuilder; jl_AbstractStringBuilder__init_($value); $constructor = $rt_s(7485); - $ptr = 24; - case 24: + $ptr = 26; + case 26: jl_AbstractStringBuilder_append($value, $constructor); if ($rt_suspending()) { break main; } - $ptr = 25; - case 25: + $ptr = 27; + case 27: jl_AbstractStringBuilder_append($value, $jsonobject1); if ($rt_suspending()) { break main; } - $ptr = 26; - case 26: + $ptr = 28; + case 28: $tmp = jl_AbstractStringBuilder_toString($value); if ($rt_suspending()) { break main; @@ -1067161,13 +1069425,13 @@ $jsonobject1 = $tmp; var$12 = $rt_createArray(jl_Object, 1); var$12.data[0] = $throwable; - $ptr = 27; - case 27: + $ptr = 29; + case 29: nlevl_Logger_warn0($jsonobject, $jsonobject1, var$12); if ($rt_suspending()) { break main; } - $ptr = 15; + $ptr = 16; continue main; default: $rt_invalidPointer(); }} @@ -1067421,7 +1069685,7 @@ } function nlevv_GuiVoiceMenu() { var a = this; nmcg_Gui.call(a); - a.$parent1 = null; + a.$parent0 = null; a.$mc22 = null; a.$fontRendererObj1 = null; a.$width15 = 0; @@ -1067523,7 +1069787,6 @@ var$7 = $tmp; var$8 = (var$7 - 5 | 0) / 17.0; var$9 = 1.0; - var$1.$this$0213 = $this; $ptr = 2; case 2: nlevsg_GuiSlider2__init_(var$1, var$2, var$3, var$4, var$5, var$6, var$8, var$9); @@ -1068458,7 +1070721,7 @@ } if ($mx >= $yy && $my >= 30 && $mx < ($yy + $i | 0) && $my < 41) { $yy = (-8947849); - $ptr = 105; + $ptr = 107; continue main; } if ($channel === nlevv_EnumVoiceChannelType_PROXIMITY) { @@ -1068479,7 +1070742,7 @@ $mhy = $this.$voiceButtonRADIUSposW; $xx = $this.$voiceButtonRADIUSposH; $yy = (-8947849); - $ptr = 110; + $ptr = 112; continue main; } } @@ -1068489,7 +1070752,7 @@ $mhy = $this.$voiceButtonGLOBALposW; $xx = $this.$voiceButtonGLOBALposH; $yy = (-3355444); - $ptr = 103; + $ptr = 105; continue main; } $flag = $this.$voiceScreenButtonGLOBALposX; @@ -1068501,7 +1070764,7 @@ $mhy = $this.$voiceButtonGLOBALposW; $xx = $this.$voiceButtonGLOBALposH; $yy = (-8947849); - $ptr = 135; + $ptr = 137; continue main; } } @@ -1068515,7 +1070778,7 @@ $flag = ((((3 - $OFFwidth | 0) - 8 | 0) - $RADIUSwidth | 0) - 8 | 0) - $GLOBALwidth | 0; $w = 24; $mhy = $channel !== $txt ? $disabledColor : $enabledColor; - $ptr = 140; + $ptr = 142; continue main; case 61: $tmp = nmcr_I18n_format($txt, var$5); @@ -1068661,7 +1070924,7 @@ $mhy = $this.$voiceButtonRADIUSposW; $xx = $this.$voiceButtonRADIUSposH; $yy = (-8947849); - $ptr = 110; + $ptr = 112; continue main; } } @@ -1068671,7 +1070934,7 @@ $mhy = $this.$voiceButtonGLOBALposW; $xx = $this.$voiceButtonGLOBALposH; $yy = (-3355444); - $ptr = 103; + $ptr = 105; continue main; } $flag = $this.$voiceScreenButtonGLOBALposX; @@ -1068683,7 +1070946,7 @@ $mhy = $this.$voiceButtonGLOBALposW; $xx = $this.$voiceButtonGLOBALposH; $yy = (-8947849); - $ptr = 135; + $ptr = 137; continue main; } } @@ -1068697,7 +1070960,7 @@ $flag = ((((3 - $OFFwidth | 0) - 8 | 0) - $RADIUSwidth | 0) - 8 | 0) - $GLOBALwidth | 0; $w = 24; $mhy = $channel !== $txt ? $disabledColor : $enabledColor; - $ptr = 140; + $ptr = 142; continue main; case 72: nmcg_Gui_drawRect($w, $mhy, $xx, $yy, $hovered); @@ -1068736,7 +1070999,7 @@ $f = 0.07000000029802322; if ($f >= $fadeTimer) { $txt = $this.$mc22; - $ptr = 90; + $ptr = 92; continue main; } $w = (-89) + ($f * 90.0 | 0) | 0; @@ -1068744,7 +1071007,7 @@ $xx = $w + 1 | 0; $yy = 66; $hovered = (-6710887); - $ptr = 102; + $ptr = 104; continue main; case 76: nmcg_Gui_drawRect($w, $mhy, $xx, $yy, $hovered); @@ -1068791,7 +1071054,7 @@ $mhy = $this.$voiceButtonGLOBALposW; $xx = $this.$voiceButtonGLOBALposH; $yy = (-3355444); - $ptr = 103; + $ptr = 105; continue main; } $flag = $this.$voiceScreenButtonGLOBALposX; @@ -1068803,7 +1071066,7 @@ $mhy = $this.$voiceButtonGLOBALposW; $xx = $this.$voiceButtonGLOBALposH; $yy = (-8947849); - $ptr = 135; + $ptr = 137; continue main; } } @@ -1068817,7 +1071080,7 @@ $flag = ((((3 - $OFFwidth | 0) - 8 | 0) - $RADIUSwidth | 0) - 8 | 0) - $GLOBALwidth | 0; $w = 24; $mhy = $channel !== $txt ? $disabledColor : $enabledColor; - $ptr = 140; + $ptr = 142; continue main; case 79: $tmp = nmcr_I18n_format($txt, var$5); @@ -1068856,45 +1071119,59 @@ if ($rt_suspending()) { break main; } - $playersMuted = nmu_EnumChatFormatting_UNDERLINE; - $txt = jl_StringBuilder__init_(); + $txt = nmu_EnumChatFormatting_UNDERLINE; $ptr = 84; case 84: + $tmp = jl_String_valueOf($txt); + if ($rt_suspending()) { + break main; + } + $playersMuted = $tmp; + $txt = jl_StringBuilder__init_(); + $ptr = 85; + case 85: jl_StringBuilder_append($txt, $playersMuted); if ($rt_suspending()) { break main; } - $ptr = 85; - case 85: + $ptr = 86; + case 86: $tmp = jl_StringBuilder_toString($txt); if ($rt_suspending()) { break main; } $txt = $tmp; - $ptr = 86; - case 86: + $ptr = 87; + case 87: $tmp = jl_String_replace0($playersToRender, $playersSpeaking, $txt); if ($rt_suspending()) { break main; } $playersToRender = $tmp; - $playersSpeaking = nmu_EnumChatFormatting_RESET; + $txt = nmu_EnumChatFormatting_RESET; + $ptr = 88; + case 88: + $tmp = jl_String_valueOf($txt); + if ($rt_suspending()) { + break main; + } + $playersSpeaking = $tmp; $txt = jl_StringBuilder__init_(); - $ptr = 87; - case 87: + $ptr = 89; + case 89: $tmp = jl_StringBuilder_append($txt, $playersToRender); if ($rt_suspending()) { break main; } $playersToRender = $tmp; - $ptr = 88; - case 88: + $ptr = 90; + case 90: jl_StringBuilder_append($playersToRender, $playersSpeaking); if ($rt_suspending()) { break main; } - $ptr = 89; - case 89: + $ptr = 91; + case 91: $tmp = jl_StringBuilder_toString($txt); if ($rt_suspending()) { break main; @@ -1068912,21 +1071189,21 @@ $xx = 6741350; $ptr = 65; continue main; - case 90: + case 92: $tmp = nmc_Minecraft_getTextureManager($txt); if ($rt_suspending()) { break main; } $txt = $tmp; - $ptr = 91; - case 91: + $ptr = 93; + case 93: nlevv_GuiVoiceMenu_$callClinit(); if ($rt_suspending()) { break main; } $playersToRender = nlevv_GuiVoiceMenu_voiceGuiIcons; - $ptr = 92; - case 92: + $ptr = 94; + case 94: nmcrt_TextureManager_bindTexture($txt, $playersToRender); if ($rt_suspending()) { break main; @@ -1068935,14 +1071212,14 @@ $vol = 0.699999988079071; $f = 0.699999988079071; $cm = 1.0; - $ptr = 93; - case 93: + $ptr = 95; + case 95: nlevo_GlStateManager_color($fadeTimer, $vol, $f, $cm); if ($rt_suspending()) { break main; } - $ptr = 94; - case 94: + $ptr = 96; + case 96: nlevo_GlStateManager_pushMatrix(); if ($rt_suspending()) { break main; @@ -1068950,8 +1071227,8 @@ $fadeTimer = (-104.0); $vol = 41.5; $f = 0.0; - $ptr = 95; - case 95: + $ptr = 97; + case 97: nlevo_GlStateManager_translate($fadeTimer, $vol, $f); if ($rt_suspending()) { break main; @@ -1068959,8 +1071236,8 @@ $fadeTimer = 0.699999988079071; $vol = 0.699999988079071; $f = 0.699999988079071; - $ptr = 96; - case 96: + $ptr = 98; + case 98: nlevo_GlStateManager_scale($fadeTimer, $vol, $f); if ($rt_suspending()) { break main; @@ -1068971,20 +1071248,20 @@ $yy = 144; $hovered = 16; $ww = 16; - $ptr = 97; - case 97: + $ptr = 99; + case 99: nmcg_Gui_drawTexturedModalRect($this, $w, $mhy, $xx, $yy, $hovered, $ww); if ($rt_suspending()) { break main; } - $ptr = 98; - case 98: + $ptr = 100; + case 100: nlevo_GlStateManager_popMatrix(); if ($rt_suspending()) { break main; } - $ptr = 99; - case 99: + $ptr = 101; + case 101: nlevo_GlStateManager_pushMatrix(); if ($rt_suspending()) { break main; @@ -1068992,8 +1071269,8 @@ $fadeTimer = (-104.0); $vol = 56.5; $f = 0.0; - $ptr = 100; - case 100: + $ptr = 102; + case 102: nlevo_GlStateManager_translate($fadeTimer, $vol, $f); if ($rt_suspending()) { break main; @@ -1069001,15 +1071278,15 @@ $fadeTimer = 0.699999988079071; $vol = 0.699999988079071; $f = 0.699999988079071; - $ptr = 101; - case 101: + $ptr = 103; + case 103: nlevo_GlStateManager_scale($fadeTimer, $vol, $f); if ($rt_suspending()) { break main; } $txt = $this.$mc22.$currentScreen; if ($txt !== null) { - $ptr = 106; + $ptr = 108; continue main; } if (nlev_Keyboard_isKeyDown($this.$mc22.$gameSettings.$voicePTTKey)) { @@ -1069017,7 +1071294,7 @@ $vol = 0.4000000059604645; $f = 0.4000000059604645; $cm = 1.0; - $ptr = 108; + $ptr = 110; continue main; } $w = 0; @@ -1069026,9 +1071303,9 @@ $yy = 32; $hovered = 16; $ww = 16; - $ptr = 107; + $ptr = 109; continue main; - case 102: + case 104: nmcg_Gui_drawRect($w, $mhy, $xx, $yy, $hovered); if ($rt_suspending()) { break main; @@ -1069036,7 +1071313,7 @@ $f = $f + 0.07999999821186066; if ($f >= $fadeTimer) { $txt = $this.$mc22; - $ptr = 90; + $ptr = 92; continue main; } $w = (-89) + ($f * 90.0 | 0) | 0; @@ -1069045,7 +1071322,7 @@ $yy = 66; $hovered = (-6710887); continue main; - case 103: + case 105: nlevv_GuiVoiceMenu_drawOutline($this, $flag, $w, $mhy, $xx, $yy); if ($rt_suspending()) { break main; @@ -1069057,8 +1071334,8 @@ $flag = ($flag + $this.$voiceButtonGLOBALposW | 0) - 2 | 0; $mhy = ($mhy + $this.$voiceButtonGLOBALposH | 0) - 1 | 0; $yy = (-14540254); - $ptr = 104; - case 104: + $ptr = 106; + case 106: nmcg_Gui_drawRect($w, $xx, $flag, $mhy, $yy); if ($rt_suspending()) { break main; @@ -1069073,9 +1071350,9 @@ $flag = ((((3 - $OFFwidth | 0) - 8 | 0) - $RADIUSwidth | 0) - 8 | 0) - $GLOBALwidth | 0; $w = 24; $mhy = $channel !== $txt ? $disabledColor : $enabledColor; - $ptr = 140; + $ptr = 142; continue main; - case 105: + case 107: nlevv_GuiVoiceMenu_drawOutline($this, $flag, $w, $mhy, $xx, $yy); if ($rt_suspending()) { break main; @@ -1069098,7 +1071375,7 @@ $mhy = $this.$voiceButtonRADIUSposW; $xx = $this.$voiceButtonRADIUSposH; $yy = (-8947849); - $ptr = 110; + $ptr = 112; continue main; } } @@ -1069108,7 +1071385,7 @@ $mhy = $this.$voiceButtonGLOBALposW; $xx = $this.$voiceButtonGLOBALposH; $yy = (-3355444); - $ptr = 103; + $ptr = 105; continue main; } $flag = $this.$voiceScreenButtonGLOBALposX; @@ -1069120,7 +1071397,7 @@ $mhy = $this.$voiceButtonGLOBALposW; $xx = $this.$voiceButtonGLOBALposH; $yy = (-8947849); - $ptr = 135; + $ptr = 137; continue main; } } @@ -1069134,9 +1071411,9 @@ $flag = ((((3 - $OFFwidth | 0) - 8 | 0) - $RADIUSwidth | 0) - 8 | 0) - $GLOBALwidth | 0; $w = 24; $mhy = $channel !== $txt ? $disabledColor : $enabledColor; - $ptr = 140; + $ptr = 142; continue main; - case 106: + case 108: $tmp = $txt.$blockPTTKey(); if ($rt_suspending()) { break main; @@ -1069147,7 +1071424,7 @@ $vol = 0.4000000059604645; $f = 0.4000000059604645; $cm = 1.0; - $ptr = 108; + $ptr = 110; continue main; } $w = 0; @@ -1069156,15 +1071433,15 @@ $yy = 32; $hovered = 16; $ww = 16; - $ptr = 107; - case 107: + $ptr = 109; + case 109: nmcg_Gui_drawTexturedModalRect($this, $w, $mhy, $xx, $yy, $hovered, $ww); if ($rt_suspending()) { break main; } - $ptr = 111; + $ptr = 113; continue main; - case 108: + case 110: nlevo_GlStateManager_color($fadeTimer, $vol, $f, $cm); if ($rt_suspending()) { break main; @@ -1069175,15 +1071452,15 @@ $yy = 64; $hovered = 16; $ww = 16; - $ptr = 109; - case 109: + $ptr = 111; + case 111: nmcg_Gui_drawTexturedModalRect($this, $w, $mhy, $xx, $yy, $hovered, $ww); if ($rt_suspending()) { break main; } - $ptr = 111; + $ptr = 113; continue main; - case 110: + case 112: nlevv_GuiVoiceMenu_drawOutline($this, $flag, $w, $mhy, $xx, $yy); if ($rt_suspending()) { break main; @@ -1069194,7 +1071471,7 @@ $mhy = $this.$voiceButtonGLOBALposW; $xx = $this.$voiceButtonGLOBALposH; $yy = (-3355444); - $ptr = 103; + $ptr = 105; continue main; } $flag = $this.$voiceScreenButtonGLOBALposX; @@ -1069206,7 +1071483,7 @@ $mhy = $this.$voiceButtonGLOBALposW; $xx = $this.$voiceButtonGLOBALposH; $yy = (-8947849); - $ptr = 135; + $ptr = 137; continue main; } } @@ -1069220,9 +1071497,9 @@ $flag = ((((3 - $OFFwidth | 0) - 8 | 0) - $RADIUSwidth | 0) - 8 | 0) - $GLOBALwidth | 0; $w = 24; $mhy = $channel !== $txt ? $disabledColor : $enabledColor; - $ptr = 140; + $ptr = 142; continue main; - case 111: + case 113: nlevo_GlStateManager_popMatrix(); if ($rt_suspending()) { break main; @@ -1069232,16 +1071509,16 @@ var$33 = var$5.data; $w = 0; $mhy = $this.$mc22.$gameSettings.$voicePTTKey; - $ptr = 112; - case 112: + $ptr = 114; + case 114: $tmp = nlev_Keyboard_getKeyName($mhy); if ($rt_suspending()) { break main; } $playersToRender = $tmp; var$33[$w] = $playersToRender; - $ptr = 113; - case 113: + $ptr = 115; + case 115: $tmp = nmcr_I18n_format($txt, var$5); if ($rt_suspending()) { break main; @@ -1069251,23 +1071528,23 @@ $w = (1 - nmcg_FontRenderer_getStringWidth($playersToRender, $txt) | 0) - 10 | 0; $mhy = 76; $xx = 6741350; - $ptr = 114; - case 114: + $ptr = 116; + case 116: nmcg_Gui_drawString($this, $playersToRender, $txt, $w, $mhy, $xx); if ($rt_suspending()) { break main; } $txt = $this.$mc22; - $ptr = 115; - case 115: + $ptr = 117; + case 117: $tmp = nmc_Minecraft_getTextureManager($txt); if ($rt_suspending()) { break main; } $txt = $tmp; $playersToRender = nlevv_GuiVoiceMenu_voiceGuiIcons; - $ptr = 116; - case 116: + $ptr = 118; + case 118: nmcrt_TextureManager_bindTexture($txt, $playersToRender); if ($rt_suspending()) { break main; @@ -1069276,14 +1071553,14 @@ $vol = 0.8999999761581421; $f = 0.4000000059604645; $cm = 1.0; - $ptr = 117; - case 117: + $ptr = 119; + case 119: nlevo_GlStateManager_color($fadeTimer, $vol, $f, $cm); if ($rt_suspending()) { break main; } - $ptr = 118; - case 118: + $ptr = 120; + case 120: nlevo_GlStateManager_pushMatrix(); if ($rt_suspending()) { break main; @@ -1069291,8 +1071568,8 @@ $fadeTimer = (-7.0); $vol = 74.5; $f = 0.0; - $ptr = 119; - case 119: + $ptr = 121; + case 121: nlevo_GlStateManager_translate($fadeTimer, $vol, $f); if ($rt_suspending()) { break main; @@ -1069300,8 +1071577,8 @@ $fadeTimer = 0.3499999940395355; $vol = 0.3499999940395355; $f = 0.3499999940395355; - $ptr = 120; - case 120: + $ptr = 122; + case 122: nlevo_GlStateManager_scale($fadeTimer, $vol, $f); if ($rt_suspending()) { break main; @@ -1069312,29 +1071589,29 @@ $yy = 224; $hovered = 32; $ww = 32; - $ptr = 121; - case 121: + $ptr = 123; + case 123: nmcg_Gui_drawTexturedModalRect($this, $w, $mhy, $xx, $yy, $hovered, $ww); if ($rt_suspending()) { break main; } - $ptr = 122; - case 122: + $ptr = 124; + case 124: nlevo_GlStateManager_popMatrix(); if ($rt_suspending()) { break main; } $txt = $rt_s(7511); var$5 = $rt_createArray(jl_Object, 0); - $ptr = 123; - case 123: + $ptr = 125; + case 125: $tmp = nmcr_I18n_format($txt, var$5); if ($rt_suspending()) { break main; } $txt = $tmp; - $ptr = 124; - case 124: + $ptr = 126; + case 126: nlevo_GlStateManager_pushMatrix(); if ($rt_suspending()) { break main; @@ -1069342,8 +1071619,8 @@ $fadeTimer = 0.0; $vol = 98.0; $f = 0.0; - $ptr = 125; - case 125: + $ptr = 127; + case 127: nlevo_GlStateManager_translate($fadeTimer, $vol, $f); if ($rt_suspending()) { break main; @@ -1069351,8 +1071628,8 @@ $fadeTimer = 1.2000000476837158; $vol = 1.2000000476837158; $f = 1.2000000476837158; - $ptr = 126; - case 126: + $ptr = 128; + case 128: nlevo_GlStateManager_scale($fadeTimer, $vol, $f); if ($rt_suspending()) { break main; @@ -1069361,34 +1071638,34 @@ $w = -nmcg_FontRenderer_getStringWidth($playersToRender, $txt) | 0; $mhy = 0; $xx = 16742263; - $ptr = 127; - case 127: + $ptr = 129; + case 129: nmcg_Gui_drawString($this, $playersToRender, $txt, $w, $mhy, $xx); if ($rt_suspending()) { break main; } - $ptr = 128; - case 128: + $ptr = 130; + case 130: nlevo_GlStateManager_popMatrix(); if ($rt_suspending()) { break main; } - $ptr = 129; - case 129: + $ptr = 131; + case 131: $tmp = nlevv_VoiceClientController_getVoiceRecent(); if ($rt_suspending()) { break main; } $playersToRender = $tmp; - $ptr = 130; - case 130: + $ptr = 132; + case 132: $tmp = ju_ArrayList_size($playersToRender); if ($rt_suspending()) { break main; } $w = $tmp; if ($w > 0) { - $ptr = 132; + $ptr = 134; continue main; } $txt = $rt_s(7512); @@ -1069396,8 +1071673,8 @@ $w = -nmcg_FontRenderer_getStringWidth($playersToRender, $txt) | 0; $mhy = 112; $xx = 11184810; - $ptr = 131; - case 131: + $ptr = 133; + case 133: nmcg_Gui_drawString($this, $playersToRender, $txt, $w, $mhy, $xx); if ($rt_suspending()) { break main; @@ -1069412,29 +1071689,29 @@ var$5 = $rt_createArray(jl_Object, 0); $ptr = 61; continue main; - case 132: + case 134: $tmp = nlevv_VoiceClientController_getVoiceSpeaking(); if ($rt_suspending()) { break main; } $playersSpeaking = $tmp; - $ptr = 133; - case 133: + $ptr = 135; + case 135: $tmp = nlevv_VoiceClientController_getVoiceMuted(); if ($rt_suspending()) { break main; } $playersMuted = $tmp; $i = 0; - $ptr = 134; - case 134: + $ptr = 136; + case 136: $tmp = ju_ArrayList_size($playersToRender); if ($rt_suspending()) { break main; } $l = $tmp; if ($i < $l) { - $ptr = 136; + $ptr = 138; continue main; } if (!$flag) { @@ -1069447,7 +1071724,7 @@ var$5 = $rt_createArray(jl_Object, 0); $ptr = 61; continue main; - case 135: + case 137: nlevv_GuiVoiceMenu_drawOutline($this, $flag, $w, $mhy, $xx, $yy); if ($rt_suspending()) { break main; @@ -1069462,31 +1071739,31 @@ $flag = ((((3 - $OFFwidth | 0) - 8 | 0) - $RADIUSwidth | 0) - 8 | 0) - $GLOBALwidth | 0; $w = 24; $mhy = $channel !== $txt ? $disabledColor : $enabledColor; - $ptr = 140; + $ptr = 142; continue main; - case 136: + case 138: $tmp = ju_ArrayList_get($playersToRender, $i); if ($rt_suspending()) { break main; } $txt = $tmp; $uuid = $txt; - $ptr = 137; - case 137: + $ptr = 139; + case 139: $tmp = nlevv_VoiceClientController_getVoiceUsername($uuid); if ($rt_suspending()) { break main; } $OFFstring = $tmp; - $ptr = 138; - case 138: + $ptr = 140; + case 140: $tmp = ju_HashSet_contains($playersMuted, $uuid); if ($rt_suspending()) { break main; } $muted = $tmp; if (!$muted) { - $ptr = 139; + $ptr = 141; continue main; } $speaking = 0; @@ -1069494,9 +1071771,9 @@ $w = $this.$voiceScreenVolumeIndicatorX; $cm = !($mx >= ($w - 3 | 0) && $my >= $mhy && $mx < (($w + $this.$voiceScreenVolumeIndicatorW | 0) + 2 | 0) && $my < ($mhy + 9 | 0) ? 1 : 0) ? 1.0 : 1.5; $txt = $this.$mc22; - $ptr = 145; + $ptr = 147; continue main; - case 139: + case 141: $tmp = ju_HashSet_contains($playersSpeaking, $uuid); if ($rt_suspending()) { break main; @@ -1069507,9 +1071784,9 @@ $w = $this.$voiceScreenVolumeIndicatorX; $cm = !($mx >= ($w - 3 | 0) && $my >= $mhy && $mx < (($w + $this.$voiceScreenVolumeIndicatorW | 0) + 2 | 0) && $my < ($mhy + 9 | 0) ? 1 : 0) ? 1.0 : 1.5; $txt = $this.$mc22; - $ptr = 145; + $ptr = 147; continue main; - case 140: + case 142: nmcg_Gui_drawString($this, $status, $OFFstring, $flag, $w, $mhy); if ($rt_suspending()) { break main; @@ -1069518,8 +1071795,8 @@ $flag = ((3 - $RADIUSwidth | 0) - 8 | 0) - $GLOBALwidth | 0; $w = 24; $mhy = $channel !== nlevv_EnumVoiceChannelType_PROXIMITY ? $disabledColor : $enabledColor; - $ptr = 141; - case 141: + $ptr = 143; + case 143: nmcg_Gui_drawString($this, $status, $RADIUSstring, $flag, $w, $mhy); if ($rt_suspending()) { break main; @@ -1069529,20 +1071806,20 @@ $w = 24; if ($channel === nlevv_EnumVoiceChannelType_GLOBAL) $disabledColor = $enabledColor; - $ptr = 142; - case 142: + $ptr = 144; + case 144: nmcg_Gui_drawString($this, $status, $GLOBALstring, $flag, $w, $disabledColor); if ($rt_suspending()) { break main; } - $ptr = 143; - case 143: + $ptr = 145; + case 145: nlevo_GlStateManager_popMatrix(); if ($rt_suspending()) { break main; } - $ptr = 144; - case 144: + $ptr = 146; + case 146: nlevv_GuiVoiceMenu_$callClinit(); if ($rt_suspending()) { break main; @@ -1069550,34 +1071827,34 @@ if (nlevv_GuiVoiceMenu_showingCompatWarning) { $status = $rt_s(7513); var$5 = $rt_createArray(jl_Object, 0); - $ptr = 150; + $ptr = 152; continue main; } if (nlevv_GuiVoiceMenu_showingTrackingWarning) { $status = $rt_s(7514); var$5 = $rt_createArray(jl_Object, 0); - $ptr = 162; + $ptr = 164; continue main; } $this.$noticeContinueButton.$visible = 0; $this.$noticeCancelButton.$visible = 0; - $ptr = 175; + $ptr = 177; continue main; - case 145: + case 147: $tmp = nmc_Minecraft_getTextureManager($txt); if ($rt_suspending()) { break main; } $txt = $tmp; $uuid = nlevv_GuiVoiceMenu_voiceGuiIcons; - $ptr = 146; - case 146: + $ptr = 148; + case 148: nmcrt_TextureManager_bindTexture($txt, $uuid); if ($rt_suspending()) { break main; } - $ptr = 147; - case 147: + $ptr = 149; + case 149: nlevo_GlStateManager_pushMatrix(); if ($rt_suspending()) { break main; @@ -1069585,8 +1071862,8 @@ $fadeTimer = (-100.0); $vol = 115.0 + $i * 12.0; $f = 0.0; - $ptr = 148; - case 148: + $ptr = 150; + case 150: nlevo_GlStateManager_translate($fadeTimer, $vol, $f); if ($rt_suspending()) { break main; @@ -1069594,8 +1071871,8 @@ $fadeTimer = 0.7799999713897705; $vol = 0.7799999713897705; $f = 0.7799999713897705; - $ptr = 149; - case 149: + $ptr = 151; + case 151: nlevo_GlStateManager_scale($fadeTimer, $vol, $f); if ($rt_suspending()) { break main; @@ -1069604,20 +1071881,20 @@ $fadeTimer = 1.0 * $cm; $vol = 0.20000000298023224 * $cm; $f = 1.0; - $ptr = 160; + $ptr = 162; continue main; } if (!$speaking) { $fadeTimer = 0.6499999761581421 * $cm; $vol = 1.0; - $ptr = 176; + $ptr = 178; continue main; } $fadeTimer = 1.0 * $cm; $vol = 1.0; - $ptr = 178; + $ptr = 180; continue main; - case 150: + case 152: $tmp = nmcr_I18n_format($status, var$5); if ($rt_suspending()) { break main; @@ -1069629,8 +1071906,8 @@ $w = 0; $txt = $rt_s(7515); var$33 = $rt_createArray(jl_Object, 0); - $ptr = 151; - case 151: + $ptr = 153; + case 153: $tmp = nmcr_I18n_format($txt, var$33); if ($rt_suspending()) { break main; @@ -1069640,8 +1071917,8 @@ $w = 1; $txt = $rt_s(7516); var$33 = $rt_createArray(jl_Object, 0); - $ptr = 152; - case 152: + $ptr = 154; + case 154: $tmp = nmcr_I18n_format($txt, var$33); if ($rt_suspending()) { break main; @@ -1069652,8 +1071929,8 @@ $w = 3; $txt = $rt_s(7517); var$33 = $rt_createArray(jl_Object, 0); - $ptr = 153; - case 153: + $ptr = 155; + case 155: $tmp = nmcr_I18n_format($txt, var$33); if ($rt_suspending()) { break main; @@ -1069663,8 +1071940,8 @@ $w = 4; $txt = $rt_s(7518); var$33 = $rt_createArray(jl_Object, 0); - $ptr = 154; - case 154: + $ptr = 156; + case 156: $tmp = nmcr_I18n_format($txt, var$33); if ($rt_suspending()) { break main; @@ -1069674,8 +1071951,8 @@ $w = 5; $txt = $rt_s(7519); var$33 = $rt_createArray(jl_Object, 0); - $ptr = 155; - case 155: + $ptr = 157; + case 157: $tmp = nmcr_I18n_format($txt, var$33); if ($rt_suspending()) { break main; @@ -1069685,8 +1071962,8 @@ $w = 6; $txt = $rt_s(7520); var$33 = $rt_createArray(jl_Object, 0); - $ptr = 156; - case 156: + $ptr = 158; + case 158: $tmp = nmcr_I18n_format($txt, var$33); if ($rt_suspending()) { break main; @@ -1069696,8 +1071973,8 @@ $w = 7; $txt = $rt_s(7521); var$33 = $rt_createArray(jl_Object, 0); - $ptr = 157; - case 157: + $ptr = 159; + case 159: $tmp = nmcr_I18n_format($txt, var$33); if ($rt_suspending()) { break main; @@ -1069707,25 +1071984,25 @@ $w = 8; $txt = $rt_s(7522); var$33 = $rt_createArray(jl_Object, 0); - $ptr = 158; - case 158: + $ptr = 160; + case 160: $tmp = nmcr_I18n_format($txt, var$33); if ($rt_suspending()) { break main; } $txt = $tmp; var$36[$w] = $txt; - $ptr = 159; - case 159: + $ptr = 161; + case 161: nlevv_GuiVoiceMenu_drawNotice($this, $status, $flag, var$5); if ($rt_suspending()) { break main; } $this.$noticeContinueButton.$visible = 1; $this.$noticeCancelButton.$visible = 0; - $ptr = 175; + $ptr = 177; continue main; - case 160: + case 162: nlevo_GlStateManager_color($fadeTimer, $vol, $vol, $f); if ($rt_suspending()) { break main; @@ -1069736,15 +1072013,15 @@ $yy = 208; $hovered = 16; $ww = 16; - $ptr = 161; - case 161: + $ptr = 163; + case 163: nmcg_Gui_drawTexturedModalRect($this, $w, $mhy, $xx, $yy, $hovered, $ww); if ($rt_suspending()) { break main; } - $ptr = 180; + $ptr = 182; continue main; - case 162: + case 164: $tmp = nmcr_I18n_format($status, var$5); if ($rt_suspending()) { break main; @@ -1069756,8 +1072033,8 @@ $w = 0; $txt = $rt_s(7523); var$33 = $rt_createArray(jl_Object, 0); - $ptr = 163; - case 163: + $ptr = 165; + case 165: $tmp = nmcr_I18n_format($txt, var$33); if ($rt_suspending()) { break main; @@ -1069767,8 +1072044,8 @@ $w = 1; $txt = $rt_s(7524); var$33 = $rt_createArray(jl_Object, 0); - $ptr = 164; - case 164: + $ptr = 166; + case 166: $tmp = nmcr_I18n_format($txt, var$33); if ($rt_suspending()) { break main; @@ -1069778,8 +1072055,8 @@ $w = 2; $txt = $rt_s(7525); var$33 = $rt_createArray(jl_Object, 0); - $ptr = 165; - case 165: + $ptr = 167; + case 167: $tmp = nmcr_I18n_format($txt, var$33); if ($rt_suspending()) { break main; @@ -1069790,8 +1072067,8 @@ $w = 4; $txt = $rt_s(7526); var$33 = $rt_createArray(jl_Object, 0); - $ptr = 166; - case 166: + $ptr = 168; + case 168: $tmp = nmcr_I18n_format($txt, var$33); if ($rt_suspending()) { break main; @@ -1069801,8 +1072078,8 @@ $w = 5; $txt = $rt_s(7527); var$33 = $rt_createArray(jl_Object, 0); - $ptr = 167; - case 167: + $ptr = 169; + case 169: $tmp = nmcr_I18n_format($txt, var$33); if ($rt_suspending()) { break main; @@ -1069812,8 +1072089,8 @@ $w = 6; $txt = $rt_s(7528); var$33 = $rt_createArray(jl_Object, 0); - $ptr = 168; - case 168: + $ptr = 170; + case 170: $tmp = nmcr_I18n_format($txt, var$33); if ($rt_suspending()) { break main; @@ -1069823,8 +1072100,8 @@ $w = 7; $txt = $rt_s(7529); var$33 = $rt_createArray(jl_Object, 0); - $ptr = 169; - case 169: + $ptr = 171; + case 171: $tmp = nmcr_I18n_format($txt, var$33); if ($rt_suspending()) { break main; @@ -1069834,8 +1072111,8 @@ $w = 8; $txt = $rt_s(7530); var$33 = $rt_createArray(jl_Object, 0); - $ptr = 170; - case 170: + $ptr = 172; + case 172: $tmp = nmcr_I18n_format($txt, var$33); if ($rt_suspending()) { break main; @@ -1069845,8 +1072122,8 @@ $w = 9; $txt = $rt_s(7531); var$33 = $rt_createArray(jl_Object, 0); - $ptr = 171; - case 171: + $ptr = 173; + case 173: $tmp = nmcr_I18n_format($txt, var$33); if ($rt_suspending()) { break main; @@ -1069856,8 +1072133,8 @@ $w = 10; $txt = $rt_s(7532); var$33 = $rt_createArray(jl_Object, 0); - $ptr = 172; - case 172: + $ptr = 174; + case 174: $tmp = nmcr_I18n_format($txt, var$33); if ($rt_suspending()) { break main; @@ -1069867,24 +1072144,24 @@ $w = 11; $txt = $rt_s(7533); var$33 = $rt_createArray(jl_Object, 0); - $ptr = 173; - case 173: + $ptr = 175; + case 175: $tmp = nmcr_I18n_format($txt, var$33); if ($rt_suspending()) { break main; } $txt = $tmp; var$36[$w] = $txt; - $ptr = 174; - case 174: + $ptr = 176; + case 176: nlevv_GuiVoiceMenu_drawNotice($this, $status, $flag, var$5); if ($rt_suspending()) { break main; } $this.$noticeContinueButton.$visible = 1; $this.$noticeCancelButton.$visible = 1; - $ptr = 175; - case 175: + $ptr = 177; + case 177: nlevv_GuiVoiceMenu_drawButtons($this, $mx, $my, $partialTicks); if ($rt_suspending()) { break main; @@ -1069892,26 +1072169,26 @@ if (!nlevv_GuiVoiceMenu_showingCompatWarning && !nlevv_GuiVoiceMenu_showingTrackingWarning) return; $rt_throw(nlevv_GuiVoiceMenu$AbortedException__init_($this)); - case 176: + case 178: nlevo_GlStateManager_color($fadeTimer, $fadeTimer, $fadeTimer, $vol); if ($rt_suspending()) { break main; } - $xx = 0; - $yy = 0; - $hovered = 64; - $ww = 144; - $w = 16; - $mhy = 16; - $ptr = 177; - case 177: - nmcg_Gui_drawTexturedModalRect($this, $xx, $yy, $hovered, $ww, $w, $mhy); + $ww = 0; + $w = 0; + $mhy = 64; + $xx = 144; + $yy = 16; + $hovered = 16; + $ptr = 179; + case 179: + nmcg_Gui_drawTexturedModalRect($this, $ww, $w, $mhy, $xx, $yy, $hovered); if ($rt_suspending()) { break main; } - $ptr = 180; + $ptr = 182; continue main; - case 178: + case 180: nlevo_GlStateManager_color($fadeTimer, $fadeTimer, $fadeTimer, $vol); if ($rt_suspending()) { break main; @@ -1069922,14 +1072199,14 @@ $yy = 176; $hovered = 16; $ww = 16; - $ptr = 179; - case 179: + $ptr = 181; + case 181: nmcg_Gui_drawTexturedModalRect($this, $w, $mhy, $xx, $yy, $hovered, $ww); if ($rt_suspending()) { break main; } - $ptr = 180; - case 180: + $ptr = 182; + case 182: nlevo_GlStateManager_popMatrix(); if ($rt_suspending()) { break main; @@ -1069939,7 +1072216,7 @@ $w = (-84); $mhy = 117 + ($i * 12 | 0) | 0; $xx = 13386820; - $ptr = 181; + $ptr = 183; continue main; } if (!$speaking) { @@ -1069947,41 +1072224,14 @@ $w = (-84); $mhy = 117 + ($i * 12 | 0) | 0; $xx = 10066329; - $ptr = 183; + $ptr = 185; continue main; } $txt = $this.$fontRendererObj1; $w = (-84); $mhy = 117 + ($i * 12 | 0) | 0; $xx = 13421772; - $ptr = 185; - continue main; - case 181: - $tmp = nlevv_GuiVoiceMenu_attenuate($xx, $cm); - if ($rt_suspending()) { - break main; - } - $xx = $tmp; - $ptr = 182; - case 182: - nmcg_Gui_drawString($this, $txt, $OFFstring, $w, $mhy, $xx); - if ($rt_suspending()) { - break main; - } - $i = $i + 1 | 0; - if ($i < $l) { - $ptr = 136; - continue main; - } - if (!$flag) { - $txt = $rt_s(7504); - var$5 = $rt_createArray(jl_Object, 0); - $ptr = 58; - continue main; - } - $txt = $rt_s(7505); - var$5 = $rt_createArray(jl_Object, 0); - $ptr = 61; + $ptr = 187; continue main; case 183: $tmp = nlevv_GuiVoiceMenu_attenuate($xx, $cm); @@ -1069997,7 +1072247,7 @@ } $i = $i + 1 | 0; if ($i < $l) { - $ptr = 136; + $ptr = 138; continue main; } if (!$flag) { @@ -1070024,7 +1072274,34 @@ } $i = $i + 1 | 0; if ($i < $l) { - $ptr = 136; + $ptr = 138; + continue main; + } + if (!$flag) { + $txt = $rt_s(7504); + var$5 = $rt_createArray(jl_Object, 0); + $ptr = 58; + continue main; + } + $txt = $rt_s(7505); + var$5 = $rt_createArray(jl_Object, 0); + $ptr = 61; + continue main; + case 187: + $tmp = nlevv_GuiVoiceMenu_attenuate($xx, $cm); + if ($rt_suspending()) { + break main; + } + $xx = $tmp; + $ptr = 188; + case 188: + nmcg_Gui_drawString($this, $txt, $OFFstring, $w, $mhy, $xx); + if ($rt_suspending()) { + break main; + } + $i = $i + 1 | 0; + if ($i < $l) { + $ptr = 138; continue main; } if (!$flag) { @@ -1070042,11 +1072319,11 @@ $rt_nativeThread().push($this, $mx, $my, $partialTicks, $status, var$5, $txt, $flag, $w, $mhy, $xx, $yy, $fadeTimer, $vol, $f, $channel, $playersToRender, $playersSpeaking, $OFFstring, $RADIUSstring, $GLOBALstring, $OFFwidth, $RADIUSwidth, $GLOBALwidth, $hovered, $i, $muted, $speaking, $enabledColor, $disabledColor, $playersMuted, $cm, $ww, var$33, $l, $uuid, var$36, $ptr); } function nlevv_GuiVoiceMenu_drawNotice($this, $title, $showCancel, $lines) { - var $widthAccum, $i, var$6, $w, $margin, $x, var$10, $y, $i_0, var$13, var$14, var$15, var$16, var$17, var$18, var$19, var$20, var$21, $ptr, $tmp; + var $widthAccum, $i, var$6, $w, $margin, $x, var$10, $y, var$12, var$13, var$14, var$15, var$16, var$17, $i_0, var$19, var$20, var$21, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$21 = $thread.pop();var$20 = $thread.pop();var$19 = $thread.pop();var$18 = $thread.pop();var$17 = $thread.pop();var$16 = $thread.pop();var$15 = $thread.pop();var$14 = $thread.pop();var$13 = $thread.pop();$i_0 = $thread.pop();$y = $thread.pop();var$10 = $thread.pop();$x = $thread.pop();$margin = $thread.pop();$w = $thread.pop();var$6 = $thread.pop();$i = $thread.pop();$widthAccum = $thread.pop();$lines = $thread.pop();$showCancel = $thread.pop();$title = $thread.pop();$this + $ptr = $thread.pop();var$21 = $thread.pop();var$20 = $thread.pop();var$19 = $thread.pop();$i_0 = $thread.pop();var$17 = $thread.pop();var$16 = $thread.pop();var$15 = $thread.pop();var$14 = $thread.pop();var$13 = $thread.pop();var$12 = $thread.pop();$y = $thread.pop();var$10 = $thread.pop();$x = $thread.pop();$margin = $thread.pop();$w = $thread.pop();var$6 = $thread.pop();$i = $thread.pop();$widthAccum = $thread.pop();$lines = $thread.pop();$showCancel = $thread.pop();$title = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { @@ -1070069,17 +1072346,17 @@ var$10 = $w * 10 | 0; $y = ((($i - var$10 | 0) - 60 | 0) - $margin | 0) / 2 | 0; $i = $x - $margin | 0; - $i_0 = $i - 1 | 0; + var$12 = $i - 1 | 0; var$13 = $y - $margin | 0; var$14 = var$13 - 1 | 0; var$15 = ($x + $widthAccum | 0) + $margin | 0; var$16 = var$15 + 1 | 0; var$17 = $y + var$10 | 0; - var$18 = (var$17 + 49 | 0) + $margin | 0; - var$10 = (-3355444); + var$10 = (var$17 + 49 | 0) + $margin | 0; + $i_0 = (-3355444); $ptr = 1; case 1: - nmcg_Gui_drawRect($i_0, var$14, var$16, var$18, var$10); + nmcg_Gui_drawRect(var$12, var$14, var$16, var$10, $i_0); if ($rt_suspending()) { break main; } @@ -1070099,31 +1072376,38 @@ break main; } var$20 = nmu_EnumChatFormatting_BOLD; - var$21 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$21); $ptr = 4; case 4: - jl_AbstractStringBuilder_append(var$21, var$20); + $tmp = jl_String_valueOf(var$20); if ($rt_suspending()) { break main; } + var$21 = $tmp; + var$20 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$20); $ptr = 5; case 5: - jl_AbstractStringBuilder_append(var$21, $title); + jl_AbstractStringBuilder_append(var$20, var$21); if ($rt_suspending()) { break main; } $ptr = 6; case 6: - $tmp = jl_AbstractStringBuilder_toString(var$21); + jl_AbstractStringBuilder_append(var$20, $title); + if ($rt_suspending()) { + break main; + } + $ptr = 7; + case 7: + $tmp = jl_AbstractStringBuilder_toString(var$20); if ($rt_suspending()) { break main; } $title = $tmp; var$10 = $this.$width15 / 2 | 0; $i = 16742246; - $ptr = 7; - case 7: + $ptr = 8; + case 8: nmcg_Gui_drawCenteredString($this, var$19, $title, var$10, $y, $i); if ($rt_suspending()) { break main; @@ -1070151,13 +1072435,13 @@ } return; } - var$21 = $this.$fontRendererObj1; - $title = var$6[$i_0]; + $title = $this.$fontRendererObj1; + var$20 = var$6[$i_0]; var$10 = ($y + ($i_0 * 10 | 0) | 0) + 18 | 0; $i = 14527146; - $ptr = 8; - case 8: - nmcg_Gui_drawString($this, var$21, $title, $x, var$10, $i); + $ptr = 9; + case 9: + nmcg_Gui_drawString($this, $title, var$20, $x, var$10, $i); if ($rt_suspending()) { break main; } @@ -1070184,14 +1072468,14 @@ } return; } - var$21 = $this.$fontRendererObj1; - $title = var$6[$i_0]; + $title = $this.$fontRendererObj1; + var$20 = var$6[$i_0]; var$10 = ($y + ($i_0 * 10 | 0) | 0) + 18 | 0; $i = 14527146; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $title, $showCancel, $lines, $widthAccum, $i, var$6, $w, $margin, $x, var$10, $y, $i_0, var$13, var$14, var$15, var$16, var$17, var$18, var$19, var$20, var$21, $ptr); + $rt_nativeThread().push($this, $title, $showCancel, $lines, $widthAccum, $i, var$6, $w, $margin, $x, var$10, $y, var$12, var$13, var$14, var$15, var$16, var$17, $i_0, var$19, var$20, var$21, $ptr); } function nlevv_GuiVoiceMenu_attenuate($cin, $f) { var var$3, var$4, var$5, var$6, var$7, $ptr, $tmp; @@ -1071451,7 +1073735,7 @@ function nlevoedg_GuiShaderConfig() { var a = this; nmcg_GuiScreen.call(a); a.$shaderStartState = 0; - a.$parent2 = null; + a.$parent1 = null; a.$listView = null; a.$title1 = null; a.$enableDisableButton = null; @@ -1071564,7 +1073848,7 @@ if (var$2 != 1) return; $btn = $this.$mc15; - var$3 = $this.$parent2; + var$3 = $this.$parent1; $ptr = 1; continue main; } @@ -1071597,12 +1073881,12 @@ } var$3 = $tmp; if (!$this.$mc15.$gameSettings.$shaders) { - var$6 = $rt_s(5637); + var$6 = $rt_s(5636); var$5 = $rt_createArray(jl_Object, 0); $ptr = 4; continue main; } - var$6 = $rt_s(5636); + var$6 = $rt_s(5635); var$5 = $rt_createArray(jl_Object, 0); $ptr = 5; continue main; @@ -1075012,10 +1077296,7 @@ function nms_ScorePlayerTeam_getChatFormat($this) { return $this.$chatFormat; } - function nmcg_GuiIngame$1() { - jl_Object.call(this); - this.$this$0142 = null; - } + var nmcg_GuiIngame$1 = $rt_classWithoutFields(); function nmcg_GuiIngame$1_apply($this, var$1) { var var$2; var$2 = var$1.$scorePlayerName; @@ -1076577,10 +1078858,7 @@ jl_Throwable__init_0($this); } var js_PrivilegedAction = $rt_classWithoutFields(0); - function nlev_HFormatter$Transformer$1() { - jl_Object.call(this); - this.$this$0214 = null; - } + var nlev_HFormatter$Transformer$1 = $rt_classWithoutFields(); var js_AccessController = $rt_classWithoutFields(); function js_AccessController__init_0() { var var_0 = new js_AccessController(); @@ -1082429,32 +1084707,39 @@ main: while (true) { switch ($ptr) { case 0: var$1 = $this.$entity0; + $ptr = 1; + case 1: + $tmp = jl_String_valueOf(var$1); + if ($rt_suspending()) { + break main; + } + var$1 = $tmp; var$2 = $this.$offsetY1; var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); var$4 = $rt_s(7598); - $ptr = 1; - case 1: + $ptr = 2; + case 2: jl_AbstractStringBuilder_append(var$3, var$4); if ($rt_suspending()) { break main; } - $ptr = 2; - case 2: - jl_AbstractStringBuilder_append(var$3, var$1); - if ($rt_suspending()) { - break main; - } - var$1 = $rt_s(7599); $ptr = 3; case 3: jl_AbstractStringBuilder_append(var$3, var$1); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append7(var$3, var$2); + var$1 = $rt_s(7599); $ptr = 4; case 4: + jl_AbstractStringBuilder_append(var$3, var$1); + if ($rt_suspending()) { + break main; + } + jl_AbstractStringBuilder_append7(var$3, var$2); + $ptr = 5; + case 5: $tmp = jl_AbstractStringBuilder_toString(var$3); if ($rt_suspending()) { break main; @@ -1084964,7 +1087249,7 @@ a.$field_148726_a = null; a.$val$s10 = null; a.$val$soundlist$soundentry = null; - a.$this$0123 = null; + a.$this$091 = null; } function nmca_SoundHandler$1_getWeight($this) { var $soundeventaccessorcomposite1, var$2, var$3, $ptr, $tmp; @@ -1084975,7 +1087260,7 @@ } main: while (true) { switch ($ptr) { case 0: - $soundeventaccessorcomposite1 = $this.$this$0123.$sndRegistry; + $soundeventaccessorcomposite1 = $this.$this$091.$sndRegistry; var$2 = $this.$field_148726_a; $ptr = 1; case 1: @@ -1085008,7 +1087293,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0123.$sndRegistry; + var$1 = $this.$this$091.$sndRegistry; var$2 = $this.$field_148726_a; $ptr = 1; case 1: @@ -1086008,12 +1088293,12 @@ $rt_nativeThread().push($this, $textureMapIn, $blockModel, $hashmap, $arraylist, $i, var$6, var$7, var$8, $s, var$10, $s1, $textureatlassprite, var$13, var$14, var$15, var$16, $ptr); } function nmcrbm_ItemModelGenerator_func_178397_a($this, $parTextureAtlasSprite, $parString1, $parInt1) { - var $f, $f1, $arraylist, var$7, var$8, $lst, var$10, var$11, $i, $l, $f15, $f16, var$16, var$17, var$18, var$19, var$20, var$21, var$22, $itemmodelgenerator$span, $f2, $f3, $f4, $f5, $f6, $f7, $f8, $f9, $f10, $f11, $f12, $f13, $f14, $itemmodelgenerator$spanfacing, $hashmap, $ptr, $tmp; + var $f, $f1, $arraylist, var$7, var$8, $lst, var$10, $i, $l, $f15, $f16, var$15, var$16, var$17, var$18, var$19, var$20, var$21, $itemmodelgenerator$span, $f3, $f4, $f6, $f7, $f8, $f9, $f10, $f11, $f12, $f13, $f14, $itemmodelgenerator$spanfacing, $f2, $f5, $hashmap, var$38, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$hashmap = $thread.pop();$itemmodelgenerator$spanfacing = $thread.pop();$f14 = $thread.pop();$f13 = $thread.pop();$f12 = $thread.pop();$f11 = $thread.pop();$f10 = $thread.pop();$f9 = $thread.pop();$f8 = $thread.pop();$f7 = $thread.pop();$f6 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$itemmodelgenerator$span = $thread.pop();var$22 = $thread.pop();var$21 = $thread.pop();var$20 = $thread.pop();var$19 = $thread.pop();var$18 = $thread.pop();var$17 - = $thread.pop();var$16 = $thread.pop();$f16 = $thread.pop();$f15 = $thread.pop();$l = $thread.pop();$i = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();$lst = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();$arraylist = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$parInt1 = $thread.pop();$parString1 = $thread.pop();$parTextureAtlasSprite = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$38 = $thread.pop();$hashmap = $thread.pop();$f5 = $thread.pop();$f2 = $thread.pop();$itemmodelgenerator$spanfacing = $thread.pop();$f14 = $thread.pop();$f13 = $thread.pop();$f12 = $thread.pop();$f11 = $thread.pop();$f10 = $thread.pop();$f9 = $thread.pop();$f8 = $thread.pop();$f7 = $thread.pop();$f6 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$itemmodelgenerator$span = $thread.pop();var$21 = $thread.pop();var$20 = $thread.pop();var$19 = $thread.pop();var$18 = $thread.pop();var$17 + = $thread.pop();var$16 = $thread.pop();var$15 = $thread.pop();$f16 = $thread.pop();$f15 = $thread.pop();$l = $thread.pop();$i = $thread.pop();var$10 = $thread.pop();$lst = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();$arraylist = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$parInt1 = $thread.pop();$parString1 = $thread.pop();$parTextureAtlasSprite = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -1086030,8 +1088315,8 @@ if ($rt_suspending()) { break main; } - var$11 = $tmp; - if (var$10 < var$11) { + $i = $tmp; + if (var$10 < $i) { $ptr = 2; continue main; } @@ -1086039,12 +1088324,12 @@ $l = $lst.$size; $f15 = 16.0 / $f; $f16 = 16.0 / $f1; + var$15 = null; var$16 = null; var$17 = null; var$18 = null; var$19 = null; - var$20 = null; - var$21 = 16.0 / ($f - 1.0); + var$20 = 16.0 / ($f - 1.0); $f = 16.0 / ($f1 - 1.0); if ($i >= $l) return $arraylist; @@ -1086055,11 +1088340,11 @@ if ($rt_suspending()) { break main; } - var$22 = $tmp; - var$22 = var$22.data[0]; - var$11 = 0; + var$21 = $tmp; + var$21 = var$21.data[0]; + $i = 0; while (true) { - if (var$11 >= var$8) { + if ($i >= var$8) { var$10 = var$10 + 1 | 0; $ptr = 1; continue main; @@ -1086067,40 +1088352,32 @@ $l = 0; if ($l < var$7) break; - var$11 = var$11 + 1 | 0; + $i = $i + 1 | 0; } - $ptr = 6; + $ptr = 5; continue main; case 3: - $tmp = ju_ArrayList_get($lst, $i); - if ($rt_suspending()) { - break main; - } - $parTextureAtlasSprite = $tmp; - $itemmodelgenerator$span = $parTextureAtlasSprite; - $f2 = 0.0; - $f3 = 0.0; - $f4 = 0.0; - $f5 = 0.0; - $f6 = 0.0; - $f7 = 0.0; - $f8 = 0.0; - $f9 = 0.0; - $f10 = 0.0; - $f11 = 0.0; - $f12 = $itemmodelgenerator$span.$field_178387_b; - $f13 = $itemmodelgenerator$span.$field_178388_c; - $f14 = $itemmodelgenerator$span.$field_178386_d; - $itemmodelgenerator$spanfacing = $itemmodelgenerator$span.$spanFacing; - $ptr = 4; - case 4: a: { - nmcrbm_ItemModelGenerator$1_$callClinit(); + $tmp = ju_ArrayList_get($lst, $i); if ($rt_suspending()) { break main; } - switch (nmcrbm_ItemModelGenerator$1_$SwitchMap$net$minecraft$client$renderer$block$model$ItemModelGenerator$SpanFacing.data[$itemmodelgenerator$spanfacing.$ordinal]) { - case 1: + $parTextureAtlasSprite = $tmp; + $itemmodelgenerator$span = $parTextureAtlasSprite; + $f3 = 0.0; + $f4 = 0.0; + $f6 = 0.0; + $f7 = 0.0; + $f8 = 0.0; + $f9 = 0.0; + $f10 = 0.0; + $f11 = 0.0; + $f12 = $itemmodelgenerator$span.$field_178387_b; + $f13 = $itemmodelgenerator$span.$field_178388_c; + $f14 = $itemmodelgenerator$span.$field_178386_d; + $itemmodelgenerator$spanfacing = $itemmodelgenerator$span.$spanFacing; + switch ($itemmodelgenerator$spanfacing.$ordinal) { + case 0: $f4 = $f13 + 1.0; $f7 = $f4; $f6 = $f12; @@ -1086110,98 +1088387,98 @@ $f10 = $f15; $f11 = $f; break a; - case 2: + case 1: $f4 = $f13 + 1.0; - $f5 = $f14 + 1.0; + $f2 = $f14 + 1.0; $f7 = $f4; $f6 = $f12; $f9 = $f14; - $f3 = $f5; + $f3 = $f2; $f10 = $f15; $f11 = $f; $f8 = $f14; - $f14 = $f5; + $f14 = $f2; + break a; + case 2: + $f2 = $f13 + 1.0; + $f7 = $f14; + $f6 = $f14; + $f4 = $f14; + $f9 = $f12; + $f3 = $f12; + $f8 = $f2; + $f10 = var$20; + $f11 = $f16; + $f12 = $f4; + $f4 = $f14; + $f14 = $f2; break a; case 3: - $f5 = $f13 + 1.0; - $f7 = $f14; - $f6 = $f14; - $f13 = $f14; - $f9 = $f12; - $f3 = $f12; - $f8 = $f5; - $f10 = var$21; - $f11 = $f16; - $f12 = $f13; - $f4 = $f14; - $f14 = $f5; - break a; - case 4: $f4 = $f14 + 1.0; - $f5 = $f13 + 1.0; + $f2 = $f13 + 1.0; $f7 = $f14; - $f13 = $f4; + $f5 = $f4; $f9 = $f12; $f3 = $f12; - $f8 = $f5; - $f10 = var$21; + $f8 = $f2; + $f10 = var$20; $f11 = $f16; $f6 = $f14; - $f12 = $f13; - $f14 = $f5; + $f12 = $f5; + $f14 = $f2; break a; default: } - $f12 = $f2; - $f14 = $f5; + $f12 = 0.0; + $f14 = 0.0; } - $f1 = $f12 * $f15; + $f2 = $f12 * $f15; $f4 = $f4 * $f15; - $f2 = $f3 * $f16; + $f3 = $f3 * $f16; $f5 = $f14 * $f16; - $f13 = 16.0 - $f2; - $f14 = 16.0 - $f5; + $f3 = 16.0 - $f3; + $f13 = 16.0 - $f5; $f5 = $f6 * $f10; $f6 = $f7 * $f10; - $f7 = $f8 * $f11; - $f8 = $f9 * $f11; + $f12 = $f8 * $f11; + $f7 = $f9 * $f11; $hashmap = cgcc_Maps_newHashMap(); $parTextureAtlasSprite = $itemmodelgenerator$spanfacing.$facing3; - $itemmodelgenerator$span = nmcrbm_BlockPartFace__init_(var$16, $parInt1, $parString1, nmcrbm_BlockFaceUV__init_($rt_createFloatArrayFromData([$f5, $f7, $f6, $f8]), 0)); - $ptr = 5; - case 5: + $itemmodelgenerator$span = nmcrbm_BlockPartFace__init_(var$15, $parInt1, $parString1, nmcrbm_BlockFaceUV__init_($rt_createFloatArrayFromData([$f5, $f12, $f6, $f7]), 0)); + $ptr = 4; + case 4: ju_HashMap_putImpl($hashmap, $parTextureAtlasSprite, $itemmodelgenerator$span); if ($rt_suspending()) { break main; } - switch (nmcrbm_ItemModelGenerator$1_$SwitchMap$net$minecraft$client$renderer$block$model$ItemModelGenerator$SpanFacing.data[$itemmodelgenerator$spanfacing.$ordinal]) { + switch ($itemmodelgenerator$spanfacing.$ordinal) { + case 0: + $parTextureAtlasSprite = new nmcrbm_BlockPart; + $itemmodelgenerator$spanfacing = nlevv_Vector3f__init_3($f2, $f3, 7.5); + $itemmodelgenerator$span = nlevv_Vector3f__init_3($f4, $f3, 8.5); + var$10 = 1; + $ptr = 6; + continue main; case 1: $parTextureAtlasSprite = new nmcrbm_BlockPart; - $itemmodelgenerator$spanfacing = nlevv_Vector3f__init_3($f1, $f13, 7.5); + $itemmodelgenerator$spanfacing = nlevv_Vector3f__init_3($f2, $f13, 7.5); $itemmodelgenerator$span = nlevv_Vector3f__init_3($f4, $f13, 8.5); - var$11 = 1; - $ptr = 7; + var$10 = 1; + $ptr = 8; continue main; case 2: $parTextureAtlasSprite = new nmcrbm_BlockPart; - $itemmodelgenerator$spanfacing = nlevv_Vector3f__init_3($f1, $f14, 7.5); - $itemmodelgenerator$span = nlevv_Vector3f__init_3($f4, $f14, 8.5); - var$11 = 1; - $ptr = 9; + $itemmodelgenerator$spanfacing = nlevv_Vector3f__init_3($f2, $f3, 7.5); + $itemmodelgenerator$span = nlevv_Vector3f__init_3($f2, $f13, 8.5); + var$10 = 1; + $ptr = 10; continue main; case 3: - $parTextureAtlasSprite = new nmcrbm_BlockPart; - $itemmodelgenerator$spanfacing = nlevv_Vector3f__init_3($f1, $f13, 7.5); - $itemmodelgenerator$span = nlevv_Vector3f__init_3($f1, $f14, 8.5); - var$11 = 1; - $ptr = 11; - continue main; - case 4: $itemmodelgenerator$spanfacing = new nmcrbm_BlockPart; - $itemmodelgenerator$span = nlevv_Vector3f__init_3($f4, $f13, 7.5); - $parTextureAtlasSprite = nlevv_Vector3f__init_3($f4, $f14, 8.5); - var$11 = 1; - $ptr = 13; + $itemmodelgenerator$span = nlevv_Vector3f__init_3($f4, $f3, 7.5); + $parTextureAtlasSprite = nlevv_Vector3f__init_3($f4, $f13, 8.5); + var$10 = 1; + $ptr = 12; continue main; default: } @@ -1086210,70 +1088487,70 @@ return $arraylist; $ptr = 3; continue main; - case 6: - $tmp = nmcrbm_ItemModelGenerator_func_178391_a($this, var$22, $l, var$11, var$7, var$8); - if ($rt_suspending()) { - break main; - } - $i = $tmp; - $i = $i ? 0 : 1; - $ptr = 15; - continue main; - case 7: - nmcrbm_BlockPart__init_($parTextureAtlasSprite, $itemmodelgenerator$spanfacing, $itemmodelgenerator$span, $hashmap, var$20, var$11); - if ($rt_suspending()) { - break main; - } - $ptr = 8; - case 8: - ju_ArrayList_add($arraylist, $parTextureAtlasSprite); - if ($rt_suspending()) { - break main; - } - $i = $i + 1 | 0; - if ($i >= $l) - return $arraylist; - $ptr = 3; - continue main; - case 9: - nmcrbm_BlockPart__init_($parTextureAtlasSprite, $itemmodelgenerator$spanfacing, $itemmodelgenerator$span, $hashmap, var$19, var$11); - if ($rt_suspending()) { - break main; - } - $ptr = 10; - case 10: - ju_ArrayList_add($arraylist, $parTextureAtlasSprite); - if ($rt_suspending()) { - break main; - } - $i = $i + 1 | 0; - if ($i >= $l) - return $arraylist; - $ptr = 3; - continue main; - case 11: - nmcrbm_BlockPart__init_($parTextureAtlasSprite, $itemmodelgenerator$spanfacing, $itemmodelgenerator$span, $hashmap, var$18, var$11); - if ($rt_suspending()) { - break main; - } - $ptr = 12; - case 12: - ju_ArrayList_add($arraylist, $parTextureAtlasSprite); - if ($rt_suspending()) { - break main; - } - $i = $i + 1 | 0; - if ($i >= $l) - return $arraylist; - $ptr = 3; - continue main; - case 13: - nmcrbm_BlockPart__init_($itemmodelgenerator$spanfacing, $itemmodelgenerator$span, $parTextureAtlasSprite, $hashmap, var$17, var$11); + case 5: + $tmp = nmcrbm_ItemModelGenerator_func_178391_a($this, var$21, $l, $i, var$7, var$8); if ($rt_suspending()) { break main; } + var$38 = $tmp; + var$38 = var$38 ? 0 : 1; $ptr = 14; - case 14: + continue main; + case 6: + nmcrbm_BlockPart__init_($parTextureAtlasSprite, $itemmodelgenerator$spanfacing, $itemmodelgenerator$span, $hashmap, var$19, var$10); + if ($rt_suspending()) { + break main; + } + $ptr = 7; + case 7: + ju_ArrayList_add($arraylist, $parTextureAtlasSprite); + if ($rt_suspending()) { + break main; + } + $i = $i + 1 | 0; + if ($i >= $l) + return $arraylist; + $ptr = 3; + continue main; + case 8: + nmcrbm_BlockPart__init_($parTextureAtlasSprite, $itemmodelgenerator$spanfacing, $itemmodelgenerator$span, $hashmap, var$18, var$10); + if ($rt_suspending()) { + break main; + } + $ptr = 9; + case 9: + ju_ArrayList_add($arraylist, $parTextureAtlasSprite); + if ($rt_suspending()) { + break main; + } + $i = $i + 1 | 0; + if ($i >= $l) + return $arraylist; + $ptr = 3; + continue main; + case 10: + nmcrbm_BlockPart__init_($parTextureAtlasSprite, $itemmodelgenerator$spanfacing, $itemmodelgenerator$span, $hashmap, var$17, var$10); + if ($rt_suspending()) { + break main; + } + $ptr = 11; + case 11: + ju_ArrayList_add($arraylist, $parTextureAtlasSprite); + if ($rt_suspending()) { + break main; + } + $i = $i + 1 | 0; + if ($i >= $l) + return $arraylist; + $ptr = 3; + continue main; + case 12: + nmcrbm_BlockPart__init_($itemmodelgenerator$spanfacing, $itemmodelgenerator$span, $parTextureAtlasSprite, $hashmap, var$16, var$10); + if ($rt_suspending()) { + break main; + } + $ptr = 13; + case 13: ju_ArrayList_add($arraylist, $itemmodelgenerator$spanfacing); if ($rt_suspending()) { break main; @@ -1086283,54 +1088560,54 @@ return $arraylist; $ptr = 3; continue main; - case 15: + case 14: nmcrbm_ItemModelGenerator$SpanFacing_$callClinit(); if ($rt_suspending()) { break main; } $itemmodelgenerator$spanfacing = nmcrbm_ItemModelGenerator$SpanFacing_UP; - $ptr = 16; - case 16: - nmcrbm_ItemModelGenerator_func_178396_a($this, $itemmodelgenerator$spanfacing, $lst, var$22, $l, var$11, var$7, var$8, $i); + $ptr = 15; + case 15: + nmcrbm_ItemModelGenerator_func_178396_a($this, $itemmodelgenerator$spanfacing, $lst, var$21, $l, $i, var$7, var$8, var$38); if ($rt_suspending()) { break main; } $itemmodelgenerator$spanfacing = nmcrbm_ItemModelGenerator$SpanFacing_DOWN; - $ptr = 17; - case 17: - nmcrbm_ItemModelGenerator_func_178396_a($this, $itemmodelgenerator$spanfacing, $lst, var$22, $l, var$11, var$7, var$8, $i); + $ptr = 16; + case 16: + nmcrbm_ItemModelGenerator_func_178396_a($this, $itemmodelgenerator$spanfacing, $lst, var$21, $l, $i, var$7, var$8, var$38); if ($rt_suspending()) { break main; } $itemmodelgenerator$spanfacing = nmcrbm_ItemModelGenerator$SpanFacing_LEFT; - $ptr = 18; - case 18: - nmcrbm_ItemModelGenerator_func_178396_a($this, $itemmodelgenerator$spanfacing, $lst, var$22, $l, var$11, var$7, var$8, $i); + $ptr = 17; + case 17: + nmcrbm_ItemModelGenerator_func_178396_a($this, $itemmodelgenerator$spanfacing, $lst, var$21, $l, $i, var$7, var$8, var$38); if ($rt_suspending()) { break main; } $itemmodelgenerator$spanfacing = nmcrbm_ItemModelGenerator$SpanFacing_RIGHT; - $ptr = 19; - case 19: - nmcrbm_ItemModelGenerator_func_178396_a($this, $itemmodelgenerator$spanfacing, $lst, var$22, $l, var$11, var$7, var$8, $i); + $ptr = 18; + case 18: + nmcrbm_ItemModelGenerator_func_178396_a($this, $itemmodelgenerator$spanfacing, $lst, var$21, $l, $i, var$7, var$8, var$38); if ($rt_suspending()) { break main; } $l = $l + 1 | 0; while ($l >= var$7) { - var$11 = var$11 + 1 | 0; - if (var$11 >= var$8) { + $i = $i + 1 | 0; + if ($i >= var$8) { var$10 = var$10 + 1 | 0; $ptr = 1; continue main; } $l = 0; } - $ptr = 6; + $ptr = 5; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $parTextureAtlasSprite, $parString1, $parInt1, $f, $f1, $arraylist, var$7, var$8, $lst, var$10, var$11, $i, $l, $f15, $f16, var$16, var$17, var$18, var$19, var$20, var$21, var$22, $itemmodelgenerator$span, $f2, $f3, $f4, $f5, $f6, $f7, $f8, $f9, $f10, $f11, $f12, $f13, $f14, $itemmodelgenerator$spanfacing, $hashmap, $ptr); + $rt_nativeThread().push($this, $parTextureAtlasSprite, $parString1, $parInt1, $f, $f1, $arraylist, var$7, var$8, $lst, var$10, $i, $l, $f15, $f16, var$15, var$16, var$17, var$18, var$19, var$20, var$21, $itemmodelgenerator$span, $f3, $f4, $f6, $f7, $f8, $f9, $f10, $f11, $f12, $f13, $f14, $itemmodelgenerator$spanfacing, $f2, $f5, $hashmap, var$38, $ptr); } function nmcrbm_ItemModelGenerator_func_178396_a($this, $parSpanFacing, $parList, $parArrayOfInt, $parInt1, $parInt2, $parInt3, $parInt4, $parFlag) { var $flag, var$10, var$11, var$12, $ptr, $tmp; @@ -1089373,7 +1091650,7 @@ if ($rt_suspending()) { break main; } - if (nPs_StrUtils_endsWith($name, $rt_createArrayFromData(jl_String, [$rt_s(5271), $rt_s(5232)]))) + if (nPs_StrUtils_endsWith($name, $rt_createArrayFromData(jl_String, [$rt_s(5269), $rt_s(5232)]))) return null; $stringbuffer = $rt_s(2960); $ptr = 2; @@ -1092381,11 +1094658,11 @@ return var_3; } function cgcc_SparseImmutableTable__init_($this, $cellList, $rowSpace, $columnSpace) { - var $rowIndex, $rows, $value, var$7, $columns, $row, $iterationOrderRow, var$11, $iterationOrderColumn, var$13, $i, $col, $rowBuilder, $cell, $rowKey, $columnKey, $thisRow, $oldValue, $columnBuilder, $ptr, $tmp; + var $rowIndex, $rows, $i, $columns, $row, $iterationOrderRow, var$10, $iterationOrderColumn, var$12, $col, var$14, $rowBuilder, $cell, $rowKey, $columnKey, $value, $thisRow, $oldValue, $columnBuilder, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$columnBuilder = $thread.pop();$oldValue = $thread.pop();$thisRow = $thread.pop();$columnKey = $thread.pop();$rowKey = $thread.pop();$cell = $thread.pop();$rowBuilder = $thread.pop();$col = $thread.pop();$i = $thread.pop();var$13 = $thread.pop();$iterationOrderColumn = $thread.pop();var$11 = $thread.pop();$iterationOrderRow = $thread.pop();$row = $thread.pop();$columns = $thread.pop();var$7 = $thread.pop();$value = $thread.pop();$rows = $thread.pop();$rowIndex = $thread.pop();$columnSpace + $ptr = $thread.pop();$columnBuilder = $thread.pop();$oldValue = $thread.pop();$thisRow = $thread.pop();$value = $thread.pop();$columnKey = $thread.pop();$rowKey = $thread.pop();$cell = $thread.pop();$rowBuilder = $thread.pop();var$14 = $thread.pop();$col = $thread.pop();var$12 = $thread.pop();$iterationOrderColumn = $thread.pop();var$10 = $thread.pop();$iterationOrderRow = $thread.pop();$row = $thread.pop();$columns = $thread.pop();$i = $thread.pop();$rows = $thread.pop();$rowIndex = $thread.pop();$columnSpace = $thread.pop();$rowSpace = $thread.pop();$cellList = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { @@ -1092404,15 +1094681,15 @@ if ($rt_suspending()) { break main; } - $value = $tmp; + $rowSpace = $tmp; $ptr = 3; case 3: - $tmp = $value.$hasNext(); + $tmp = $rowSpace.$hasNext(); if ($rt_suspending()) { break main; } - var$7 = $tmp; - if (var$7) { + $i = $tmp; + if ($i) { $ptr = 5; continue main; } @@ -1092427,22 +1094704,22 @@ $ptr = 8; continue main; case 5: - $tmp = $value.$next(); + $tmp = $rowSpace.$next(); if ($rt_suspending()) { break main; } $row = $tmp; - $rowSpace = jl_Integer_valueOf0($rows.$elementCount); + $columns = jl_Integer_valueOf0($rows.$elementCount); $ptr = 6; case 6: - ju_HashMap_putImpl($rowIndex, $row, $rowSpace); + ju_HashMap_putImpl($rowIndex, $row, $columns); if ($rt_suspending()) { break main; } - $rowSpace = ju_LinkedHashMap__init_0(); + $columns = ju_LinkedHashMap__init_0(); $ptr = 7; case 7: - ju_LinkedHashMap_put($rows, $row, $rowSpace); + ju_LinkedHashMap_put($rows, $row, $columns); if ($rt_suspending()) { break main; } @@ -1092453,8 +1094730,8 @@ if ($rt_suspending()) { break main; } - var$7 = $tmp; - if (!var$7) { + $i = $tmp; + if (!$i) { $ptr = 9; continue main; } @@ -1092465,18 +1094742,18 @@ if ($rt_suspending()) { break main; } - var$7 = $tmp; - $iterationOrderRow = $rt_createIntArray(var$7); - var$11 = $iterationOrderRow.data; + $i = $tmp; + $iterationOrderRow = $rt_createIntArray($i); + var$10 = $iterationOrderRow.data; $ptr = 10; case 10: $tmp = $cellList.$size0(); if ($rt_suspending()) { break main; } - var$7 = $tmp; - $iterationOrderColumn = $rt_createIntArray(var$7); - var$13 = $iterationOrderColumn.data; + $i = $tmp; + $iterationOrderColumn = $rt_createIntArray($i); + var$12 = $iterationOrderColumn.data; $i = 0; $ptr = 13; continue main; @@ -1092500,8 +1094777,8 @@ if ($rt_suspending()) { break main; } - var$7 = $tmp; - if ($i < var$7) { + var$14 = $tmp; + if ($i < var$14) { $ptr = 16; continue main; } @@ -1092523,10 +1094800,10 @@ } $cellList = $tmp; if (!ju_LinkedHashMapIterator_hasNext($cellList)) { - $ptr = 31; + $ptr = 35; continue main; } - $ptr = 34; + $ptr = 38; continue main; case 16: $tmp = $cellList.$get2($i); @@ -1092545,7 +1094822,7 @@ break main; } $rowSpace = $tmp; - var$11[$i] = $rowSpace.$value; + var$10[$i] = $rowSpace.$value; $ptr = 18; case 18: $tmp = ju_LinkedHashMap_get($rows, $rowKey); @@ -1092554,7 +1094831,7 @@ } $rowSpace = $tmp; $thisRow = $rowSpace; - var$13[$i] = $thisRow.$size0(); + var$12[$i] = $thisRow.$size0(); $ptr = 19; case 19: $tmp = $thisRow.$put($columnKey, $value); @@ -1092567,9 +1094844,6 @@ continue main; } $cellList = new jl_IllegalArgumentException; - $rowSpace = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($rowSpace); - $columnSpace = $rt_s(7671); $ptr = 22; continue main; case 20: @@ -1092589,65 +1094863,96 @@ $ptr = 13; continue main; case 22: - jl_AbstractStringBuilder_append($rowSpace, $columnSpace); + $tmp = jl_String_valueOf($rowKey); if ($rt_suspending()) { break main; } + $rowSpace = $tmp; $ptr = 23; case 23: - jl_AbstractStringBuilder_append($rowSpace, $rowKey); + $tmp = jl_String_valueOf($columnKey); if ($rt_suspending()) { break main; } - $columnSpace = $rt_s(7672); + $columnSpace = $tmp; $ptr = 24; case 24: - jl_AbstractStringBuilder_append($rowSpace, $columnSpace); + $tmp = jl_String_valueOf($value); if ($rt_suspending()) { break main; } + $rowIndex = $tmp; $ptr = 25; case 25: - jl_AbstractStringBuilder_append($rowSpace, $columnKey); + $tmp = jl_String_valueOf($oldValue); if ($rt_suspending()) { break main; } - $columnSpace = $rt_s(18); + $rows = $tmp; + $columns = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($columns); + $rowBuilder = $rt_s(7671); $ptr = 26; case 26: - jl_AbstractStringBuilder_append($rowSpace, $columnSpace); + jl_AbstractStringBuilder_append($columns, $rowBuilder); if ($rt_suspending()) { break main; } $ptr = 27; case 27: - jl_AbstractStringBuilder_append($rowSpace, $value); + jl_AbstractStringBuilder_append($columns, $rowSpace); if ($rt_suspending()) { break main; } - $columnSpace = $rt_s(554); + $rowSpace = $rt_s(7672); $ptr = 28; case 28: - jl_AbstractStringBuilder_append($rowSpace, $columnSpace); + jl_AbstractStringBuilder_append($columns, $rowSpace); if ($rt_suspending()) { break main; } $ptr = 29; case 29: - jl_AbstractStringBuilder_append($rowSpace, $oldValue); + jl_AbstractStringBuilder_append($columns, $columnSpace); if ($rt_suspending()) { break main; } + $rowSpace = $rt_s(18); $ptr = 30; case 30: - $tmp = jl_AbstractStringBuilder_toString($rowSpace); + jl_AbstractStringBuilder_append($columns, $rowSpace); + if ($rt_suspending()) { + break main; + } + $ptr = 31; + case 31: + jl_AbstractStringBuilder_append($columns, $rowIndex); + if ($rt_suspending()) { + break main; + } + $rowSpace = $rt_s(554); + $ptr = 32; + case 32: + jl_AbstractStringBuilder_append($columns, $rowSpace); + if ($rt_suspending()) { + break main; + } + $ptr = 33; + case 33: + jl_AbstractStringBuilder_append($columns, $rows); + if ($rt_suspending()) { + break main; + } + $ptr = 34; + case 34: + $tmp = jl_AbstractStringBuilder_toString($columns); if ($rt_suspending()) { break main; } $rowSpace = $tmp; jl_Throwable__init_($cellList, $rowSpace); $rt_throw($cellList); - case 31: + case 35: $tmp = cgcc_ImmutableMap$Builder_build($rowBuilder); if ($rt_suspending()) { break main; @@ -1092655,27 +1094960,27 @@ $cellList = $tmp; $this.$rowMap0 = $cellList; $columnBuilder = cgcc_ImmutableMap_builder(); - $ptr = 32; - case 32: + $ptr = 36; + case 36: $tmp = ju_LinkedHashMap_entrySet($columns); if ($rt_suspending()) { break main; } $cellList = $tmp; - $ptr = 33; - case 33: + $ptr = 37; + case 37: $tmp = ju_LinkedHashMapEntrySet_iterator($cellList); if ($rt_suspending()) { break main; } $cellList = $tmp; if (!ju_LinkedHashMapIterator_hasNext($cellList)) { - $ptr = 37; + $ptr = 41; continue main; } - $ptr = 38; + $ptr = 42; continue main; - case 34: + case 38: $tmp = ju_LinkedHashMapIterator$EntryIterator_next($cellList); if ($rt_suspending()) { break main; @@ -1092683,41 +1094988,6 @@ $row = $tmp; $columnSpace = $row.$key; $rowSpace = $row.$value4; - $ptr = 35; - case 35: - $tmp = cgcc_ImmutableMap_copyOf($rowSpace); - if ($rt_suspending()) { - break main; - } - $rowSpace = $tmp; - $ptr = 36; - case 36: - cgcc_ImmutableMap$Builder_put($rowBuilder, $columnSpace, $rowSpace); - if ($rt_suspending()) { - break main; - } - if (!ju_LinkedHashMapIterator_hasNext($cellList)) { - $ptr = 31; - continue main; - } - $ptr = 34; - continue main; - case 37: - $tmp = cgcc_ImmutableMap$Builder_build($columnBuilder); - if ($rt_suspending()) { - break main; - } - $cellList = $tmp; - $this.$columnMap = $cellList; - return; - case 38: - $tmp = ju_LinkedHashMapIterator$EntryIterator_next($cellList); - if ($rt_suspending()) { - break main; - } - $col = $tmp; - $columnSpace = $col.$key; - $rowSpace = $col.$value4; $ptr = 39; case 39: $tmp = cgcc_ImmutableMap_copyOf($rowSpace); @@ -1092727,19 +1094997,54 @@ $rowSpace = $tmp; $ptr = 40; case 40: + cgcc_ImmutableMap$Builder_put($rowBuilder, $columnSpace, $rowSpace); + if ($rt_suspending()) { + break main; + } + if (!ju_LinkedHashMapIterator_hasNext($cellList)) { + $ptr = 35; + continue main; + } + $ptr = 38; + continue main; + case 41: + $tmp = cgcc_ImmutableMap$Builder_build($columnBuilder); + if ($rt_suspending()) { + break main; + } + $cellList = $tmp; + $this.$columnMap = $cellList; + return; + case 42: + $tmp = ju_LinkedHashMapIterator$EntryIterator_next($cellList); + if ($rt_suspending()) { + break main; + } + $col = $tmp; + $columnSpace = $col.$key; + $rowSpace = $col.$value4; + $ptr = 43; + case 43: + $tmp = cgcc_ImmutableMap_copyOf($rowSpace); + if ($rt_suspending()) { + break main; + } + $rowSpace = $tmp; + $ptr = 44; + case 44: cgcc_ImmutableMap$Builder_put($columnBuilder, $columnSpace, $rowSpace); if ($rt_suspending()) { break main; } if (!ju_LinkedHashMapIterator_hasNext($cellList)) { - $ptr = 37; + $ptr = 41; continue main; } - $ptr = 38; + $ptr = 42; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $cellList, $rowSpace, $columnSpace, $rowIndex, $rows, $value, var$7, $columns, $row, $iterationOrderRow, var$11, $iterationOrderColumn, var$13, $i, $col, $rowBuilder, $cell, $rowKey, $columnKey, $thisRow, $oldValue, $columnBuilder, $ptr); + $rt_nativeThread().push($this, $cellList, $rowSpace, $columnSpace, $rowIndex, $rows, $i, $columns, $row, $iterationOrderRow, var$10, $iterationOrderColumn, var$12, $col, var$14, $rowBuilder, $cell, $rowKey, $columnKey, $value, $thisRow, $oldValue, $columnBuilder, $ptr); } function cgcc_SparseImmutableTable_rowMap($this) { return $this.$rowMap0; @@ -1093936,7 +1096241,6 @@ var$3 = 0; if (var$3 >= var$2) { var$4 = new cgcc_Iterables$10$1; - var$4.$this$0215 = $this; var$4.$val$iterator0 = $iterator; var$4.$atStart = 1; return var$4; @@ -1093950,7 +1096254,6 @@ var$5 = $tmp; if (!var$5) { var$4 = new cgcc_Iterables$10$1; - var$4.$this$0215 = $this; var$4.$val$iterator0 = $iterator; var$4.$atStart = 1; return var$4; @@ -1093964,7 +1096267,6 @@ var$3 = var$3 + 1 | 0; if (var$3 >= var$2) { var$4 = new cgcc_Iterables$10$1; - var$4.$this$0215 = $this; var$4.$val$iterator0 = $iterator; var$4.$atStart = 1; return var$4; @@ -1097879,7 +1100181,7 @@ a.$cameraTransforms0 = null; a.$name70 = null; a.$textures0 = null; - a.$parent = null; + a.$parent2 = null; a.$parentLocation = null; } var nmcrbm_ModelBlock_LOGGER = null; @@ -1098023,7 +1100325,7 @@ var$1 = $tmp; if (!var$1) return $this.$elements2; - var$2 = $this.$parent; + var$2 = $this.$parent2; $ptr = 2; case 2: $tmp = nmcrbm_ModelBlock_getElements(var$2); @@ -1098045,7 +1100347,7 @@ } main: while (true) { switch ($ptr) { case 0: - return $this.$parent === null ? 0 : 1; + return $this.$parent2 === null ? 0 : 1; default: $rt_invalidPointer(); }} $rt_nativeThread().push($this, $ptr); @@ -1098068,7 +1100370,7 @@ var$1 = $tmp; if (!var$1) return $this.$ambientOcclusion0; - var$2 = $this.$parent; + var$2 = $this.$parent2; $ptr = 2; case 2: $tmp = nmcrbm_ModelBlock_isAmbientOcclusion(var$2); @@ -1098093,7 +1100395,7 @@ if ($this.$parentLocation === null) var$1 = 1; else { - var$2 = $this.$parent; + var$2 = $this.$parent2; if (var$2 !== null) { $ptr = 1; continue main; @@ -1098112,6 +1100414,31 @@ }} $rt_nativeThread().push($this, var$1, var$2, $ptr); } + function nmcrbm_ModelBlock_getParentFromMap($this, $parMap) { + var var$2, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$2 = $thread.pop();$parMap = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + var$2 = $this.$parentLocation; + if (var$2 === null) + return; + $ptr = 1; + case 1: + $tmp = ju_LinkedHashMap_get($parMap, var$2); + if ($rt_suspending()) { + break main; + } + $parMap = $tmp; + $this.$parent2 = $parMap; + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $parMap, var$2, $ptr); + } function nmcrbm_ModelBlock_isTexturePresent($this, $textureName) { var var$2, var$3, $ptr, $tmp; $ptr = 0; @@ -1098291,7 +1100618,7 @@ } var$3 = $tmp; if (var$3) { - $s = $this.$parent; + $s = $this.$parent2; $ptr = 10; continue main; } @@ -1098410,7 +1100737,7 @@ var$1 = $tmp; if (!var$1) return $this; - var$2 = $this.$parent; + var$2 = $this.$parent2; $ptr = 2; case 2: $tmp = nmcrbm_ModelBlock_getRootModel(var$2); @@ -1098495,7 +1100822,7 @@ } main: while (true) { switch ($ptr) { case 0: - if ($this.$parent === null) + if ($this.$parent2 === null) return nmcrbm_ItemCameraTransforms_getTransform($this.$cameraTransforms0, $parTransformType); var$2 = nmcrbm_ItemCameraTransforms_getTransform($this.$cameraTransforms0, $parTransformType); var$3 = nmcrbm_ItemTransformVec3f_DEFAULT; @@ -1098508,7 +1100835,7 @@ var$4 = $tmp; if (var$4 ? 0 : 1) return nmcrbm_ItemCameraTransforms_getTransform($this.$cameraTransforms0, $parTransformType); - var$2 = $this.$parent; + var$2 = $this.$parent2; $ptr = 2; case 2: $tmp = nmcrbm_ModelBlock_func_181681_a(var$2, $parTransformType); @@ -1098556,11 +1100883,11 @@ $modelblock = $modelblock; a: { try { - $modelblock1 = $modelblock.$parent; - $modelblock2 = $modelblock1.$parent; + $modelblock1 = $modelblock.$parent2; + $modelblock2 = $modelblock1.$parent2; while ($modelblock1 !== $modelblock2) { - $modelblock1 = $modelblock1.$parent; - $modelblock2 = $modelblock2.$parent.$parent; + $modelblock1 = $modelblock1.$parent2; + $modelblock2 = $modelblock2.$parent2.$parent2; } $rt_throw(nmcrbm_ModelBlock$LoopException__init_0()); } catch ($$e) { @@ -1099159,7 +1101486,7 @@ var$5 = null; $this.$mapTextures = var$5; $flag = $this.$mapModels === null && $this.$model1 === null ? 1 : 0; - $s = $rt_s(5269); + $s = $rt_s(5267); $ptr = 29; continue main; case 22: @@ -1099193,7 +1101520,7 @@ } $this.$mapTextures = var$5; $flag = $this.$mapModels === null && $this.$model1 === null ? 1 : 0; - $s = $rt_s(5269); + $s = $rt_s(5267); $ptr = 29; continue main; case 25: @@ -1099230,7 +1101557,7 @@ } $this.$mapTextures = var$5; $flag = $this.$mapModels === null && $this.$model1 === null ? 1 : 0; - $s = $rt_s(5269); + $s = $rt_s(5267); $ptr = 29; case 29: $tmp = ju_Properties_getProperty($props, $s); @@ -1102447,7 +1104774,7 @@ a.$columnMap0 = null; a.$rowCounts = null; a.$columnCounts = null; - a.$values57 = null; + a.$values56 = null; a.$iterationOrderRow0 = null; a.$iterationOrderColumn0 = null; } @@ -1102543,7 +1104870,7 @@ break main; } $columnIndex = $tmp; - $this.$values57 = $rt_createMultiArray(jl_Object, [$columnIndex, var$4]); + $this.$values56 = $rt_createMultiArray(jl_Object, [$columnIndex, var$4]); $ptr = 4; case 4: $tmp = cgcc_DenseImmutableTable_makeIndex($rowSpace); @@ -1102592,11 +1104919,11 @@ $this.$iterationOrderRow0 = $iterationOrderRow; $this.$iterationOrderColumn0 = $iterationOrderColumn; $cellList = new cgcc_DenseImmutableTable$RowMap; - $cellList.$this$0216 = $this; + $cellList.$this$0138 = $this; cgcc_DenseImmutableTable$ImmutableArrayMap__init_($cellList, $this.$rowCounts.data.length); $this.$rowMap1 = $cellList; $cellList = new cgcc_DenseImmutableTable$ColumnMap; - $cellList.$this$0217 = $this; + $cellList.$this$0139 = $this; cgcc_DenseImmutableTable$ImmutableArrayMap__init_($cellList, $this.$columnCounts.data.length); $this.$columnMap0 = $cellList; return; @@ -1102629,7 +1104956,7 @@ } $rowSpace = $tmp; $columnIndex = $rowSpace.$value; - var$15 = $this.$values57.data[$rowIndex].data[$columnIndex] !== null ? 0 : 1; + var$15 = $this.$values56.data[$rowIndex].data[$columnIndex] !== null ? 0 : 1; $rowSpace = $rt_s(7759); var$16 = $rt_createArrayFromData(jl_Object, [$rowKey, $columnKey]); $ptr = 12; @@ -1102638,7 +1104965,7 @@ if ($rt_suspending()) { break main; } - $this.$values57.data[$rowIndex].data[$columnIndex] = $cell.$value9; + $this.$values56.data[$rowIndex].data[$columnIndex] = $cell.$value9; $array = $this.$rowCounts.data; $array[$rowIndex] = $array[$rowIndex] + 1 | 0; $array = $this.$columnCounts.data; @@ -1102679,7 +1105006,7 @@ } $rowKey = $tmp; $columnIndex = $rowKey; - return $rowIndex !== null && $columnIndex !== null ? $this.$values57.data[$rowIndex.$value].data[$columnIndex.$value] : null; + return $rowIndex !== null && $columnIndex !== null ? $this.$values56.data[$rowIndex.$value].data[$columnIndex.$value] : null; default: $rt_invalidPointer(); }} $rt_nativeThread().push($this, $rowKey, $columnKey, $rowIndex, $columnIndex, $ptr); @@ -1102770,45 +1105097,66 @@ main: while (true) { switch ($ptr) { case 0: var$1 = $this.$rowKey; + $ptr = 1; + case 1: + $tmp = jl_String_valueOf(var$1); + if ($rt_suspending()) { + break main; + } + var$1 = $tmp; var$2 = $this.$columnKey; + $ptr = 2; + case 2: + $tmp = jl_String_valueOf(var$2); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; var$3 = $this.$value9; + $ptr = 3; + case 3: + $tmp = jl_String_valueOf(var$3); + if ($rt_suspending()) { + break main; + } + var$3 = $tmp; var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); jl_AbstractStringBuilder_append0(var$4, 40); - $ptr = 1; - case 1: + $ptr = 4; + case 4: jl_AbstractStringBuilder_append(var$4, var$1); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append0(var$4, 44); - $ptr = 2; - case 2: + $ptr = 5; + case 5: jl_AbstractStringBuilder_append(var$4, var$2); if ($rt_suspending()) { break main; } - var$2 = $rt_s(7760); - $ptr = 3; - case 3: - jl_AbstractStringBuilder_append(var$4, var$2); + var$1 = $rt_s(7760); + $ptr = 6; + case 6: + jl_AbstractStringBuilder_append(var$4, var$1); if ($rt_suspending()) { break main; } - $ptr = 4; - case 4: + $ptr = 7; + case 7: jl_AbstractStringBuilder_append(var$4, var$3); if ($rt_suspending()) { break main; } - $ptr = 5; - case 5: + $ptr = 8; + case 8: $tmp = jl_AbstractStringBuilder_toString(var$4); if ($rt_suspending()) { break main; } - var$2 = $tmp; - return var$2; + var$1 = $tmp; + return var$1; default: $rt_invalidPointer(); }} $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); @@ -1103822,11 +1106170,11 @@ return jl_Character_isDigit(jl_String_charAt($p_startsWithDigit_1_, 0)); } function nPs_ConnectedParser_parseBlockMetadatas($this, $p_parseBlockMetadatas_1_, $p_parseBlockMetadatas_2_) { - var $k, $s, $collection, $map, $i, $list1, $aint1, $i1, $s1, $iblockstate, $aint, $astring, $s2, $s3, $iproperty, $iblockstate1, $list, $astring1, $j, $s4, $comparable, var$24, var$25, $$je, $ptr, $tmp; + var $k, $s, $collection, $map, $i, $list1, $aint1, $i1, $s1, $iblockstate, $aint, $astring, $astring1, $s2, $s3, $s4, $iproperty, $iblockstate1, $list, $j, $comparable, var$24, var$25, $$je, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$25 = $thread.pop();var$24 = $thread.pop();$comparable = $thread.pop();$s4 = $thread.pop();$j = $thread.pop();$astring1 = $thread.pop();$list = $thread.pop();$iblockstate1 = $thread.pop();$iproperty = $thread.pop();$s3 = $thread.pop();$s2 = $thread.pop();$astring = $thread.pop();$aint = $thread.pop();$iblockstate = $thread.pop();$s1 = $thread.pop();$i1 = $thread.pop();$aint1 = $thread.pop();$list1 = $thread.pop();$i = $thread.pop();$map = $thread.pop();$collection = $thread.pop();$s + $ptr = $thread.pop();var$25 = $thread.pop();var$24 = $thread.pop();$comparable = $thread.pop();$j = $thread.pop();$list = $thread.pop();$iblockstate1 = $thread.pop();$iproperty = $thread.pop();$s4 = $thread.pop();$s3 = $thread.pop();$s2 = $thread.pop();$astring1 = $thread.pop();$astring = $thread.pop();$aint = $thread.pop();$iblockstate = $thread.pop();$s1 = $thread.pop();$i1 = $thread.pop();$aint1 = $thread.pop();$list1 = $thread.pop();$i = $thread.pop();$map = $thread.pop();$collection = $thread.pop();$s = $thread.pop();$k = $thread.pop();$p_parseBlockMetadatas_2_ = $thread.pop();$p_parseBlockMetadatas_1_ = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { @@ -1103868,8 +1106216,8 @@ $aint1 = $rt_createIntArray($k); $p_parseBlockMetadatas_2_ = $aint1.data; $i1 = 0; - $k = $p_parseBlockMetadatas_2_.length; - if ($i1 >= $k) + $i = $p_parseBlockMetadatas_2_.length; + if ($i1 >= $i) return $aint1; $ptr = 14; continue main; @@ -1103895,16 +1106243,16 @@ break main; } $astring = $tmp; - $astring = $astring.data; - if ($astring.length != 2) { + $astring1 = $astring.data; + if ($astring1.length != 2) { $p_parseBlockMetadatas_1_ = new jl_StringBuilder; jl_AbstractStringBuilder__init_($p_parseBlockMetadatas_1_); $iblockstate = $rt_s(7786); $ptr = 4; continue main; } - $s2 = $astring[0]; - $s3 = $astring[1]; + $s2 = $astring1[0]; + $s3 = $astring1[1]; $iblockstate = $collection.$val$c0; $ptr = 3; case 3: @@ -1103913,7 +1106261,7 @@ break main; } $iblockstate = $tmp; - $s1 = ju_Collections_unmodifiableIterator($iblockstate); + $s4 = ju_Collections_unmodifiableIterator($iblockstate); $ptr = 8; continue main; case 4: @@ -1103942,7 +1106290,7 @@ } return null; case 8: - $tmp = ju_Collections$11_hasNext($s1); + $tmp = ju_Collections$11_hasNext($s4); if ($rt_suspending()) { break main; } @@ -1103956,9 +1106304,6 @@ $ptr = 15; continue main; } - $iblockstate = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($iblockstate); - $s1 = $rt_s(7787); $ptr = 16; continue main; case 9: @@ -1103998,8 +1106343,8 @@ $aint1 = $rt_createIntArray($k); $p_parseBlockMetadatas_2_ = $aint1.data; $i1 = 0; - $k = $p_parseBlockMetadatas_2_.length; - if ($i1 >= $k) + $i = $p_parseBlockMetadatas_2_.length; + if ($i1 >= $i) return $aint1; $ptr = 14; continue main; @@ -1104010,8 +1106355,8 @@ if ($rt_suspending()) { break main; } - $i1 = $tmp; - if (!$i1) + $i = $tmp; + if (!$i) break a; $iblockstate = jl_Integer_valueOf0($k); $ptr = 13; @@ -1104045,13 +1106390,13 @@ $aint1 = $rt_createIntArray($k); $p_parseBlockMetadatas_2_ = $aint1.data; $i1 = 0; - $k = $p_parseBlockMetadatas_2_.length; - if ($i1 >= $k) + $i = $p_parseBlockMetadatas_2_.length; + if ($i1 >= $i) return $aint1; $ptr = 14; continue main; case 11: - $tmp = ju_Collections$11_next($s1); + $tmp = ju_Collections$11_next($s4); if ($rt_suspending()) { break main; } @@ -1104073,9 +1106418,6 @@ $ptr = 15; continue main; } - $iblockstate = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($iblockstate); - $s1 = $rt_s(7787); $ptr = 16; continue main; case 13: @@ -1104115,8 +1106457,8 @@ $aint1 = $rt_createIntArray($k); $p_parseBlockMetadatas_2_ = $aint1.data; $i1 = 0; - $k = $p_parseBlockMetadatas_2_.length; - if ($i1 >= $k) + $i = $p_parseBlockMetadatas_2_.length; + if ($i1 >= $i) return $aint1; $ptr = 14; case 14: @@ -1104127,7 +1106469,7 @@ $p_parseBlockMetadatas_1_ = $tmp; $p_parseBlockMetadatas_2_[$i1] = $p_parseBlockMetadatas_1_.$value; $i1 = $i1 + 1 | 0; - if ($i1 >= $k) + if ($i1 >= $i) return $aint1; continue main; case 15: @@ -1104139,58 +1106481,68 @@ $list = $iblockstate; if ($list !== null) { $iblockstate = $rt_s(907); - $ptr = 23; + $ptr = 24; continue main; } $list = ju_ArrayList__init_0(); - $ptr = 22; + $ptr = 23; continue main; case 16: - jl_AbstractStringBuilder_append($iblockstate, $s1); + $tmp = jl_String_valueOf($p_parseBlockMetadatas_1_); if ($rt_suspending()) { break main; } + $p_parseBlockMetadatas_1_ = $tmp; + $iblockstate = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($iblockstate); + $s4 = $rt_s(7787); $ptr = 17; case 17: + jl_AbstractStringBuilder_append($iblockstate, $s4); + if ($rt_suspending()) { + break main; + } + $ptr = 18; + case 18: jl_AbstractStringBuilder_append($iblockstate, $s2); if ($rt_suspending()) { break main; } - $s1 = $rt_s(7788); - $ptr = 18; - case 18: - jl_AbstractStringBuilder_append($iblockstate, $s1); - if ($rt_suspending()) { - break main; - } + $s4 = $rt_s(7788); $ptr = 19; case 19: - jl_AbstractStringBuilder_append($iblockstate, $p_parseBlockMetadatas_1_); + jl_AbstractStringBuilder_append($iblockstate, $s4); if ($rt_suspending()) { break main; } $ptr = 20; case 20: + jl_AbstractStringBuilder_append($iblockstate, $p_parseBlockMetadatas_1_); + if ($rt_suspending()) { + break main; + } + $ptr = 21; + case 21: $tmp = jl_AbstractStringBuilder_toString($iblockstate); if ($rt_suspending()) { break main; } $p_parseBlockMetadatas_1_ = $tmp; - $ptr = 21; - case 21: + $ptr = 22; + case 22: nPs_ConnectedParser_warn($this, $p_parseBlockMetadatas_1_); if ($rt_suspending()) { break main; } return null; - case 22: + case 23: ju_HashMap_putImpl($map, $iproperty, $list); if ($rt_suspending()) { break main; } $iblockstate = $rt_s(907); - $ptr = 23; - case 23: + $ptr = 24; + case 24: $tmp = nPs_Config_tokenize($s3, $iblockstate); if ($rt_suspending()) { break main; @@ -1104225,8 +1106577,8 @@ $aint1 = $rt_createIntArray($k); $p_parseBlockMetadatas_2_ = $aint1.data; $i1 = 0; - $k = $p_parseBlockMetadatas_2_.length; - if ($i1 >= $k) + $i = $p_parseBlockMetadatas_2_.length; + if ($i1 >= $i) return $aint1; $ptr = 14; continue main; @@ -1104242,23 +1106594,23 @@ continue main; } $s4 = $astring[$j]; - $iblockstate = $iproperty.$valueClass; - if ($iblockstate === $rt_cls(jl_String)) + $comparable = $iproperty.$valueClass; + if ($comparable === $rt_cls(jl_String)) $comparable = $s4; - else if ($iblockstate === $rt_cls(jl_Boolean)) + else if ($comparable === $rt_cls(jl_Boolean)) $comparable = jl_Boolean_valueOf0($s4); else { - if ($iblockstate === $rt_cls(jl_Float)) + if ($comparable === $rt_cls(jl_Float)) var$24 = (jl_Float_valueOf0($s4)).$value3; - else if ($iblockstate === $rt_cls(jl_Double)) + else if ($comparable === $rt_cls(jl_Double)) var$24 = (jl_Double_valueOf0($s4)).$value16; else { - if ($iblockstate === $rt_cls(jl_Integer)) { - $ptr = 26; + if ($comparable === $rt_cls(jl_Integer)) { + $ptr = 27; continue main; } - if ($iblockstate === $rt_cls(jl_Long)) { - $ptr = 39; + if ($comparable === $rt_cls(jl_Long)) { + $ptr = 41; continue main; } var$24 = Long_toNumber(null.$value6); @@ -1104267,46 +1106619,40 @@ } if ($comparable === null) { $iblockstate = $iproperty.$getAllowedValues(); - $ptr = 24; + $ptr = 25; continue main; } if ($comparable !== null) { - $ptr = 27; + $ptr = 28; continue main; } - $iblockstate = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($iblockstate); - $s1 = $rt_s(7789); - $ptr = 28; + $ptr = 29; continue main; - case 24: + case 25: $tmp = $iblockstate.$iterator(); if ($rt_suspending()) { break main; } $iblockstate = $tmp; - $ptr = 25; - case 25: + $ptr = 26; + case 26: $tmp = $iblockstate.$hasNext(); if ($rt_suspending()) { break main; } $i1 = $tmp; if ($i1) { - $ptr = 36; + $ptr = 38; continue main; } $comparable = null; if ($comparable !== null) { - $ptr = 27; + $ptr = 28; continue main; } - $iblockstate = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($iblockstate); - $s1 = $rt_s(7789); - $ptr = 28; + $ptr = 29; continue main; - case 26: + case 27: $tmp = jl_Integer_valueOf($s4); if ($rt_suspending()) { break main; @@ -1104315,19 +1106661,16 @@ $comparable = jl_Double_valueOf(Long_toNumber(Long_fromInt($iblockstate.$value))); if ($comparable === null) { $iblockstate = $iproperty.$getAllowedValues(); - $ptr = 24; + $ptr = 25; continue main; } if ($comparable !== null) { - $ptr = 27; + $ptr = 28; continue main; } - $iblockstate = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($iblockstate); - $s1 = $rt_s(7789); - $ptr = 28; + $ptr = 29; continue main; - case 27: + case 28: $list.$add($comparable); if ($rt_suspending()) { break main; @@ -1104361,8 +1106704,8 @@ $aint1 = $rt_createIntArray($k); $p_parseBlockMetadatas_2_ = $aint1.data; $i1 = 0; - $k = $p_parseBlockMetadatas_2_.length; - if ($i1 >= $k) + $i = $p_parseBlockMetadatas_2_.length; + if ($i1 >= $i) return $aint1; $ptr = 14; continue main; @@ -1104378,23 +1106721,23 @@ continue main; } $s4 = $astring[$j]; - $iblockstate = $iproperty.$valueClass; - if ($iblockstate === $rt_cls(jl_String)) + $comparable = $iproperty.$valueClass; + if ($comparable === $rt_cls(jl_String)) $comparable = $s4; - else if ($iblockstate === $rt_cls(jl_Boolean)) + else if ($comparable === $rt_cls(jl_Boolean)) $comparable = jl_Boolean_valueOf0($s4); else { - if ($iblockstate === $rt_cls(jl_Float)) + if ($comparable === $rt_cls(jl_Float)) var$24 = (jl_Float_valueOf0($s4)).$value3; - else if ($iblockstate === $rt_cls(jl_Double)) + else if ($comparable === $rt_cls(jl_Double)) var$24 = (jl_Double_valueOf0($s4)).$value16; else { - if ($iblockstate === $rt_cls(jl_Integer)) { - $ptr = 26; + if ($comparable === $rt_cls(jl_Integer)) { + $ptr = 27; continue main; } - if ($iblockstate === $rt_cls(jl_Long)) { - $ptr = 39; + if ($comparable === $rt_cls(jl_Long)) { + $ptr = 41; continue main; } var$24 = Long_toNumber(null.$value6); @@ -1104403,102 +1106746,106 @@ } if ($comparable === null) { $iblockstate = $iproperty.$getAllowedValues(); - $ptr = 24; + $ptr = 25; continue main; } if ($comparable !== null) { continue main; } - $iblockstate = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($iblockstate); - $s1 = $rt_s(7789); - $ptr = 28; - case 28: - jl_AbstractStringBuilder_append($iblockstate, $s1); - if ($rt_suspending()) { - break main; - } $ptr = 29; case 29: - jl_AbstractStringBuilder_append($iblockstate, $s4); + $tmp = jl_String_valueOf($p_parseBlockMetadatas_1_); if ($rt_suspending()) { break main; } - $s1 = $rt_s(7790); + $p_parseBlockMetadatas_1_ = $tmp; + $iblockstate = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($iblockstate); + $collection = $rt_s(7789); $ptr = 30; case 30: - jl_AbstractStringBuilder_append($iblockstate, $s1); + jl_AbstractStringBuilder_append($iblockstate, $collection); if ($rt_suspending()) { break main; } $ptr = 31; case 31: - jl_AbstractStringBuilder_append($iblockstate, $s2); + jl_AbstractStringBuilder_append($iblockstate, $s4); if ($rt_suspending()) { break main; } - $s1 = $rt_s(7788); + $s4 = $rt_s(7790); $ptr = 32; case 32: - jl_AbstractStringBuilder_append($iblockstate, $s1); + jl_AbstractStringBuilder_append($iblockstate, $s4); if ($rt_suspending()) { break main; } $ptr = 33; case 33: + jl_AbstractStringBuilder_append($iblockstate, $s2); + if ($rt_suspending()) { + break main; + } + $s4 = $rt_s(7788); + $ptr = 34; + case 34: + jl_AbstractStringBuilder_append($iblockstate, $s4); + if ($rt_suspending()) { + break main; + } + $ptr = 35; + case 35: jl_AbstractStringBuilder_append($iblockstate, $p_parseBlockMetadatas_1_); if ($rt_suspending()) { break main; } - $ptr = 34; - case 34: + $ptr = 36; + case 36: $tmp = jl_AbstractStringBuilder_toString($iblockstate); if ($rt_suspending()) { break main; } $p_parseBlockMetadatas_1_ = $tmp; - $ptr = 35; - case 35: + $ptr = 37; + case 37: nPs_ConnectedParser_warn($this, $p_parseBlockMetadatas_1_); if ($rt_suspending()) { break main; } return null; - case 36: + case 38: $tmp = $iblockstate.$next(); if ($rt_suspending()) { break main; } - $s1 = $tmp; - $ptr = 37; - case 37: - $tmp = jl_String_valueOf($s1); + $comparable = $tmp; + $ptr = 39; + case 39: + $tmp = jl_String_valueOf($comparable); if ($rt_suspending()) { break main; } $s3 = $tmp; - $ptr = 38; - case 38: + $ptr = 40; + case 40: $tmp = jl_String_equals($s3, $s4); if ($rt_suspending()) { break main; } $i1 = $tmp; if (!$i1) { - $ptr = 25; + $ptr = 26; continue main; } - $comparable = $s1; + $comparable = $comparable; if ($comparable !== null) { - $ptr = 27; + $ptr = 28; continue main; } - $iblockstate = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($iblockstate); - $s1 = $rt_s(7789); - $ptr = 28; + $ptr = 29; continue main; - case 39: + case 41: $tmp = jl_Long_parseLong($s4); if ($rt_suspending()) { break main; @@ -1104507,21 +1106854,18 @@ $comparable = jl_Double_valueOf(Long_toNumber((jl_Long_valueOf(var$25)).$value6)); if ($comparable === null) { $iblockstate = $iproperty.$getAllowedValues(); - $ptr = 24; + $ptr = 25; continue main; } if ($comparable !== null) { - $ptr = 27; + $ptr = 28; continue main; } - $iblockstate = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($iblockstate); - $s1 = $rt_s(7789); - $ptr = 28; + $ptr = 29; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $p_parseBlockMetadatas_1_, $p_parseBlockMetadatas_2_, $k, $s, $collection, $map, $i, $list1, $aint1, $i1, $s1, $iblockstate, $aint, $astring, $s2, $s3, $iproperty, $iblockstate1, $list, $astring1, $j, $s4, $comparable, var$24, var$25, $ptr); + $rt_nativeThread().push($this, $p_parseBlockMetadatas_1_, $p_parseBlockMetadatas_2_, $k, $s, $collection, $map, $i, $list1, $aint1, $i1, $s1, $iblockstate, $aint, $astring, $astring1, $s2, $s3, $s4, $iproperty, $iblockstate1, $list, $j, $comparable, var$24, var$25, $ptr); } function nPs_ConnectedParser_getStateFromMeta($this, $p_getStateFromMeta_1_, $p_getStateFromMeta_2_) { var $iblockstate, $iblockstate1, var$5, $$je, $ptr, $tmp; @@ -1105844,11 +1108188,11 @@ $rt_nativeThread().push($this, $ptr); } function nPs_EntityUtils__clinit_() { - var $i, $oclass, $s, var$4, var$5, var$6, var$7, $ptr, $tmp; + var $i, $oclass, $s, var$4, var$5, var$6, var$7, var$8, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$s = $thread.pop();$oclass = $thread.pop();$i = $thread.pop(); + $ptr = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$s = $thread.pop();$oclass = $thread.pop();$i = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -1105895,14 +1108239,12 @@ break main; } var$5 = $tmp; - if (!var$5) { - var$4 = nPs_EntityUtils_mapIdByName; - $ptr = 4; + if (var$5) { + $ptr = 5; continue main; } - var$4 = nPs_EntityUtils_mapIdByClass; - $ptr = 5; - continue main; + var$4 = nPs_EntityUtils_mapIdByName; + $ptr = 4; case 4: $tmp = ju_HashMap_containsKey(var$4, $s); if ($rt_suspending()) { @@ -1105911,37 +1108253,39 @@ var$5 = $tmp; if (!var$5) { var$4 = nPs_EntityUtils_mapClassByName; - $ptr = 13; + $ptr = 15; continue main; } var$4 = nPs_EntityUtils_mapIdByName; - $ptr = 14; + $ptr = 16; continue main; case 5: - $tmp = ju_HashMap_get(var$4, $oclass); + $tmp = jl_String_valueOf($oclass); if ($rt_suspending()) { break main; } var$6 = $tmp; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - var$4 = $rt_s(7800); + var$4 = nPs_EntityUtils_mapIdByClass; $ptr = 6; case 6: - jl_AbstractStringBuilder_append(var$7, var$4); + $tmp = ju_HashMap_get(var$4, $oclass); if ($rt_suspending()) { break main; } + var$4 = $tmp; $ptr = 7; case 7: - jl_AbstractStringBuilder_append(var$7, $oclass); + $tmp = jl_String_valueOf(var$4); if ($rt_suspending()) { break main; } - var$4 = $rt_s(7801); + var$4 = $tmp; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + var$8 = $rt_s(7800); $ptr = 8; case 8: - jl_AbstractStringBuilder_append(var$7, var$4); + jl_AbstractStringBuilder_append(var$7, var$8); if ($rt_suspending()) { break main; } @@ -1105951,23 +1108295,36 @@ if ($rt_suspending()) { break main; } - var$4 = $rt_s(7802); + var$8 = $rt_s(7801); $ptr = 10; case 10: + jl_AbstractStringBuilder_append(var$7, var$8); + if ($rt_suspending()) { + break main; + } + $ptr = 11; + case 11: + jl_AbstractStringBuilder_append(var$7, var$4); + if ($rt_suspending()) { + break main; + } + var$4 = $rt_s(7802); + $ptr = 12; + case 12: jl_AbstractStringBuilder_append(var$7, var$4); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append1(var$7, $i); - $ptr = 11; - case 11: + $ptr = 13; + case 13: $tmp = jl_AbstractStringBuilder_toString(var$7); if ($rt_suspending()) { break main; } var$4 = $tmp; - $ptr = 12; - case 12: + $ptr = 14; + case 14: nPs_Config_warn(var$4); if ($rt_suspending()) { break main; @@ -1105975,7 +1108332,7 @@ var$4 = nPs_EntityUtils_mapIdByName; $ptr = 4; continue main; - case 13: + case 15: $tmp = ju_HashMap_containsKey(var$4, $s); if ($rt_suspending()) { break main; @@ -1105983,87 +1108340,94 @@ var$5 = $tmp; if (var$5) { var$4 = nPs_EntityUtils_mapClassByName; - $ptr = 25; + $ptr = 28; continue main; } var$4 = nPs_EntityUtils_mapIdByClass; - var$6 = jl_Integer_valueOf0($i); - $ptr = 22; + var$7 = jl_Integer_valueOf0($i); + $ptr = 25; continue main; - case 14: + case 16: $tmp = ju_HashMap_get(var$4, $s); if ($rt_suspending()) { break main; } - var$7 = $tmp; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - var$6 = $rt_s(7803); - $ptr = 15; - case 15: - jl_AbstractStringBuilder_append(var$4, var$6); - if ($rt_suspending()) { - break main; - } - $ptr = 16; - case 16: - jl_AbstractStringBuilder_append(var$4, $s); - if ($rt_suspending()) { - break main; - } - var$6 = $rt_s(7801); + var$4 = $tmp; $ptr = 17; case 17: - jl_AbstractStringBuilder_append(var$4, var$6); + $tmp = jl_String_valueOf(var$4); if ($rt_suspending()) { break main; } + var$8 = $tmp; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + var$7 = $rt_s(7803); $ptr = 18; case 18: jl_AbstractStringBuilder_append(var$4, var$7); if ($rt_suspending()) { break main; } - var$6 = $rt_s(7802); $ptr = 19; case 19: - jl_AbstractStringBuilder_append(var$4, var$6); + jl_AbstractStringBuilder_append(var$4, $s); + if ($rt_suspending()) { + break main; + } + var$7 = $rt_s(7801); + $ptr = 20; + case 20: + jl_AbstractStringBuilder_append(var$4, var$7); + if ($rt_suspending()) { + break main; + } + $ptr = 21; + case 21: + jl_AbstractStringBuilder_append(var$4, var$8); + if ($rt_suspending()) { + break main; + } + var$7 = $rt_s(7802); + $ptr = 22; + case 22: + jl_AbstractStringBuilder_append(var$4, var$7); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append1(var$4, $i); - $ptr = 20; - case 20: + $ptr = 23; + case 23: $tmp = jl_AbstractStringBuilder_toString(var$4); if ($rt_suspending()) { break main; } var$4 = $tmp; - $ptr = 21; - case 21: + $ptr = 24; + case 24: nPs_Config_warn(var$4); if ($rt_suspending()) { break main; } var$4 = nPs_EntityUtils_mapClassByName; - $ptr = 13; + $ptr = 15; continue main; - case 22: - ju_HashMap_putImpl(var$4, $oclass, var$6); + case 25: + ju_HashMap_putImpl(var$4, $oclass, var$7); if ($rt_suspending()) { break main; } var$4 = nPs_EntityUtils_mapIdByName; - var$6 = jl_Integer_valueOf0($i); - $ptr = 23; - case 23: - ju_HashMap_putImpl(var$4, $s, var$6); + var$7 = jl_Integer_valueOf0($i); + $ptr = 26; + case 26: + ju_HashMap_putImpl(var$4, $s, var$7); if ($rt_suspending()) { break main; } var$4 = nPs_EntityUtils_mapClassByName; - $ptr = 24; - case 24: + $ptr = 27; + case 27: ju_HashMap_putImpl(var$4, $s, $oclass); if ($rt_suspending()) { break main; @@ -1106073,78 +1108437,91 @@ return; $ptr = 1; continue main; - case 25: + case 28: $tmp = ju_HashMap_get(var$4, $s); if ($rt_suspending()) { break main; } - var$7 = $tmp; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - var$6 = $rt_s(7803); - $ptr = 26; - case 26: - jl_AbstractStringBuilder_append(var$4, var$6); - if ($rt_suspending()) { - break main; - } - $ptr = 27; - case 27: - jl_AbstractStringBuilder_append(var$4, $s); - if ($rt_suspending()) { - break main; - } - var$6 = $rt_s(7804); - $ptr = 28; - case 28: - jl_AbstractStringBuilder_append(var$4, var$6); - if ($rt_suspending()) { - break main; - } + var$4 = $tmp; $ptr = 29; case 29: - jl_AbstractStringBuilder_append(var$4, var$7); + $tmp = jl_String_valueOf(var$4); if ($rt_suspending()) { break main; } - var$6 = $rt_s(7805); + var$8 = $tmp; $ptr = 30; case 30: - jl_AbstractStringBuilder_append(var$4, var$6); + $tmp = jl_String_valueOf($oclass); if ($rt_suspending()) { break main; } + var$6 = $tmp; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); + var$7 = $rt_s(7803); $ptr = 31; case 31: - jl_AbstractStringBuilder_append(var$4, $oclass); + jl_AbstractStringBuilder_append(var$4, var$7); if ($rt_suspending()) { break main; } $ptr = 32; case 32: + jl_AbstractStringBuilder_append(var$4, $s); + if ($rt_suspending()) { + break main; + } + var$7 = $rt_s(7804); + $ptr = 33; + case 33: + jl_AbstractStringBuilder_append(var$4, var$7); + if ($rt_suspending()) { + break main; + } + $ptr = 34; + case 34: + jl_AbstractStringBuilder_append(var$4, var$8); + if ($rt_suspending()) { + break main; + } + var$7 = $rt_s(7805); + $ptr = 35; + case 35: + jl_AbstractStringBuilder_append(var$4, var$7); + if ($rt_suspending()) { + break main; + } + $ptr = 36; + case 36: + jl_AbstractStringBuilder_append(var$4, var$6); + if ($rt_suspending()) { + break main; + } + $ptr = 37; + case 37: $tmp = jl_AbstractStringBuilder_toString(var$4); if ($rt_suspending()) { break main; } var$4 = $tmp; - $ptr = 33; - case 33: + $ptr = 38; + case 38: nPs_Config_warn(var$4); if ($rt_suspending()) { break main; } var$4 = nPs_EntityUtils_mapIdByClass; - var$6 = jl_Integer_valueOf0($i); - $ptr = 22; + var$7 = jl_Integer_valueOf0($i); + $ptr = 25; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($i, $oclass, $s, var$4, var$5, var$6, var$7, $ptr); + $rt_nativeThread().push($i, $oclass, $s, var$4, var$5, var$6, var$7, var$8, $ptr); } function nmcp_EffectRenderer$1() { - var a = this; jl_Object.call(a); - a.$val$parEntityFX = null; - a.$this$0138 = null; + jl_Object.call(this); + this.$val$parEntityFX = null; } function nmcp_EffectRenderer$1_call($this) { var var$1, $ptr, $tmp; @@ -1106169,9 +1108546,8 @@ $rt_nativeThread().push($this, var$1, $ptr); } function nmcp_EffectRenderer$2() { - var a = this; jl_Object.call(a); - a.$val$i0 = 0; - a.$this$0139 = null; + jl_Object.call(this); + this.$val$i0 = 0; } function nmcp_EffectRenderer$2_call($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1107067,8 +1109443,7 @@ $rt_nativeThread().push($this, $parTransformType, $itemtransformvec3f, var$3, var$4, var$5, var$6, $ptr); } function nmcrbm_ItemCameraTransforms_getTransform($this, $parTransformType) { - nmcrbm_ItemCameraTransforms$1_$callClinit(); - switch (nmcrbm_ItemCameraTransforms$1_$SwitchMap$net$minecraft$client$renderer$block$model$ItemCameraTransforms$TransformType.data[$parTransformType.$ordinal]) { + switch ($parTransformType.$ordinal) { case 1: break; case 2: @@ -1107330,15 +1109705,15 @@ function cgcc_DenseImmutableTable$ImmutableArrayMap_createEntrySet($this) { var var$1; var$1 = new cgcc_DenseImmutableTable$ImmutableArrayMap$1; - var$1.$this$0218 = $this; + var$1.$this$0140 = $this; return var$1; } function cgcc_DenseImmutableTable$RowMap() { cgcc_DenseImmutableTable$ImmutableArrayMap.call(this); - this.$this$0216 = null; + this.$this$0138 = null; } function cgcc_DenseImmutableTable$RowMap_keyToIndex($this) { - return $this.$this$0216.$rowKeyToIndex; + return $this.$this$0138.$rowKeyToIndex; } function cgcc_DenseImmutableTable$RowMap_isPartialView($this) { return 0; @@ -1107346,15 +1109721,15 @@ function cgcc_DenseImmutableTable$RowMap_getValue($this, var$1) { var var$2, var$3; var$2 = new cgcc_DenseImmutableTable$Row; - var$3 = $this.$this$0216; - var$2.$this$0219 = var$3; + var$3 = $this.$this$0138; + var$2.$this$0141 = var$3; cgcc_DenseImmutableTable$ImmutableArrayMap__init_(var$2, var$3.$rowCounts.data[var$1]); var$2.$rowIndex = var$1; return var$2; } function cgcc_DenseImmutableTable$ColumnMap() { cgcc_DenseImmutableTable$ImmutableArrayMap.call(this); - this.$this$0217 = null; + this.$this$0139 = null; } var cgcc_Tables$1 = $rt_classWithoutFields(); function cgcc_Tables$1__init_0() { @@ -1110841,7 +1113216,7 @@ var$10 = var$2; var$11 = var$3; var$12 = var$4; - var$9.$this$0220 = $this; + var$9.$this$0142 = $this; var$9.$val$var1 = var$1; var$9.$val$d01 = var$2; var$9.$val$d11 = var$3; @@ -1113539,7 +1115914,6 @@ if ($s === null) return; $icommandsender = new nmc_CommandResultStats$1; - $icommandsender.$this$0221 = $this; $icommandsender.$val$sender = $sender; try { $ptr = 1; @@ -1114016,37 +1116390,44 @@ if ($integer === null) { $integer = new jl_IllegalArgumentException; $object = jl_Object_getClass($object); - $datawatcher$watchableobject = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($datawatcher$watchableobject); - var$5 = $rt_s(7843); $ptr = 3; continue main; } if ($id <= 31) { $datawatcher$watchableobject = $this.$watchedObjects; var$5 = jl_Integer_valueOf0($id); - $ptr = 6; + $ptr = 7; continue main; } $object = new jl_IllegalArgumentException; $integer = new jl_StringBuilder; jl_AbstractStringBuilder__init_($integer); - $datawatcher$watchableobject = $rt_s(7844); - $ptr = 7; + $datawatcher$watchableobject = $rt_s(7843); + $ptr = 8; continue main; case 3: - jl_AbstractStringBuilder_append($datawatcher$watchableobject, var$5); + $tmp = jl_String_valueOf($object); if ($rt_suspending()) { break main; } + $object = $tmp; + $datawatcher$watchableobject = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($datawatcher$watchableobject); + var$5 = $rt_s(7844); $ptr = 4; case 4: - jl_AbstractStringBuilder_append($datawatcher$watchableobject, $object); + jl_AbstractStringBuilder_append($datawatcher$watchableobject, var$5); if ($rt_suspending()) { break main; } $ptr = 5; case 5: + jl_AbstractStringBuilder_append($datawatcher$watchableobject, $object); + if ($rt_suspending()) { + break main; + } + $ptr = 6; + case 6: $tmp = jl_AbstractStringBuilder_toString($datawatcher$watchableobject); if ($rt_suspending()) { break main; @@ -1114054,7 +1116435,7 @@ $object = $tmp; jl_Throwable__init_($integer, $object); $rt_throw($integer); - case 6: + case 7: $tmp = ju_HashMap_containsKey($datawatcher$watchableobject, var$5); if ($rt_suspending()) { break main; @@ -1114065,29 +1116446,29 @@ $integer = new jl_StringBuilder; jl_AbstractStringBuilder__init_($integer); $datawatcher$watchableobject = $rt_s(7845); - $ptr = 11; + $ptr = 12; continue main; } $datawatcher$watchableobject = nme_DataWatcher$WatchableObject__init_($integer.$value, $id, $object); $object = $this.$watchedObjects; $integer = jl_Integer_valueOf0($id); - $ptr = 10; + $ptr = 11; continue main; - case 7: + case 8: jl_AbstractStringBuilder_append($integer, $datawatcher$watchableobject); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append1($integer, $id); $datawatcher$watchableobject = $rt_s(7846); - $ptr = 8; - case 8: + $ptr = 9; + case 9: jl_AbstractStringBuilder_append($integer, $datawatcher$watchableobject); if ($rt_suspending()) { break main; } - $ptr = 9; - case 9: + $ptr = 10; + case 10: $tmp = jl_AbstractStringBuilder_toString($integer); if ($rt_suspending()) { break main; @@ -1114095,22 +1116476,22 @@ $integer = $tmp; jl_Throwable__init_($object, $integer); $rt_throw($object); - case 10: + case 11: ju_HashMap_putImpl($object, $integer, $datawatcher$watchableobject); if ($rt_suspending()) { break main; } $this.$isBlank0 = 0; return; - case 11: + case 12: jl_AbstractStringBuilder_append($integer, $datawatcher$watchableobject); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append1($integer, $id); jl_AbstractStringBuilder_append0($integer, 33); - $ptr = 12; - case 12: + $ptr = 13; + case 13: $tmp = jl_AbstractStringBuilder_toString($integer); if ($rt_suspending()) { break main; @@ -1116792,11 +1119173,11 @@ $rt_nativeThread().push($this, $parJsonElement, $jsonobject, $jsonarray2, $jsonarray1, $ichatcomponent, $i, $l, $object, $s, $aobject, $jsonobject1, $jsonarray, var$13, $j, $ichatcomponent1, $chatcomponenttext, $ptr); } function nmu_IChatComponent$Serializer_serialize($this, $ichatcomponent) { - var $i, $jsonobject, $lst, var$5, $jsonarray, $i_0, $l, $chatcomponenttranslation, $chatcomponentscore, $jsonobject1, $chatcomponentselector, $arr, $jsonarray1, var$15, $object, $ptr, $tmp; + var $i, $jsonobject, $lst, $l, $jsonarray, $i_0, $chatcomponenttranslation, $chatcomponentscore, $jsonobject1, $chatcomponentselector, $jsonarray1, $arr, var$14, $object, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$object = $thread.pop();var$15 = $thread.pop();$jsonarray1 = $thread.pop();$arr = $thread.pop();$chatcomponentselector = $thread.pop();$jsonobject1 = $thread.pop();$chatcomponentscore = $thread.pop();$chatcomponenttranslation = $thread.pop();$l = $thread.pop();$i_0 = $thread.pop();$jsonarray = $thread.pop();var$5 = $thread.pop();$lst = $thread.pop();$jsonobject = $thread.pop();$i = $thread.pop();$ichatcomponent = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();$object = $thread.pop();var$14 = $thread.pop();$arr = $thread.pop();$jsonarray1 = $thread.pop();$chatcomponentselector = $thread.pop();$jsonobject1 = $thread.pop();$chatcomponentscore = $thread.pop();$chatcomponenttranslation = $thread.pop();$i_0 = $thread.pop();$jsonarray = $thread.pop();$l = $thread.pop();$lst = $thread.pop();$jsonobject = $thread.pop();$i = $thread.pop();$ichatcomponent = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -1116826,8 +1119207,8 @@ if ($rt_suspending()) { break main; } - var$5 = $tmp; - if (!var$5) { + $l = $tmp; + if (!$l) { $jsonarray = oj_JSONArray__init_0(); $lst = $ichatcomponent.$siblings; $i_0 = 0; @@ -1116859,18 +1119240,15 @@ $ptr = 17; continue main; } - if ($ichatcomponent instanceof nmu_ChatComponentSelector) { - $chatcomponentselector = $ichatcomponent; - $lst = $rt_s(7856); - $ichatcomponent = $chatcomponentselector.$selector; - $ptr = 23; + if (!($ichatcomponent instanceof nmu_ChatComponentSelector)) { + $jsonobject = new jl_IllegalArgumentException; + $ptr = 24; continue main; } - $jsonobject = new jl_IllegalArgumentException; - $lst = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($lst); - $jsonarray = $rt_s(7861); - $ptr = 24; + $chatcomponentselector = $ichatcomponent; + $ichatcomponent = $rt_s(7856); + $lst = $chatcomponentselector.$selector; + $ptr = 23; continue main; case 3: $tmp = nlevj_JSONTypeProvider_serialize($lst); @@ -1116885,14 +1119263,14 @@ if ($rt_suspending()) { break main; } - $jsonarray = $tmp; + $chatcomponentscore = $tmp; $ptr = 5; case 5: - $tmp = $jsonarray.$iterator(); + $tmp = $chatcomponentscore.$iterator(); if ($rt_suspending()) { break main; } - $jsonarray = $tmp; + $chatcomponentscore = $tmp; $ptr = 7; continue main; case 6: @@ -1116900,19 +1119278,19 @@ if ($rt_suspending()) { break main; } - var$5 = $tmp; - if (var$5) + $l = $tmp; + if ($l) return $ichatcomponent.$text; $jsonobject = new oj_JSONObject; $ptr = 1; continue main; case 7: - $tmp = $jsonarray.$hasNext(); + $tmp = $chatcomponentscore.$hasNext(); if ($rt_suspending()) { break main; } - var$5 = $tmp; - if (var$5) { + $l = $tmp; + if ($l) { $ptr = 9; continue main; } @@ -1116926,22 +1119304,22 @@ } return $jsonobject; case 9: - $tmp = $jsonarray.$next(); - if ($rt_suspending()) { - break main; - } - $chatcomponentscore = $tmp; - $chatcomponentscore = $chatcomponentscore; - $ptr = 10; - case 10: - $tmp = oj_JSONObject_get($lst, $chatcomponentscore); + $tmp = $chatcomponentscore.$next(); if ($rt_suspending()) { break main; } $jsonobject1 = $tmp; + $jsonobject1 = $jsonobject1; + $ptr = 10; + case 10: + $tmp = oj_JSONObject_get($lst, $jsonobject1); + if ($rt_suspending()) { + break main; + } + $jsonarray1 = $tmp; $ptr = 11; case 11: - oj_JSONObject_put($jsonobject, $chatcomponentscore, $jsonobject1); + oj_JSONObject_put($jsonobject, $jsonobject1, $jsonarray1); if ($rt_suspending()) { break main; } @@ -1116957,19 +1119335,19 @@ $jsonarray1 = oj_JSONArray__init_0(); $arr = $chatcomponenttranslation.$formatArgs; $i = 0; - var$15 = $arr.data; - if ($i >= var$15.length) { + var$14 = $arr.data; + if ($i >= var$14.length) { $ichatcomponent = $rt_s(7857); - $ptr = 28; - continue main; - } - $object = var$15[$i]; - if (!$rt_isInstance($object, nmu_IChatComponent)) { $ptr = 29; continue main; } + $object = var$14[$i]; + if (!$rt_isInstance($object, nmu_IChatComponent)) { + $ptr = 30; + continue main; + } $ichatcomponent = $object; - $ptr = 31; + $ptr = 32; continue main; } return $jsonobject; @@ -1116997,18 +1119375,15 @@ $ptr = 17; continue main; } - if ($ichatcomponent instanceof nmu_ChatComponentSelector) { - $chatcomponentselector = $ichatcomponent; - $lst = $rt_s(7856); - $ichatcomponent = $chatcomponentselector.$selector; - $ptr = 23; + if (!($ichatcomponent instanceof nmu_ChatComponentSelector)) { + $jsonobject = new jl_IllegalArgumentException; + $ptr = 24; continue main; } - $jsonobject = new jl_IllegalArgumentException; - $lst = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($lst); - $jsonarray = $rt_s(7861); - $ptr = 24; + $chatcomponentselector = $ichatcomponent; + $ichatcomponent = $rt_s(7856); + $lst = $chatcomponentselector.$selector; + $ptr = 23; continue main; case 14: $tmp = ju_ArrayList_get($lst, $i_0); @@ -1117051,11 +1119426,11 @@ if ($rt_suspending()) { break main; } - $lst = $rt_s(7859); - $ichatcomponent = $chatcomponentscore.$objective0; + $ichatcomponent = $rt_s(7859); + $lst = $chatcomponentscore.$objective0; $ptr = 19; case 19: - oj_JSONObject_put($jsonobject1, $lst, $ichatcomponent); + oj_JSONObject_put($jsonobject1, $ichatcomponent, $lst); if ($rt_suspending()) { break main; } @@ -1117082,31 +1119457,41 @@ } return $jsonobject; case 23: - oj_JSONObject_put($jsonobject, $lst, $ichatcomponent); + oj_JSONObject_put($jsonobject, $ichatcomponent, $lst); if ($rt_suspending()) { break main; } return $jsonobject; case 24: - jl_AbstractStringBuilder_append($lst, $jsonarray); + $tmp = jl_String_valueOf($ichatcomponent); if ($rt_suspending()) { break main; } + $ichatcomponent = $tmp; + $lst = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($lst); + $chatcomponentscore = $rt_s(7861); $ptr = 25; case 25: - jl_AbstractStringBuilder_append($lst, $ichatcomponent); + jl_AbstractStringBuilder_append($lst, $chatcomponentscore); if ($rt_suspending()) { break main; } - $ichatcomponent = $rt_s(7862); $ptr = 26; case 26: jl_AbstractStringBuilder_append($lst, $ichatcomponent); if ($rt_suspending()) { break main; } + $ichatcomponent = $rt_s(7862); $ptr = 27; case 27: + jl_AbstractStringBuilder_append($lst, $ichatcomponent); + if ($rt_suspending()) { + break main; + } + $ptr = 28; + case 28: $tmp = jl_AbstractStringBuilder_toString($lst); if ($rt_suspending()) { break main; @@ -1117114,68 +1119499,68 @@ $ichatcomponent = $tmp; jl_Throwable__init_($jsonobject, $ichatcomponent); $rt_throw($jsonobject); - case 28: + case 29: oj_JSONObject_put($jsonobject, $ichatcomponent, $jsonarray1); if ($rt_suspending()) { break main; } return $jsonobject; - case 29: + case 30: $tmp = jl_String_valueOf($object); if ($rt_suspending()) { break main; } $ichatcomponent = $tmp; - $ptr = 30; - case 30: + $ptr = 31; + case 31: oj_JSONArray_put($jsonarray1, $ichatcomponent); if ($rt_suspending()) { break main; } $i = $i + 1 | 0; - var$15 = $arr.data; - if ($i >= var$15.length) { + var$14 = $arr.data; + if ($i >= var$14.length) { $ichatcomponent = $rt_s(7857); - $ptr = 28; - continue main; - } - $object = var$15[$i]; - if (!$rt_isInstance($object, nmu_IChatComponent)) { $ptr = 29; continue main; } + $object = var$14[$i]; + if (!$rt_isInstance($object, nmu_IChatComponent)) { + $ptr = 30; + continue main; + } $ichatcomponent = $object; - $ptr = 31; - case 31: + $ptr = 32; + case 32: $tmp = nmu_IChatComponent$Serializer_serialize($this, $ichatcomponent); if ($rt_suspending()) { break main; } $ichatcomponent = $tmp; - $ptr = 32; - case 32: + $ptr = 33; + case 33: oj_JSONArray_put($jsonarray1, $ichatcomponent); if ($rt_suspending()) { break main; } $i = $i + 1 | 0; - var$15 = $arr.data; - if ($i >= var$15.length) { + var$14 = $arr.data; + if ($i >= var$14.length) { $ichatcomponent = $rt_s(7857); - $ptr = 28; - continue main; - } - $object = var$15[$i]; - if (!$rt_isInstance($object, nmu_IChatComponent)) { $ptr = 29; continue main; } + $object = var$14[$i]; + if (!$rt_isInstance($object, nmu_IChatComponent)) { + $ptr = 30; + continue main; + } $ichatcomponent = $object; - $ptr = 31; + $ptr = 32; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $ichatcomponent, $i, $jsonobject, $lst, var$5, $jsonarray, $i_0, $l, $chatcomponenttranslation, $chatcomponentscore, $jsonobject1, $chatcomponentselector, $arr, $jsonarray1, var$15, $object, $ptr); + $rt_nativeThread().push($this, $ichatcomponent, $i, $jsonobject, $lst, $l, $jsonarray, $i_0, $chatcomponenttranslation, $chatcomponentscore, $jsonobject1, $chatcomponentselector, $jsonarray1, $arr, var$14, $object, $ptr); } function nmu_IChatComponent$Serializer_componentToJson($component) { var $escaped, var$3, var$4, $ptr, $tmp; @@ -1119171,81 +1121556,95 @@ var$6 = var$3.$z1; if (var$6 >= (-16.0) && var$4 <= 32.0 && var$5 <= 32.0 && var$6 <= 32.0) { var$2 = $rt_s(7883); - $ptr = 5; + $ptr = 6; continue main; } } } var$1 = new oj_JSONException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - var$7 = $rt_s(7884); $ptr = 2; case 2: - jl_AbstractStringBuilder_append(var$2, var$7); + $tmp = jl_String_valueOf(var$3); if ($rt_suspending()) { break main; } + var$2 = $tmp; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + var$8 = $rt_s(7884); $ptr = 3; case 3: - jl_AbstractStringBuilder_append(var$2, var$3); + jl_AbstractStringBuilder_append(var$7, var$8); if ($rt_suspending()) { break main; } $ptr = 4; case 4: - $tmp = jl_AbstractStringBuilder_toString(var$2); + jl_AbstractStringBuilder_append(var$7, var$2); + if ($rt_suspending()) { + break main; + } + $ptr = 5; + case 5: + $tmp = jl_AbstractStringBuilder_toString(var$7); if ($rt_suspending()) { break main; } var$2 = $tmp; jl_Throwable__init_(var$1, var$2); $rt_throw(var$1); - case 5: + case 6: $tmp = nmcrbm_BlockPart$Deserializer_parsePosition($this, var$1, var$2); if ($rt_suspending()) { break main; } var$8 = $tmp; - var$9 = var$8.$x1; - if (var$9 >= (-16.0)) { - var$4 = var$8.$y1; - if (var$4 >= (-16.0)) { - var$5 = var$8.$z1; - if (var$5 >= (-16.0) && var$9 <= 32.0 && var$4 <= 32.0 && var$5 <= 32.0) { + var$6 = var$8.$x1; + if (var$6 >= (-16.0)) { + var$9 = var$8.$y1; + if (var$9 >= (-16.0)) { + var$4 = var$8.$z1; + if (var$4 >= (-16.0) && var$6 <= 32.0 && var$9 <= 32.0 && var$4 <= 32.0) { var$2 = null; var$7 = $rt_s(2212); - $ptr = 9; + $ptr = 11; continue main; } } } var$1 = new oj_JSONException; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); - var$7 = $rt_s(7885); - $ptr = 6; - case 6: - jl_AbstractStringBuilder_append(var$2, var$7); - if ($rt_suspending()) { - break main; - } $ptr = 7; case 7: - jl_AbstractStringBuilder_append(var$2, var$8); + $tmp = jl_String_valueOf(var$8); if ($rt_suspending()) { break main; } + var$2 = $tmp; + var$7 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$7); + var$8 = $rt_s(7885); $ptr = 8; case 8: - $tmp = jl_AbstractStringBuilder_toString(var$2); + jl_AbstractStringBuilder_append(var$7, var$8); + if ($rt_suspending()) { + break main; + } + $ptr = 9; + case 9: + jl_AbstractStringBuilder_append(var$7, var$2); + if ($rt_suspending()) { + break main; + } + $ptr = 10; + case 10: + $tmp = jl_AbstractStringBuilder_toString(var$7); if ($rt_suspending()) { break main; } var$2 = $tmp; jl_Throwable__init_(var$1, var$2); $rt_throw(var$1); - case 9: + case 11: $tmp = oj_JSONObject_has(var$1, var$7); if ($rt_suspending()) { break main; @@ -1119253,21 +1121652,21 @@ var$10 = $tmp; if (var$10) { var$2 = $rt_s(2212); - $ptr = 10; + $ptr = 12; continue main; } var$7 = $rt_cls(nmu_EnumFacing); - $ptr = 14; + $ptr = 16; continue main; - case 10: + case 12: $tmp = oj_JSONObject_getJSONObject(var$1, var$2); if ($rt_suspending()) { break main; } var$7 = $tmp; var$2 = $rt_s(7886); - $ptr = 11; - case 11: + $ptr = 13; + case 13: $tmp = nmcrbm_BlockPart$Deserializer_parsePosition($this, var$7, var$2); if ($rt_suspending()) { break main; @@ -1119275,16 +1121674,16 @@ var$11 = $tmp; nlevv_Vector3f_scale(var$11, 0.0625); var$2 = $rt_s(1337); - $ptr = 12; - case 12: + $ptr = 14; + case 14: $tmp = oj_JSONObject_getString(var$7, var$2); if ($rt_suspending()) { break main; } var$2 = $tmp; var$12 = jl_String_toLowerCase(var$2); - $ptr = 13; - case 13: + $ptr = 15; + case 15: nmu_EnumFacing$Axis_$callClinit(); if ($rt_suspending()) { break main; @@ -1119292,52 +1121691,52 @@ if (var$12 !== null) { var$13 = nmu_EnumFacing$Axis_NAME_LOOKUP; var$12 = jl_String_toLowerCase(var$12); - $ptr = 18; + $ptr = 20; continue main; } var$12 = null; if (var$12 !== null) { var$2 = $rt_s(7887); - $ptr = 22; + $ptr = 24; continue main; } var$1 = new oj_JSONException; var$7 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$7); var$8 = $rt_s(7888); - $ptr = 23; + $ptr = 25; continue main; - case 14: + case 16: $tmp = cgcc_Maps_newEnumMap(var$7); if ($rt_suspending()) { break main; } var$11 = $tmp; var$7 = $rt_s(7889); - $ptr = 15; - case 15: + $ptr = 17; + case 17: $tmp = oj_JSONObject_getJSONObject(var$1, var$7); if ($rt_suspending()) { break main; } var$7 = $tmp; - $ptr = 16; - case 16: + $ptr = 18; + case 18: $tmp = oj_JSONObject_keySet(var$7); if ($rt_suspending()) { break main; } var$12 = $tmp; - $ptr = 17; - case 17: + $ptr = 19; + case 19: $tmp = var$12.$iterator(); if ($rt_suspending()) { break main; } var$12 = $tmp; - $ptr = 19; + $ptr = 21; continue main; - case 18: + case 20: $tmp = ju_HashMap_get(var$13, var$12); if ($rt_suspending()) { break main; @@ -1119346,23 +1121745,23 @@ var$12 = var$12; if (var$12 !== null) { var$2 = $rt_s(7887); - $ptr = 22; + $ptr = 24; continue main; } var$1 = new oj_JSONException; var$7 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$7); var$8 = $rt_s(7888); - $ptr = 23; + $ptr = 25; continue main; - case 19: + case 21: $tmp = var$12.$hasNext(); if ($rt_suspending()) { break main; } var$10 = $tmp; if (var$10) { - $ptr = 20; + $ptr = 22; continue main; } if (ju_AbstractMap_isEmpty(var$11)) { @@ -1119371,33 +1121770,33 @@ $rt_throw(var$2); } var$7 = $rt_s(7891); - $ptr = 26; + $ptr = 28; continue main; - case 20: + case 22: $tmp = var$12.$next(); if ($rt_suspending()) { break main; } var$13 = $tmp; var$13 = var$13; - $ptr = 21; - case 21: + $ptr = 23; + case 23: $tmp = nmu_EnumFacing_byName(var$13); if ($rt_suspending()) { break main; } var$14 = $tmp; if (var$14 !== null) { - $ptr = 27; + $ptr = 29; continue main; } var$1 = new oj_JSONException; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); var$7 = $rt_s(7892); - $ptr = 29; + $ptr = 31; continue main; - case 22: + case 24: $tmp = oj_JSONObject_getFloat(var$7, var$2); if ($rt_suspending()) { break main; @@ -1119408,26 +1121807,26 @@ var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); var$7 = $rt_s(7893); - $ptr = 36; + $ptr = 38; continue main; } var$2 = $rt_s(7894); var$10 = 0; - $ptr = 32; + $ptr = 34; continue main; - case 23: + case 25: jl_AbstractStringBuilder_append(var$7, var$8); if ($rt_suspending()) { break main; } - $ptr = 24; - case 24: + $ptr = 26; + case 26: jl_AbstractStringBuilder_append(var$7, var$2); if ($rt_suspending()) { break main; } - $ptr = 25; - case 25: + $ptr = 27; + case 27: $tmp = jl_AbstractStringBuilder_toString(var$7); if ($rt_suspending()) { break main; @@ -1119435,7 +1121834,7 @@ var$2 = $tmp; jl_Throwable__init_(var$1, var$2); $rt_throw(var$1); - case 26: + case 28: $tmp = oj_JSONObject_has(var$1, var$7); if ($rt_suspending()) { break main; @@ -1119443,43 +1121842,43 @@ var$10 = $tmp; if (var$10) { var$7 = $rt_s(7891); - $ptr = 35; + $ptr = 37; continue main; } var$7 = $rt_s(7891); var$10 = 1; - $ptr = 33; + $ptr = 35; continue main; - case 27: + case 29: $tmp = oj_JSONObject_getJSONObject(var$7, var$13); if ($rt_suspending()) { break main; } var$13 = $tmp; var$15 = $rt_cls(nmcrbm_BlockPartFace); - $ptr = 28; - case 28: + $ptr = 30; + case 30: $tmp = nlevj_JSONTypeProvider_deserialize(var$13, var$15); if ($rt_suspending()) { break main; } var$13 = $tmp; ju_EnumMap_put(var$11, var$14, var$13); - $ptr = 19; + $ptr = 21; continue main; - case 29: + case 31: jl_AbstractStringBuilder_append(var$2, var$7); if ($rt_suspending()) { break main; } - $ptr = 30; - case 30: + $ptr = 32; + case 32: jl_AbstractStringBuilder_append(var$2, var$13); if ($rt_suspending()) { break main; } - $ptr = 31; - case 31: + $ptr = 33; + case 33: $tmp = jl_AbstractStringBuilder_toString(var$2); if ($rt_suspending()) { break main; @@ -1119487,7 +1121886,7 @@ var$2 = $tmp; jl_Throwable__init_(var$1, var$2); $rt_throw(var$1); - case 32: + case 34: $tmp = oj_JSONObject_optBoolean(var$7, var$2, var$10); if ($rt_suspending()) { break main; @@ -1119499,23 +1121898,23 @@ var$2.$angle = var$4; var$2.$rescale = var$10; var$7 = $rt_cls(nmu_EnumFacing); - $ptr = 14; + $ptr = 16; continue main; - case 33: + case 35: $tmp = oj_JSONObject_optBoolean(var$1, var$7, var$10); if ($rt_suspending()) { break main; } var$10 = $tmp; var$1 = new nmcrbm_BlockPart; - $ptr = 34; - case 34: + $ptr = 36; + case 36: nmcrbm_BlockPart__init_(var$1, var$3, var$8, var$11, var$2, var$10); if ($rt_suspending()) { break main; } return var$1; - case 35: + case 37: $tmp = oj_JSONObject_get(var$1, var$7); if ($rt_suspending()) { break main; @@ -1119528,23 +1121927,23 @@ } var$7 = $rt_s(7891); var$10 = 1; - $ptr = 33; + $ptr = 35; continue main; - case 36: + case 38: jl_AbstractStringBuilder_append(var$2, var$7); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append6(var$2, var$4); var$7 = $rt_s(7896); - $ptr = 37; - case 37: + $ptr = 39; + case 39: jl_AbstractStringBuilder_append(var$2, var$7); if ($rt_suspending()) { break main; } - $ptr = 38; - case 38: + $ptr = 40; + case 40: $tmp = jl_AbstractStringBuilder_toString(var$2); if ($rt_suspending()) { break main; @@ -1119620,7 +1122019,7 @@ break main; } var$5 = $tmp; - var$2 = $rt_s(5269); + var$2 = $rt_s(5267); $ptr = 4; case 4: $tmp = oj_JSONObject_getString(var$1, var$2); @@ -1126330,7 +1128729,7 @@ } function nmw_World$3() { jl_Object.call(this); - this.$this$0104 = null; + this.$this$074 = null; } function nmw_World$3_call($this) { var var$1, var$2, var$3, var$4, $ptr, $tmp; @@ -1126341,7 +1128740,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0104.$playerEntities; + var$1 = $this.$this$074.$playerEntities; var$2 = var$1.$size; $ptr = 1; case 1: @@ -1126380,7 +1128779,7 @@ } function nmw_World$4() { jl_Object.call(this); - this.$this$0105 = null; + this.$this$075 = null; } function nmw_World$4_call($this) { var var$1, $ptr, $tmp; @@ -1126391,7 +1128790,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0105.$chunkProvider; + var$1 = $this.$this$075.$chunkProvider; $ptr = 1; case 1: $tmp = var$1.$makeString(); @@ -1139141,7 +1141540,7 @@ } function ju_Hashtable$4() { ju_AbstractSet.call(this); - this.$this$024 = null; + this.$this$013 = null; } function ju_Hashtable$4_contains($this, $object) { var var$2, var$3, $ptr, $tmp; @@ -1139152,7 +1141551,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$2 = $this.$this$024; + var$2 = $this.$this$013; $ptr = 1; case 1: $tmp = ju_Hashtable_containsKey(var$2, $object); @@ -1139176,7 +1141575,6 @@ var a = this; jl_Object.call(a); a.$atStart = 0; a.$val$iterator0 = null; - a.$this$0215 = null; } function cgcc_Iterables$10$1_hasNext($this) { return ju_AbstractList$1_hasNext($this.$val$iterator0); @@ -1141130,10 +1143528,10 @@ $this.$skinsHeight0 = $w; if ($this.$scrollPos1 == (-1)) $this.$scrollPos1 = $this.$selectedSlot0 - 2 | 0; - $skinHeight = $this.$scrollPos1; - $skinX = $numberOfCustomSkins - $hover | 0; - if ($skinHeight > $skinX) - $this.$scrollPos1 = $skinX; + $skinX = $this.$scrollPos1; + $skinHeight = $numberOfCustomSkins - $hover | 0; + if ($skinX > $skinHeight) + $this.$scrollPos1 = $skinHeight; if ($this.$scrollPos1 < 0) $this.$scrollPos1 = 0; if (!$this.$dropDownOpen0) { @@ -1141220,7 +1143618,7 @@ $skinY = $skinX + 4 | 0; $skinX = $skinX + 14 | 0; $scrollerPos = 2013265919; - $ptr = 42; + $ptr = 43; continue main; } if ($numberOfCustomSkins >= 0 && $scrollerSize < 0) { @@ -1141229,7 +1143627,7 @@ $skinY = $skinX + 4 | 0; $skinX = $skinX + 14 | 0; $scrollerPos = 1442840575; - $ptr = 46; + $ptr = 47; continue main; } } @@ -1141237,7 +1143635,7 @@ $customSkin = $this.$dropDownOptions0.data[$i + $this.$scrollPos1 | 0]; $skinX = $yy + ($i * 10 | 0) | 0; $skinY = 14737632; - $ptr = 43; + $ptr = 44; continue main; } $i = $i + 1 | 0; @@ -1141295,7 +1143693,7 @@ } nlevi_EnumCursorType_$callClinit(); $defaultSkin = nlevi_EnumCursorType_HAND; - $ptr = 41; + $ptr = 42; continue main; case 33: $tmp = nlevp_DefaultCapes_getCapeFromId($skinX); @@ -1141335,23 +1143733,30 @@ if ($rt_suspending()) { break main; } - $customSkin = nmu_EnumChatFormatting_UNDERLINE; - $defaultSkin = jl_StringBuilder__init_(); + $defaultSkin = nmu_EnumChatFormatting_UNDERLINE; $ptr = 38; case 38: + $tmp = jl_String_valueOf($defaultSkin); + if ($rt_suspending()) { + break main; + } + $customSkin = $tmp; + $defaultSkin = jl_StringBuilder__init_(); + $ptr = 39; + case 39: $tmp = jl_StringBuilder_append($defaultSkin, $customSkin); if ($rt_suspending()) { break main; } $customSkin = $tmp; - $ptr = 39; - case 39: + $ptr = 40; + case 40: jl_StringBuilder_append($customSkin, $text); if ($rt_suspending()) { break main; } - $ptr = 40; - case 40: + $ptr = 41; + case 41: $tmp = jl_StringBuilder_toString($defaultSkin); if ($rt_suspending()) { break main; @@ -1141360,9 +1143765,9 @@ $skinX = 5; $skinY = 5; $skinWidth = !$hover ? (-3355444) : (-1118686); - $ptr = 44; + $ptr = 45; continue main; - case 41: + case 42: nlev_Mouse_showCursor($defaultSkin); if ($rt_suspending()) { break main; @@ -1141370,7 +1143775,7 @@ $capeTexture = $this.$mc15.$fontRendererObj; $ptr = 37; continue main; - case 42: + case 43: nmcg_Gui_drawRect($skid, $skinY, $hover, $skinX, $scrollerPos); if ($rt_suspending()) { break main; @@ -1141379,8 +1143784,8 @@ $customSkin = $this.$dropDownOptions0.data[$i + $this.$scrollPos1 | 0]; $skinX = $yy + ($i * 10 | 0) | 0; $skinY = 14737632; - $ptr = 43; - case 43: + $ptr = 44; + case 44: nmcg_Gui_drawString($this, $defaultSkin, $customSkin, $xx, $skinX, $skinY); if ($rt_suspending()) { break main; @@ -1141399,7 +1143804,7 @@ $skinY = $skinX + 4 | 0; $skinX = $skinX + 14 | 0; $scrollerPos = 2013265919; - $ptr = 42; + $ptr = 43; continue main; } if ($numberOfCustomSkins >= 0 && $scrollerSize < 0) { @@ -1141408,7 +1143813,7 @@ $skinY = $skinX + 4 | 0; $skinX = $skinX + 14 | 0; $scrollerPos = 1442840575; - $ptr = 46; + $ptr = 47; continue main; } } @@ -1141430,13 +1143835,13 @@ $skinHeight = (-7829368); $ptr = 35; continue main; - case 44: + case 45: nmcg_Gui_drawString($this, $capeTexture, $defaultSkin, $skinX, $skinY, $skinWidth); if ($rt_suspending()) { break main; } - $ptr = 45; - case 45: + $ptr = 46; + case 46: nlevo_GlStateManager_popMatrix(); if ($rt_suspending()) { break main; @@ -1141452,7 +1143857,7 @@ $defaultSkin = nlevp_EaglerProfile_customCapes; $ptr = 34; continue main; - case 46: + case 47: nmcg_Gui_drawRect($skid, $skinY, $hover, $skinX, $scrollerPos); if ($rt_suspending()) { break main; @@ -1141461,7 +1143866,7 @@ $customSkin = $this.$dropDownOptions0.data[$i + $this.$scrollPos1 | 0]; $skinX = $yy + ($i * 10 | 0) | 0; $skinY = 14737632; - $ptr = 43; + $ptr = 44; continue main; default: $rt_invalidPointer(); }} @@ -1148507,7 +1150912,7 @@ function cgcc_MultimapBuilder$MultimapBuilderWithKeys$1() { var a = this; cgcc_MultimapBuilder$ListMultimapBuilder.call(a); a.$val$expectedValuesPerKey = 0; - a.$this$0194 = null; + a.$this$0123 = null; } function cgcc_MultimapBuilder$MultimapBuilderWithKeys$1_build($this) { var var$1, var$2, var$3, var$4, $ptr, $tmp; @@ -1148518,7 +1150923,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0194; + var$1 = $this.$this$0123; var$2 = ju_HashMap__init_1(var$1.$val$expectedKeys); var$1 = new cgcc_MultimapBuilder$ArrayListSupplier; var$3 = $this.$val$expectedValuesPerKey; @@ -1148542,7 +1150947,7 @@ function cjj_Inflate$Return() { var a = this; jl_Exception.call(a); a.$r = 0; - a.$this$0222 = null; + a.$this$0143 = null; } function cjj_Inflate$Return__init_(var_0, var_1) { var var_2 = new cjj_Inflate$Return(); @@ -1148550,7 +1150955,7 @@ return var_2; } function cjj_Inflate$Return__init_0($this, var$1, $r) { - $this.$this$0222 = var$1; + $this.$this$0143 = var$1; jl_Throwable__init_0($this); $this.$r = $r; } @@ -1148632,7 +1151037,7 @@ } function nlevv_GuiVoiceMenu$AbortedException() { jl_RuntimeException.call(this); - this.$this$0223 = null; + this.$this$0144 = null; } function nlevv_GuiVoiceMenu$AbortedException__init_(var_0) { var var_1 = new nlevv_GuiVoiceMenu$AbortedException(); @@ -1148640,7 +1151045,7 @@ return var_1; } function nlevv_GuiVoiceMenu$AbortedException__init_0($this, $this$0) { - $this.$this$0223 = $this$0; + $this.$this$0144 = $this$0; jl_Throwable__init_0($this); } function nmcg_ChatLine() { @@ -1148766,6 +1151171,9 @@ function nmcn_NetworkPlayerInfo_func_178844_b($this, $parLong1) { $this.$field_178868_l = $parLong1; } + function nmcn_NetworkPlayerInfo_func_178843_c($this, $parLong1) { + $this.$field_178869_m = $parLong1; + } function nms_IScoreObjectiveCriteria$EnumRenderType() { jl_Enum.call(this); this.$field_178798_d = null; @@ -1151696,7 +1154104,6 @@ a.$facing2 = null; a.$setFacing = null; a.$counter = 0; - a.$this$0224 = null; } function nmcr_RenderGlobal$ContainerLocalRenderInformation__init_0(var_0, var_1, var_2, var_3) { var var_4 = new nmcr_RenderGlobal$ContainerLocalRenderInformation(); @@ -1151712,7 +1154119,6 @@ } main: while (true) { switch ($ptr) { case 0: - $this.$this$0224 = $this$0; $this$0 = $rt_cls(nmu_EnumFacing); $ptr = 1; case 1: @@ -1151758,9 +1154164,8 @@ return nmu_BlockPos_crossProduct($this, var$1); } function nmcp_EffectRenderer$3() { - var a = this; jl_Object.call(a); - a.$val$entityfx = null; - a.$this$0140 = null; + jl_Object.call(this); + this.$val$entityfx = null; } function nmcp_EffectRenderer$3_call($this) { var var$1, $ptr, $tmp; @@ -1151785,9 +1154190,8 @@ $rt_nativeThread().push($this, var$1, $ptr); } function nmcp_EffectRenderer$4() { - var a = this; jl_Object.call(a); - a.$val$l = 0; - a.$this$0141 = null; + jl_Object.call(this); + this.$val$l = 0; } function nmcp_EffectRenderer$4_call($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1154150,10 +1156554,7 @@ }} $rt_nativeThread().push($this, $prog, var$2, var$3, $ptr); } - function nlevoed_ForwardRenderCallbackHandler$1() { - jl_Object.call(this); - this.$this$0196 = null; - } + var nlevoed_ForwardRenderCallbackHandler$1 = $rt_classWithoutFields(); function nlevoed_ForwardRenderCallbackHandler$1_compare($this, var$1, var$2) { var var$3; var$1 = var$1; @@ -1154694,7 +1157095,7 @@ function cgcc_LinkedListMultimap$1() { var a = this; ju_AbstractSequentialList.call(a); a.$val$key0 = null; - a.$this$0197 = null; + a.$this$0124 = null; } function cgcc_LinkedListMultimap$1_size($this) { var $keyList, var$2, $ptr, $tmp; @@ -1154705,7 +1157106,7 @@ } main: while (true) { switch ($ptr) { case 0: - $keyList = $this.$this$0197.$keyToKeyList; + $keyList = $this.$this$0124.$keyToKeyList; var$2 = $this.$val$key0; $ptr = 1; case 1: @@ -1154730,9 +1157131,9 @@ main: while (true) { switch ($ptr) { case 0: var$2 = new cgcc_LinkedListMultimap$ValueForKeyIterator; - var$3 = $this.$this$0197; + var$3 = $this.$this$0124; var$4 = $this.$val$key0; - var$2.$this$0225 = var$3; + var$2.$this$0145 = var$3; var$3 = var$3.$keyToKeyList; $ptr = 1; case 1: @@ -1155420,27 +1157821,41 @@ main: while (true) { switch ($ptr) { case 0: var$1 = $this.$position16; + $ptr = 1; + case 1: + $tmp = jl_String_valueOf(var$1); + if ($rt_suspending()) { + break main; + } + var$1 = $tmp; var$2 = $this.$eventID; var$3 = $this.$eventParameter; var$4 = $this.$blockType0; + $ptr = 2; + case 2: + $tmp = jl_String_valueOf(var$4); + if ($rt_suspending()) { + break main; + } + var$4 = $tmp; var$5 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$5); var$6 = $rt_s(8288); - $ptr = 1; - case 1: + $ptr = 3; + case 3: jl_AbstractStringBuilder_append(var$5, var$6); if ($rt_suspending()) { break main; } - $ptr = 2; - case 2: + $ptr = 4; + case 4: jl_AbstractStringBuilder_append(var$5, var$1); if ($rt_suspending()) { break main; } var$1 = $rt_s(8289); - $ptr = 3; - case 3: + $ptr = 5; + case 5: jl_AbstractStringBuilder_append(var$5, var$1); if ($rt_suspending()) { break main; @@ -1155449,14 +1157864,14 @@ jl_AbstractStringBuilder_append0(var$5, 44); jl_AbstractStringBuilder_append1(var$5, var$3); jl_AbstractStringBuilder_append0(var$5, 44); - $ptr = 4; - case 4: + $ptr = 6; + case 6: jl_AbstractStringBuilder_append(var$5, var$4); if ($rt_suspending()) { break main; } - $ptr = 5; - case 5: + $ptr = 7; + case 7: $tmp = jl_AbstractStringBuilder_toString(var$5); if ($rt_suspending()) { break main; @@ -1157071,7 +1159486,7 @@ $crashreportcategory = $tmp; $world = $rt_s(8307); $var6 = new nmwgs_MapGenStructure$1; - $var6.$this$0226 = $this; + $var6.$this$0146 = $this; $var6.$val$i1 = $i; $var6.$val$j = $j; $ptr = 6; @@ -1157098,7 +1159513,6 @@ } $world = $rt_s(8309); $var6 = new nmwgs_MapGenStructure$2; - $var6.$this$0227 = $this; $var6.$val$i2 = $i; $var6.$val$j0 = $j; $ptr = 9; @@ -1157109,7 +1159523,7 @@ } $world = $rt_s(8310); $var6 = new nmwgs_MapGenStructure$3; - $var6.$this$0228 = $this; + $var6.$this$0147 = $this; $ptr = 10; case 10: nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, $world, $var6); @@ -1165310,9 +1167724,8 @@ nmw_EnumSkyBlock_$VALUES = $rt_createArrayFromData(nmw_EnumSkyBlock, [nmw_EnumSkyBlock_SKY, var$1]); } function nmcgi_GuiContainerCreative$CreativeSlot() { - var a = this; nmi_Slot.call(a); - a.$slot0 = null; - a.$this$0208 = null; + nmi_Slot.call(this); + this.$slot0 = null; } function nmcgi_GuiContainerCreative$CreativeSlot_onPickupFromSlot($this, $playerIn, $stack) { var var$3, $ptr, $tmp; @@ -1165617,7 +1168030,7 @@ function nmcrm_ModelBakery$2() { var a = this; jl_Object.call(a); a.$val$set = null; - a.$this$0126 = null; + a.$this$094 = null; } function nmcrm_WeightedBakedModel$Builder() { jl_Object.call(this); @@ -1168537,7 +1170950,6 @@ a.$gamemode2 = null; a.$profile1 = null; a.$displayName4 = null; - a.$this$0229 = null; } function nmnps_S38PacketPlayerListItem$AddPlayerData__init_(var_0, var_1, var_2, var_3, var_4) { var var_5 = new nmnps_S38PacketPlayerListItem$AddPlayerData(); @@ -1168545,7 +1170957,6 @@ return var_5; } function nmnps_S38PacketPlayerListItem$AddPlayerData__init_0($this, $this$0, $profile, $pingIn, $gamemodeIn, $displayNameIn) { - $this.$this$0229 = $this$0; otji_JSWrapper_wrap($this); $this.$profile1 = $profile; $this.$ping0 = $pingIn; @@ -1169285,7 +1171696,6 @@ $scoreplayerteam = $scoreplayerteam; var$4 = $this.$field_178672_a; var$5 = new nmcgsc_TeleportToTeam$TeamSelectionObject; - var$5.$this$0230 = $this; var$5.$field_178676_b = $scoreplayerteam; var$5.$field_178675_d = cgcc_Lists_newArrayList(); $scoreplayerteam = $scoreplayerteam.$membershipSet; @@ -1170132,7 +1172542,6 @@ continue main; } $biomecache$block = new nmwb_BiomeCache$Block; - $biomecache$block.$this$0231 = $this; var$5 = $rt_createFloatArray(256); $biomecache$block.$rainfallValues = var$5; $biomecache$block.$biomes = $rt_createArray(nmwb_BiomeGenBase, 256); @@ -1171576,10 +1173985,7 @@ function nmcrbm_ModelBlock$LoopException__init_($this) { jl_Throwable__init_0($this); } - function nmcrm_ModelBakery$1() { - jl_Object.call(this); - this.$this$0210 = null; - } + var nmcrm_ModelBakery$1 = $rt_classWithoutFields(); function nmcrm_ModelBakery$1_compare($this, var$1, var$2) { var $ptr, $tmp; $ptr = 0; @@ -1171786,7 +1174192,7 @@ function nmu_BlockPos$2_iterator($this) { var var$1; var$1 = new nmu_BlockPos$2$1; - var$1.$this$0232 = $this; + var$1.$this$0148 = $this; cgcc_AbstractIterator__init_(var$1); var$1.$theBlockPos = null; return var$1; @@ -1172849,7 +1175255,6 @@ a.$field_178676_b = null; a.$field_178677_c = null; a.$field_178675_d = null; - a.$this$0230 = null; } function nmcgsc_TeleportToTeam$TeamSelectionObject_func_178661_a($this, $spectatormenu) { var var$2, var$3, $ptr, $tmp; @@ -1174889,14 +1177294,13 @@ } main: while (true) { switch ($ptr) { case 0: - nmwgl_GenLayerEdge$1_$callClinit(); - switch (nmwgl_GenLayerEdge$1_$SwitchMap$net$minecraft$world$gen$layer$GenLayerEdge$Mode.data[$this.$field_151627_c.$ordinal]) { - case 1: + switch ($this.$field_151627_c.$ordinal) { + case 0: break; - case 2: + case 1: $ptr = 2; continue main; - case 3: + case 2: var$5 = $this.$parent4; $ptr = 3; continue main; @@ -1174931,20 +1177335,20 @@ break main; } var$6 = $tmp; - var$8 = 0; - while (var$8 < $l) { - var$9 = 0; - while (var$9 < $k) { + var$9 = 0; + while (var$9 < $l) { + var$8 = 0; + while (var$8 < $k) { var$10 = var$7.data; - nmwgl_GenLayer_initChunkSeed($this, Long_fromInt(var$9 + $i | 0), Long_fromInt(var$8 + $j | 0)); - var$11 = var$9 + $rt_imul(var$8, $k) | 0; + nmwgl_GenLayer_initChunkSeed($this, Long_fromInt(var$8 + $i | 0), Long_fromInt(var$9 + $j | 0)); + var$11 = var$8 + $rt_imul(var$9, $k) | 0; var$12 = var$10[var$11]; if (var$12 && !nmwgl_GenLayer_nextInt($this, 13)) var$12 = var$12 | (1 + nmwgl_GenLayer_nextInt($this, 15) | 0) << 8 & 3840; var$6.data[var$11] = var$12; - var$9 = var$9 + 1 | 0; + var$8 = var$8 + 1 | 0; } - var$8 = var$8 + 1 | 0; + var$9 = var$9 + 1 | 0; } return var$6; default: $rt_invalidPointer(); @@ -1181649,11 +1184053,11 @@ } function nPs_UnicodeUnescaper__init_($this) {} function nPs_UnicodeUnescaper_translate($this, $input, $index, $out) { - var $i, var$5, $value, var$7, $unicode, $nfe, var$10, $$je, $ptr, $tmp; + var $i, var$5, $value, $unicode, $nfe, var$9, $$je, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$10 = $thread.pop();$nfe = $thread.pop();$unicode = $thread.pop();var$7 = $thread.pop();$value = $thread.pop();var$5 = $thread.pop();$i = $thread.pop();$out = $thread.pop();$index = $thread.pop();$input = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$9 = $thread.pop();$nfe = $thread.pop();$unicode = $thread.pop();$value = $thread.pop();var$5 = $thread.pop();$i = $thread.pop();$out = $thread.pop();$index = $thread.pop();$input = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -1181672,11 +1184076,11 @@ if (var$5 < jl_String_length($input) && jl_String_charAt($input, var$5) == 43) $i = $i + 1 | 0; $value = $index + $i | 0; - var$7 = $value + 4 | 0; - if (var$7 <= jl_String_length($input)) { - $unicode = jl_String_substring0($input, $value, var$7); + var$5 = $value + 4 | 0; + if (var$5 <= jl_String_length($input)) { + $unicode = jl_String_substring0($input, $value, var$5); try { - $ptr = 5; + $ptr = 6; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1181687,50 +1184091,54 @@ } } $input = new jl_IllegalArgumentException; - $out = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($out); - var$10 = $rt_s(8408); - $ptr = 7; + $ptr = 8; continue main; } $out = new jl_IllegalArgumentException; - $nfe = jl_String_substring0($input, $index, jl_String_length($input)); - $input = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($input); - $unicode = $rt_s(8409); + $input = jl_String_substring0($input, $index, jl_String_length($input)); $ptr = 1; continue main; } } return 0; case 1: - jl_AbstractStringBuilder_append($input, $unicode); + $tmp = jl_String_valueOf($input); if ($rt_suspending()) { break main; } + $input = $tmp; + $unicode = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($unicode); + $nfe = $rt_s(8408); $ptr = 2; case 2: - jl_AbstractStringBuilder_append($input, $nfe); + jl_AbstractStringBuilder_append($unicode, $nfe); if ($rt_suspending()) { break main; } - $unicode = $rt_s(8410); $ptr = 3; case 3: - jl_AbstractStringBuilder_append($input, $unicode); + jl_AbstractStringBuilder_append($unicode, $input); if ($rt_suspending()) { break main; } + $input = $rt_s(8409); $ptr = 4; case 4: - $tmp = jl_AbstractStringBuilder_toString($input); + jl_AbstractStringBuilder_append($unicode, $input); + if ($rt_suspending()) { + break main; + } + $ptr = 5; + case 5: + $tmp = jl_AbstractStringBuilder_toString($unicode); if ($rt_suspending()) { break main; } $input = $tmp; jl_Throwable__init_($out, $input); $rt_throw($out); - case 5: + case 6: try { $tmp = jl_String_toString($unicode); if ($rt_suspending()) { @@ -1181738,7 +1184146,7 @@ } $input = $tmp; $index = 16; - $ptr = 6; + $ptr = 7; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1181749,12 +1184157,9 @@ } } $input = new jl_IllegalArgumentException; - $out = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($out); - var$10 = $rt_s(8408); - $ptr = 7; + $ptr = 8; continue main; - case 6: + case 7: a: { try { $tmp = jl_Integer_parseInt($input, $index); @@ -1181775,24 +1184180,31 @@ return $i + 4 | 0; } $input = new jl_IllegalArgumentException; - $out = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($out); - var$10 = $rt_s(8408); - $ptr = 7; - case 7: - jl_AbstractStringBuilder_append($out, var$10); - if ($rt_suspending()) { - break main; - } $ptr = 8; case 8: - jl_AbstractStringBuilder_append($out, $unicode); + $tmp = jl_String_valueOf($unicode); if ($rt_suspending()) { break main; } + $out = $tmp; + $unicode = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($unicode); + var$9 = $rt_s(8410); $ptr = 9; case 9: - $tmp = jl_AbstractStringBuilder_toString($out); + jl_AbstractStringBuilder_append($unicode, var$9); + if ($rt_suspending()) { + break main; + } + $ptr = 10; + case 10: + jl_AbstractStringBuilder_append($unicode, $out); + if ($rt_suspending()) { + break main; + } + $ptr = 11; + case 11: + $tmp = jl_AbstractStringBuilder_toString($unicode); if ($rt_suspending()) { break main; } @@ -1181801,7 +1184213,7 @@ $rt_throw($input); default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $input, $index, $out, $i, var$5, $value, var$7, $unicode, $nfe, var$10, $ptr); + $rt_nativeThread().push($this, $input, $index, $out, $i, var$5, $value, $unicode, $nfe, var$9, $ptr); } function nPs_LookupTranslator() { var a = this; nPs_CharSequenceTranslator.call(a); @@ -1184482,8 +1186894,15 @@ } return $tileentitybanner$enumbannerpattern; } + function nmt_TileEntityBanner$EnumBannerPattern_$values() { + nmt_TileEntityBanner$EnumBannerPattern_$callClinit(); + return $rt_createArrayFromData(nmt_TileEntityBanner$EnumBannerPattern, [nmt_TileEntityBanner$EnumBannerPattern_BASE, nmt_TileEntityBanner$EnumBannerPattern_SQUARE_BOTTOM_LEFT, nmt_TileEntityBanner$EnumBannerPattern_SQUARE_BOTTOM_RIGHT, nmt_TileEntityBanner$EnumBannerPattern_SQUARE_TOP_LEFT, nmt_TileEntityBanner$EnumBannerPattern_SQUARE_TOP_RIGHT, nmt_TileEntityBanner$EnumBannerPattern_STRIPE_BOTTOM, nmt_TileEntityBanner$EnumBannerPattern_STRIPE_TOP, nmt_TileEntityBanner$EnumBannerPattern_STRIPE_LEFT, + nmt_TileEntityBanner$EnumBannerPattern_STRIPE_RIGHT, nmt_TileEntityBanner$EnumBannerPattern_STRIPE_CENTER, nmt_TileEntityBanner$EnumBannerPattern_STRIPE_MIDDLE, nmt_TileEntityBanner$EnumBannerPattern_STRIPE_DOWNRIGHT, nmt_TileEntityBanner$EnumBannerPattern_STRIPE_DOWNLEFT, nmt_TileEntityBanner$EnumBannerPattern_STRIPE_SMALL, nmt_TileEntityBanner$EnumBannerPattern_CROSS, nmt_TileEntityBanner$EnumBannerPattern_STRAIGHT_CROSS, nmt_TileEntityBanner$EnumBannerPattern_TRIANGLE_BOTTOM, nmt_TileEntityBanner$EnumBannerPattern_TRIANGLE_TOP, + nmt_TileEntityBanner$EnumBannerPattern_TRIANGLES_BOTTOM, nmt_TileEntityBanner$EnumBannerPattern_TRIANGLES_TOP, nmt_TileEntityBanner$EnumBannerPattern_DIAGONAL_LEFT, nmt_TileEntityBanner$EnumBannerPattern_DIAGONAL_RIGHT, nmt_TileEntityBanner$EnumBannerPattern_DIAGONAL_LEFT_MIRROR, nmt_TileEntityBanner$EnumBannerPattern_DIAGONAL_RIGHT_MIRROR, nmt_TileEntityBanner$EnumBannerPattern_CIRCLE_MIDDLE, nmt_TileEntityBanner$EnumBannerPattern_RHOMBUS_MIDDLE, nmt_TileEntityBanner$EnumBannerPattern_HALF_VERTICAL, + nmt_TileEntityBanner$EnumBannerPattern_HALF_HORIZONTAL, nmt_TileEntityBanner$EnumBannerPattern_HALF_VERTICAL_MIRROR, nmt_TileEntityBanner$EnumBannerPattern_HALF_HORIZONTAL_MIRROR, nmt_TileEntityBanner$EnumBannerPattern_BORDER, nmt_TileEntityBanner$EnumBannerPattern_CURLY_BORDER, nmt_TileEntityBanner$EnumBannerPattern_CREEPER, nmt_TileEntityBanner$EnumBannerPattern_GRADIENT, nmt_TileEntityBanner$EnumBannerPattern_GRADIENT_UP, nmt_TileEntityBanner$EnumBannerPattern_BRICKS, nmt_TileEntityBanner$EnumBannerPattern_SKULL, + nmt_TileEntityBanner$EnumBannerPattern_FLOWER, nmt_TileEntityBanner$EnumBannerPattern_MOJANG]); + } function nmt_TileEntityBanner$EnumBannerPattern__clinit_() { - var var$1; nmt_TileEntityBanner$EnumBannerPattern_BASE = nmt_TileEntityBanner$EnumBannerPattern__init_($rt_s(8423), 0, $rt_s(6026), $rt_s(8424)); nmt_TileEntityBanner$EnumBannerPattern_SQUARE_BOTTOM_LEFT = nmt_TileEntityBanner$EnumBannerPattern__init_3($rt_s(8425), 1, $rt_s(8426), $rt_s(8427), $rt_s(2643), $rt_s(2643), $rt_s(3214)); nmt_TileEntityBanner$EnumBannerPattern_SQUARE_BOTTOM_RIGHT = nmt_TileEntityBanner$EnumBannerPattern__init_3($rt_s(8428), 2, $rt_s(8429), $rt_s(8430), $rt_s(2643), $rt_s(2643), $rt_s(3216)); @@ -1184515,20 +1186934,15 @@ nmt_TileEntityBanner$EnumBannerPattern_HALF_VERTICAL_MIRROR = nmt_TileEntityBanner$EnumBannerPattern__init_3($rt_s(8507), 28, $rt_s(8508), $rt_s(8509), $rt_s(8488), $rt_s(8488), $rt_s(8488)); nmt_TileEntityBanner$EnumBannerPattern_HALF_HORIZONTAL_MIRROR = nmt_TileEntityBanner$EnumBannerPattern__init_3($rt_s(8510), 29, $rt_s(8511), $rt_s(8512), $rt_s(2643), $rt_s(2223), $rt_s(2223)); nmt_TileEntityBanner$EnumBannerPattern_BORDER = nmt_TileEntityBanner$EnumBannerPattern__init_3($rt_s(8513), 30, $rt_s(8514), $rt_s(8515), $rt_s(2223), $rt_s(3202), $rt_s(2223)); - nmt_TileEntityBanner$EnumBannerPattern_CURLY_BORDER = nmt_TileEntityBanner$EnumBannerPattern__init_1($rt_s(8516), 31, $rt_s(8517), $rt_s(8518), nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_0__init_0()); - nmt_TileEntityBanner$EnumBannerPattern_CREEPER = nmt_TileEntityBanner$EnumBannerPattern__init_1($rt_s(2107), 32, $rt_s(2424), $rt_s(8519), nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_1__init_0()); + nmt_TileEntityBanner$EnumBannerPattern_CURLY_BORDER = nmt_TileEntityBanner$EnumBannerPattern__init_1($rt_s(8516), 31, $rt_s(8517), $rt_s(8518), nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_0__init_0()); + nmt_TileEntityBanner$EnumBannerPattern_CREEPER = nmt_TileEntityBanner$EnumBannerPattern__init_1($rt_s(2107), 32, $rt_s(2424), $rt_s(8519), nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_1__init_0()); nmt_TileEntityBanner$EnumBannerPattern_GRADIENT = nmt_TileEntityBanner$EnumBannerPattern__init_3($rt_s(8520), 33, $rt_s(8521), $rt_s(8522), $rt_s(3202), $rt_s(3207), $rt_s(3207)); nmt_TileEntityBanner$EnumBannerPattern_GRADIENT_UP = nmt_TileEntityBanner$EnumBannerPattern__init_3($rt_s(8523), 34, $rt_s(8524), $rt_s(8525), $rt_s(3207), $rt_s(3207), $rt_s(3202)); - nmt_TileEntityBanner$EnumBannerPattern_BRICKS = nmt_TileEntityBanner$EnumBannerPattern__init_1($rt_s(3003), 35, $rt_s(3005), $rt_s(8526), nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_2__init_0()); - nmt_TileEntityBanner$EnumBannerPattern_SKULL = nmt_TileEntityBanner$EnumBannerPattern__init_1($rt_s(8527), 36, $rt_s(1238), $rt_s(8528), nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_3__init_0()); - nmt_TileEntityBanner$EnumBannerPattern_FLOWER = nmt_TileEntityBanner$EnumBannerPattern__init_1($rt_s(8529), 37, $rt_s(1526), $rt_s(8530), nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_4__init_0()); - var$1 = nmt_TileEntityBanner$EnumBannerPattern__init_1($rt_s(8531), 38, $rt_s(8532), $rt_s(8533), nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_5__init_0()); - nmt_TileEntityBanner$EnumBannerPattern_MOJANG = var$1; - nmt_TileEntityBanner$EnumBannerPattern_$VALUES = $rt_createArrayFromData(nmt_TileEntityBanner$EnumBannerPattern, [nmt_TileEntityBanner$EnumBannerPattern_BASE, nmt_TileEntityBanner$EnumBannerPattern_SQUARE_BOTTOM_LEFT, nmt_TileEntityBanner$EnumBannerPattern_SQUARE_BOTTOM_RIGHT, nmt_TileEntityBanner$EnumBannerPattern_SQUARE_TOP_LEFT, nmt_TileEntityBanner$EnumBannerPattern_SQUARE_TOP_RIGHT, nmt_TileEntityBanner$EnumBannerPattern_STRIPE_BOTTOM, nmt_TileEntityBanner$EnumBannerPattern_STRIPE_TOP, nmt_TileEntityBanner$EnumBannerPattern_STRIPE_LEFT, - nmt_TileEntityBanner$EnumBannerPattern_STRIPE_RIGHT, nmt_TileEntityBanner$EnumBannerPattern_STRIPE_CENTER, nmt_TileEntityBanner$EnumBannerPattern_STRIPE_MIDDLE, nmt_TileEntityBanner$EnumBannerPattern_STRIPE_DOWNRIGHT, nmt_TileEntityBanner$EnumBannerPattern_STRIPE_DOWNLEFT, nmt_TileEntityBanner$EnumBannerPattern_STRIPE_SMALL, nmt_TileEntityBanner$EnumBannerPattern_CROSS, nmt_TileEntityBanner$EnumBannerPattern_STRAIGHT_CROSS, nmt_TileEntityBanner$EnumBannerPattern_TRIANGLE_BOTTOM, nmt_TileEntityBanner$EnumBannerPattern_TRIANGLE_TOP, - nmt_TileEntityBanner$EnumBannerPattern_TRIANGLES_BOTTOM, nmt_TileEntityBanner$EnumBannerPattern_TRIANGLES_TOP, nmt_TileEntityBanner$EnumBannerPattern_DIAGONAL_LEFT, nmt_TileEntityBanner$EnumBannerPattern_DIAGONAL_RIGHT, nmt_TileEntityBanner$EnumBannerPattern_DIAGONAL_LEFT_MIRROR, nmt_TileEntityBanner$EnumBannerPattern_DIAGONAL_RIGHT_MIRROR, nmt_TileEntityBanner$EnumBannerPattern_CIRCLE_MIDDLE, nmt_TileEntityBanner$EnumBannerPattern_RHOMBUS_MIDDLE, nmt_TileEntityBanner$EnumBannerPattern_HALF_VERTICAL, - nmt_TileEntityBanner$EnumBannerPattern_HALF_HORIZONTAL, nmt_TileEntityBanner$EnumBannerPattern_HALF_VERTICAL_MIRROR, nmt_TileEntityBanner$EnumBannerPattern_HALF_HORIZONTAL_MIRROR, nmt_TileEntityBanner$EnumBannerPattern_BORDER, nmt_TileEntityBanner$EnumBannerPattern_CURLY_BORDER, nmt_TileEntityBanner$EnumBannerPattern_CREEPER, nmt_TileEntityBanner$EnumBannerPattern_GRADIENT, nmt_TileEntityBanner$EnumBannerPattern_GRADIENT_UP, nmt_TileEntityBanner$EnumBannerPattern_BRICKS, nmt_TileEntityBanner$EnumBannerPattern_SKULL, - nmt_TileEntityBanner$EnumBannerPattern_FLOWER, var$1]); + nmt_TileEntityBanner$EnumBannerPattern_BRICKS = nmt_TileEntityBanner$EnumBannerPattern__init_1($rt_s(3003), 35, $rt_s(3005), $rt_s(8526), nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_2__init_0()); + nmt_TileEntityBanner$EnumBannerPattern_SKULL = nmt_TileEntityBanner$EnumBannerPattern__init_1($rt_s(8527), 36, $rt_s(1238), $rt_s(8528), nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_3__init_0()); + nmt_TileEntityBanner$EnumBannerPattern_FLOWER = nmt_TileEntityBanner$EnumBannerPattern__init_1($rt_s(8529), 37, $rt_s(1526), $rt_s(8530), nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_4__init_0()); + nmt_TileEntityBanner$EnumBannerPattern_MOJANG = nmt_TileEntityBanner$EnumBannerPattern__init_1($rt_s(8531), 38, $rt_s(8532), $rt_s(8533), nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_5__init_0()); + nmt_TileEntityBanner$EnumBannerPattern_$VALUES = nmt_TileEntityBanner$EnumBannerPattern_$values(); nmt_TileEntityBanner$EnumBannerPattern__VALUES = nmt_TileEntityBanner$EnumBannerPattern_values(); } function nmcrd_AnimationFrame() { @@ -1186250,35 +1188664,74 @@ } return var$2; } - var nmwc_Chunk$EnumCreateEntityType = $rt_classWithoutFields(jl_Enum); - var nmwc_Chunk$EnumCreateEntityType_IMMEDIATE = null; - var nmwc_Chunk$EnumCreateEntityType_QUEUED = null; - var nmwc_Chunk$EnumCreateEntityType_CHECK = null; - var nmwc_Chunk$EnumCreateEntityType_$VALUES = null; - function nmwc_Chunk$EnumCreateEntityType_$callClinit() { - nmwc_Chunk$EnumCreateEntityType_$callClinit = $rt_eraseClinit(nmwc_Chunk$EnumCreateEntityType); - nmwc_Chunk$EnumCreateEntityType__clinit_(); + function nmv_VillageDoorInfo() { + var a = this; jl_Object.call(a); + a.$doorBlockPos = null; + a.$insideBlock = null; + a.$insideDirection = null; + a.$lastActivityTimestamp = 0; + a.$isDetachedFromVillageFlag = 0; + a.$doorOpeningRestrictionCounter = 0; } - function nmwc_Chunk$EnumCreateEntityType__init_(var_0, var_1) { - var var_2 = new nmwc_Chunk$EnumCreateEntityType(); - nmwc_Chunk$EnumCreateEntityType__init_0(var_2, var_0, var_1); - return var_2; + function nmv_VillageDoorInfo__init_0(var_0, var_1, var_2) { + var var_3 = new nmv_VillageDoorInfo(); + nmv_VillageDoorInfo__init_(var_3, var_0, var_1, var_2); + return var_3; } - function nmwc_Chunk$EnumCreateEntityType_values() { - nmwc_Chunk$EnumCreateEntityType_$callClinit(); - return nmwc_Chunk$EnumCreateEntityType_$VALUES.$clone(); + function nmv_VillageDoorInfo__init_($this, $parBlockPos, $parEnumFacing, $parInt1) { + var var$4, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$4 = $thread.pop();$parInt1 = $thread.pop();$parEnumFacing = $thread.pop();$parBlockPos = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $this.$doorBlockPos = $parBlockPos; + $this.$insideDirection = $parEnumFacing; + var$4 = 2; + $ptr = 1; + case 1: + $tmp = $parBlockPos.$offset1($parEnumFacing, var$4); + if ($rt_suspending()) { + break main; + } + $parBlockPos = $tmp; + $this.$insideBlock = $parBlockPos; + $this.$lastActivityTimestamp = $parInt1; + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $parBlockPos, $parEnumFacing, $parInt1, var$4, $ptr); } - function nmwc_Chunk$EnumCreateEntityType__init_0($this, var$1, var$2) { - nmwc_Chunk$EnumCreateEntityType_$callClinit(); - jl_Enum__init_($this, var$1, var$2); + function nmv_VillageDoorInfo_getDistanceToDoorBlockSq($this, $parBlockPos) { + return nmu_Vec3i_distanceSq0($parBlockPos, $this.$doorBlockPos) | 0; } - function nmwc_Chunk$EnumCreateEntityType__clinit_() { - var var$1; - nmwc_Chunk$EnumCreateEntityType_IMMEDIATE = nmwc_Chunk$EnumCreateEntityType__init_($rt_s(8568), 0); - nmwc_Chunk$EnumCreateEntityType_QUEUED = nmwc_Chunk$EnumCreateEntityType__init_($rt_s(8569), 1); - var$1 = nmwc_Chunk$EnumCreateEntityType__init_($rt_s(8570), 2); - nmwc_Chunk$EnumCreateEntityType_CHECK = var$1; - nmwc_Chunk$EnumCreateEntityType_$VALUES = $rt_createArrayFromData(nmwc_Chunk$EnumCreateEntityType, [nmwc_Chunk$EnumCreateEntityType_IMMEDIATE, nmwc_Chunk$EnumCreateEntityType_QUEUED, var$1]); + function nPs_Color() { + jl_Object.call(this); + this.$rgb = 0; + } + var nPs_Color_BLACK = null; + var nPs_Color_WHITE = null; + function nPs_Color__init_0(var_0, var_1, var_2) { + var var_3 = new nPs_Color(); + nPs_Color__init_1(var_3, var_0, var_1, var_2); + return var_3; + } + function nPs_Color__init_(var_0, var_1, var_2, var_3) { + var var_4 = new nPs_Color(); + nPs_Color__init_2(var_4, var_0, var_1, var_2, var_3); + return var_4; + } + function nPs_Color__init_1($this, $r, $g, $b) { + $this.$rgb = ($r & 255) << 16 | ($g & 255) << 8 | $b & 255; + } + function nPs_Color__init_2($this, $r, $g, $b, $a) { + $this.$rgb = ($a & 255) << 24 | ($r & 255) << 16 | ($g & 255) << 8 | $b & 255; + } + function nPs_Color__clinit_() { + nPs_Color_BLACK = nPs_Color__init_0(0, 0, 0); + nPs_Color_WHITE = nPs_Color__init_0(255, 255, 255); } function nmwgs_StructureStart() { var a = this; jl_Object.call(a); @@ -1186427,7 +1188880,7 @@ if ($rt_suspending()) { break main; } - $structurecomponent = $rt_s(8571); + $structurecomponent = $rt_s(8568); var$6 = nmwgs_StructureBoundingBox_toNBTTagIntArray($this.$boundingBox1); $ptr = 6; case 6: @@ -1186461,7 +1188914,7 @@ $ptr = 12; continue main; } - $structurecomponent = $rt_s(8572); + $structurecomponent = $rt_s(8569); $ptr = 10; case 10: nmn_NBTTagCompound_setTag($nbttagcompound, $structurecomponent, $nbttaglist); @@ -1186529,7 +1188982,7 @@ } $i = $tmp; $this.$chunkPosZ = $i; - $nbttaglist = $rt_s(8571); + $nbttaglist = $rt_s(8568); $ptr = 3; case 3: $tmp = nmn_NBTTagCompound_hasKey($tagCompound, $nbttaglist); @@ -1186538,13 +1188991,13 @@ } $i = $tmp; if (!$i) { - $nbttaglist = $rt_s(8572); + $nbttaglist = $rt_s(8569); $i = 10; $ptr = 4; continue main; } var$5 = new nmwgs_StructureBoundingBox; - $nbttaglist = $rt_s(8571); + $nbttaglist = $rt_s(8568); $ptr = 5; continue main; case 4: @@ -1186564,7 +1189017,7 @@ var$6 = $tmp; nmwgs_StructureBoundingBox__init_2(var$5, var$6); $this.$boundingBox1 = var$5; - $nbttaglist = $rt_s(8572); + $nbttaglist = $rt_s(8569); $i = 10; $ptr = 4; continue main; @@ -1186682,7 +1189135,7 @@ var$13 = $tmp; var$9 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$9); - var$14 = $rt_s(8573); + var$14 = $rt_s(8570); $ptr = 13; case 13: jl_AbstractStringBuilder_append(var$9, var$14); @@ -1186763,7 +1189216,7 @@ var$10 = $tmp; var$11 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$11); - var$13 = $rt_s(8574); + var$13 = $rt_s(8571); $ptr = 20; case 20: jl_AbstractStringBuilder_append(var$11, var$13); @@ -1186837,74 +1189290,35 @@ function nmwgs_StructureStart_getChunkPosZ($this) { return $this.$chunkPosZ; } - function nmv_VillageDoorInfo() { - var a = this; jl_Object.call(a); - a.$doorBlockPos = null; - a.$insideBlock = null; - a.$insideDirection = null; - a.$lastActivityTimestamp = 0; - a.$isDetachedFromVillageFlag = 0; - a.$doorOpeningRestrictionCounter = 0; + var nmwc_Chunk$EnumCreateEntityType = $rt_classWithoutFields(jl_Enum); + var nmwc_Chunk$EnumCreateEntityType_IMMEDIATE = null; + var nmwc_Chunk$EnumCreateEntityType_QUEUED = null; + var nmwc_Chunk$EnumCreateEntityType_CHECK = null; + var nmwc_Chunk$EnumCreateEntityType_$VALUES = null; + function nmwc_Chunk$EnumCreateEntityType_$callClinit() { + nmwc_Chunk$EnumCreateEntityType_$callClinit = $rt_eraseClinit(nmwc_Chunk$EnumCreateEntityType); + nmwc_Chunk$EnumCreateEntityType__clinit_(); } - function nmv_VillageDoorInfo__init_0(var_0, var_1, var_2) { - var var_3 = new nmv_VillageDoorInfo(); - nmv_VillageDoorInfo__init_(var_3, var_0, var_1, var_2); - return var_3; + function nmwc_Chunk$EnumCreateEntityType__init_(var_0, var_1) { + var var_2 = new nmwc_Chunk$EnumCreateEntityType(); + nmwc_Chunk$EnumCreateEntityType__init_0(var_2, var_0, var_1); + return var_2; } - function nmv_VillageDoorInfo__init_($this, $parBlockPos, $parEnumFacing, $parInt1) { - var var$4, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$4 = $thread.pop();$parInt1 = $thread.pop();$parEnumFacing = $thread.pop();$parBlockPos = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $this.$doorBlockPos = $parBlockPos; - $this.$insideDirection = $parEnumFacing; - var$4 = 2; - $ptr = 1; - case 1: - $tmp = $parBlockPos.$offset1($parEnumFacing, var$4); - if ($rt_suspending()) { - break main; - } - $parBlockPos = $tmp; - $this.$insideBlock = $parBlockPos; - $this.$lastActivityTimestamp = $parInt1; - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $parBlockPos, $parEnumFacing, $parInt1, var$4, $ptr); + function nmwc_Chunk$EnumCreateEntityType_values() { + nmwc_Chunk$EnumCreateEntityType_$callClinit(); + return nmwc_Chunk$EnumCreateEntityType_$VALUES.$clone(); } - function nmv_VillageDoorInfo_getDistanceToDoorBlockSq($this, $parBlockPos) { - return nmu_Vec3i_distanceSq0($parBlockPos, $this.$doorBlockPos) | 0; + function nmwc_Chunk$EnumCreateEntityType__init_0($this, var$1, var$2) { + nmwc_Chunk$EnumCreateEntityType_$callClinit(); + jl_Enum__init_($this, var$1, var$2); } - function nPs_Color() { - jl_Object.call(this); - this.$rgb = 0; - } - var nPs_Color_BLACK = null; - var nPs_Color_WHITE = null; - function nPs_Color__init_0(var_0, var_1, var_2) { - var var_3 = new nPs_Color(); - nPs_Color__init_1(var_3, var_0, var_1, var_2); - return var_3; - } - function nPs_Color__init_(var_0, var_1, var_2, var_3) { - var var_4 = new nPs_Color(); - nPs_Color__init_2(var_4, var_0, var_1, var_2, var_3); - return var_4; - } - function nPs_Color__init_1($this, $r, $g, $b) { - $this.$rgb = ($r & 255) << 16 | ($g & 255) << 8 | $b & 255; - } - function nPs_Color__init_2($this, $r, $g, $b, $a) { - $this.$rgb = ($a & 255) << 24 | ($r & 255) << 16 | ($g & 255) << 8 | $b & 255; - } - function nPs_Color__clinit_() { - nPs_Color_BLACK = nPs_Color__init_0(0, 0, 0); - nPs_Color_WHITE = nPs_Color__init_0(255, 255, 255); + function nmwc_Chunk$EnumCreateEntityType__clinit_() { + var var$1; + nmwc_Chunk$EnumCreateEntityType_IMMEDIATE = nmwc_Chunk$EnumCreateEntityType__init_($rt_s(8572), 0); + nmwc_Chunk$EnumCreateEntityType_QUEUED = nmwc_Chunk$EnumCreateEntityType__init_($rt_s(8573), 1); + var$1 = nmwc_Chunk$EnumCreateEntityType__init_($rt_s(8574), 2); + nmwc_Chunk$EnumCreateEntityType_CHECK = var$1; + nmwc_Chunk$EnumCreateEntityType_$VALUES = $rt_createArrayFromData(nmwc_Chunk$EnumCreateEntityType, [nmwc_Chunk$EnumCreateEntityType_IMMEDIATE, nmwc_Chunk$EnumCreateEntityType_QUEUED, var$1]); } function nlevsl_LANPeerEvent$LANPeerPacketEvent() { var a = this; jl_Object.call(a); @@ -1188913,8 +1191327,6 @@ return nmnps_S11PacketSpawnExperienceOrb__init_1($blockpos); $entityleashknot = new jl_IllegalArgumentException; $blockpos = jl_Object_getClass($blockpos); - $s0epacketspawnobject = jl_StringBuilder__init_(); - $entityitemframe = $rt_s(8575); $ptr = 11; continue main; case 1: @@ -1188923,7 +1191335,7 @@ break main; } $blockpos = nme_EntityTrackerEntry_logger; - $entityleashknot = $rt_s(8576); + $entityleashknot = $rt_s(8575); $ptr = 2; case 2: nlevl_Logger_warn($blockpos, $entityleashknot); @@ -1189030,8 +1191442,6 @@ return nmnps_S11PacketSpawnExperienceOrb__init_1($blockpos); $entityleashknot = new jl_IllegalArgumentException; $blockpos = jl_Object_getClass($blockpos); - $s0epacketspawnobject = jl_StringBuilder__init_(); - $entityitemframe = $rt_s(8575); $ptr = 11; continue main; case 3: @@ -1189100,21 +1191510,30 @@ nmnps_S0EPacketSpawnObject_setZ($s0epacketspawnobject1, nmu_MathHelper_floor_float($blockpos1.$getZ() * 32 | 0)); return $s0epacketspawnobject1; case 11: + $tmp = jl_String_valueOf($blockpos); + if ($rt_suspending()) { + break main; + } + $blockpos = $tmp; + $s0epacketspawnobject = jl_StringBuilder__init_(); + $entityitemframe = $rt_s(8576); + $ptr = 12; + case 12: $tmp = jl_StringBuilder_append($s0epacketspawnobject, $entityitemframe); if ($rt_suspending()) { break main; } $entityitemframe = $tmp; - $ptr = 12; - case 12: + $ptr = 13; + case 13: $tmp = jl_StringBuilder_append($entityitemframe, $blockpos); if ($rt_suspending()) { break main; } $blockpos = $tmp; jl_StringBuilder_append5($blockpos, 33); - $ptr = 13; - case 13: + $ptr = 14; + case 14: $tmp = jl_StringBuilder_toString($s0epacketspawnobject); if ($rt_suspending()) { break main; @@ -1189156,7 +1191575,7 @@ a.$lastEntry0 = null; a.$lastPosition = 0; a.$canRemove = 0; - a.$this$0125 = null; + a.$this$093 = null; } function ju_Hashtable$HashIterator_hasNext($this) { var var$1, var$2; @@ -1189165,7 +1191584,7 @@ return 1; while (true) { var$2 = $this.$position19; - var$1 = $this.$this$0125; + var$1 = $this.$this$093; if (var$2 < var$1.$firstSlot) break; if (var$1.$elementData0.data[var$2] !== null) @@ -1189177,7 +1191596,7 @@ function ju_Hashtable$HashIterator_next($this) { var var$1, var$2, var$3, var$4; var$1 = $this.$expectedModCount; - var$2 = $this.$this$0125; + var$2 = $this.$this$093; if (var$1 != var$2.$modCount2) { var$2 = new ju_ConcurrentModificationException; jl_Throwable__init_0(var$2); @@ -1189218,7 +1191637,7 @@ a.$isEnumeration = 0; a.$start10 = 0; a.$entry0 = null; - a.$this$0124 = null; + a.$this$092 = null; } function ju_Hashtable$HashEnumIterator_hasMoreElements($this) { var var$1, var$2, var$3, var$4; @@ -1189228,7 +1191647,7 @@ return 1; while (true) { var$1 = $this.$start10; - var$2 = $this.$this$0124; + var$2 = $this.$this$092; if (var$1 <= var$2.$firstSlot) break; var$3 = var$2.$elementData0.data; @@ -1189253,7 +1191672,7 @@ var$1 = $this.$isEnumeration; if (!var$1) return ju_Hashtable$HashIterator_next($this); - if ($this.$expectedModCount != $this.$this$0124.$modCount2) { + if ($this.$expectedModCount != $this.$this$092.$modCount2) { var$2 = new ju_ConcurrentModificationException; jl_Throwable__init_0(var$2); $rt_throw(var$2); @@ -1189297,7 +1191716,7 @@ a.$mapTexture = null; a.$location = null; a.$mapTextureData = null; - a.$this$0150 = null; + a.$this$0102 = null; } function nmcg_MapItemRenderer$Instance_render($this, $noOverlayRendering) { var $tessellator, $worldrenderer, $vec4b, var$5, $i, var$7, $b2, var$9, var$10, var$11, var$12, var$13, $f1, $f2, $f3, $f4, var$18, $ptr, $tmp; @@ -1189316,7 +1191735,7 @@ } $tessellator = $tmp; $worldrenderer = $tessellator.$worldRenderer; - $vec4b = $this.$this$0150.$textureManager; + $vec4b = $this.$this$0102.$textureManager; var$5 = $this.$location; $ptr = 2; case 2: @@ -1189467,7 +1191886,7 @@ if ($rt_suspending()) { break main; } - $vec4b = $this.$this$0150.$textureManager; + $vec4b = $this.$this$0102.$textureManager; $ptr = 22; case 22: nmcg_MapItemRenderer_$callClinit(); @@ -1190069,7 +1192488,7 @@ a.$next18 = null; a.$current1 = null; a.$previous2 = null; - a.$this$0225 = null; + a.$this$0145 = null; } function cgcc_LinkedListMultimap$ValueForKeyIterator__init_0(var_0, var_1) { var var_2 = new cgcc_LinkedListMultimap$ValueForKeyIterator(); @@ -1190085,7 +1192504,7 @@ } main: while (true) { switch ($ptr) { case 0: - $this.$this$0225 = $keyList; + $this.$this$0145 = $keyList; $this.$key9 = $key; $keyList = $keyList.$keyToKeyList; $ptr = 1; @@ -1190138,7 +1192557,7 @@ $this.$previous2 = var$1.$previousSibling; $this.$nextIndex0 = $this.$nextIndex0 - 1 | 0; } - var$3 = $this.$this$0225; + var$3 = $this.$this$0145; var$4 = var$1.$previous1; if (var$4 === null) var$3.$head7 = var$1.$next14; @@ -1190621,11 +1193040,6 @@ }} $rt_nativeThread().push($this, $prog, var$2, $blockIndex, var$4, $ptr); } - function nlevsrp_IPacket07LocalWorlds$LocalWorld() { - var a = this; jl_Object.call(a); - a.$worldName8 = null; - a.$worldCode = null; - } var nlevsrp_ICEServerSet$RelayType = $rt_classWithoutFields(jl_Enum); var nlevsrp_ICEServerSet$RelayType_STUN = null; var nlevsrp_ICEServerSet$RelayType_TURN = null; @@ -1190710,31 +1193124,36 @@ }} $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, var$5, $ptr); } + function nlevsrp_IPacket07LocalWorlds$LocalWorld() { + var a = this; jl_Object.call(a); + a.$worldName8 = null; + a.$worldCode = null; + } function nmcrbm_ModelBlockDefinition$MissingVariantException() { jl_RuntimeException.call(this); - this.$this$0209 = null; + this.$this$0135 = null; } function nmu_BlockPos$2$1() { var a = this; cgcc_AbstractIterator.call(a); a.$theBlockPos = null; - a.$this$0232 = null; + a.$this$0148 = null; } function nmu_BlockPos$2$1_computeNext($this) { var var$1, var$2, var$3, var$4, var$5, var$6; var$1 = $this.$theBlockPos; if (var$1 === null) { var$1 = new nmu_BlockPos$MutableBlockPos; - var$2 = $this.$this$0232.$val$blockpos2; + var$2 = $this.$this$0148.$val$blockpos2; nmu_BlockPos__init_2(var$1, var$2.$x, var$2.$y, var$2.$z); $this.$theBlockPos = var$1; - } else if (nmu_Vec3i_equals(var$1, $this.$this$0232.$val$blockpos11)) + } else if (nmu_Vec3i_equals(var$1, $this.$this$0148.$val$blockpos11)) var$1 = cgcc_AbstractIterator_endOfData($this); else { var$1 = $this.$theBlockPos; var$3 = var$1.$x; var$4 = var$1.$y; var$5 = var$1.$z; - var$2 = $this.$this$0232; + var$2 = $this.$this$0148; var$6 = var$2.$val$blockpos11; if (var$3 < var$6.$x) var$3 = var$3 + 1 | 0; @@ -1190863,7 +1193282,7 @@ a.$this$14 = null; } function ju_EnumMap$1$EntryImpl_getValue($this) { - return $this.$this$14.$this$084.$data16.data[$this.$index16]; + return $this.$this$14.$this$056.$data16.data[$this.$index16]; } function ju_EnumMap$1$EntryImpl_getKey($this) { var var$1, var$2, $ptr, $tmp; @@ -1190874,7 +1193293,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$14.$this$084.$keyType; + var$1 = $this.$this$14.$this$056.$keyType; $ptr = 1; case 1: $tmp = ju_GenericEnumSet_getConstants(var$1); @@ -1190889,7 +1193308,7 @@ } function nmw_WorldServer$1() { jl_Object.call(this); - this.$this$0107 = null; + this.$this$077 = null; } function nmw_WorldServer$1_apply($this, var$1) { var var$2, var$3, $ptr, $tmp; @@ -1190912,7 +1193331,7 @@ var$2 = $tmp; if (!var$2) return 0; - var$3 = $this.$this$0107; + var$3 = $this.$this$077; $ptr = 2; case 2: $tmp = var$1.$getPosition0(); @@ -1190933,9 +1193352,8 @@ $rt_nativeThread().push($this, var$1, var$2, var$3, $ptr); } function nmw_World$1() { - var a = this; jl_Object.call(a); - a.$val$pos1 = null; - a.$this$0102 = null; + jl_Object.call(this); + this.$val$pos1 = null; } function nmw_World$1_call($this) { var var$1, $ptr, $tmp; @@ -1191442,6 +1193860,13 @@ } var$2 = $tmp; var$1 = $this.$position9; + $ptr = 2; + case 2: + $tmp = jl_String_valueOf(var$1); + if ($rt_suspending()) { + break main; + } + var$1 = $tmp; var$3 = $this.$scheduledTime; var$4 = $this.$priority; var$5 = $this.$tickEntryID; @@ -1191449,26 +1193874,18 @@ jl_AbstractStringBuilder__init_(var$6); jl_AbstractStringBuilder_append1(var$6, var$2); var$7 = $rt_s(18); - $ptr = 2; - case 2: + $ptr = 3; + case 3: jl_AbstractStringBuilder_append(var$6, var$7); if ($rt_suspending()) { break main; } - $ptr = 3; - case 3: - jl_AbstractStringBuilder_append(var$6, var$1); - if ($rt_suspending()) { - break main; - } - var$1 = $rt_s(554); $ptr = 4; case 4: jl_AbstractStringBuilder_append(var$6, var$1); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append2(var$6, var$3); var$1 = $rt_s(554); $ptr = 5; case 5: @@ -1191476,7 +1193893,7 @@ if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append1(var$6, var$4); + jl_AbstractStringBuilder_append2(var$6, var$3); var$1 = $rt_s(554); $ptr = 6; case 6: @@ -1191484,9 +1193901,17 @@ if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append2(var$6, var$5); + jl_AbstractStringBuilder_append1(var$6, var$4); + var$1 = $rt_s(554); $ptr = 7; case 7: + jl_AbstractStringBuilder_append(var$6, var$1); + if ($rt_suspending()) { + break main; + } + jl_AbstractStringBuilder_append2(var$6, var$5); + $ptr = 8; + case 8: $tmp = jl_AbstractStringBuilder_toString(var$6); if ($rt_suspending()) { break main; @@ -1191521,13 +1193946,12 @@ return var$2; } function nmw_Teleporter$PortalPosition() { - var a = this; nmu_BlockPos.call(a); - a.$lastUpdateTime = Long_ZERO; - a.$this$0188 = null; + nmu_BlockPos.call(this); + this.$lastUpdateTime = Long_ZERO; } function nmws_WorldInfo$1() { jl_Object.call(this); - this.$this$0111 = null; + this.$this$081 = null; } function nmws_WorldInfo$1_call($this) { var var$1, var$2, $ptr, $tmp; @@ -1191538,7 +1193962,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0111.$getSeed0(); + var$1 = $this.$this$081.$getSeed0(); $ptr = 1; case 1: $tmp = jl_String_valueOf3(var$1); @@ -1191553,7 +1193977,7 @@ } function nmws_WorldInfo$2() { jl_Object.call(this); - this.$this$0112 = null; + this.$this$082 = null; } function nmws_WorldInfo$2_call($this) { var var$1, var$2, var$3, var$4, $ptr, $tmp; @@ -1191567,11 +1193991,11 @@ var$1 = $rt_s(8599); var$2 = $rt_createArray(jl_Object, 4); var$3 = var$2.data; - var$3[0] = jl_Integer_valueOf0($this.$this$0112.$terrainType0.$worldTypeId); - var$4 = $this.$this$0112.$terrainType0; + var$3[0] = jl_Integer_valueOf0($this.$this$082.$terrainType0.$worldTypeId); + var$4 = $this.$this$082.$terrainType0; var$3[1] = var$4.$worldType0; var$3[2] = jl_Integer_valueOf0(var$4.$generatorVersion); - var$3[3] = jl_Boolean_valueOf($this.$this$0112.$mapFeaturesEnabled0); + var$3[3] = jl_Boolean_valueOf($this.$this$082.$mapFeaturesEnabled0); $ptr = 1; case 1: $tmp = nlev_HString_format(var$1, var$2); @@ -1191586,14 +1194010,14 @@ } function nmws_WorldInfo$3() { jl_Object.call(this); - this.$this$0113 = null; + this.$this$083 = null; } function nmws_WorldInfo$3_call($this) { - return $this.$this$0113.$generatorOptions; + return $this.$this$083.$generatorOptions; } function nmws_WorldInfo$4() { jl_Object.call(this); - this.$this$0114 = null; + this.$this$084 = null; } function nmws_WorldInfo$4_call($this) { var var$1, var$2, var$3, var$4, $ptr, $tmp; @@ -1191604,7 +1194028,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0114; + var$1 = $this.$this$084; var$2 = var$1.$spawnX; var$3 = var$1.$spawnY; var$4 = var$1.$spawnZ; @@ -1191622,7 +1194046,7 @@ } function nmws_WorldInfo$5() { jl_Object.call(this); - this.$this$0115 = null; + this.$this$085 = null; } function nmws_WorldInfo$5_call($this) { var var$1, var$2, $ptr, $tmp; @@ -1191634,7 +1194058,7 @@ main: while (true) { switch ($ptr) { case 0: var$1 = $rt_s(8600); - var$2 = $rt_createArrayFromData(jl_Object, [jl_Long_valueOf($this.$this$0115.$totalTime), jl_Long_valueOf($this.$this$0115.$worldTime0)]); + var$2 = $rt_createArrayFromData(jl_Object, [jl_Long_valueOf($this.$this$085.$totalTime), jl_Long_valueOf($this.$this$085.$worldTime0)]); $ptr = 1; case 1: $tmp = nlev_HString_format(var$1, var$2); @@ -1191649,7 +1194073,7 @@ } function nmws_WorldInfo$6() { jl_Object.call(this); - this.$this$0116 = null; + this.$this$086 = null; } function nmws_WorldInfo$6_call($this) { var var$1, var$2, $ptr, $tmp; @@ -1191660,7 +1194084,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0116.$dimension2; + var$1 = $this.$this$086.$dimension2; $ptr = 1; case 1: $tmp = jl_String_valueOf2(var$1); @@ -1191675,7 +1194099,7 @@ } function nmws_WorldInfo$7() { jl_Object.call(this); - this.$this$0117 = null; + this.$this$087 = null; } function nmws_WorldInfo$7_call($this) { var var$1, var$2, var$3, var$4, $$je, $ptr, $tmp; @@ -1191691,7 +1194115,7 @@ try { b: { var$2 = var$1; - switch ($this.$this$0117.$saveVersion) { + switch ($this.$this$087.$saveVersion) { case 19132: var$2 = var$1; var$1 = $rt_s(8602); @@ -1191716,7 +1194140,7 @@ var$1 = var$2; } var$3 = $rt_s(8604); - var$4 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($this.$this$0117.$saveVersion), var$1]); + var$4 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($this.$this$087.$saveVersion), var$1]); $ptr = 1; case 1: $tmp = nlev_HString_format(var$3, var$4); @@ -1191731,7 +1194155,7 @@ } function nmws_WorldInfo$8() { jl_Object.call(this); - this.$this$0118 = null; + this.$this$088 = null; } function nmws_WorldInfo$8_call($this) { var var$1, var$2, $ptr, $tmp; @@ -1191743,7 +1194167,7 @@ main: while (true) { switch ($ptr) { case 0: var$1 = $rt_s(8605); - var$2 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($this.$this$0118.$rainTime), jl_Boolean_valueOf($this.$this$0118.$raining), jl_Integer_valueOf0($this.$this$0118.$thunderTime), jl_Boolean_valueOf($this.$this$0118.$thundering)]); + var$2 = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($this.$this$088.$rainTime), jl_Boolean_valueOf($this.$this$088.$raining), jl_Integer_valueOf0($this.$this$088.$thunderTime), jl_Boolean_valueOf($this.$this$088.$thundering)]); $ptr = 1; case 1: $tmp = nlev_HString_format(var$1, var$2); @@ -1191758,7 +1194182,7 @@ } function nmws_WorldInfo$9() { jl_Object.call(this); - this.$this$0119 = null; + this.$this$089 = null; } function nmws_WorldInfo$9_call($this) { var var$1, var$2, var$3, var$4, $ptr, $tmp; @@ -1191772,11 +1194196,11 @@ var$1 = $rt_s(8606); var$2 = $rt_createArray(jl_Object, 4); var$3 = var$2.data; - var$4 = $this.$this$0119.$theGameType0; + var$4 = $this.$this$089.$theGameType0; var$3[0] = var$4.$name15; var$3[1] = jl_Integer_valueOf0(var$4.$id0); - var$3[2] = jl_Boolean_valueOf($this.$this$0119.$hardcore0); - var$3[3] = jl_Boolean_valueOf($this.$this$0119.$allowCommands); + var$3[2] = jl_Boolean_valueOf($this.$this$089.$hardcore0); + var$3[3] = jl_Boolean_valueOf($this.$this$089.$allowCommands); $ptr = 1; case 1: $tmp = nlev_HString_format(var$1, var$2); @@ -1191814,8 +1194238,7 @@ function cgcc_HashBiMap$Inverse$InverseKeySet_iterator($this) { var var$1; var$1 = new cgcc_HashBiMap$Inverse$InverseKeySet$1; - var$1.$this$20 = $this; - cgcc_HashBiMap$Itr__init_(var$1, $this.$this$1.$this$0110); + cgcc_HashBiMap$Itr__init_(var$1, $this.$this$1.$this$080); return var$1; } var nlevoedp_PipelineShaderAccelParticleGBuffer = $rt_classWithoutFields(nlevoedp_ShaderProgram); @@ -1192352,7 +1194775,7 @@ $this.$messageLine11 = $parString1; $this.$messageLine21 = $parString2; $this.$parentButtonClickedId0 = $parInt1; - $parGuiYesNoCallback = $rt_s(5636); + $parGuiYesNoCallback = $rt_s(5635); var$5 = $rt_createArray(jl_Object, 0); $ptr = 2; case 2: @@ -1192362,7 +1194785,7 @@ } $parGuiYesNoCallback = $tmp; $this.$confirmButtonText0 = $parGuiYesNoCallback; - $parGuiYesNoCallback = $rt_s(5637); + $parGuiYesNoCallback = $rt_s(5636); var$5 = $rt_createArray(jl_Object, 0); $ptr = 3; case 3: @@ -1194477,7 +1196900,7 @@ } nlevi_EnumCursorType_$callClinit(); var$5 = nlevi_EnumCursorType_HAND; - $ptr = 13; + $ptr = 14; continue main; case 9: nmu_EnumChatFormatting_$callClinit(); @@ -1194485,33 +1196908,40 @@ break main; } var$14 = nmu_EnumChatFormatting_UNDERLINE; - var$15 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$15); $ptr = 10; case 10: - jl_AbstractStringBuilder_append(var$15, var$14); + $tmp = jl_String_valueOf(var$14); if ($rt_suspending()) { break main; } + var$14 = $tmp; + var$15 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$15); $ptr = 11; case 11: - jl_AbstractStringBuilder_append(var$15, $text); + jl_AbstractStringBuilder_append(var$15, var$14); if ($rt_suspending()) { break main; } $ptr = 12; case 12: + jl_AbstractStringBuilder_append(var$15, $text); + if ($rt_suspending()) { + break main; + } + $ptr = 13; + case 13: $tmp = jl_AbstractStringBuilder_toString(var$15); if ($rt_suspending()) { break main; } $text = $tmp; - var$8 = 5; $w = 5; + var$8 = 5; $hover = !$hover ? (-3355444) : (-1118686); - $ptr = 14; + $ptr = 15; continue main; - case 13: + case 14: nlev_Mouse_showCursor(var$5); if ($rt_suspending()) { break main; @@ -1194519,13 +1196949,13 @@ var$5 = $this.$mc15.$fontRendererObj; $ptr = 9; continue main; - case 14: - nmcg_Gui_drawString($this, var$5, $text, var$8, $w, $hover); + case 15: + nmcg_Gui_drawString($this, var$5, $text, $w, var$8, $hover); if ($rt_suspending()) { break main; } - $ptr = 15; - case 15: + $ptr = 16; + case 16: nlevo_GlStateManager_popMatrix(); if ($rt_suspending()) { break main; @@ -1194723,7 +1197153,7 @@ } var$2 = new nmcg_GuiLanguage$List; var$1 = $this.$mc15; - var$2.$this$0233 = $this; + var$2.$this$0149 = $this; var$4 = $this.$width7; var$9 = $this.$height7; var$3 = 32; @@ -1195427,7 +1197857,7 @@ var$1.$owner3 = $this; var$5 = new nmcg_ServerSelectionList$1; var$8 = null; - var$5.$this$0234 = var$1; + var$5.$this$0150 = var$1; $ptr = 4; case 4: nmcg_ServerListEntryNormal__init_(var$5, $this, var$8); @@ -1196807,30 +1199237,37 @@ } nlevi_EnumCursorType_$callClinit(); var$4 = nlevi_EnumCursorType_HAND; - $ptr = 14; + $ptr = 15; continue main; case 10: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } - var$14 = nmu_EnumChatFormatting_UNDERLINE; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); + var$4 = nmu_EnumChatFormatting_UNDERLINE; $ptr = 11; case 11: - jl_AbstractStringBuilder_append(var$4, var$14); + $tmp = jl_String_valueOf(var$4); if ($rt_suspending()) { break main; } + var$14 = $tmp; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); $ptr = 12; case 12: - jl_AbstractStringBuilder_append(var$4, var$5); + jl_AbstractStringBuilder_append(var$4, var$14); if ($rt_suspending()) { break main; } $ptr = 13; case 13: + jl_AbstractStringBuilder_append(var$4, var$5); + if ($rt_suspending()) { + break main; + } + $ptr = 14; + case 14: $tmp = jl_AbstractStringBuilder_toString(var$4); if ($rt_suspending()) { break main; @@ -1196839,9 +1199276,9 @@ var$7 = (((($this.$width7 - 1 | 0) * 4 | 0) / 3 | 0) - var$8 | 0) - 5 | 0; var$8 = 5; var$9 = !var$9 ? (-3355444) : (-1118686); - $ptr = 15; + $ptr = 16; continue main; - case 14: + case 15: nlev_Mouse_showCursor(var$4); if ($rt_suspending()) { break main; @@ -1196849,13 +1199286,13 @@ var$13 = $this.$mc15.$fontRendererObj; $ptr = 10; continue main; - case 15: + case 16: nmcg_Gui_drawString($this, var$13, var$4, var$7, var$8, var$9); if ($rt_suspending()) { break main; } - $ptr = 16; - case 16: + $ptr = 17; + case 17: nlevo_GlStateManager_popMatrix(); if ($rt_suspending()) { break main; @@ -1196865,8 +1199302,8 @@ var$4 = $rt_s(40); var$7 = !jl_String_length(var$4) ? 0 : 1; var$5 = $rt_s(8641); - $ptr = 17; - case 17: + $ptr = 18; + case 18: cgcb_Preconditions_checkArgument0(var$7, var$5); if ($rt_suspending()) { break main; @@ -1196874,22 +1199311,22 @@ var$13 = new cgcb_Splitter; var$5 = new cgcb_Splitter$2; var$5.$val$separator = var$4; - $ptr = 18; - case 18: + $ptr = 19; + case 19: cgcb_Splitter__init_0(var$13, var$5); if ($rt_suspending()) { break main; } var$4 = cgcb_Splitter_split(var$13, $this.$hoveringText); - $ptr = 19; - case 19: + $ptr = 20; + case 20: $tmp = cgcc_Lists_newArrayList0(var$4); if ($rt_suspending()) { break main; } var$4 = $tmp; - $ptr = 20; - case 20: + $ptr = 21; + case 21: nmcg_GuiScreen_drawHoveringText($this, var$4, $i, $j); if ($rt_suspending()) { break main; @@ -1197773,7 +1200210,7 @@ var$3[var$4] = var$1; var$1 = new nmcg_GuiSelectWorld$List; var$5 = $this.$mc15; - var$1.$this$0235 = $this; + var$1.$this$0151 = $this; var$6 = $this.$width7; var$7 = $this.$height7; var$8 = 32; @@ -1198638,30 +1201075,37 @@ } nlevi_EnumCursorType_$callClinit(); var$5 = nlevi_EnumCursorType_HAND; - $ptr = 10; + $ptr = 11; continue main; case 6: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } - var$14 = nmu_EnumChatFormatting_UNDERLINE; - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); + var$5 = nmu_EnumChatFormatting_UNDERLINE; $ptr = 7; case 7: - jl_AbstractStringBuilder_append(var$5, var$14); + $tmp = jl_String_valueOf(var$5); if ($rt_suspending()) { break main; } + var$14 = $tmp; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); $ptr = 8; case 8: - jl_AbstractStringBuilder_append(var$5, $text); + jl_AbstractStringBuilder_append(var$5, var$14); if ($rt_suspending()) { break main; } $ptr = 9; case 9: + jl_AbstractStringBuilder_append(var$5, $text); + if ($rt_suspending()) { + break main; + } + $ptr = 10; + case 10: $tmp = jl_AbstractStringBuilder_toString(var$5); if ($rt_suspending()) { break main; @@ -1198670,9 +1201114,9 @@ $w = 5; var$8 = 5; $hover = !$hover ? (-3355444) : (-1118686); - $ptr = 11; + $ptr = 12; continue main; - case 10: + case 11: nlev_Mouse_showCursor(var$5); if ($rt_suspending()) { break main; @@ -1198680,19 +1201124,19 @@ var$13 = $this.$mc15.$fontRendererObj; $ptr = 6; continue main; - case 11: - nmcg_Gui_drawString($this, var$13, $text, $w, var$8, $hover); - if ($rt_suspending()) { - break main; - } - $ptr = 12; case 12: - nlevo_GlStateManager_popMatrix(); + nmcg_Gui_drawString($this, var$13, $text, $w, var$8, $hover); if ($rt_suspending()) { break main; } $ptr = 13; case 13: + nlevo_GlStateManager_popMatrix(); + if ($rt_suspending()) { + break main; + } + $ptr = 14; + case 14: nmcg_GuiScreen_drawScreen($this, $i, $j, $f); if ($rt_suspending()) { break main; @@ -1201734,7 +1204178,7 @@ return; var$1 = new nmcga_GuiStats$StatsGeneral; var$2 = $this.$mc15; - var$1.$this$0236 = $this; + var$1.$this$0152 = $this; var$3 = $this.$width7; var$4 = $this.$height7; var$5 = 32; @@ -1201758,7 +1204202,7 @@ } var$1 = new nmcga_GuiStats$StatsItem; var$2 = $this.$mc15; - var$1.$this$0237 = $this; + var$1.$this$0153 = $this; $ptr = 3; case 3: nmcga_GuiStats$Stats__init_(var$1, $this, var$2); @@ -1201794,7 +1204238,7 @@ } var$1 = new nmcga_GuiStats$StatsBlock; var$2 = $this.$mc15; - var$1.$this$0238 = $this; + var$1.$this$0154 = $this; $ptr = 6; case 6: nmcga_GuiStats$Stats__init_(var$1, $this, var$2); @@ -1201887,7 +1204331,7 @@ } var$1 = new nmcga_GuiStats$StatsMobsList; var$2 = $this.$mc15; - var$1.$this$0239 = $this; + var$1.$this$0155 = $this; var$7 = $this.$width7; var$11 = $this.$height7; var$5 = 32; @@ -1204323,7 +1206767,7 @@ a.$val$ly = 0.0; a.$val$model1 = null; a.$val$stack = null; - a.$this$0128 = null; + a.$this$096 = null; } function nmcre_RenderItem$1_draw($this, $pass) { var var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, $ptr, $tmp; @@ -1204392,7 +1206836,7 @@ if ($rt_suspending()) { break main; } - var$5 = $this.$this$0128; + var$5 = $this.$this$096; var$7 = $this.$val$model1; var$8 = $this.$val$stack; $ptr = 8; @@ -1204455,7 +1206899,7 @@ } var$6 = $tmp; if (var$6) { - $pass = $this.$this$0128; + $pass = $this.$this$096; var$5 = $this.$val$stack; var$7 = $this.$val$model1; $ptr = 19; @@ -1204482,7 +1206926,7 @@ if ($rt_suspending()) { break main; } - $pass = $this.$this$0128; + $pass = $this.$this$096; var$5 = $this.$val$model1; $ptr = 17; case 17: @@ -1204524,7 +1206968,7 @@ a.$val$lx0 = 0.0; a.$val$ly0 = 0.0; a.$val$model10 = null; - a.$this$0129 = null; + a.$this$097 = null; } function nmcre_RenderItem$2_draw($this, $pass) { var var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, $ptr, $tmp; @@ -1204595,7 +1207039,7 @@ if ($rt_suspending()) { break main; } - $pass = $this.$this$0129; + $pass = $this.$this$097; var$10 = $this.$val$model10; $ptr = 7; case 7: @@ -1204725,7 +1207169,7 @@ } $entryList = $tmp; var$2 = new cgcc_ImmutableMapKeySet$1; - var$2.$this$0240 = $this; + var$2.$this$0156 = $this; var$2.$val$entryList = $entryList; cgcc_ImmutableList__init_(var$2); return var$2; @@ -1204759,13 +1207203,13 @@ } function cgcc_ImmutableEnumMap$1() { cgcc_ImmutableSet.call(this); - this.$this$0167 = null; + this.$this$0111 = null; } function cgcc_ImmutableEnumMap$1_contains($this, $object) { - return ju_EnumMap_containsKey($this.$this$0167.$delegate1, $object); + return ju_EnumMap_containsKey($this.$this$0111.$delegate1, $object); } function cgcc_ImmutableEnumMap$1_size($this) { - return cgcc_ImmutableEnumMap_size($this.$this$0167); + return cgcc_ImmutableEnumMap_size($this.$this$0111); } function cgcc_ImmutableEnumMap$1_iterator($this) { var var$1, $ptr, $tmp; @@ -1204776,7 +1207220,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0167.$delegate1; + var$1 = $this.$this$0111.$delegate1; $ptr = 1; case 1: $tmp = ju_AbstractMap_keySet(var$1); @@ -1205019,7 +1207463,7 @@ } function cgcc_ImmutableList$1() { cgcc_AbstractIndexedListIterator.call(this); - this.$this$045 = null; + this.$this$026 = null; } function cgcc_ImmutableList$1_get($this, $index) { var var$2, $ptr, $tmp; @@ -1205030,7 +1207474,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$2 = $this.$this$045; + var$2 = $this.$this$026; $ptr = 1; case 1: $tmp = var$2.$get2($index); @@ -1205099,7 +1207543,7 @@ } function nmc_Minecraft$12() { jl_Object.call(this); - this.$this$07 = null; + this.$this$03 = null; } function nmc_Minecraft$12_run($this) { var var$1, var$2, var$3, var$4, $ptr, $tmp; @@ -1205110,7 +1207554,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$07.$loadingScreen; + var$1 = $this.$this$03.$loadingScreen; var$2 = $rt_s(4628); var$3 = $rt_createArray(jl_Object, 0); $ptr = 1; @@ -1205135,7 +1207579,7 @@ if ($rt_suspending()) { break main; } - var$2 = $this.$this$07; + var$2 = $this.$this$03; $ptr = 4; case 4: nmc_Minecraft_refreshResources(var$2); @@ -1205198,10 +1207642,10 @@ } function cgcc_RegularImmutableMap$EntrySet() { cgcc_ImmutableMapEntrySet.call(this); - this.$this$0143 = null; + this.$this$0100 = null; } function cgcc_RegularImmutableMap$EntrySet_map($this) { - return $this.$this$0143; + return $this.$this$0100; } function cgcc_RegularImmutableMap$EntrySet_iterator($this) { var var$1, $ptr, $tmp; @@ -1205232,7 +1207676,7 @@ $rt_nativeThread().push($this, var$1, $ptr); } function cgcc_RegularImmutableMap$EntrySet_createAsList($this) { - return cgcc_RegularImmutableAsList__init_0($this, $this.$this$0143.$entries2); + return cgcc_RegularImmutableAsList__init_0($this, $this.$this$0100.$entries2); } function cgcc_RegularImmutableMap$EntrySet_iterator0($this) { var var$1, $ptr, $tmp; @@ -1205257,16 +1207701,16 @@ } function cgcc_ImmutableEnumMap$2() { cgcc_ImmutableMapEntrySet.call(this); - this.$this$0168 = null; + this.$this$0112 = null; } function cgcc_ImmutableEnumMap$2_map($this) { - return $this.$this$0168; + return $this.$this$0112; } function cgcc_ImmutableEnumMap$2_iterator($this) { var var$1; var$1 = new cgcc_ImmutableEnumMap$2$1; var$1.$this$17 = $this; - var$1.$backingIterator0 = ju_EnumMap$1_iterator(ju_EnumMap_entrySet($this.$this$0168.$delegate1)); + var$1.$backingIterator0 = ju_EnumMap$1_iterator(ju_EnumMap_entrySet($this.$this$0112.$delegate1)); return var$1; } function cgcc_ImmutableEnumMap$2_iterator0($this) { @@ -1205294,18 +1207738,17 @@ var$1 = $this.$state6; cgcb_AbstractIterator$State_$callClinit(); cgcb_Preconditions_checkState(var$1 === cgcb_AbstractIterator$State_FAILED ? 0 : 1); - cgcb_AbstractIterator$1_$callClinit(); - switch (cgcb_AbstractIterator$1_$SwitchMap$com$google$common$base$AbstractIterator$State.data[$this.$state6.$ordinal]) { - case 1: + switch ($this.$state6.$ordinal) { + case 0: break; case 2: - return 1; + return 0; default: $this.$state6 = cgcb_AbstractIterator$State_FAILED; $ptr = 1; continue main; } - return 0; + return 1; case 1: $tmp = cgcb_Splitter$SplittingIterator_computeNext($this); if ($rt_suspending()) { @@ -1205457,7 +1207900,7 @@ } function cgcb_Splitter$1$1() { cgcb_Splitter$SplittingIterator.call(this); - this.$this$050 = null; + this.$this$029 = null; } function cgcb_Splitter$1$1_separatorStart($this, $start) { var var$2, var$3, var$4, $ptr, $tmp; @@ -1205468,7 +1207911,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$2 = $this.$this$050.$val$separatorMatcher; + var$2 = $this.$this$029.$val$separatorMatcher; var$3 = $this.$toSplit; var$4 = jl_String_length(var$3); $ptr = 1; @@ -1205606,7 +1208049,7 @@ function nlevm_ChunkUpdateManager$1() { var a = this; jl_Object.call(a); a.$val$chunkcompiletaskgenerator0 = null; - a.$this$0136 = null; + a.$this$099 = null; } function nlevm_ChunkUpdateManager$1_run($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1205617,7 +1208060,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0136.$queue; + var$1 = $this.$this$099.$queue; var$2 = $this.$val$chunkcompiletaskgenerator0; $ptr = 1; case 1: @@ -1205627,7 +1208070,7 @@ } var$3 = $tmp; if (var$3) { - var$1 = $this.$this$0136; + var$1 = $this.$this$099; var$1.$chunkUpdatesTotal = var$1.$chunkUpdatesTotal + 1 | 0; } return; @@ -1205638,7 +1208081,7 @@ function nlevm_ChunkUpdateManager$2() { var a = this; jl_Object.call(a); a.$val$chunkcompiletaskgenerator = null; - a.$this$0135 = null; + a.$this$098 = null; } function nlevm_ChunkUpdateManager$2_run($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1205649,7 +1208092,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0135.$queue; + var$1 = $this.$this$098.$queue; var$2 = $this.$val$chunkcompiletaskgenerator; $ptr = 1; case 1: @@ -1205659,7 +1208102,7 @@ } var$3 = $tmp; if (var$3) { - var$1 = $this.$this$0135; + var$1 = $this.$this$098; var$1.$chunkUpdatesTotal = var$1.$chunkUpdatesTotal + 1 | 0; } return; @@ -1206361,7 +1208804,7 @@ } function nme_Entity$1() { jl_Object.call(this); - this.$this$025 = null; + this.$this$014 = null; } function nme_Entity$1_call($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1206372,7 +1208815,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$025; + var$1 = $this.$this$014; $ptr = 1; case 1: $tmp = nme_EntityList_getEntityString(var$1); @@ -1206380,7 +1208823,7 @@ break main; } var$1 = $tmp; - var$2 = jl_Object_getClass($this.$this$025); + var$2 = jl_Object_getClass($this.$this$014); $ptr = 2; case 2: $tmp = jl_Class_getCanonicalName(var$2); @@ -1206424,7 +1208867,7 @@ } function nme_Entity$2() { jl_Object.call(this); - this.$this$026 = null; + this.$this$015 = null; } function nme_Entity$2_call($this) { var var$1, $ptr, $tmp; @@ -1206435,7 +1208878,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$026; + var$1 = $this.$this$015; $ptr = 1; case 1: $tmp = var$1.$getName(); @@ -1206450,7 +1208893,7 @@ } function nme_Entity$3() { jl_Object.call(this); - this.$this$027 = null; + this.$this$016 = null; } function nme_Entity$3_call($this) { var var$1, $ptr, $tmp; @@ -1206461,7 +1208904,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$027.$riddenByEntity; + var$1 = $this.$this$016.$riddenByEntity; $ptr = 1; case 1: $tmp = var$1.$toString(); @@ -1206476,7 +1208919,7 @@ } function nme_Entity$4() { jl_Object.call(this); - this.$this$028 = null; + this.$this$017 = null; } function nme_Entity$4_call($this) { var var$1, $ptr, $tmp; @@ -1206487,7 +1208930,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$028.$ridingEntity; + var$1 = $this.$this$017.$ridingEntity; $ptr = 1; case 1: $tmp = var$1.$toString(); @@ -1206555,32 +1208998,39 @@ case 0: var$1 = $this.$itemWeight; var$2 = $this.$model2; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - var$4 = $rt_s(8712); $ptr = 1; case 1: - jl_AbstractStringBuilder_append(var$3, var$4); + $tmp = jl_String_valueOf(var$2); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append1(var$3, var$1); - var$4 = $rt_s(8713); + var$2 = $tmp; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + var$4 = $rt_s(8712); $ptr = 2; case 2: jl_AbstractStringBuilder_append(var$3, var$4); if ($rt_suspending()) { break main; } + jl_AbstractStringBuilder_append1(var$3, var$1); + var$4 = $rt_s(8713); $ptr = 3; case 3: + jl_AbstractStringBuilder_append(var$3, var$4); + if ($rt_suspending()) { + break main; + } + $ptr = 4; + case 4: jl_AbstractStringBuilder_append(var$3, var$2); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append0(var$3, 125); - $ptr = 4; - case 4: + $ptr = 5; + case 5: $tmp = jl_AbstractStringBuilder_toString(var$3); if ($rt_suspending()) { break main; @@ -1206945,7 +1209395,7 @@ } function nmt_TileEntityMobSpawner$1() { nmt_MobSpawnerBaseLogic.call(this); - this.$this$0202 = null; + this.$this$0129 = null; } function nmt_TileEntityMobSpawner$1_func_98267_a($this, $i) { var var$2, var$3, var$4, var$5, $ptr, $tmp; @@ -1206956,7 +1209406,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$2 = $this.$this$0202; + var$2 = $this.$this$0129; var$3 = var$2.$worldObj4; var$4 = var$2.$pos11; var$2 = nmi_Blocks_mob_spawner; @@ -1206973,10 +1209423,10 @@ $rt_nativeThread().push($this, $i, var$2, var$3, var$4, var$5, $ptr); } function nmt_TileEntityMobSpawner$1_getSpawnerWorld($this) { - return $this.$this$0202.$worldObj4; + return $this.$this$0129.$worldObj4; } function nmt_TileEntityMobSpawner$1_getSpawnerPosition($this) { - return $this.$this$0202.$pos11; + return $this.$this$0129.$pos11; } function nmt_TileEntityMobSpawner$1_setRandomEntity($this, $mobspawnerbaselogic$weightedrandomminecart) { var var$2, $ptr, $tmp; @@ -1206991,7 +1209441,7 @@ if (nmt_TileEntityMobSpawner$1_getSpawnerWorld($this) === null) return; $mobspawnerbaselogic$weightedrandomminecart = nmt_TileEntityMobSpawner$1_getSpawnerWorld($this); - var$2 = $this.$this$0202.$pos11; + var$2 = $this.$this$0129.$pos11; $ptr = 1; case 1: nmw_World_markBlockForUpdate($mobspawnerbaselogic$weightedrandomminecart, var$2); @@ -1207392,7 +1209842,7 @@ $crashreportcategory = $tmp; $worldIn = $rt_s(8722); $minecraftserver = new nmcs_CommandBlockLogic$1; - $minecraftserver.$this$0241 = $this; + $minecraftserver.$this$0157 = $this; $ptr = 5; case 5: nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, $worldIn, $minecraftserver); @@ -1207401,7 +1209851,7 @@ } $worldIn = $rt_s(1456); $minecraftserver = new nmcs_CommandBlockLogic$2; - $minecraftserver.$this$0242 = $this; + $minecraftserver.$this$0158 = $this; $ptr = 6; case 6: nmc_CrashReportCategory_addCrashSectionCallable($crashreportcategory, $worldIn, $minecraftserver); @@ -1207662,13 +1210112,13 @@ } function nmt_TileEntityCommandBlock$1() { nmcs_CommandBlockLogic.call(this); - this.$this$0203 = null; + this.$this$0130 = null; } function nmt_TileEntityCommandBlock$1_getPosition($this) { - return $this.$this$0203.$pos11; + return $this.$this$0130.$pos11; } function nmt_TileEntityCommandBlock$1_getPositionVector($this) { - return nmu_Vec3__init_0($this.$this$0203.$pos11.$getX() + 0.5, $this.$this$0203.$pos11.$getY() + 0.5, $this.$this$0203.$pos11.$getZ() + 0.5); + return nmu_Vec3__init_0($this.$this$0130.$pos11.$getX() + 0.5, $this.$this$0130.$pos11.$getY() + 0.5, $this.$this$0130.$pos11.$getZ() + 0.5); } function nmt_TileEntityCommandBlock$1_getEntityWorld($this) { var $ptr, $tmp; @@ -1207679,7 +1210129,7 @@ } main: while (true) { switch ($ptr) { case 0: - return $this.$this$0203.$worldObj4; + return $this.$this$0130.$worldObj4; default: $rt_invalidPointer(); }} $rt_nativeThread().push($this, $ptr); @@ -1207699,7 +1210149,7 @@ if ($rt_suspending()) { break main; } - $s = $this.$this$0203; + $s = $this.$this$0130; $ptr = 2; case 2: nmt_TileEntity_markDirty($s); @@ -1207720,7 +1210170,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0203; + var$1 = $this.$this$0130; var$2 = var$1.$worldObj4; var$1 = var$1.$pos11; $ptr = 1; @@ -1207746,21 +1210196,21 @@ } main: while (true) { switch ($ptr) { case 0: - var$2 = $this.$this$0203.$pos11.$getX(); + var$2 = $this.$this$0130.$pos11.$getX(); $ptr = 1; case 1: nmn_PacketBuffer_writeInt($bytebuf, var$2); if ($rt_suspending()) { break main; } - var$2 = $this.$this$0203.$pos11.$getY(); + var$2 = $this.$this$0130.$pos11.$getY(); $ptr = 2; case 2: nmn_PacketBuffer_writeInt($bytebuf, var$2); if ($rt_suspending()) { break main; } - var$2 = $this.$this$0203.$pos11.$getZ(); + var$2 = $this.$this$0130.$pos11.$getZ(); $ptr = 3; case 3: nmn_PacketBuffer_writeInt($bytebuf, var$2); @@ -1207932,13 +1210382,13 @@ } function cgcc_AbstractTable$CellSet() { ju_AbstractSet.call(this); - this.$this$0205 = null; + this.$this$0132 = null; } function cgcc_AbstractTable$CellSet_iterator($this) { var var$1, var$2; - var$1 = $this.$this$0205; + var$1 = $this.$this$0132; var$2 = new cgcc_StandardTable$CellIterator; - var$2.$this$0243 = var$1; + var$2.$this$0159 = var$1; var$2.$rowIterator = ju_HashMap$HashMapEntrySet_iterator(ju_HashMap_entrySet(var$1.$backingMap0)); var$2.$columnIterator = cgcc_Iterators_EMPTY_MODIFIABLE_ITERATOR; return var$2; @@ -1207987,7 +1210437,7 @@ break main; } var$6 = $tmp; - var$8 = !$this.$doExportProfile ? $rt_s(5637) : $rt_s(5636); + var$8 = !$this.$doExportProfile ? $rt_s(5636) : $rt_s(5635); var$7 = $rt_createArray(jl_Object, 0); $ptr = 2; case 2: @@ -1208046,7 +1210496,7 @@ break main; } var$6 = $tmp; - var$8 = !$this.$doExportSettings ? $rt_s(5637) : $rt_s(5636); + var$8 = !$this.$doExportSettings ? $rt_s(5636) : $rt_s(5635); var$7 = $rt_createArray(jl_Object, 0); $ptr = 9; case 9: @@ -1208104,7 +1210554,7 @@ break main; } var$6 = $tmp; - var$8 = !$this.$doExportServers ? $rt_s(5637) : $rt_s(5636); + var$8 = !$this.$doExportServers ? $rt_s(5636) : $rt_s(5635); var$7 = $rt_createArray(jl_Object, 0); $ptr = 16; case 16: @@ -1208162,7 +1210612,7 @@ break main; } var$6 = $tmp; - var$8 = !$this.$doExportResourcePacks ? $rt_s(5637) : $rt_s(5636); + var$8 = !$this.$doExportResourcePacks ? $rt_s(5636) : $rt_s(5635); var$7 = $rt_createArray(jl_Object, 0); $ptr = 23; case 23: @@ -1208445,7 +1210895,7 @@ break main; } $e = $tmp; - var$5 = !$this.$doExportProfile ? $rt_s(5637) : $rt_s(5636); + var$5 = !$this.$doExportProfile ? $rt_s(5636) : $rt_s(5635); var$4 = $rt_createArray(jl_Object, 0); $ptr = 14; continue main; @@ -1208461,7 +1210911,7 @@ break main; } $e = $tmp; - var$5 = !$this.$doExportSettings ? $rt_s(5637) : $rt_s(5636); + var$5 = !$this.$doExportSettings ? $rt_s(5636) : $rt_s(5635); var$4 = $rt_createArray(jl_Object, 0); $ptr = 19; continue main; @@ -1208471,7 +1210921,7 @@ break main; } $e = $tmp; - var$5 = !$this.$doExportServers ? $rt_s(5637) : $rt_s(5636); + var$5 = !$this.$doExportServers ? $rt_s(5636) : $rt_s(5635); var$4 = $rt_createArray(jl_Object, 0); $ptr = 23; continue main; @@ -1208511,7 +1210961,7 @@ break main; } $e = $tmp; - var$5 = !$this.$doExportResourcePacks ? $rt_s(5637) : $rt_s(5636); + var$5 = !$this.$doExportResourcePacks ? $rt_s(5636) : $rt_s(5635); var$4 = $rt_createArray(jl_Object, 0); $ptr = 27; continue main; @@ -1209605,7 +1212055,7 @@ break main; } var$6 = $tmp; - var$8 = !$this.$doImportProfile ? $rt_s(5637) : $rt_s(5636); + var$8 = !$this.$doImportProfile ? $rt_s(5636) : $rt_s(5635); var$7 = $rt_createArray(jl_Object, 0); $ptr = 2; case 2: @@ -1209665,7 +1212115,7 @@ break main; } var$6 = $tmp; - var$8 = !$this.$doImportSettings ? $rt_s(5637) : $rt_s(5636); + var$8 = !$this.$doImportSettings ? $rt_s(5636) : $rt_s(5635); var$7 = $rt_createArray(jl_Object, 0); $ptr = 9; case 9: @@ -1209724,7 +1212174,7 @@ break main; } var$6 = $tmp; - var$8 = !$this.$doImportServers ? $rt_s(5637) : $rt_s(5636); + var$8 = !$this.$doImportServers ? $rt_s(5636) : $rt_s(5635); var$7 = $rt_createArray(jl_Object, 0); $ptr = 16; case 16: @@ -1209783,7 +1212233,7 @@ break main; } var$6 = $tmp; - var$8 = !$this.$doImportResourcePacks ? $rt_s(5637) : $rt_s(5636); + var$8 = !$this.$doImportResourcePacks ? $rt_s(5636) : $rt_s(5635); var$7 = $rt_createArray(jl_Object, 0); $ptr = 23; case 23: @@ -1210168,7 +1212618,7 @@ break main; } $list1 = $tmp; - $list2 = !$this.$doImportProfile ? $rt_s(5637) : $rt_s(5636); + $list2 = !$this.$doImportProfile ? $rt_s(5636) : $rt_s(5635); var$4 = $rt_createArray(jl_Object, 0); $ptr = 23; continue main; @@ -1210184,7 +1212634,7 @@ break main; } $list1 = $tmp; - $list2 = !$this.$doImportSettings ? $rt_s(5637) : $rt_s(5636); + $list2 = !$this.$doImportSettings ? $rt_s(5636) : $rt_s(5635); var$4 = $rt_createArray(jl_Object, 0); $ptr = 30; continue main; @@ -1210312,7 +1212762,7 @@ break main; } $list1 = $tmp; - $list2 = !$this.$doImportServers ? $rt_s(5637) : $rt_s(5636); + $list2 = !$this.$doImportServers ? $rt_s(5636) : $rt_s(5635); var$4 = $rt_createArray(jl_Object, 0); $ptr = 35; continue main; @@ -1210398,7 +1212848,7 @@ break main; } $list1 = $tmp; - $list2 = !$this.$doImportResourcePacks ? $rt_s(5637) : $rt_s(5636); + $list2 = !$this.$doImportResourcePacks ? $rt_s(5636) : $rt_s(5635); var$4 = $rt_createArray(jl_Object, 0); $ptr = 39; continue main; @@ -1210886,7 +1213336,7 @@ } try { var$5 = $imetadatasection; - if (!jl_String_contains($s, $rt_s(5270))) { + if (!jl_String_contains($s, $rt_s(5268))) { var$5 = $imetadatasection; $ptr = 9; continue main; @@ -1211011,7 +1213461,7 @@ } try { var$5 = $imetadatasection; - if (!jl_String_contains($s, $rt_s(5270))) { + if (!jl_String_contains($s, $rt_s(5268))) { var$5 = $imetadatasection; $ptr = 9; continue main; @@ -1211369,14 +1213819,14 @@ var$3 = new cgcc_AbstractMapBasedMultimap$WrappedSortedSet; $collection = $collection; var$4 = null; - var$3.$this$0244 = $this; + var$3.$this$0160 = $this; cgcc_AbstractMapBasedMultimap$WrappedCollection__init_(var$3, $this, $key, $collection, var$4); return var$3; } if ($rt_isInstance($collection, ju_Set)) { var$3 = new cgcc_AbstractMapBasedMultimap$WrappedSet; $collection = $collection; - var$3.$this$0245 = $this; + var$3.$this$0161 = $this; cgcc_AbstractMapBasedMultimap$WrappedCollection__init_(var$3, $this, $key, $collection, null); return var$3; } @@ -1211388,7 +1213838,6 @@ var$4 = cgcc_AbstractMapBasedMultimap$WrappedList__init_($this, $key, $collection, var$3); else { var$4 = new cgcc_AbstractMapBasedMultimap$RandomAccessWrappedList; - var$4.$this$0246 = $this; cgcc_AbstractMapBasedMultimap$WrappedList__init_0(var$4, $this, $key, $collection, var$3); } return var$4; @@ -1211656,7 +1214105,7 @@ } nlevi_EnumCursorType_$callClinit(); var$9 = nlevi_EnumCursorType_HAND; - $ptr = 8; + $ptr = 9; continue main; case 4: nmu_EnumChatFormatting_$callClinit(); @@ -1211664,23 +1214113,30 @@ break main; } var$10 = nmu_EnumChatFormatting_UNDERLINE; - var$11 = $this.$text3; - var$12 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$12); $ptr = 5; case 5: - jl_AbstractStringBuilder_append(var$12, var$10); + $tmp = jl_String_valueOf(var$10); if ($rt_suspending()) { break main; } + var$10 = $tmp; + var$11 = $this.$text3; + var$12 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$12); $ptr = 6; case 6: - jl_AbstractStringBuilder_append(var$12, var$11); + jl_AbstractStringBuilder_append(var$12, var$10); if ($rt_suspending()) { break main; } $ptr = 7; case 7: + jl_AbstractStringBuilder_append(var$12, var$11); + if ($rt_suspending()) { + break main; + } + $ptr = 8; + case 8: $tmp = jl_AbstractStringBuilder_toString(var$12); if ($rt_suspending()) { break main; @@ -1211689,9 +1214145,9 @@ $yy = 5; $xx = 5; $hover = !$hover ? (-3355444) : (-1118686); - $ptr = 9; + $ptr = 10; continue main; - case 8: + case 9: nlev_Mouse_showCursor(var$9); if ($rt_suspending()) { break main; @@ -1211699,13 +1214155,13 @@ var$9 = $this.$mc25.$fontRendererObj; $ptr = 4; continue main; - case 9: + case 10: nmcg_Gui_drawString($this, var$9, var$10, $yy, $xx, $hover); if ($rt_suspending()) { break main; } - $ptr = 10; - case 10: + $ptr = 11; + case 11: nlevo_GlStateManager_popMatrix(); if ($rt_suspending()) { break main; @@ -1217069,16 +1219525,15 @@ var$4 = "arraybuffer"; $xhr.responseType = var$4; var$5 = new nlevit_TeaVMUpdateThread$1; - var$5.$this$0247 = $this; + var$5.$this$0162 = $this; $xhr.addEventListener("progress", var$5); var$5 = new nlevit_TeaVMUpdateThread$2; - var$5.$this$0248 = $this; + var$5.$this$0163 = $this; var$5.$val$xhr = $xhr; var$5.$val$cb20 = $cb; var$5.$val$url = $url; $xhr.addEventListener("readystatechange", var$5); var$4 = new nlevit_TeaVMUpdateThread$3; - var$4.$this$0249 = $this; var$4.$val$url0 = $url; $xhr.addEventListener("error", var$4); $xhr.send(); @@ -1217710,7 +1220165,6 @@ $l_0 = new nlevsl_LANServerList$LanServer; $etr = $l.$worldName8; $l = $l.$worldCode; - $l_0.$this$0250 = $this; $l_0.$flagged = 1; $l_0.$lanServerMotd = $etr; $l_0.$lanServerRelay = $rl; @@ -1218248,59 +1220702,6 @@ a.$field_178388_c = 0; a.$field_178386_d = 0; } - var nmcrbm_ItemModelGenerator$1 = $rt_classWithoutFields(); - var nmcrbm_ItemModelGenerator$1_$SwitchMap$net$minecraft$client$renderer$block$model$ItemModelGenerator$SpanFacing = null; - var nmcrbm_ItemModelGenerator$1_$clinitCalled = false; - function nmcrbm_ItemModelGenerator$1_$callClinit() { - var $ptr = 0; - if ($rt_resuming()) { - $ptr = $rt_nativeThread().pop(); - } else if (nmcrbm_ItemModelGenerator$1_$clinitCalled) { - return; - } - main: while (true) { switch ($ptr) { - case 0: - nmcrbm_ItemModelGenerator$1_$clinitCalled = true; - $ptr = 1; - case 1: - nmcrbm_ItemModelGenerator$1__clinit_(); - if ($rt_suspending()) { - break main; - } - nmcrbm_ItemModelGenerator$1_$callClinit = $rt_eraseClinit(nmcrbm_ItemModelGenerator$1); - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($ptr); - } - function nmcrbm_ItemModelGenerator$1__clinit_() { - var var$1, var$2, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - $tmp = nmcrbm_ItemModelGenerator$SpanFacing_values(); - if ($rt_suspending()) { - break main; - } - var$1 = $tmp; - var$2 = $rt_createIntArray(var$1.data.length); - var$1 = var$2.data; - nmcrbm_ItemModelGenerator$1_$SwitchMap$net$minecraft$client$renderer$block$model$ItemModelGenerator$SpanFacing = var$2; - var$1[nmcrbm_ItemModelGenerator$SpanFacing_UP.$ordinal] = 1; - var$1[nmcrbm_ItemModelGenerator$SpanFacing_DOWN.$ordinal] = 2; - var$1[nmcrbm_ItemModelGenerator$SpanFacing_LEFT.$ordinal] = 3; - var$1[nmcrbm_ItemModelGenerator$SpanFacing_RIGHT.$ordinal] = 4; - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push(var$1, var$2, $ptr); - } function nlevoedp_PipelineShaderGBufferDebugView$Uniforms() { var a = this; jl_Object.call(a); a.$mode6 = 0; @@ -1218498,7 +1220899,6 @@ case 0: var$3 = $this.$taskEntries; var$4 = new nmea_EntityAITasks$EntityAITaskEntry; - var$4.$this$0251 = $this; var$4.$priority0 = $priority; var$4.$action6 = $task; $ptr = 1; @@ -1220362,15 +1222762,12 @@ }} $rt_nativeThread().push($this, $i, var$2, $flag, $ptr); } - var otcir_JSCallable = $rt_classWithoutFields(0); function nmcrbm_ModelBlock$Bookkeep() { var a = this; jl_Object.call(a); a.$model3 = null; a.$modelExt = null; } - var cgcc_ImmutableMultimap = $rt_classWithoutFields(cgcc_AbstractMultimap); - var cgcc_SetMultimap = $rt_classWithoutFields(0); - var cgcc_ImmutableSetMultimap = $rt_classWithoutFields(cgcc_ImmutableMultimap); + var otcir_JSCallable = $rt_classWithoutFields(0); function nmws_MapData$MapInfo() { var a = this; jl_Object.call(a); a.$entityplayerObj = null; @@ -1220381,7 +1222778,7 @@ a.$maxY1 = 0; a.$field_176109_i = 0; a.$field_82569_d = 0; - a.$this$038 = null; + a.$this$022 = null; } function nmws_MapData$MapInfo__init_(var_0, var_1) { var var_2 = new nmws_MapData$MapInfo(); @@ -1220389,7 +1222786,7 @@ return var_2; } function nmws_MapData$MapInfo__init_0($this, $this$0, $player) { - $this.$this$038 = $this$0; + $this.$this$022 = $this$0; $this.$field_176105_d = 1; $this.$minX1 = 0; $this.$minY1 = 0; @@ -1220397,6 +1222794,9 @@ $this.$maxY1 = 127; $this.$entityplayerObj = $player; } + var cgcc_ImmutableMultimap = $rt_classWithoutFields(cgcc_AbstractMultimap); + var cgcc_SetMultimap = $rt_classWithoutFields(0); + var cgcc_ImmutableSetMultimap = $rt_classWithoutFields(cgcc_ImmutableMultimap); function nmw_DifficultyInstance() { var a = this; jl_Object.call(a); a.$worldDifficulty = null; @@ -1220421,6 +1222821,14 @@ function cgcc_ImmutableBiMap$Builder__init_($this) { cgcc_ImmutableMap$Builder__init_($this); } + function nmc_CommandBase$CoordinateArg() { + var a = this; jl_Object.call(a); + a.$field_179633_a = 0.0; + a.$field_179631_b = 0.0; + a.$field_179632_c = 0; + } + var cgcb_Optional = $rt_classWithoutFields(); + var cgcc_ImmutableListMultimap = $rt_classWithoutFields(cgcc_ImmutableMultimap); var nea_BaseData$DataBooleanCallback = $rt_classWithoutFields(0); var nea_BaseData$DataDoubleCallback = $rt_classWithoutFields(0); var nea_BaseData$DataFloatCallback = $rt_classWithoutFields(0); @@ -1220437,14 +1222845,6 @@ var nea_BaseData$DoubleCallbackArr = $rt_classWithoutFields(0); var nea_BaseData$FloatCallbackArr = $rt_classWithoutFields(0); var nea_BaseData$ObjectCallbackArr = $rt_classWithoutFields(0); - var cgcb_Optional = $rt_classWithoutFields(); - var cgcc_ImmutableListMultimap = $rt_classWithoutFields(cgcc_ImmutableMultimap); - function nmc_CommandBase$CoordinateArg() { - var a = this; jl_Object.call(a); - a.$field_179633_a = 0.0; - a.$field_179631_b = 0.0; - a.$field_179632_c = 0; - } var jt_DateFormatElement$TrieNode = $rt_classWithoutFields(); function jt_DateFormatElement$TrieNode__init_0() { var var_0 = new jt_DateFormatElement$TrieNode(); @@ -1221018,10 +1223418,7 @@ nmwgl_IntCache_freeLargeArrays = cgcc_Lists_newArrayList(); nmwgl_IntCache_inUseLargeArrays = cgcc_Lists_newArrayList(); } - function cgcc_HashBiMap$Inverse$InverseKeySet$1() { - cgcc_HashBiMap$Itr.call(this); - this.$this$20 = null; - } + var cgcc_HashBiMap$Inverse$InverseKeySet$1 = $rt_classWithoutFields(cgcc_HashBiMap$Itr); function cgcc_HashBiMap$Inverse$InverseKeySet$1_output($this, $entry) { return $entry.$value17; } @@ -1221065,31 +1223462,17 @@ ju_AbstractSet.call(this); this.$associatedMap1 = null; } - var cgcb_AbstractIterator$1 = $rt_classWithoutFields(); - var cgcb_AbstractIterator$1_$SwitchMap$com$google$common$base$AbstractIterator$State = null; - function cgcb_AbstractIterator$1_$callClinit() { - cgcb_AbstractIterator$1_$callClinit = $rt_eraseClinit(cgcb_AbstractIterator$1); - cgcb_AbstractIterator$1__clinit_(); - } - function cgcb_AbstractIterator$1__clinit_() { - var var$1, var$2; - var$1 = $rt_createIntArray((cgcb_AbstractIterator$State_values()).data.length); - var$2 = var$1.data; - cgcb_AbstractIterator$1_$SwitchMap$com$google$common$base$AbstractIterator$State = var$1; - var$2[cgcb_AbstractIterator$State_DONE.$ordinal] = 1; - var$2[cgcb_AbstractIterator$State_READY.$ordinal] = 2; - } function ju_IdentityHashMap$2() { ju_AbstractCollection.call(this); - this.$this$0127 = null; + this.$this$095 = null; } function ju_IdentityHashMap$2_size($this) { - return $this.$this$0127.$elementCount1; + return $this.$this$095.$elementCount1; } function ju_IdentityHashMap$2_iterator($this) { var var$1; var$1 = new ju_IdentityHashMap$ValueIterator; - ju_IdentityHashMap$AbstractMapIterator__init_(var$1, $this.$this$0127); + ju_IdentityHashMap$AbstractMapIterator__init_(var$1, $this.$this$095); return var$1; } var otcir_Flags = $rt_classWithoutFields(); @@ -1221149,7 +1223532,7 @@ if ($rt_suspending()) { break main; } - $string = $rt_s(5270); + $string = $rt_s(5268); $ptr = 2; case 2: $tmp = oj_JSONObject_getJSONObject($jsonObject, $string); @@ -1221261,75 +1223644,6 @@ }} $rt_nativeThread().push($string, $jsonObject, $animationObject, $frametime, $frames, $interpolate, $i, $list, $obj, $time, $ptr); } - var nmu_EnumFacing$1 = $rt_classWithoutFields(); - var nmu_EnumFacing$1_$SwitchMap$net$minecraft$util$EnumFacing$Axis = null; - var nmu_EnumFacing$1_$SwitchMap$net$minecraft$util$EnumFacing = null; - var nmu_EnumFacing$1_$clinitCalled = false; - function nmu_EnumFacing$1_$callClinit() { - var $ptr = 0; - if ($rt_resuming()) { - $ptr = $rt_nativeThread().pop(); - } else if (nmu_EnumFacing$1_$clinitCalled) { - return; - } - main: while (true) { switch ($ptr) { - case 0: - nmu_EnumFacing$1_$clinitCalled = true; - $ptr = 1; - case 1: - nmu_EnumFacing$1__clinit_(); - if ($rt_suspending()) { - break main; - } - nmu_EnumFacing$1_$callClinit = $rt_eraseClinit(nmu_EnumFacing$1); - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($ptr); - } - function nmu_EnumFacing$1__clinit_() { - var var$1, var$2, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - $tmp = nmu_EnumFacing_values(); - if ($rt_suspending()) { - break main; - } - var$1 = $tmp; - var$2 = $rt_createIntArray(var$1.data.length); - var$1 = var$2.data; - nmu_EnumFacing$1_$SwitchMap$net$minecraft$util$EnumFacing = var$2; - var$1[nmu_EnumFacing_NORTH.$ordinal] = 1; - var$1[nmu_EnumFacing_EAST.$ordinal] = 2; - var$1[nmu_EnumFacing_SOUTH.$ordinal] = 3; - var$1[nmu_EnumFacing_WEST.$ordinal] = 4; - var$1[nmu_EnumFacing_UP.$ordinal] = 5; - var$1[nmu_EnumFacing_DOWN.$ordinal] = 6; - $ptr = 2; - case 2: - $tmp = nmu_EnumFacing$Axis_values(); - if ($rt_suspending()) { - break main; - } - var$1 = $tmp; - var$1 = $rt_createIntArray(var$1.data.length); - var$2 = var$1.data; - nmu_EnumFacing$1_$SwitchMap$net$minecraft$util$EnumFacing$Axis = var$1; - var$2[nmu_EnumFacing$Axis_X.$ordinal] = 1; - var$2[nmu_EnumFacing$Axis_Y.$ordinal] = 2; - var$2[nmu_EnumFacing$Axis_Z.$ordinal] = 3; - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push(var$1, var$2, $ptr); - } function cgcc_HashBiMap$Inverse$1() { cgcc_Maps$EntrySet.call(this); this.$this$11 = null; @@ -1221340,8 +1223654,8 @@ function cgcc_HashBiMap$Inverse$1_iterator($this) { var var$1; var$1 = new cgcc_HashBiMap$Inverse$1$1; - var$1.$this$21 = $this; - cgcc_HashBiMap$Itr__init_(var$1, $this.$this$11.$this$0110); + var$1.$this$20 = $this; + cgcc_HashBiMap$Itr__init_(var$1, $this.$this$11.$this$080); return var$1; } var nmn_NBTUtil = $rt_classWithoutFields(); @@ -1221698,7 +1224012,7 @@ else { $propertiesMap = new cgcc_AbstractMapBasedMultimap$SortedKeySet; $property = $property; - $propertiesMap.$this$0252 = var$6; + $propertiesMap.$this$0164 = var$6; cgcc_AbstractMapBasedMultimap$KeySet__init_0($propertiesMap, var$6, $property); } var$6.$keySet2 = $propertiesMap; @@ -1221728,7 +1224042,7 @@ else { $propertiesMap = new cgcc_AbstractMapBasedMultimap$SortedKeySet; $property = $property; - $propertiesMap.$this$0252 = var$6; + $propertiesMap.$this$0164 = var$6; cgcc_AbstractMapBasedMultimap$KeySet__init_0($propertiesMap, var$6, $property); } var$6.$keySet2 = $propertiesMap; @@ -1221759,7 +1224073,7 @@ else { $propertiesMap = new cgcc_AbstractMapBasedMultimap$SortedKeySet; $property = $property; - $propertiesMap.$this$0252 = var$6; + $propertiesMap.$this$0164 = var$6; cgcc_AbstractMapBasedMultimap$KeySet__init_0($propertiesMap, var$6, $property); } var$6.$keySet2 = $propertiesMap; @@ -1222077,7 +1224391,6 @@ var a = this; jl_Object.call(a); a.$action6 = null; a.$priority0 = 0; - a.$this$0251 = null; } function jnci_BufferedEncoder$Controller() { var a = this; jl_Object.call(a); @@ -1222681,7 +1224994,6 @@ var$11 = ($this.$height7 / 6 | 0) + (24 * ($i >> 1) | 0) | 0; var$12 = 150; var$13 = 20; - var$8.$this$0253 = $this; $ptr = 3; continue main; } @@ -1222729,7 +1225041,6 @@ var$11 = ($this.$height7 / 6 | 0) + (24 * ($i >> 1) | 0) | 0; var$12 = 150; var$13 = 20; - var$8.$this$0253 = $this; $ptr = 3; continue main; } @@ -1225997,7 +1228308,7 @@ var a = this; nmcg_GuiSlot.call(a); a.$langCodeList = null; a.$languageMap0 = null; - a.$this$0233 = null; + a.$this$0149 = null; } function nmcg_GuiLanguage$List_getSize($this) { return $this.$langCodeList.$size; @@ -1226028,7 +1228339,7 @@ } $language = $tmp; $language = $language; - var$6 = $this.$this$0233; + var$6 = $this.$this$0149; var$7 = var$6.$languageManager; var$8 = $language.$languageCode0; var$7.$currentLanguage = var$8; @@ -1226047,7 +1228358,7 @@ if ($rt_suspending()) { break main; } - $language = $this.$this$0233; + $language = $this.$this$0149; var$6 = $language.$fontRendererObj0; $language = $language.$languageManager; $ptr = 5; @@ -1226057,8 +1228368,8 @@ break main; } $i = $tmp; - var$6.$unicodeFlag = !$i && !$this.$this$0233.$game_settings_3.$forceUnicodeFont ? 0 : 1; - $language = $this.$this$0233; + var$6.$unicodeFlag = !$i && !$this.$this$0149.$game_settings_3.$forceUnicodeFont ? 0 : 1; + $language = $this.$this$0149; var$6 = $language.$fontRendererObj0; $language = $language.$languageManager; $ptr = 6; @@ -1226069,7 +1228380,7 @@ } $i = $tmp; var$6.$bidiFlag = $i; - $language = $this.$this$0233.$confirmSettingsBtn; + $language = $this.$this$0149.$confirmSettingsBtn; var$6 = $rt_s(5191); var$9 = $rt_createArray(jl_Object, 0); $ptr = 7; @@ -1226080,7 +1228391,7 @@ } var$6 = $tmp; $language.$displayString = var$6; - $language = $this.$this$0233; + $language = $this.$this$0149; var$6 = $language.$forceUnicodeFontBtn; $language = $language.$game_settings_3; nmcs_GameSettings$Options_$callClinit(); @@ -1226093,14 +1228404,14 @@ } $language = $tmp; var$6.$displayString = $language; - $language = $this.$this$0233.$game_settings_3; + $language = $this.$this$0149.$game_settings_3; $ptr = 9; case 9: nmcs_GameSettings_saveOptions($language); if ($rt_suspending()) { break main; } - $language = $this.$this$0233; + $language = $this.$this$0149; var$6 = $language.$mc15; $ptr = 10; case 10: @@ -1226131,7 +1228442,7 @@ } var$2 = $tmp; var$2 = var$2; - var$3 = $this.$this$0233.$languageManager; + var$3 = $this.$this$0149.$languageManager; $ptr = 2; case 2: $tmp = nmcr_LanguageManager_getCurrentLanguage(var$3); @@ -1226164,7 +1228475,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0233; + var$1 = $this.$this$0149; $ptr = 1; case 1: nmcg_GuiScreen_drawDefaultBackground(var$1); @@ -1226185,7 +1228496,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$7 = $this.$this$0233; + var$7 = $this.$this$0149; var$8 = var$7.$fontRendererObj0; var$8.$bidiFlag = 1; var$9 = $this.$languageMap0; @@ -1226221,7 +1228532,7 @@ if ($rt_suspending()) { break main; } - var$7 = $this.$this$0233; + var$7 = $this.$this$0149; var$8 = var$7.$fontRendererObj0; var$7 = var$7.$languageManager; $ptr = 5; @@ -1226888,49 +1229199,49 @@ $rt_nativeThread().push($this, $parGuiMultiplayer, $parServerData, $ptr); } function nmcg_ServerListEntryNormal_drawEntry($this, $i, $j, $k, $l, $var5, $i1, $j1, $flag) { - var $s, $flag1, $flag2, $flag3, $s2, $l1, $k2, $list, $k1, $b0, $i2, var$20, $s1, var$22, var$23, var$24, var$25, var$26, $j2, $ptr, $tmp; + var $list, $flag1, $flag2, $flag3, $s2, $j2, $l1, $k1, $k2, $b0, $s, var$20, $i2, $s1, var$23, var$24, var$25, var$26, var$27, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$j2 = $thread.pop();var$26 = $thread.pop();var$25 = $thread.pop();var$24 = $thread.pop();var$23 = $thread.pop();var$22 = $thread.pop();$s1 = $thread.pop();var$20 = $thread.pop();$i2 = $thread.pop();$b0 = $thread.pop();$k1 = $thread.pop();$list = $thread.pop();$k2 = $thread.pop();$l1 = $thread.pop();$s2 = $thread.pop();$flag3 = $thread.pop();$flag2 = $thread.pop();$flag1 = $thread.pop();$s = $thread.pop();$flag = $thread.pop();$j1 = $thread.pop();$i1 = $thread.pop();$var5 = $thread.pop();$l + $ptr = $thread.pop();var$27 = $thread.pop();var$26 = $thread.pop();var$25 = $thread.pop();var$24 = $thread.pop();var$23 = $thread.pop();$s1 = $thread.pop();$i2 = $thread.pop();var$20 = $thread.pop();$s = $thread.pop();$b0 = $thread.pop();$k2 = $thread.pop();$k1 = $thread.pop();$l1 = $thread.pop();$j2 = $thread.pop();$s2 = $thread.pop();$flag3 = $thread.pop();$flag2 = $thread.pop();$flag1 = $thread.pop();$list = $thread.pop();$flag = $thread.pop();$j1 = $thread.pop();$i1 = $thread.pop();$var5 = $thread.pop();$l = $thread.pop();$k = $thread.pop();$j = $thread.pop();$i = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: - $s = $this.$field_148301_e; - if (!$s.$field_78841_f) { - $s.$field_78841_f = 1; - $s.$pingToServer = Long_fromInt(-2); - $s.$serverMOTD = $rt_s(14); - $s.$populationInfo = $rt_s(14); + $list = $this.$field_148301_e; + if (!$list.$field_78841_f) { + $list.$field_78841_f = 1; + $list.$pingToServer = Long_fromInt(-2); + $list.$serverMOTD = $rt_s(14); + $list.$populationInfo = $rt_s(14); } - $var5 = $rt_compare($s.$version1, 47); + $var5 = $rt_compare($list.$version1, 47); $flag1 = $var5 <= 0 ? 0 : 1; $flag2 = $var5 >= 0 ? 0 : 1; $flag3 = !$flag1 && !$flag2 ? 0 : 1; $s2 = $this.$mc27.$fontRendererObj; - $s = $s.$serverName0; - $l1 = ($j + 32 | 0) + 3 | 0; - $k2 = $k + 1 | 0; - $var5 = 16777215; + $list = $list.$serverName0; + $var5 = ($j + 32 | 0) + 3 | 0; + $j2 = $k + 1 | 0; + $l1 = 16777215; $ptr = 1; case 1: - nmcg_FontRenderer_drawString($s2, $s, $l1, $k2, $var5); + nmcg_FontRenderer_drawString($s2, $list, $var5, $j2, $l1); if ($rt_suspending()) { break main; } $s2 = $this.$mc27.$fontRendererObj; - $s = $this.$field_148301_e.$serverMOTD; - $var5 = ($l - 32 | 0) - 2 | 0; + $list = $this.$field_148301_e.$serverMOTD; + $l1 = ($l - 32 | 0) - 2 | 0; $ptr = 2; case 2: - $tmp = nmcg_FontRenderer_listFormattedStringToWidth($s2, $s, $var5); + $tmp = nmcg_FontRenderer_listFormattedStringToWidth($s2, $list, $l1); if ($rt_suspending()) { break main; } $list = $tmp; $k1 = 0; - $b0 = $k + 12 | 0; + $k2 = $k + 12 | 0; if ($k1 < 2) { $ptr = 3; continue main; @@ -1226941,21 +1229252,21 @@ } $s2 = $this.$field_148301_e.$populationInfo; $l1 = nmcg_FontRenderer_getStringWidth($this.$mc27.$fontRendererObj, $s2); - $s = $this.$mc27.$fontRendererObj; + $list = $this.$mc27.$fontRendererObj; $var5 = $j + $l | 0; $b0 = (($var5 - $l1 | 0) - 15 | 0) - 2 | 0; - $i2 = 8421504; - $ptr = 10; + $k1 = 8421504; + $ptr = 11; continue main; case 3: $tmp = ju_Arrays$ArrayAsList_size($list); if ($rt_suspending()) { break main; } - $var5 = $tmp; - if ($k1 < $var5) { + $l1 = $tmp; + if ($k1 < $l1) { $s2 = $this.$mc27.$fontRendererObj; - $ptr = 8; + $ptr = 9; continue main; } if ($k1 == 1) { @@ -1226964,13 +1229275,13 @@ if ($s.$hideAddress) { $s = $rt_s(8863); var$20 = $rt_createArray(jl_Object, 0); - $ptr = 11; + $ptr = 12; continue main; } $s = $s.$serverIP; - $var5 = ($b0 + $rt_imul($this.$mc27.$fontRendererObj.$FONT_HEIGHT, $k1) | 0) + $k1 | 0; - $i2 = 4473924; - $ptr = 13; + $l1 = ($k2 + $rt_imul($this.$mc27.$fontRendererObj.$FONT_HEIGHT, $k1) | 0) + $k1 | 0; + $b0 = 4473924; + $ptr = 14; continue main; } $k1 = $k1 + 1 | 0; @@ -1226983,11 +1229294,11 @@ } $s2 = $this.$field_148301_e.$populationInfo; $l1 = nmcg_FontRenderer_getStringWidth($this.$mc27.$fontRendererObj, $s2); - $s = $this.$mc27.$fontRendererObj; + $list = $this.$mc27.$fontRendererObj; $var5 = $j + $l | 0; $b0 = (($var5 - $l1 | 0) - 15 | 0) - 2 | 0; - $i2 = 8421504; - $ptr = 10; + $k1 = 8421504; + $ptr = 11; continue main; case 4: nmu_EnumChatFormatting_$callClinit(); @@ -1226995,47 +1229306,54 @@ break main; } $s2 = nmu_EnumChatFormatting_DARK_RED; - $s = $this.$field_148301_e.$gameVersion; - $s1 = jl_StringBuilder__init_(); $ptr = 5; case 5: - $tmp = jl_StringBuilder_append($s1, $s2); + $tmp = jl_String_valueOf($s2); if ($rt_suspending()) { break main; } $s2 = $tmp; + $list = $this.$field_148301_e.$gameVersion; + $s = jl_StringBuilder__init_(); $ptr = 6; case 6: - jl_StringBuilder_append($s2, $s); + $tmp = jl_StringBuilder_append($s, $s2); if ($rt_suspending()) { break main; } + $s2 = $tmp; $ptr = 7; case 7: - $tmp = jl_StringBuilder_toString($s1); + jl_StringBuilder_append($s2, $list); + if ($rt_suspending()) { + break main; + } + $ptr = 8; + case 8: + $tmp = jl_StringBuilder_toString($s); if ($rt_suspending()) { break main; } $s2 = $tmp; $l1 = nmcg_FontRenderer_getStringWidth($this.$mc27.$fontRendererObj, $s2); - $s = $this.$mc27.$fontRendererObj; + $list = $this.$mc27.$fontRendererObj; $var5 = $j + $l | 0; $b0 = (($var5 - $l1 | 0) - 15 | 0) - 2 | 0; - $i2 = 8421504; - $ptr = 10; + $k1 = 8421504; + $ptr = 11; continue main; - case 8: + case 9: $tmp = ju_Arrays$ArrayAsList_get($list, $k1); if ($rt_suspending()) { break main; } $s = $tmp; $s = $s; - $var5 = $b0 + $rt_imul($this.$mc27.$fontRendererObj.$FONT_HEIGHT, $k1) | 0; - $i2 = 8421504; - $ptr = 9; - case 9: - nmcg_FontRenderer_drawString($s2, $s, $l1, $var5, $i2); + $l1 = $k2 + $rt_imul($this.$mc27.$fontRendererObj.$FONT_HEIGHT, $k1) | 0; + $b0 = 8421504; + $ptr = 10; + case 10: + nmcg_FontRenderer_drawString($s2, $s, $var5, $l1, $b0); if ($rt_suspending()) { break main; } @@ -1227050,14 +1229368,14 @@ } $s2 = $this.$field_148301_e.$populationInfo; $l1 = nmcg_FontRenderer_getStringWidth($this.$mc27.$fontRendererObj, $s2); - $s = $this.$mc27.$fontRendererObj; + $list = $this.$mc27.$fontRendererObj; $var5 = $j + $l | 0; $b0 = (($var5 - $l1 | 0) - 15 | 0) - 2 | 0; - $i2 = 8421504; - $ptr = 10; - case 10: + $k1 = 8421504; + $ptr = 11; + case 11: a: { - nmcg_FontRenderer_drawString($s, $s2, $b0, $k2, $i2); + nmcg_FontRenderer_drawString($list, $s2, $b0, $j2, $k1); if ($rt_suspending()) { break main; } @@ -1227070,15 +1229388,15 @@ } else { $s2 = $this.$field_148301_e; if ($s2.$field_78841_f) { - var$22 = $s2.$pingToServer; - if (Long_ne(var$22, Long_fromInt(-2))) { - $k2 = Long_compare(var$22, Long_ZERO); - $i2 = $k2 < 0 ? 5 : Long_lt(var$22, Long_fromInt(150)) ? 0 : Long_lt(var$22, Long_fromInt(300)) ? 1 : Long_lt(var$22, Long_fromInt(600)) ? 2 : Long_ge(var$22, Long_fromInt(1000)) ? 4 : 3; - if ($k2 >= 0) { + var$23 = $s2.$pingToServer; + if (Long_ne(var$23, Long_fromInt(-2))) { + $k1 = Long_compare(var$23, Long_ZERO); + $i2 = $k1 < 0 ? 5 : Long_lt(var$23, Long_fromInt(150)) ? 0 : Long_lt(var$23, Long_fromInt(300)) ? 1 : Long_lt(var$23, Long_fromInt(600)) ? 2 : Long_ge(var$23, Long_fromInt(1000)) ? 4 : 3; + if ($k1 >= 0) { $s2 = jl_StringBuilder__init_(); - $s = jl_StringBuilder_append2($s2, var$22); - $s1 = $rt_s(8454); - $ptr = 22; + $list = jl_StringBuilder_append2($s2, var$23); + $s = $rt_s(8454); + $ptr = 23; continue main; } $s1 = $rt_s(8872); @@ -1227086,44 +1229404,44 @@ } } $b0 = 1; - $ptr = 12; + $ptr = 13; continue main; } } - var$23 = 1.0; var$24 = 1.0; var$25 = 1.0; var$26 = 1.0; - $ptr = 14; + var$27 = 1.0; + $ptr = 15; continue main; - case 11: + case 12: $tmp = nmcr_I18n_format($s, var$20); if ($rt_suspending()) { break main; } $s = $tmp; - $var5 = ($b0 + $rt_imul($this.$mc27.$fontRendererObj.$FONT_HEIGHT, $k1) | 0) + $k1 | 0; - $i2 = 4473924; - $ptr = 13; + $l1 = ($k2 + $rt_imul($this.$mc27.$fontRendererObj.$FONT_HEIGHT, $k1) | 0) + $k1 | 0; + $b0 = 4473924; + $ptr = 14; continue main; - case 12: + case 13: $tmp = nmc_Minecraft_getSystemTime(); if ($rt_suspending()) { break main; } - var$22 = $tmp; - $i2 = Long_lo(Long_and(Long_add(Long_div(var$22, Long_fromInt(100)), Long_fromInt($i * 2 | 0)), Long_fromInt(7))); + var$23 = $tmp; + $i2 = Long_lo(Long_and(Long_add(Long_div(var$23, Long_fromInt(100)), Long_fromInt($i * 2 | 0)), Long_fromInt(7))); if ($i2 > 4) $i2 = 8 - $i2 | 0; $s1 = $rt_s(8873); - var$23 = 1.0; var$24 = 1.0; var$25 = 1.0; var$26 = 1.0; - $ptr = 14; + var$27 = 1.0; + $ptr = 15; continue main; - case 13: - nmcg_FontRenderer_drawString($s2, $s, $l1, $var5, $i2); + case 14: + nmcg_FontRenderer_drawString($s2, $s, $var5, $l1, $b0); if ($rt_suspending()) { break main; } @@ -1227138,148 +1229456,121 @@ } $s2 = $this.$field_148301_e.$populationInfo; $l1 = nmcg_FontRenderer_getStringWidth($this.$mc27.$fontRendererObj, $s2); - $s = $this.$mc27.$fontRendererObj; + $list = $this.$mc27.$fontRendererObj; $var5 = $j + $l | 0; $b0 = (($var5 - $l1 | 0) - 15 | 0) - 2 | 0; - $i2 = 8421504; - $ptr = 10; + $k1 = 8421504; + $ptr = 11; continue main; - case 14: - nlevo_GlStateManager_color(var$23, var$24, var$25, var$26); + case 15: + nlevo_GlStateManager_color(var$24, var$25, var$26, var$27); if ($rt_suspending()) { break main; } $s2 = $this.$mc27; - $ptr = 15; - case 15: + $ptr = 16; + case 16: $tmp = nmc_Minecraft_getTextureManager($s2); if ($rt_suspending()) { break main; } $s2 = $tmp; - $ptr = 16; - case 16: + $ptr = 17; + case 17: nmcg_Gui_$callClinit(); if ($rt_suspending()) { break main; } $list = nmcg_Gui_icons; - $ptr = 17; - case 17: + $ptr = 18; + case 18: nmcrt_TextureManager_bindTexture($s2, $list); if ($rt_suspending()) { break main; } - $var5 = $var5 - 15 | 0; - var$23 = $b0 * 10 | 0; - var$26 = 176 + ($i2 * 8 | 0) | 0; - $b0 = 10; - $i2 = 8; + $k1 = $var5 - 15 | 0; + var$26 = $b0 * 10 | 0; + var$27 = 176 + ($i2 * 8 | 0) | 0; + $var5 = 10; + $b0 = 8; var$24 = 256.0; var$25 = 256.0; - $ptr = 18; - case 18: - nmcg_Gui_drawModalRectWithCustomSizedTexture($var5, $k, var$23, var$26, $b0, $i2, var$24, var$25); + $ptr = 19; + case 19: + nmcg_Gui_drawModalRectWithCustomSizedTexture($k1, $k, var$26, var$27, $var5, $b0, var$24, var$25); if ($rt_suspending()) { break main; } if (!$this.$mc27.$gameSettings.$touchscreen && !$flag) { $s2 = $this.$field_148301_e; if ($s2.$iconTextureObject === null) { - $ptr = 24; + $ptr = 25; continue main; } $s2 = $s2.$iconResourceLocation; - $ptr = 26; + $ptr = 27; continue main; } - $ptr = 19; - case 19: + $ptr = 20; + case 20: nlevo_GlStateManager_enableShaderBlendAdd(); if ($rt_suspending()) { break main; } - var$23 = 0.6000000238418579; var$24 = 0.6000000238418579; var$25 = 0.6000000238418579; - var$26 = 1.0; - $ptr = 20; - case 20: - nlevo_GlStateManager_setShaderBlendSrc(var$23, var$24, var$25, var$26); + var$26 = 0.6000000238418579; + var$27 = 1.0; + $ptr = 21; + case 21: + nlevo_GlStateManager_setShaderBlendSrc(var$24, var$25, var$26, var$27); if ($rt_suspending()) { break main; } - var$23 = 0.30000001192092896; var$24 = 0.30000001192092896; var$25 = 0.30000001192092896; - var$26 = 0.0; - $ptr = 21; - case 21: - nlevo_GlStateManager_setShaderBlendAdd(var$23, var$24, var$25, var$26); + var$26 = 0.30000001192092896; + var$27 = 0.0; + $ptr = 22; + case 22: + nlevo_GlStateManager_setShaderBlendAdd(var$24, var$25, var$26, var$27); if ($rt_suspending()) { break main; } $s2 = $this.$field_148301_e; if ($s2.$iconTextureObject === null) { - $ptr = 24; + $ptr = 25; continue main; } $s2 = $s2.$iconResourceLocation; - $ptr = 26; + $ptr = 27; continue main; - case 22: - jl_StringBuilder_append($s, $s1); + case 23: + jl_StringBuilder_append($list, $s); if ($rt_suspending()) { break main; } - $ptr = 23; - case 23: + $ptr = 24; + case 24: $tmp = jl_StringBuilder_toString($s2); if ($rt_suspending()) { break main; } $s1 = $tmp; $s = $this.$field_148301_e.$playerList0; - var$23 = 1.0; var$24 = 1.0; var$25 = 1.0; var$26 = 1.0; - $ptr = 14; + var$27 = 1.0; + $ptr = 15; continue main; - case 24: + case 25: nmcg_ServerListEntryNormal_$callClinit(); if ($rt_suspending()) { break main; } $s2 = nmcg_ServerListEntryNormal_UNKNOWN_SERVER; - $ptr = 25; - case 25: - nmcg_ServerListEntryNormal_func_178012_a($this, $j, $k, $s2); - if ($rt_suspending()) { - break main; - } - if (!$this.$mc27.$gameSettings.$touchscreen && !$flag) { - $j2 = $i1 - $j | 0; - $k2 = $j1 - $k | 0; - $var5 = $l - 15 | 0; - if ($j2 >= $var5 && $j2 <= ($l - 5 | 0) && $k2 >= 0 && $k2 <= 8) { - $s2 = $this.$field_148303_c; - $ptr = 34; - continue main; - } - if ($j2 >= ((($l - $l1 | 0) - 15 | 0) - 2 | 0) && $j2 <= ($var5 - 2 | 0) && $k2 >= 0 && $k2 <= 8) { - $s2 = $this.$field_148303_c; - $ptr = 37; - continue main; - } - $s2 = $this.$mc27; - if (!$s2.$gameSettings.$touchscreen && !$flag) - return; - $ptr = 28; - continue main; - } - $ptr = 27; - continue main; + $ptr = 26; case 26: nmcg_ServerListEntryNormal_func_178012_a($this, $j, $k, $s2); if ($rt_suspending()) { @@ -1227288,77 +1229579,104 @@ if (!$this.$mc27.$gameSettings.$touchscreen && !$flag) { $j2 = $i1 - $j | 0; $k2 = $j1 - $k | 0; - $var5 = $l - 15 | 0; - if ($j2 >= $var5 && $j2 <= ($l - 5 | 0) && $k2 >= 0 && $k2 <= 8) { + $i1 = $l - 15 | 0; + if ($j2 >= $i1 && $j2 <= ($l - 5 | 0) && $k2 >= 0 && $k2 <= 8) { $s2 = $this.$field_148303_c; - $ptr = 34; + $ptr = 35; continue main; } - if ($j2 >= ((($l - $l1 | 0) - 15 | 0) - 2 | 0) && $j2 <= ($var5 - 2 | 0) && $k2 >= 0 && $k2 <= 8) { + if ($j2 >= ((($l - $l1 | 0) - 15 | 0) - 2 | 0) && $j2 <= ($i1 - 2 | 0) && $k2 >= 0 && $k2 <= 8) { $s2 = $this.$field_148303_c; - $ptr = 37; + $ptr = 38; continue main; } $s2 = $this.$mc27; if (!$s2.$gameSettings.$touchscreen && !$flag) return; - $ptr = 28; + $ptr = 29; continue main; } - $ptr = 27; + $ptr = 28; + continue main; case 27: + nmcg_ServerListEntryNormal_func_178012_a($this, $j, $k, $s2); + if ($rt_suspending()) { + break main; + } + if (!$this.$mc27.$gameSettings.$touchscreen && !$flag) { + $j2 = $i1 - $j | 0; + $k2 = $j1 - $k | 0; + $i1 = $l - 15 | 0; + if ($j2 >= $i1 && $j2 <= ($l - 5 | 0) && $k2 >= 0 && $k2 <= 8) { + $s2 = $this.$field_148303_c; + $ptr = 35; + continue main; + } + if ($j2 >= ((($l - $l1 | 0) - 15 | 0) - 2 | 0) && $j2 <= ($i1 - 2 | 0) && $k2 >= 0 && $k2 <= 8) { + $s2 = $this.$field_148303_c; + $ptr = 38; + continue main; + } + $s2 = $this.$mc27; + if (!$s2.$gameSettings.$touchscreen && !$flag) + return; + $ptr = 29; + continue main; + } + $ptr = 28; + case 28: nlevo_GlStateManager_disableShaderBlendAdd(); if ($rt_suspending()) { break main; } $j2 = $i1 - $j | 0; $k2 = $j1 - $k | 0; - $var5 = $l - 15 | 0; - if ($j2 >= $var5 && $j2 <= ($l - 5 | 0) && $k2 >= 0 && $k2 <= 8) { + $i1 = $l - 15 | 0; + if ($j2 >= $i1 && $j2 <= ($l - 5 | 0) && $k2 >= 0 && $k2 <= 8) { $s2 = $this.$field_148303_c; - $ptr = 34; + $ptr = 35; continue main; } - if ($j2 >= ((($l - $l1 | 0) - 15 | 0) - 2 | 0) && $j2 <= ($var5 - 2 | 0) && $k2 >= 0 && $k2 <= 8) { + if ($j2 >= ((($l - $l1 | 0) - 15 | 0) - 2 | 0) && $j2 <= ($i1 - 2 | 0) && $k2 >= 0 && $k2 <= 8) { $s2 = $this.$field_148303_c; - $ptr = 37; + $ptr = 38; continue main; } $s2 = $this.$mc27; if (!$s2.$gameSettings.$touchscreen && !$flag) return; - $ptr = 28; - case 28: + $ptr = 29; + case 29: $tmp = nmc_Minecraft_getTextureManager($s2); if ($rt_suspending()) { break main; } $s2 = $tmp; - $ptr = 29; - case 29: + $ptr = 30; + case 30: nmcg_ServerListEntryNormal_$callClinit(); if ($rt_suspending()) { break main; } - $s = nmcg_ServerListEntryNormal_SERVER_SELECTION_BUTTONS; - $ptr = 30; - case 30: - nmcrt_TextureManager_bindTexture($s2, $s); + $list = nmcg_ServerListEntryNormal_SERVER_SELECTION_BUTTONS; + $ptr = 31; + case 31: + nmcrt_TextureManager_bindTexture($s2, $list); if ($rt_suspending()) { break main; } - var$23 = 1.0; var$24 = 1.0; var$25 = 1.0; var$26 = 1.0; - $ptr = 31; - case 31: - nlevo_GlStateManager_color(var$23, var$24, var$25, var$26); + var$27 = 1.0; + $ptr = 32; + case 32: + nlevo_GlStateManager_color(var$24, var$25, var$26, var$27); if ($rt_suspending()) { break main; } - $ptr = 32; - case 32: + $ptr = 33; + case 33: $tmp = nmcg_ServerListEntryNormal_func_178013_b($this); if ($rt_suspending()) { break main; @@ -1227366,28 +1229684,28 @@ $l = $tmp; if (!$l) { $s2 = $this.$field_148303_c; - $ptr = 33; + $ptr = 34; continue main; } if ($j2 < 32 && $j2 > 16) { - var$23 = 0.0; - var$24 = 32.0; + var$24 = 0.0; + var$25 = 32.0; $l = 32; $var5 = 32; - var$25 = 256.0; var$26 = 256.0; - $ptr = 39; + var$27 = 256.0; + $ptr = 40; continue main; } - var$23 = 0.0; var$24 = 0.0; + var$25 = 0.0; $l = 32; $var5 = 32; - var$25 = 256.0; var$26 = 256.0; - $ptr = 36; + var$27 = 256.0; + $ptr = 37; continue main; - case 33: + case 34: $tmp = nmcg_GuiMultiplayer_func_175392_a($s2, $this, $i); if ($rt_suspending()) { break main; @@ -1227395,28 +1229713,28 @@ $l = $tmp; if (!$l) { $s2 = $this.$field_148303_c; - $ptr = 35; + $ptr = 36; continue main; } if ($j2 < 16 && $k2 < 16) { - var$23 = 96.0; - var$24 = 32.0; + var$24 = 96.0; + var$25 = 32.0; $l = 32; $var5 = 32; - var$25 = 256.0; var$26 = 256.0; - $ptr = 41; + var$27 = 256.0; + $ptr = 42; continue main; } - var$23 = 96.0; - var$24 = 0.0; + var$24 = 96.0; + var$25 = 0.0; $l = 32; $var5 = 32; - var$25 = 256.0; var$26 = 256.0; - $ptr = 38; + var$27 = 256.0; + $ptr = 39; continue main; - case 34: + case 35: nmcg_GuiMultiplayer_setHoveringText($s2, $s1); if ($rt_suspending()) { break main; @@ -1227424,9 +1229742,9 @@ $s2 = $this.$mc27; if (!$s2.$gameSettings.$touchscreen && !$flag) return; - $ptr = 28; + $ptr = 29; continue main; - case 35: + case 36: $tmp = nmcg_GuiMultiplayer_func_175394_b($s2, $this, $i); if ($rt_suspending()) { break main; @@ -1227435,32 +1229753,32 @@ if (!$i) return; if ($j2 < 16 && $k2 > 16) { - var$23 = 64.0; - var$24 = 32.0; + var$24 = 64.0; + var$25 = 32.0; $i = 32; $l = 32; - var$25 = 256.0; var$26 = 256.0; - $ptr = 42; + var$27 = 256.0; + $ptr = 43; continue main; } - var$23 = 64.0; - var$24 = 0.0; + var$24 = 64.0; + var$25 = 0.0; $i = 32; $l = 32; - var$25 = 256.0; var$26 = 256.0; - $ptr = 40; + var$27 = 256.0; + $ptr = 41; continue main; - case 36: - nmcg_Gui_drawModalRectWithCustomSizedTexture($j, $k, var$23, var$24, $l, $var5, var$25, var$26); + case 37: + nmcg_Gui_drawModalRectWithCustomSizedTexture($j, $k, var$24, var$25, $l, $var5, var$26, var$27); if ($rt_suspending()) { break main; } $s2 = $this.$field_148303_c; - $ptr = 33; + $ptr = 34; continue main; - case 37: + case 38: nmcg_GuiMultiplayer_setHoveringText($s2, $s); if ($rt_suspending()) { break main; @@ -1227468,47 +1229786,47 @@ $s2 = $this.$mc27; if (!$s2.$gameSettings.$touchscreen && !$flag) return; - $ptr = 28; - continue main; - case 38: - nmcg_Gui_drawModalRectWithCustomSizedTexture($j, $k, var$23, var$24, $l, $var5, var$25, var$26); - if ($rt_suspending()) { - break main; - } - $s2 = $this.$field_148303_c; - $ptr = 35; + $ptr = 29; continue main; case 39: - nmcg_Gui_drawModalRectWithCustomSizedTexture($j, $k, var$23, var$24, $l, $var5, var$25, var$26); + nmcg_Gui_drawModalRectWithCustomSizedTexture($j, $k, var$24, var$25, $l, $var5, var$26, var$27); if ($rt_suspending()) { break main; } $s2 = $this.$field_148303_c; - $ptr = 33; + $ptr = 36; continue main; case 40: - nmcg_Gui_drawModalRectWithCustomSizedTexture($j, $k, var$23, var$24, $i, $l, var$25, var$26); + nmcg_Gui_drawModalRectWithCustomSizedTexture($j, $k, var$24, var$25, $l, $var5, var$26, var$27); + if ($rt_suspending()) { + break main; + } + $s2 = $this.$field_148303_c; + $ptr = 34; + continue main; + case 41: + nmcg_Gui_drawModalRectWithCustomSizedTexture($j, $k, var$24, var$25, $i, $l, var$26, var$27); if ($rt_suspending()) { break main; } return; - case 41: - nmcg_Gui_drawModalRectWithCustomSizedTexture($j, $k, var$23, var$24, $l, $var5, var$25, var$26); + case 42: + nmcg_Gui_drawModalRectWithCustomSizedTexture($j, $k, var$24, var$25, $l, $var5, var$26, var$27); if ($rt_suspending()) { break main; } $s2 = $this.$field_148303_c; - $ptr = 35; + $ptr = 36; continue main; - case 42: - nmcg_Gui_drawModalRectWithCustomSizedTexture($j, $k, var$23, var$24, $i, $l, var$25, var$26); + case 43: + nmcg_Gui_drawModalRectWithCustomSizedTexture($j, $k, var$24, var$25, $i, $l, var$26, var$27); if ($rt_suspending()) { break main; } return; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $i, $j, $k, $l, $var5, $i1, $j1, $flag, $s, $flag1, $flag2, $flag3, $s2, $l1, $k2, $list, $k1, $b0, $i2, var$20, $s1, var$22, var$23, var$24, var$25, var$26, $j2, $ptr); + $rt_nativeThread().push($this, $i, $j, $k, $l, $var5, $i1, $j1, $flag, $list, $flag1, $flag2, $flag3, $s2, $j2, $l1, $k1, $k2, $b0, $s, var$20, $i2, $s1, var$23, var$24, var$25, var$26, var$27, $ptr); } function nmcg_ServerListEntryNormal_func_178012_a($this, $parInt1, $parInt2, $parResourceLocation) { var var$4, var$5, var$6, var$7, var$8, var$9, var$10, $ptr, $tmp; @@ -1228373,7 +1230691,7 @@ break main; } var$6 = $tmp; - var$9 = !$this.$serverData.$hideAddress ? $rt_s(5637) : $rt_s(5636); + var$9 = !$this.$serverData.$hideAddress ? $rt_s(5636) : $rt_s(5635); var$7 = $rt_createArray(jl_Object, 0); $ptr = 17; case 17: @@ -1228597,7 +1230915,7 @@ break main; } var$3 = $tmp; - var$6 = !$this.$serverData.$hideAddress ? $rt_s(5637) : $rt_s(5636); + var$6 = !$this.$serverData.$hideAddress ? $rt_s(5636) : $rt_s(5635); var$4 = $rt_createArray(jl_Object, 0); $ptr = 11; continue main; @@ -1229343,10 +1231661,7 @@ }} $rt_nativeThread().push(var$0, var$1, $ptr); } - function nlevv_GuiVoiceMenu$1() { - nlevsg_GuiSlider2.call(this); - this.$this$0213 = null; - } + var nlevv_GuiVoiceMenu$1 = $rt_classWithoutFields(nlevsg_GuiSlider2); function nlevv_GuiVoiceMenu$1_mousePressed($this, $par1Minecraft, $par2, $par3) { var var$4, $ptr, $tmp; $ptr = 0; @@ -1229509,7 +1231824,6 @@ var$1 = cgcc_AbstractMultimap$Entries__init_($this); else { var$1 = new cgcc_AbstractMultimap$EntrySet; - var$1.$this$0254 = $this; cgcc_AbstractMultimap$Entries__init_0(var$1, $this); } $this.$entries3 = var$1; @@ -1229997,9 +1232311,8 @@ this.$holder = null; } function nmcrt_TextureMap$1() { - var a = this; jl_Object.call(a); - a.$val$textureatlassprite1 = null; - a.$this$0255 = null; + jl_Object.call(this); + this.$val$textureatlassprite1 = null; } function nmcrt_TextureMap$1__init_(var_0, var_1) { var var_2 = new nmcrt_TextureMap$1(); @@ -1230007,7 +1232320,6 @@ return var_2; } function nmcrt_TextureMap$1__init_0($this, $this$0, var$2) { - $this.$this$0255 = $this$0; $this.$val$textureatlassprite1 = var$2; } function nmcrt_TextureMap$1_call($this) { @@ -1230025,9 +1232337,8 @@ $rt_nativeThread().push($this, $ptr); } function nmcrt_TextureMap$2() { - var a = this; jl_Object.call(a); - a.$val$textureatlassprite10 = null; - a.$this$0256 = null; + jl_Object.call(this); + this.$val$textureatlassprite10 = null; } function nmcrt_TextureMap$2__init_(var_0, var_1) { var var_2 = new nmcrt_TextureMap$2(); @@ -1230035,7 +1232346,6 @@ return var_2; } function nmcrt_TextureMap$2__init_0($this, $this$0, var$2) { - $this.$this$0256 = $this$0; $this.$val$textureatlassprite10 = var$2; } function nmcrt_TextureMap$2_call($this) { @@ -1230074,9 +1232384,8 @@ $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); } function nmcrt_TextureMap$3() { - var a = this; jl_Object.call(a); - a.$val$textureatlassprite11 = null; - a.$this$0257 = null; + jl_Object.call(this); + this.$val$textureatlassprite11 = null; } function nmcrt_TextureMap$3__init_(var_0, var_1) { var var_2 = new nmcrt_TextureMap$3(); @@ -1230084,7 +1232393,6 @@ return var_2; } function nmcrt_TextureMap$3__init_0($this, $this$0, var$2) { - $this.$this$0257 = $this$0; $this.$val$textureatlassprite11 = var$2; } function nmcrt_TextureMap$3_call($this) { @@ -1230305,36 +1232613,37 @@ var$1 = $this.$name75; var$2 = $this.$objective0; var$3 = $this.$siblings; + $ptr = 1; + case 1: + $tmp = jl_String_valueOf(var$3); + if ($rt_suspending()) { + break main; + } + var$3 = $tmp; var$4 = nmu_ChatComponentStyle_getChatStyle($this); + $ptr = 2; + case 2: + $tmp = jl_String_valueOf(var$4); + if ($rt_suspending()) { + break main; + } + var$4 = $tmp; var$5 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$5); var$6 = $rt_s(8893); - $ptr = 1; - case 1: - jl_AbstractStringBuilder_append(var$5, var$6); - if ($rt_suspending()) { - break main; - } - $ptr = 2; - case 2: - jl_AbstractStringBuilder_append(var$5, var$1); - if ($rt_suspending()) { - break main; - } - var$1 = $rt_s(8894); $ptr = 3; case 3: - jl_AbstractStringBuilder_append(var$5, var$1); + jl_AbstractStringBuilder_append(var$5, var$6); if ($rt_suspending()) { break main; } $ptr = 4; case 4: - jl_AbstractStringBuilder_append(var$5, var$2); + jl_AbstractStringBuilder_append(var$5, var$1); if ($rt_suspending()) { break main; } - var$1 = $rt_s(2688); + var$1 = $rt_s(8894); $ptr = 5; case 5: jl_AbstractStringBuilder_append(var$5, var$1); @@ -1230343,11 +1232652,11 @@ } $ptr = 6; case 6: - jl_AbstractStringBuilder_append(var$5, var$3); + jl_AbstractStringBuilder_append(var$5, var$2); if ($rt_suspending()) { break main; } - var$1 = $rt_s(2689); + var$1 = $rt_s(2688); $ptr = 7; case 7: jl_AbstractStringBuilder_append(var$5, var$1); @@ -1230356,13 +1232665,26 @@ } $ptr = 8; case 8: + jl_AbstractStringBuilder_append(var$5, var$3); + if ($rt_suspending()) { + break main; + } + var$1 = $rt_s(2689); + $ptr = 9; + case 9: + jl_AbstractStringBuilder_append(var$5, var$1); + if ($rt_suspending()) { + break main; + } + $ptr = 10; + case 10: jl_AbstractStringBuilder_append(var$5, var$4); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append0(var$5, 125); - $ptr = 9; - case 9: + $ptr = 11; + case 11: $tmp = jl_AbstractStringBuilder_toString(var$5); if ($rt_suspending()) { break main; @@ -1230485,36 +1232807,37 @@ case 0: var$1 = $this.$selector; var$2 = $this.$siblings; + $ptr = 1; + case 1: + $tmp = jl_String_valueOf(var$2); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; var$3 = nmu_ChatComponentStyle_getChatStyle($this); + $ptr = 2; + case 2: + $tmp = jl_String_valueOf(var$3); + if ($rt_suspending()) { + break main; + } + var$3 = $tmp; var$4 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$4); var$5 = $rt_s(8895); - $ptr = 1; - case 1: - jl_AbstractStringBuilder_append(var$4, var$5); - if ($rt_suspending()) { - break main; - } - $ptr = 2; - case 2: - jl_AbstractStringBuilder_append(var$4, var$1); - if ($rt_suspending()) { - break main; - } - var$1 = $rt_s(2688); $ptr = 3; case 3: - jl_AbstractStringBuilder_append(var$4, var$1); + jl_AbstractStringBuilder_append(var$4, var$5); if ($rt_suspending()) { break main; } $ptr = 4; case 4: - jl_AbstractStringBuilder_append(var$4, var$2); + jl_AbstractStringBuilder_append(var$4, var$1); if ($rt_suspending()) { break main; } - var$1 = $rt_s(2689); + var$1 = $rt_s(2688); $ptr = 5; case 5: jl_AbstractStringBuilder_append(var$4, var$1); @@ -1230523,13 +1232846,26 @@ } $ptr = 6; case 6: + jl_AbstractStringBuilder_append(var$4, var$2); + if ($rt_suspending()) { + break main; + } + var$1 = $rt_s(2689); + $ptr = 7; + case 7: + jl_AbstractStringBuilder_append(var$4, var$1); + if ($rt_suspending()) { + break main; + } + $ptr = 8; + case 8: jl_AbstractStringBuilder_append(var$4, var$3); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append0(var$4, 125); - $ptr = 7; - case 7: + $ptr = 9; + case 9: $tmp = jl_AbstractStringBuilder_toString(var$4); if ($rt_suspending()) { break main; @@ -1231802,7 +1234138,6 @@ var a = this; jl_Object.call(a); a.$isChild0 = 0; a.$isVillager0 = 0; - a.$this$048 = null; } function nmea_EntityAIMoveThroughVillage() { var a = this; nmea_EntityAIBase.call(a); @@ -1232619,22 +1234954,22 @@ nmea_EntityAINearestAttackableTarget__init_0(var_3, var_0, var_1, var_2); return var_3; } - function nmea_EntityAINearestAttackableTarget__init_2(var_0, var_1, var_2, var_3, var_4, var_5) { + function nmea_EntityAINearestAttackableTarget__init_1(var_0, var_1, var_2, var_3, var_4, var_5) { var var_6 = new nmea_EntityAINearestAttackableTarget(); - nmea_EntityAINearestAttackableTarget__init_1(var_6, var_0, var_1, var_2, var_3, var_4, var_5); + nmea_EntityAINearestAttackableTarget__init_2(var_6, var_0, var_1, var_2, var_3, var_4, var_5); return var_6; } function nmea_EntityAINearestAttackableTarget__init_0($this, $creature, $classTarget, $checkSight) { - nmea_EntityAINearestAttackableTarget__init_1($this, $creature, $classTarget, 10, $checkSight, 0, null); + nmea_EntityAINearestAttackableTarget__init_2($this, $creature, $classTarget, 10, $checkSight, 0, null); } - function nmea_EntityAINearestAttackableTarget__init_1($this, $creature, $classTarget, $chance, $checkSight, $onlyNearby, $targetSelector) { + function nmea_EntityAINearestAttackableTarget__init_2($this, $creature, $classTarget, $chance, $checkSight, $onlyNearby, $targetSelector) { nmea_EntityAITarget__init_0($this, $creature, $checkSight, $onlyNearby); $this.$targetClass = $classTarget; $this.$targetChance = $chance; $this.$theNearestAttackableTargetSorter = nmea_EntityAINearestAttackableTarget$Sorter__init_($creature); $this.$mutexBits = 1; $creature = new nmea_EntityAINearestAttackableTarget$1; - $creature.$this$0258 = $this; + $creature.$this$0165 = $this; $creature.$val$targetSelector = $targetSelector; $this.$targetEntitySelector = $creature; } @@ -1232936,104 +1235271,6 @@ }} $rt_nativeThread().push(var$0, var$1, var$2, var$3, var$4, var$5, $ptr); } - function nlevsg_GuiScreenDemoIntegratedServerFailed() { - var a = this; nmcg_GuiScreen.call(a); - a.$str11 = null; - a.$str21 = null; - } - function nlevsg_GuiScreenDemoIntegratedServerFailed__init_0() { - var var_0 = new nlevsg_GuiScreenDemoIntegratedServerFailed(); - nlevsg_GuiScreenDemoIntegratedServerFailed__init_(var_0); - return var_0; - } - function nlevsg_GuiScreenDemoIntegratedServerFailed__init_($this) { - var var$1, var$2, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - nmcg_GuiScreen__init_($this); - if ($rt_suspending()) { - break main; - } - var$1 = $rt_s(8901); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 2; - case 2: - $tmp = nmcr_I18n_format(var$1, var$2); - if ($rt_suspending()) { - break main; - } - var$1 = $tmp; - $this.$str11 = var$1; - var$1 = $rt_s(8902); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 3; - case 3: - $tmp = nmcr_I18n_format(var$1, var$2); - if ($rt_suspending()) { - break main; - } - var$1 = $tmp; - $this.$str21 = var$1; - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, var$1, var$2, $ptr); - } - function nlevsg_GuiScreenDemoIntegratedServerFailed_drawScreen($this, $par1, $par2, $par3) { - var var$4, var$5, var$6, var$7, var$8, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$par3 = $thread.pop();$par2 = $thread.pop();$par1 = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - nmcg_GuiScreen_drawDefaultBackground($this); - if ($rt_suspending()) { - break main; - } - var$4 = $this.$fontRendererObj0; - var$5 = $this.$str11; - var$6 = $this.$width7 / 2 | 0; - var$7 = 70; - var$8 = 11184810; - $ptr = 2; - case 2: - nmcg_Gui_drawCenteredString($this, var$4, var$5, var$6, var$7, var$8); - if ($rt_suspending()) { - break main; - } - var$4 = $this.$fontRendererObj0; - var$5 = $this.$str21; - var$6 = $this.$width7 / 2 | 0; - var$7 = 90; - var$8 = 16777215; - $ptr = 3; - case 3: - nmcg_Gui_drawCenteredString($this, var$4, var$5, var$6, var$7, var$8); - if ($rt_suspending()) { - break main; - } - $ptr = 4; - case 4: - nmcg_GuiScreen_drawScreen($this, $par1, $par2, $par3); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $par1, $par2, $par3, var$4, var$5, var$6, var$7, var$8, $ptr); - } function nmcg_GuiDisconnected() { var a = this; nmcg_GuiScreen.call(a); a.$reason2 = null; @@ -1233122,7 +1235359,7 @@ var$6 = 0; var$7 = ($this.$width7 / 2 | 0) - 100 | 0; var$3 = (($this.$height7 / 2 | 0) + (var$5 / 2 | 0) | 0) + var$4 | 0; - var$8 = $rt_s(8903); + var$8 = $rt_s(8901); var$9 = $rt_createArray(jl_Object, 0); $ptr = 4; case 4: @@ -1233273,7 +1235510,7 @@ $pkt = $tmp; if ($pkt !== null && $pkt.data.length > 0) { var$2 = $this.$mc15; - var$3 = $rt_s(8904); + var$3 = $rt_s(8902); $ptr = 2; continue main; } @@ -1233307,7 +1235544,7 @@ var$2 = new nmcg_GuiDisconnected; var$3 = $rt_s(5709); var$4 = new nmu_ChatComponentTranslation; - var$5 = $rt_s(8905); + var$5 = $rt_s(8903); var$6 = $rt_createArray(jl_Object, 0); $ptr = 1; case 1: @@ -1233411,7 +1235648,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 2: @@ -1233433,7 +1235670,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 3: @@ -1233454,7 +1235691,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 4: @@ -1233475,7 +1235712,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 5: @@ -1233496,7 +1235733,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 6: @@ -1233517,7 +1235754,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 7: @@ -1233538,7 +1235775,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 8: @@ -1233559,7 +1235796,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 9: @@ -1233581,7 +1235818,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 10: @@ -1233601,7 +1235838,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 11: @@ -1233610,7 +1235847,7 @@ if ($rt_suspending()) { break main; } - $clientVers = $rt_s(8907); + $clientVers = $rt_s(8905); $codePoint = jl_String_length($clientVers); $ptr = 12; continue main; @@ -1233623,7 +1235860,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 12: @@ -1233643,7 +1235880,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 13: @@ -1233664,7 +1235901,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; case 14: nlevl_Logger_error1($mc, $connecting); @@ -1233696,7 +1235933,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 17: @@ -1233717,7 +1235954,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 18: @@ -1233740,7 +1235977,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 19: @@ -1233760,7 +1235997,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 20: @@ -1233781,7 +1236018,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 21: @@ -1233802,7 +1236039,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 22: @@ -1233814,7 +1236051,7 @@ $read = $tmp; if ($read === null) { $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8908); + $connecting = $rt_s(8906); $ptr = 24; continue main; } @@ -1233830,7 +1236067,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 23: @@ -1233888,7 +1236125,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 24: @@ -1233910,7 +1236147,7 @@ return 0; } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 25: @@ -1233928,7 +1236165,7 @@ } if ($i > 0) jl_StringBuilder_append0($protocols, $rt_s(554)); - $connecting = jl_StringBuilder_append0($protocols, $rt_s(8909)); + $connecting = jl_StringBuilder_append0($protocols, $rt_s(8907)); $ptr = 49; continue main; } catch ($$e) { @@ -1233940,7 +1236177,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 26: @@ -1233953,7 +1236190,7 @@ $msgLen = $rt_compare($serverVers, 2); if ($msgLen && $serverVers != 3) { $connecting = nlevs_ConnectionHandshake_logger; - $password = $rt_s(8910); + $password = $rt_s(8908); $packetSkin = $rt_createArray(jl_Object, 1); $packetSkin.data[0] = jl_Integer_valueOf0($serverVers); $ptr = 48; @@ -1233970,7 +1236207,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 27: @@ -1233992,7 +1236229,7 @@ return 0; } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 28: @@ -1234004,14 +1236241,14 @@ $gameVers = $tmp; if ($gameVers == 47) { $errStr = nlevs_ConnectionHandshake_logger; - $serverUsername = $rt_s(8911); + $serverUsername = $rt_s(8909); $packetSkin = $rt_createArray(jl_Object, 1); $packetSkin.data[0] = jl_Integer_valueOf0($serverVers); $ptr = 30; continue main; } $connecting = nlevs_ConnectionHandshake_logger; - $password = $rt_s(8912); + $password = $rt_s(8910); $packetSkin = $rt_createArray(jl_Object, 1); $packetSkin.data[0] = jl_Integer_valueOf0($gameVers); $ptr = 45; @@ -1234025,7 +1236262,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 29: @@ -1234038,7 +1236275,7 @@ $i = 0; if ($i >= $allowPlaintext) { $connecting = nlevs_ConnectionHandshake_logger; - $password = $rt_s(8913); + $password = $rt_s(8911); $ptr = 51; continue main; } @@ -1234056,7 +1236293,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 30: @@ -1234076,7 +1236313,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 31: @@ -1234098,7 +1236335,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 32: @@ -1234119,7 +1236356,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 33: @@ -1234141,7 +1236378,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 34: @@ -1234153,7 +1236390,7 @@ $errStr = nlev_ArrayUtils_asciiString($packetSkin); nlevs_ConnectionHandshake_pluginVersion = $errStr; $serverUsername = nlevs_ConnectionHandshake_logger; - $profileDataType = $rt_s(8914); + $profileDataType = $rt_s(8912); $packetSkin = $rt_createArray(jl_Object, 1); $packetSkin.data[0] = $errStr; $ptr = 35; @@ -1234167,7 +1236404,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 35: @@ -1234177,7 +1236414,7 @@ break main; } $errStr = nlevs_ConnectionHandshake_logger; - $serverUsername = $rt_s(8915); + $serverUsername = $rt_s(8913); $packetSkin = $rt_createArray(jl_Object, 1); $packetSkin.data[0] = nlevs_ConnectionHandshake_pluginBrand; $ptr = 36; @@ -1234191,7 +1236428,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 36: @@ -1234211,7 +1236448,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 37: @@ -1234232,7 +1236469,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 38: @@ -1234254,7 +1236491,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 39: @@ -1234276,7 +1236513,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 40: @@ -1234297,7 +1236534,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 41: @@ -1234317,7 +1236554,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 42: @@ -1234339,7 +1236576,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 43: @@ -1234359,7 +1236596,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 44: @@ -1234372,13 +1236609,13 @@ if ($authType == 255) { if (!$allowPlaintext) { $connecting = nlevs_ConnectionHandshake_logger; - $password = $rt_s(8916); + $password = $rt_s(8914); $ptr = 86; continue main; } $errStr = nlevs_ConnectionHandshake_logger; - $serverUsername = $rt_s(8917); - $ptr = 91; + $serverUsername = $rt_s(8915); + $ptr = 92; continue main; } if ($authType != 1) { @@ -1234386,14 +1236623,14 @@ $digest = nlevc_SHA256Digest__init_0(); jnc_StandardCharsets_$callClinit(); $errStr = jnc_StandardCharsets_UTF_8; - $ptr = 110; + $ptr = 113; continue main; } $connecting = nlevs_ConnectionHandshake_logger; - $password = $rt_s(8918); + $password = $rt_s(8916); $packetSkin = $rt_createArray(jl_Object, 1); $packetSkin.data[0] = jl_Integer_valueOf0($authType); - $ptr = 102; + $ptr = 103; continue main; } $digest = nlevc_SHA256Digest__init_0(); @@ -1234421,7 +1236658,7 @@ nlevc_GeneralDigest_update($digest, nlevs_HandshakePacketTypes_EAGLER_SHA256_SALT_BASE, 0, 32); nlevc_SHA256Digest_doFinal($digest, $hashed, 0); $allowPlaintext = 32; - $ptr = 126; + $ptr = 129; continue main; } $allowPlaintext = 0; @@ -1234436,7 +1236673,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 45: @@ -1234447,7 +1236684,7 @@ } $connecting = new nmcg_GuiDisconnected; $password = $rt_s(5709); - $errStr = nmu_ChatComponentText__init_($rt_s(8919)); + $errStr = nmu_ChatComponentText__init_($rt_s(8917)); $ptr = 46; continue main; } catch ($$e) { @@ -1234459,7 +1236696,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 46: @@ -1234479,7 +1236716,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 47: @@ -1234501,7 +1236738,7 @@ return 0; } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 48: @@ -1234512,7 +1236749,7 @@ } $connecting = new nmcg_GuiDisconnected; $password = $rt_s(5709); - $errStr = nmu_ChatComponentText__init_($msgLen >= 0 ? $rt_s(8920) : $rt_s(8921)); + $errStr = nmu_ChatComponentText__init_($msgLen >= 0 ? $rt_s(8918) : $rt_s(8919)); $ptr = 61; continue main; } catch ($$e) { @@ -1234524,7 +1236761,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 49: @@ -1234543,7 +1236780,7 @@ } if ($i > 0) jl_StringBuilder_append0($protocols, $rt_s(554)); - $connecting = jl_StringBuilder_append0($protocols, $rt_s(8909)); + $connecting = jl_StringBuilder_append0($protocols, $rt_s(8907)); continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1234554,7 +1236791,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 50: @@ -1234575,7 +1236812,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 51: @@ -1234585,7 +1236822,7 @@ break main; } $connecting = nlevs_ConnectionHandshake_logger; - $password = $rt_s(8922); + $password = $rt_s(8920); $packetSkin = $rt_createArray(jl_Object, 1); $packetSkin.data[0] = $protocols; $ptr = 52; @@ -1234599,7 +1236836,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 52: @@ -1234609,7 +1236846,7 @@ break main; } $connecting = nlevs_ConnectionHandshake_logger; - $password = $rt_s(8922); + $password = $rt_s(8920); $packetSkin = $rt_createArray(jl_Object, 1); $packetSkin.data[0] = $games; $ptr = 53; @@ -1234623,7 +1236860,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 53: @@ -1234643,7 +1236880,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 54: @@ -1234665,7 +1236902,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 55: @@ -1234688,7 +1236925,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 56: @@ -1234711,7 +1236948,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 57: @@ -1234731,7 +1236968,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 58: @@ -1234753,7 +1236990,7 @@ return 0; } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 59: @@ -1234774,7 +1237011,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 60: @@ -1234786,7 +1237023,7 @@ $packetSkin = $tmp; if ($packetSkin === null) { $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8923); + $connecting = $rt_s(8921); $ptr = 65; continue main; } @@ -1234802,7 +1237039,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 61: @@ -1234822,7 +1237059,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 62: @@ -1234844,7 +1237081,7 @@ return 0; } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 63: @@ -1234858,7 +1237095,7 @@ $i = $i + 1 | 0; if ($i >= $allowPlaintext) { $connecting = nlevs_ConnectionHandshake_logger; - $password = $rt_s(8913); + $password = $rt_s(8911); $ptr = 51; continue main; } @@ -1234875,7 +1237112,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 64: @@ -1234892,10 +1237129,10 @@ } if ($allowPlaintext == 6) { if ($msgLen) { - $ptr = 94; + $ptr = 95; continue main; } - $ptr = 95; + $ptr = 96; continue main; } } catch ($$e) { @@ -1234941,7 +1237178,7 @@ } } try { - $ptr = 128; + $ptr = 131; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1234953,7 +1237190,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 65: @@ -1234975,7 +1237212,7 @@ return 0; } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 66: @@ -1234997,7 +1237234,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 67: @@ -1235018,7 +1237255,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 68: @@ -1235039,7 +1237276,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 69: @@ -1235061,7 +1237298,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 70: @@ -1235082,7 +1237319,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 71: @@ -1235104,7 +1237341,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 72: @@ -1235126,7 +1237363,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 73: @@ -1235135,7 +1237372,7 @@ if ($rt_suspending()) { break main; } - $profileDataType = $rt_s(8924); + $profileDataType = $rt_s(8922); $allowPlaintext = jl_String_length($profileDataType); $ptr = 74; continue main; @@ -1235148,7 +1237385,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 74: @@ -1235168,7 +1237405,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 75: @@ -1235188,7 +1237425,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 76: @@ -1235205,7 +1237442,7 @@ } $mc = new ji_IOException; $connecting = jl_StringBuilder__init_(); - $ret = $rt_s(8925); + $ret = $rt_s(8923); $ptr = 84; continue main; } catch ($$e) { @@ -1235217,7 +1237454,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 77: @@ -1235237,7 +1237474,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 78: @@ -1235258,7 +1237495,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 79: @@ -1235280,7 +1237517,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 80: @@ -1235289,7 +1237526,7 @@ if ($rt_suspending()) { break main; } - $password = $rt_s(8926); + $password = $rt_s(8924); $allowPlaintext = jl_String_length($password); $ptr = 81; continue main; @@ -1235302,7 +1237539,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 81: @@ -1235322,7 +1237559,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 82: @@ -1235342,7 +1237579,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 83: @@ -1235354,13 +1237591,13 @@ $packetCape = $tmp; $allowPlaintext = $packetCape.data.length; if ($allowPlaintext <= 65535) { - $ptr = 96; + $ptr = 97; continue main; } $mc = new ji_IOException; $connecting = jl_StringBuilder__init_(); - $ret = $rt_s(8927); - $ptr = 100; + $ret = $rt_s(8925); + $ptr = 101; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1235371,7 +1237608,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 84: @@ -1235393,7 +1237630,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 85: @@ -1235414,7 +1237651,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 86: @@ -1235437,7 +1237674,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 87: @@ -1235447,7 +1237684,6 @@ break main; } $serverUsername = nmu_EnumChatFormatting_RED; - $profileDataType = jl_StringBuilder__init_(); $ptr = 88; continue main; } catch ($$e) { @@ -1235459,17 +1237695,17 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 88: try { - $tmp = jl_StringBuilder_append($profileDataType, $serverUsername); + $tmp = jl_String_valueOf($serverUsername); if ($rt_suspending()) { break main; } $serverUsername = $tmp; - $protocols = $rt_s(8916); + $profileDataType = jl_StringBuilder__init_(); $ptr = 89; continue main; } catch ($$e) { @@ -1235481,15 +1237717,17 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 89: try { - jl_StringBuilder_append($serverUsername, $protocols); + $tmp = jl_StringBuilder_append($profileDataType, $serverUsername); if ($rt_suspending()) { break main; } + $serverUsername = $tmp; + $protocols = $rt_s(8914); $ptr = 90; continue main; } catch ($$e) { @@ -1235501,10 +1237739,30 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 90: + try { + jl_StringBuilder_append($serverUsername, $protocols); + if ($rt_suspending()) { + break main; + } + $ptr = 91; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $mc = nlevs_ConnectionHandshake_logger; + $connecting = $rt_s(8904); + $ptr = 14; + continue main; + case 91: try { $tmp = jl_StringBuilder_toString($profileDataType); if ($rt_suspending()) { @@ -1235512,7 +1237770,7 @@ } $serverUsername = $tmp; nmu_ChatComponentText__init_0($errStr, $serverUsername); - $ptr = 111; + $ptr = 114; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1235523,36 +1237781,16 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; - case 91: + case 92: try { nlevl_Logger_warn($errStr, $serverUsername); if ($rt_suspending()) { break main; } $allowPlaintext = jl_String_length($password) << 1; - $ptr = 92; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); - $ptr = 14; - continue main; - case 92: - try { - ji_DataOutputStream_writeByte($d, $allowPlaintext); - if ($rt_suspending()) { - break main; - } $ptr = 93; continue main; } catch ($$e) { @@ -1235564,10 +1237802,30 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 93: + try { + ji_DataOutputStream_writeByte($d, $allowPlaintext); + if ($rt_suspending()) { + break main; + } + $ptr = 94; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $mc = nlevs_ConnectionHandshake_logger; + $connecting = $rt_s(8904); + $ptr = 14; + continue main; + case 94: try { ji_DataOutputStream_writeChars($d, $password); if ($rt_suspending()) { @@ -1235585,10 +1237843,10 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; - case 94: + case 95: try { $tmp = ji_DataInputStream_readUnsignedShort($password); if ($rt_suspending()) { @@ -1235596,7 +1237854,7 @@ } $allowPlaintext = $tmp; $packetSkin = $rt_createByteArray($allowPlaintext); - $ptr = 113; + $ptr = 116; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1235607,10 +1237865,10 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; - case 95: + case 96: try { $tmp = ji_FilterInputStream_read($password); if ($rt_suspending()) { @@ -1235618,7 +1237876,7 @@ } $allowPlaintext = $tmp; $packetSkin = $rt_createByteArray($allowPlaintext); - $ptr = 113; + $ptr = 116; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1235629,36 +1237887,15 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; - case 96: + case 97: try { ji_DataOutputStream_writeShort($d, $allowPlaintext); if ($rt_suspending()) { break main; } - $ptr = 97; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); - $ptr = 14; - continue main; - case 97: - try { - ji_OutputStream_write($d, $packetCape); - if ($rt_suspending()) { - break main; - } - $packetSkin = nlev_EaglerOutputStream_toByteArray($bao); $ptr = 98; continue main; } catch ($$e) { @@ -1235670,15 +1237907,16 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 98: try { - nlevi_PlatformNetworking_writePlayPacket($packetSkin); + ji_OutputStream_write($d, $packetCape); if ($rt_suspending()) { break main; } + $packetSkin = nlev_EaglerOutputStream_toByteArray($bao); $ptr = 99; continue main; } catch ($$e) { @@ -1235690,10 +1237928,30 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 99: + try { + nlevi_PlatformNetworking_writePlayPacket($packetSkin); + if ($rt_suspending()) { + break main; + } + $ptr = 100; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $mc = nlevs_ConnectionHandshake_logger; + $connecting = $rt_s(8904); + $ptr = 14; + continue main; + case 100: try { $tmp = nlevu_UpdateService_getClientSignatureData(); if ($rt_suspending()) { @@ -1235703,13 +1237961,13 @@ if ($packetSignatureData === null) { nlev_EaglerOutputStream_reset($bao); $allowPlaintext = 8; - $ptr = 118; + $ptr = 121; continue main; } $packetSkin = $packetSignatureData.data; nlev_EaglerOutputStream_reset($bao); $allowPlaintext = 7; - $ptr = 121; + $ptr = 124; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1235720,10 +1237978,10 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; - case 100: + case 101: try { $tmp = jl_StringBuilder_append($connecting, $ret); if ($rt_suspending()) { @@ -1235731,7 +1237989,7 @@ } $ret = $tmp; jl_StringBuilder_append1($ret, $allowPlaintext); - $ptr = 101; + $ptr = 102; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1235742,10 +1238000,10 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; - case 101: + case 102: try { $tmp = jl_StringBuilder_toString($connecting); if ($rt_suspending()) { @@ -1235763,41 +1238021,18 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; - case 102: + case 103: try { nlevl_Logger_error($connecting, $password, $packetSkin); if ($rt_suspending()) { break main; } - $profileDataType = new nmcg_GuiDisconnected; - $protocols = $rt_s(5709); - $games = new nmu_ChatComponentText; - $ptr = 103; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); - $ptr = 14; - continue main; - case 103: - try { - nmu_EnumChatFormatting_$callClinit(); - if ($rt_suspending()) { - break main; - } - $password = nmu_EnumChatFormatting_RED; - $serverUsername = nmu_EnumChatFormatting_GRAY; - $connecting = jl_StringBuilder__init_(); + $serverUsername = new nmcg_GuiDisconnected; + $profileDataType = $rt_s(5709); + $protocols = new nmu_ChatComponentText; $ptr = 104; continue main; } catch ($$e) { @@ -1235809,17 +1238044,16 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 104: try { - $tmp = jl_StringBuilder_append($connecting, $password); + nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } - $password = $tmp; - $errStr = $rt_s(8928); + $connecting = nmu_EnumChatFormatting_RED; $ptr = 105; continue main; } catch ($$e) { @@ -1235831,18 +1238065,17 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 105: try { - $tmp = jl_StringBuilder_append($password, $errStr); + $tmp = jl_String_valueOf($connecting); if ($rt_suspending()) { break main; } $password = $tmp; - $password = jl_StringBuilder_append1($password, $authType); - $errStr = $rt_s(68); + $connecting = nmu_EnumChatFormatting_GRAY; $ptr = 106; continue main; } catch ($$e) { @@ -1235854,16 +1238087,17 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 106: try { - $tmp = jl_StringBuilder_append($password, $errStr); + $tmp = jl_String_valueOf($connecting); if ($rt_suspending()) { break main; } - $password = $tmp; + $games = $tmp; + $connecting = jl_StringBuilder__init_(); $ptr = 107; continue main; } catch ($$e) { @@ -1235875,17 +1238109,17 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 107: try { - $tmp = jl_StringBuilder_append($password, $serverUsername); + $tmp = jl_StringBuilder_append($connecting, $password); if ($rt_suspending()) { break main; } $password = $tmp; - $errStr = $rt_s(8929); + $errStr = $rt_s(8926); $ptr = 108; continue main; } catch ($$e) { @@ -1235897,15 +1238131,18 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 108: try { - jl_StringBuilder_append($password, $errStr); + $tmp = jl_StringBuilder_append($password, $errStr); if ($rt_suspending()) { break main; } + $password = $tmp; + $password = jl_StringBuilder_append1($password, $authType); + $errStr = $rt_s(68); $ptr = 109; continue main; } catch ($$e) { @@ -1235917,18 +1238154,17 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 109: try { - $tmp = jl_StringBuilder_toString($connecting); + $tmp = jl_StringBuilder_append($password, $errStr); if ($rt_suspending()) { break main; } - $connecting = $tmp; - nmu_ChatComponentText__init_0($games, $connecting); - $ptr = 124; + $password = $tmp; + $ptr = 110; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1235939,10 +1238175,74 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 110: + try { + $tmp = jl_StringBuilder_append($password, $games); + if ($rt_suspending()) { + break main; + } + $password = $tmp; + $errStr = $rt_s(8927); + $ptr = 111; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $mc = nlevs_ConnectionHandshake_logger; + $connecting = $rt_s(8904); + $ptr = 14; + continue main; + case 111: + try { + jl_StringBuilder_append($password, $errStr); + if ($rt_suspending()) { + break main; + } + $ptr = 112; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $mc = nlevs_ConnectionHandshake_logger; + $connecting = $rt_s(8904); + $ptr = 14; + continue main; + case 112: + try { + $tmp = jl_StringBuilder_toString($connecting); + if ($rt_suspending()) { + break main; + } + $connecting = $tmp; + nmu_ChatComponentText__init_0($protocols, $connecting); + $ptr = 127; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $mc = nlevs_ConnectionHandshake_logger; + $connecting = $rt_s(8904); + $ptr = 14; + continue main; + case 113: a: { try { $tmp = jl_String_getBytes0($password, $errStr); @@ -1235994,14 +1238294,14 @@ nlevc_SHA256Digest_doFinal($digest, $hashed, 0); $i = 0; while ($i < 32) { - $allowPlaintext = $i << 1; + $c = $i << 1; $packetSkin = nlevs_ConnectionHandshake_HEX.data; - $packetSignatureData[$allowPlaintext] = $packetSkin[$packetCape[$i] >> 4 & 15]; - $packetSignatureData[$allowPlaintext + 1 | 0] = $packetSkin[$packetCape[$i] & 15]; + $packetSignatureData[$c] = $packetSkin[$packetCape[$i] >> 4 & 15]; + $packetSignatureData[$c + 1 | 0] = $packetSkin[$packetCape[$i] & 15]; $i = $i + 1 | 0; } $allowPlaintext = 64; - $ptr = 137; + $ptr = 140; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1236013,82 +1238313,15 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; - case 111: + case 114: try { nmcg_GuiDisconnected__init_($connecting, $ret, $password, $errStr); if ($rt_suspending()) { break main; } - $ptr = 112; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); - $ptr = 14; - continue main; - case 112: - a: { - try { - nmc_Minecraft_displayGuiScreen($mc, $connecting); - if ($rt_suspending()) { - break main; - } - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - break a; - } else { - throw $$e; - } - } - return 0; - } - $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); - $ptr = 14; - continue main; - case 113: - try { - ji_DataInputStream_read($password, $packetSkin); - if ($rt_suspending()) { - break main; - } - $errStr = new jl_String; - jnc_StandardCharsets_$callClinit(); - $connecting = jnc_StandardCharsets_UTF_8; - $ptr = 114; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); - $ptr = 14; - continue main; - case 114: - try { - jl_String__init_12($errStr, $packetSkin, $connecting); - if ($rt_suspending()) { - break main; - } - $connecting = new nmcg_GuiDisconnected; - $password = $rt_s(5709); $ptr = 115; continue main; } catch ($$e) { @@ -1236100,51 +1238333,10 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 115: - try { - $tmp = nmu_IChatComponent$Serializer_jsonToComponent($errStr); - if ($rt_suspending()) { - break main; - } - $errStr = $tmp; - $ptr = 116; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); - $ptr = 14; - continue main; - case 116: - try { - nmcg_GuiDisconnected__init_($connecting, $ret, $password, $errStr); - if ($rt_suspending()) { - break main; - } - $ptr = 117; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); - $ptr = 14; - continue main; - case 117: a: { try { nmc_Minecraft_displayGuiScreen($mc, $connecting); @@ -1236163,16 +1238355,61 @@ return 0; } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); + $ptr = 14; + continue main; + case 116: + try { + ji_DataInputStream_read($password, $packetSkin); + if ($rt_suspending()) { + break main; + } + $errStr = new jl_String; + jnc_StandardCharsets_$callClinit(); + $connecting = jnc_StandardCharsets_UTF_8; + $ptr = 117; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $mc = nlevs_ConnectionHandshake_logger; + $connecting = $rt_s(8904); + $ptr = 14; + continue main; + case 117: + try { + jl_String__init_12($errStr, $packetSkin, $connecting); + if ($rt_suspending()) { + break main; + } + $connecting = new nmcg_GuiDisconnected; + $password = $rt_s(5709); + $ptr = 118; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $mc = nlevs_ConnectionHandshake_logger; + $connecting = $rt_s(8904); $ptr = 14; continue main; case 118: try { - ji_DataOutputStream_writeByte($d, $allowPlaintext); + $tmp = nmu_IChatComponent$Serializer_jsonToComponent($errStr); if ($rt_suspending()) { break main; } - $packetSkin = nlev_EaglerOutputStream_toByteArray($bao); + $errStr = $tmp; $ptr = 119; continue main; } catch ($$e) { @@ -1236184,16 +1238421,15 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 119: try { - nlevi_PlatformNetworking_writePlayPacket($packetSkin); + nmcg_GuiDisconnected__init_($connecting, $ret, $password, $errStr); if ($rt_suspending()) { break main; } - var$15 = Long_fromInt(15000); $ptr = 120; continue main; } catch ($$e) { @@ -1236205,131 +1238441,13 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 120: - try { - $tmp = nlevs_ConnectionHandshake_awaitNextPacket(var$15); - if ($rt_suspending()) { - break main; - } - $packetSkin = $tmp; - if ($packetSkin === null) { - $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8930); - $ptr = 130; - continue main; - } - $password = ji_DataInputStream__init_(nlev_EaglerInputStream__init_($packetSkin)); - $ptr = 129; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); - $ptr = 14; - continue main; - case 121: - try { - ji_DataOutputStream_writeByte($d, $allowPlaintext); - if ($rt_suspending()) { - break main; - } - $password = $rt_s(8931); - $allowPlaintext = jl_String_length($password); - $ptr = 122; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); - $ptr = 14; - continue main; - case 122: - try { - ji_DataOutputStream_writeByte($d, $allowPlaintext); - if ($rt_suspending()) { - break main; - } - $ptr = 123; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); - $ptr = 14; - continue main; - case 123: - try { - ji_DataOutputStream_writeBytes($d, $password); - if ($rt_suspending()) { - break main; - } - $allowPlaintext = $packetSkin.length; - if ($allowPlaintext <= 65535) { - $ptr = 131; - continue main; - } - $mc = new ji_IOException; - $connecting = jl_StringBuilder__init_(); - $ret = $rt_s(8932); - $ptr = 134; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); - $ptr = 14; - continue main; - case 124: - try { - nmcg_GuiDisconnected__init_($profileDataType, $ret, $protocols, $games); - if ($rt_suspending()) { - break main; - } - $ptr = 125; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); - $ptr = 14; - continue main; - case 125: a: { try { - nmc_Minecraft_displayGuiScreen($mc, $profileDataType); + nmc_Minecraft_displayGuiScreen($mc, $connecting); if ($rt_suspending()) { break main; } @@ -1236345,16 +1238463,17 @@ return 0; } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; - case 126: + case 121: try { ji_DataOutputStream_writeByte($d, $allowPlaintext); if ($rt_suspending()) { break main; } - $ptr = 127; + $packetSkin = nlev_EaglerOutputStream_toByteArray($bao); + $ptr = 122; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1236365,10 +1238484,191 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); + $ptr = 14; + continue main; + case 122: + try { + nlevi_PlatformNetworking_writePlayPacket($packetSkin); + if ($rt_suspending()) { + break main; + } + var$15 = Long_fromInt(15000); + $ptr = 123; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $mc = nlevs_ConnectionHandshake_logger; + $connecting = $rt_s(8904); + $ptr = 14; + continue main; + case 123: + try { + $tmp = nlevs_ConnectionHandshake_awaitNextPacket(var$15); + if ($rt_suspending()) { + break main; + } + $packetSkin = $tmp; + if ($packetSkin === null) { + $mc = nlevs_ConnectionHandshake_logger; + $connecting = $rt_s(8928); + $ptr = 133; + continue main; + } + $password = ji_DataInputStream__init_(nlev_EaglerInputStream__init_($packetSkin)); + $ptr = 132; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $mc = nlevs_ConnectionHandshake_logger; + $connecting = $rt_s(8904); + $ptr = 14; + continue main; + case 124: + try { + ji_DataOutputStream_writeByte($d, $allowPlaintext); + if ($rt_suspending()) { + break main; + } + $password = $rt_s(8929); + $allowPlaintext = jl_String_length($password); + $ptr = 125; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $mc = nlevs_ConnectionHandshake_logger; + $connecting = $rt_s(8904); + $ptr = 14; + continue main; + case 125: + try { + ji_DataOutputStream_writeByte($d, $allowPlaintext); + if ($rt_suspending()) { + break main; + } + $ptr = 126; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $mc = nlevs_ConnectionHandshake_logger; + $connecting = $rt_s(8904); + $ptr = 14; + continue main; + case 126: + try { + ji_DataOutputStream_writeBytes($d, $password); + if ($rt_suspending()) { + break main; + } + $allowPlaintext = $packetSkin.length; + if ($allowPlaintext <= 65535) { + $ptr = 134; + continue main; + } + $mc = new ji_IOException; + $connecting = jl_StringBuilder__init_(); + $ret = $rt_s(8930); + $ptr = 137; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $mc = nlevs_ConnectionHandshake_logger; + $connecting = $rt_s(8904); $ptr = 14; continue main; case 127: + try { + nmcg_GuiDisconnected__init_($serverUsername, $ret, $profileDataType, $protocols); + if ($rt_suspending()) { + break main; + } + $ptr = 128; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $mc = nlevs_ConnectionHandshake_logger; + $connecting = $rt_s(8904); + $ptr = 14; + continue main; + case 128: + a: { + try { + nmc_Minecraft_displayGuiScreen($mc, $serverUsername); + if ($rt_suspending()) { + break main; + } + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + break a; + } else { + throw $$e; + } + } + return 0; + } + $mc = nlevs_ConnectionHandshake_logger; + $connecting = $rt_s(8904); + $ptr = 14; + continue main; + case 129: + try { + ji_DataOutputStream_writeByte($d, $allowPlaintext); + if ($rt_suspending()) { + break main; + } + $ptr = 130; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $mc = nlevs_ConnectionHandshake_logger; + $connecting = $rt_s(8904); + $ptr = 14; + continue main; + case 130: try { ji_OutputStream_write($d, $hashed); if ($rt_suspending()) { @@ -1236386,10 +1238686,10 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; - case 128: + case 131: a: { try { nlevs_ConnectionHandshake_showError($mc, $connecting, $ret, $password, $allowPlaintext); @@ -1236408,10 +1238708,10 @@ return 0; } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; - case 129: + case 132: a: { e: { try { @@ -1236467,7 +1238767,7 @@ } } try { - $ptr = 136; + $ptr = 139; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1236479,10 +1238779,10 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; - case 130: + case 133: a: { try { nlevl_Logger_error1($mc, $connecting); @@ -1236501,80 +1238801,15 @@ return 0; } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; - case 131: + case 134: try { ji_DataOutputStream_writeShort($d, $allowPlaintext); if ($rt_suspending()) { break main; } - $ptr = 132; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); - $ptr = 14; - continue main; - case 132: - try { - ji_OutputStream_write($d, $packetSignatureData); - if ($rt_suspending()) { - break main; - } - $packetSkin = nlev_EaglerOutputStream_toByteArray($bao); - $ptr = 133; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); - $ptr = 14; - continue main; - case 133: - try { - nlevi_PlatformNetworking_writePlayPacket($packetSkin); - if ($rt_suspending()) { - break main; - } - nlev_EaglerOutputStream_reset($bao); - $allowPlaintext = 8; - $ptr = 118; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } - $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); - $ptr = 14; - continue main; - case 134: - try { - $tmp = jl_StringBuilder_append($connecting, $ret); - if ($rt_suspending()) { - break main; - } - $ret = $tmp; - jl_StringBuilder_append1($ret, $allowPlaintext); $ptr = 135; continue main; } catch ($$e) { @@ -1236586,10 +1238821,75 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; case 135: + try { + ji_OutputStream_write($d, $packetSignatureData); + if ($rt_suspending()) { + break main; + } + $packetSkin = nlev_EaglerOutputStream_toByteArray($bao); + $ptr = 136; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $mc = nlevs_ConnectionHandshake_logger; + $connecting = $rt_s(8904); + $ptr = 14; + continue main; + case 136: + try { + nlevi_PlatformNetworking_writePlayPacket($packetSkin); + if ($rt_suspending()) { + break main; + } + nlev_EaglerOutputStream_reset($bao); + $allowPlaintext = 8; + $ptr = 121; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $mc = nlevs_ConnectionHandshake_logger; + $connecting = $rt_s(8904); + $ptr = 14; + continue main; + case 137: + try { + $tmp = jl_StringBuilder_append($connecting, $ret); + if ($rt_suspending()) { + break main; + } + $ret = $tmp; + jl_StringBuilder_append1($ret, $allowPlaintext); + $ptr = 138; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } + $mc = nlevs_ConnectionHandshake_logger; + $connecting = $rt_s(8904); + $ptr = 14; + continue main; + case 138: try { $tmp = jl_StringBuilder_toString($connecting); if ($rt_suspending()) { @@ -1236607,10 +1238907,10 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; - case 136: + case 139: a: { try { nlevs_ConnectionHandshake_showError($mc, $connecting, $ret, $password, $allowPlaintext); @@ -1236629,16 +1238929,16 @@ return 0; } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; - case 137: + case 140: try { ji_DataOutputStream_writeByte($d, $allowPlaintext); if ($rt_suspending()) { break main; } - $ptr = 138; + $ptr = 141; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1236649,10 +1238949,10 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; - case 138: + case 141: try { ji_OutputStream_write($d, $toHexAndSalt); if ($rt_suspending()) { @@ -1236670,7 +1238970,7 @@ } } $mc = nlevs_ConnectionHandshake_logger; - $connecting = $rt_s(8906); + $connecting = $rt_s(8904); $ptr = 14; continue main; default: $rt_invalidPointer(); @@ -1236884,7 +1239184,7 @@ break main; } $err = nlevs_ConnectionHandshake_logger; - var$10 = $rt_s(8933); + var$10 = $rt_s(8931); $dat = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0($errorCode), $errStr]); $ptr = 7; case 7: @@ -1236916,7 +1239216,7 @@ var$10 = new nmu_ChatComponentText; var$11 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$11); - var$12 = $rt_s(8934); + var$12 = $rt_s(8932); $ptr = 19; continue main; case 8: @@ -1237033,8 +1239333,8 @@ $err.$allowPlaintext0 = 0; $err.$retAfterAuthScreen = $connecting; $err.$parent10 = $scr; - if (jl_String_startsWith0($errStr, $rt_s(8935))) - $errStr = jl_String_trim(jl_String_substring($errStr, jl_String_length($rt_s(8935)))); + if (jl_String_startsWith0($errStr, $rt_s(8933))) + $errStr = jl_String_trim(jl_String_substring($errStr, jl_String_length($rt_s(8933)))); if (jl_String_length($errStr) > 0 && jl_String_charAt($errStr, 0) == 91) { $v2 = jl_String_indexOf($errStr, 93, 1); if ($v2 != (-1)) { @@ -1237119,6 +1239419,104 @@ }} $rt_nativeThread().push(var$1, $ptr); } + function nlevsg_GuiScreenDemoIntegratedServerFailed() { + var a = this; nmcg_GuiScreen.call(a); + a.$str11 = null; + a.$str21 = null; + } + function nlevsg_GuiScreenDemoIntegratedServerFailed__init_0() { + var var_0 = new nlevsg_GuiScreenDemoIntegratedServerFailed(); + nlevsg_GuiScreenDemoIntegratedServerFailed__init_(var_0); + return var_0; + } + function nlevsg_GuiScreenDemoIntegratedServerFailed__init_($this) { + var var$1, var$2, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + nmcg_GuiScreen__init_($this); + if ($rt_suspending()) { + break main; + } + var$1 = $rt_s(8934); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 2; + case 2: + $tmp = nmcr_I18n_format(var$1, var$2); + if ($rt_suspending()) { + break main; + } + var$1 = $tmp; + $this.$str11 = var$1; + var$1 = $rt_s(8935); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 3; + case 3: + $tmp = nmcr_I18n_format(var$1, var$2); + if ($rt_suspending()) { + break main; + } + var$1 = $tmp; + $this.$str21 = var$1; + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, var$1, var$2, $ptr); + } + function nlevsg_GuiScreenDemoIntegratedServerFailed_drawScreen($this, $par1, $par2, $par3) { + var var$4, var$5, var$6, var$7, var$8, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$par3 = $thread.pop();$par2 = $thread.pop();$par1 = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + nmcg_GuiScreen_drawDefaultBackground($this); + if ($rt_suspending()) { + break main; + } + var$4 = $this.$fontRendererObj0; + var$5 = $this.$str11; + var$6 = $this.$width7 / 2 | 0; + var$7 = 70; + var$8 = 11184810; + $ptr = 2; + case 2: + nmcg_Gui_drawCenteredString($this, var$4, var$5, var$6, var$7, var$8); + if ($rt_suspending()) { + break main; + } + var$4 = $this.$fontRendererObj0; + var$5 = $this.$str21; + var$6 = $this.$width7 / 2 | 0; + var$7 = 90; + var$8 = 16777215; + $ptr = 3; + case 3: + nmcg_Gui_drawCenteredString($this, var$4, var$5, var$6, var$7, var$8); + if ($rt_suspending()) { + break main; + } + $ptr = 4; + case 4: + nmcg_GuiScreen_drawScreen($this, $par1, $par2, $par3); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $par1, $par2, $par3, var$4, var$5, var$6, var$7, var$8, $ptr); + } function nlevsg_GuiShareToLan$actionPerformed$lambda$_3_0() { jl_Object.call(this); this.$_0203 = null; @@ -1238989,12 +1241387,12 @@ var a = this; jl_Object.call(a); a.$chunkPosCrammed = 0; a.$blockState1 = null; - a.$this$080 = null; + a.$this$053 = null; } function nmnps_S22PacketMultiBlockChange$BlockUpdateData_getPos($this) { var var$1, var$2, var$3, var$4, var$5, var$6; var$1 = new nmu_BlockPos; - var$2 = $this.$this$080.$chunkPosCoord; + var$2 = $this.$this$053.$chunkPosCoord; var$3 = $this.$chunkPosCrammed; var$4 = var$3 >> 12 & 15; var$5 = var$3 & 255; @@ -1239004,7 +1241402,7 @@ } function nmcg_ServerSelectionList$1() { nmcg_ServerListEntryNormal.call(this); - this.$this$0234 = null; + this.$this$0150 = null; } function nmcg_ServerSelectionList$1_drawEntry($this, $i, $j, $k, $l, $var5, $i1, $j1, $flag) {} function nmcg_ServerSelectionList$1_mousePressed($this, $i, $var2, $var3, $var4, $j, $k) { @@ -1239016,7 +1241414,7 @@ } main: while (true) { switch ($ptr) { case 0: - if ($this.$this$0234.$selectedSlotIndex != $i) + if ($this.$this$0150.$selectedSlotIndex != $i) $this.$field_148298_f = Long_ZERO; $j = jl_Math_max($j, 32); $ptr = 1; @@ -1239038,7 +1241436,7 @@ function cgcb_Splitter$2_iterator($this, var$1, var$2) { var var$3; var$3 = new cgcb_Splitter$2$1; - var$3.$this$0259 = $this; + var$3.$this$0166 = $this; cgcb_Splitter$SplittingIterator__init_(var$3, var$1, var$2); return var$3; } @@ -1240204,7 +1242602,6 @@ var a = this; jl_Object.call(a); a.$agressor = null; a.$agressionTime = 0; - a.$this$030 = null; } function nmea_EntityAIMoveTowardsTarget() { var a = this; nmea_EntityAIBase.call(a); @@ -1243451,7 +1245848,7 @@ if ($this.$firstPacket0) { $data = $fullData.data; if ($data.length == 31 && $data[0] == (-1) && !$data[1] && $data[2] == 14) { - $ptr = 40; + $ptr = 41; continue main; } $this.$firstPacket0 = 0; @@ -1243498,7 +1245895,7 @@ if ($this.$firstPacket0) { $data = $fullData.data; if ($data.length == 31 && $data[0] == (-1) && !$data[1] && $data[2] == 14) { - $ptr = 40; + $ptr = 41; continue main; } $this.$firstPacket0 = 0; @@ -1243512,7 +1245909,7 @@ break main; } $bi = nlevsl_LANClientNetworkManager_logger; - $inflaterInputStream = $rt_s(882); + $inflaterInputStream = $rt_s(881); $data = $rt_createArrayFromData(jl_Object, [jl_Integer_valueOf0(var$8.length), jl_Integer_valueOf0(var$8[0] & 255)]); $ptr = 9; case 9: @@ -1243573,7 +1245970,7 @@ if ($this.$firstPacket0) { $data = $fullData.data; if ($data.length == 31 && $data[0] == (-1) && !$data[1] && $data[2] == 14) { - $ptr = 40; + $ptr = 41; continue main; } $this.$firstPacket0 = 0; @@ -1243614,7 +1246011,7 @@ if ($this.$firstPacket0) { $data = $fullData.data; if ($data.length == 31 && $data[0] == (-1) && !$data[1] && $data[2] == 14) { - $ptr = 40; + $ptr = 41; continue main; } $this.$firstPacket0 = 0; @@ -1243675,7 +1246072,7 @@ if ($this.$firstPacket0) { $data = $fullData.data; if ($data.length == 31 && $data[0] == (-1) && !$data[1] && $data[2] == 14) { - $ptr = 40; + $ptr = 41; continue main; } $this.$firstPacket0 = 0; @@ -1243703,7 +1246100,7 @@ break main; } $bi = $tmp; - jl_Exception__init_2($packets, $bi); + ji_IOException__init_4($packets, $bi); $rt_throw($packets); case 22: $tmp = nlevn_Unpooled_buffer0($fullData, $i); @@ -1243761,7 +1246158,7 @@ if ($this.$firstPacket0) { $data = $fullData.data; if ($data.length == 31 && $data[0] == (-1) && !$data[1] && $data[2] == 14) { - $ptr = 40; + $ptr = 41; continue main; } $this.$firstPacket0 = 0; @@ -1243792,28 +1246189,26 @@ $ptr = 28; continue main; } - if ($pkt !== null) { - try { - $ptr = 31; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Throwable) { - $t = $$je; - } else { - throw $$e; - } - } + if ($pkt === null) { $packets = new ji_IOException; - $bi = jl_Object_getClass($pkt); - $ptr = 36; + $bi = $this.$packetState0; + $ptr = 32; continue main; } + try { + $ptr = 31; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Throwable) { + $t = $$je; + } else { + throw $$e; + } + } $packets = new ji_IOException; - $bi = $this.$packetState0; - $inflaterInputStream = jl_StringBuilder__init_(); - $nettyBuffer = $rt_s(881); - $ptr = 32; + $bi = jl_Object_getClass($pkt); + $ptr = 37; continue main; case 28: $tmp = jl_StringBuilder_append($bi, $inflaterInputStream); @@ -1243822,10 +1246217,10 @@ } $inflaterInputStream = $tmp; $inflaterInputStream = jl_StringBuilder_append1($inflaterInputStream, $pktId); - $nettyBuffer = $rt_s(883); + $input = $rt_s(882); $ptr = 29; case 29: - jl_StringBuilder_append($inflaterInputStream, $nettyBuffer); + jl_StringBuilder_append($inflaterInputStream, $input); if ($rt_suspending()) { break main; } @@ -1243856,7 +1246251,7 @@ } try { $bi = $this.$nethandler0; - $ptr = 44; + $ptr = 45; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1243866,36 +1246261,45 @@ throw $$e; } } - $ptr = 45; + $ptr = 46; continue main; } $packets = new ji_IOException; $bi = jl_Object_getClass($pkt); - $ptr = 36; + $ptr = 37; continue main; case 32: - $tmp = jl_StringBuilder_append($inflaterInputStream, $nettyBuffer); + $tmp = jl_String_valueOf($bi); if ($rt_suspending()) { break main; } - $nettyBuffer = $tmp; - $nettyBuffer = jl_StringBuilder_append1($nettyBuffer, $pktId); - $input = $rt_s(885); + $bi = $tmp; + $inflaterInputStream = jl_StringBuilder__init_(); + $input = $rt_s(884); $ptr = 33; case 33: - $tmp = jl_StringBuilder_append($nettyBuffer, $input); + $tmp = jl_StringBuilder_append($inflaterInputStream, $input); if ($rt_suspending()) { break main; } - $nettyBuffer = $tmp; + $input = $tmp; + $input = jl_StringBuilder_append1($input, $pktId); + $pkt = $rt_s(885); $ptr = 34; case 34: - jl_StringBuilder_append($nettyBuffer, $bi); + $tmp = jl_StringBuilder_append($input, $pkt); if ($rt_suspending()) { break main; } + $input = $tmp; $ptr = 35; case 35: + jl_StringBuilder_append($input, $bi); + if ($rt_suspending()) { + break main; + } + $ptr = 36; + case 36: $tmp = jl_StringBuilder_toString($inflaterInputStream); if ($rt_suspending()) { break main; @@ -1243903,31 +1246307,31 @@ $bi = $tmp; ji_IOException__init_4($packets, $bi); $rt_throw($packets); - case 36: + case 37: $tmp = jl_Class_getSimpleName($bi); if ($rt_suspending()) { break main; } $bi = $tmp; $inflaterInputStream = jl_StringBuilder__init_(); - $nettyBuffer = $rt_s(886); - $ptr = 37; - case 37: - $tmp = jl_StringBuilder_append($inflaterInputStream, $nettyBuffer); + $input = $rt_s(886); + $ptr = 38; + case 38: + $tmp = jl_StringBuilder_append($inflaterInputStream, $input); if ($rt_suspending()) { break main; } - $nettyBuffer = $tmp; - $ptr = 38; - case 38: - $tmp = jl_StringBuilder_append($nettyBuffer, $bi); + $input = $tmp; + $ptr = 39; + case 39: + $tmp = jl_StringBuilder_append($input, $bi); if ($rt_suspending()) { break main; } $bi = $tmp; jl_StringBuilder_append5($bi, 39); - $ptr = 39; - case 39: + $ptr = 40; + case 40: $tmp = jl_StringBuilder_toString($inflaterInputStream); if ($rt_suspending()) { break main; @@ -1243935,15 +1246339,15 @@ $bi = $tmp; ji_IOException__init_3($packets, $bi, $t); $rt_throw($packets); - case 40: + case 41: nlevsl_LANClientNetworkManager_$callClinit(); if ($rt_suspending()) { break main; } $packets = nlevsl_LANClientNetworkManager_logger; $bi = $rt_s(9000); - $ptr = 41; - case 41: + $ptr = 42; + case 42: nlevl_Logger_error1($packets, $bi); if ($rt_suspending()) { break main; @@ -1243951,21 +1246355,21 @@ $packets = new nmu_ChatComponentTranslation; $bi = $rt_s(9001); $data = $rt_createArray(jl_Object, 0); - $ptr = 42; - case 42: + $ptr = 43; + case 43: nmu_ChatComponentTranslation__init_($packets, $bi, $data); if ($rt_suspending()) { break main; } - $ptr = 43; - case 43: + $ptr = 44; + case 44: nlevsl_LANClientNetworkManager_closeChannel($this, $packets); if ($rt_suspending()) { break main; } $this.$firstPacket0 = 0; return; - case 44: + case 45: a: { try { $pkt.$processPacket($bi); @@ -1243981,7 +1246385,7 @@ throw $$e; } } - $ptr = 45; + $ptr = 46; continue main; } $k = $k + 1 | 0; @@ -1243989,34 +1246393,34 @@ return; $ptr = 5; continue main; - case 45: + case 46: nlevsl_LANClientNetworkManager_$callClinit(); if ($rt_suspending()) { break main; } $inflaterInputStream = nlevsl_LANClientNetworkManager_logger; - $nettyBuffer = $rt_s(888); - $data = $rt_createArray(jl_Object, 1); - $f = $data.data; + $input = $rt_s(888); + $f = $rt_createArray(jl_Object, 1); + $data = $f.data; $i = 0; $bi = jl_Object_getClass($pkt); - $ptr = 46; - case 46: + $ptr = 47; + case 47: $tmp = jl_Class_getSimpleName($bi); if ($rt_suspending()) { break main; } $bi = $tmp; - $f[$i] = $bi; - $ptr = 47; - case 47: - nlevl_Logger_error($inflaterInputStream, $nettyBuffer, $data); + $data[$i] = $bi; + $ptr = 48; + case 48: + nlevl_Logger_error($inflaterInputStream, $input, $f); if ($rt_suspending()) { break main; } $bi = nlevsl_LANClientNetworkManager_logger; - $ptr = 48; - case 48: + $ptr = 49; + case 49: nlevl_Logger_error0($bi, $t); if ($rt_suspending()) { break main; @@ -1244258,14 +1246662,14 @@ }} $rt_nativeThread().push(var$0, var$1, var$2, var$3, var$4, $ptr); } - var nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_0 = $rt_classWithoutFields(); - function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_0__init_0() { - var var_0 = new nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_0(); - nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_0__init_(var_0); + var nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_0 = $rt_classWithoutFields(); + function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_0__init_0() { + var var_0 = new nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_0(); + nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_0__init_(var_0); return var_0; } - function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_0__init_(var$0) {} - function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_0_get(var$0) { + function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_0__init_(var$0) {} + function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_0_get(var$0) { var var$1, var$2, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { @@ -1244288,14 +1246692,14 @@ }} $rt_nativeThread().push(var$0, var$1, var$2, $ptr); } - var nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_1 = $rt_classWithoutFields(); - function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_1__init_0() { - var var_0 = new nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_1(); - nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_1__init_(var_0); + var nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_1 = $rt_classWithoutFields(); + function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_1__init_0() { + var var_0 = new nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_1(); + nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_1__init_(var_0); return var_0; } - function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_1__init_(var$0) {} - function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_1_get(var$0) { + function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_1__init_(var$0) {} + function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_1_get(var$0) { var var$1, var$2, var$3, var$4, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { @@ -1244320,14 +1246724,14 @@ }} $rt_nativeThread().push(var$0, var$1, var$2, var$3, var$4, $ptr); } - var nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_2 = $rt_classWithoutFields(); - function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_2__init_0() { - var var_0 = new nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_2(); - nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_2__init_(var_0); + var nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_2 = $rt_classWithoutFields(); + function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_2__init_0() { + var var_0 = new nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_2(); + nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_2__init_(var_0); return var_0; } - function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_2__init_(var$0) {} - function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_2_get(var$0) { + function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_2__init_(var$0) {} + function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_2_get(var$0) { var var$1, var$2, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { @@ -1244350,14 +1246754,14 @@ }} $rt_nativeThread().push(var$0, var$1, var$2, $ptr); } - var nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_3 = $rt_classWithoutFields(); - function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_3__init_0() { - var var_0 = new nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_3(); - nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_3__init_(var_0); + var nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_3 = $rt_classWithoutFields(); + function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_3__init_0() { + var var_0 = new nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_3(); + nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_3__init_(var_0); return var_0; } - function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_3__init_(var$0) {} - function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_3_get(var$0) { + function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_3__init_(var$0) {} + function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_3_get(var$0) { var var$1, var$2, var$3, var$4, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { @@ -1244382,14 +1246786,14 @@ }} $rt_nativeThread().push(var$0, var$1, var$2, var$3, var$4, $ptr); } - var nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_4 = $rt_classWithoutFields(); - function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_4__init_0() { - var var_0 = new nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_4(); - nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_4__init_(var_0); + var nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_4 = $rt_classWithoutFields(); + function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_4__init_0() { + var var_0 = new nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_4(); + nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_4__init_(var_0); return var_0; } - function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_4__init_(var$0) {} - function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_4_get(var$0) { + function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_4__init_(var$0) {} + function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_4_get(var$0) { var var$1, var$2, var$3, var$4, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { @@ -1244420,14 +1246824,14 @@ }} $rt_nativeThread().push(var$0, var$1, var$2, var$3, var$4, $ptr); } - var nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_5 = $rt_classWithoutFields(); - function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_5__init_0() { - var var_0 = new nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_5(); - nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_5__init_(var_0); + var nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_5 = $rt_classWithoutFields(); + function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_5__init_0() { + var var_0 = new nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_5(); + nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_5__init_(var_0); return var_0; } - function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_5__init_(var$0) {} - function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_5_get(var$0) { + function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_5__init_(var$0) {} + function nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_5_get(var$0) { var var$1, var$2, var$3, var$4, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { @@ -1244455,7 +1246859,7 @@ var jur_IntArrHash = $rt_classWithoutFields(); function nmea_EntityMinecartMobSpawner$1() { nmt_MobSpawnerBaseLogic.call(this); - this.$this$0260 = null; + this.$this$0167 = null; } function nmea_EntityMinecartMobSpawner$1__init_(var_0) { var var_1 = new nmea_EntityMinecartMobSpawner$1(); @@ -1244463,7 +1246867,7 @@ return var_1; } function nmea_EntityMinecartMobSpawner$1__init_0($this, $this$0) { - $this.$this$0260 = $this$0; + $this.$this$0167 = $this$0; nmt_MobSpawnerBaseLogic__init_($this); } function nmea_EntityMinecartMobSpawner$1_func_98267_a($this, $i) { @@ -1244475,7 +1246879,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$2 = $this.$this$0260; + var$2 = $this.$this$0167; var$3 = var$2.$worldObj0; $i = $i << 24 >> 24; $ptr = 1; @@ -1244490,14 +1246894,14 @@ $rt_nativeThread().push($this, $i, var$2, var$3, $ptr); } function nmea_EntityMinecartMobSpawner$1_getSpawnerWorld($this) { - return $this.$this$0260.$worldObj0; + return $this.$this$0167.$worldObj0; } function nmea_EntityMinecartMobSpawner$1_getSpawnerPosition($this) { - return nmu_BlockPos__init_3($this.$this$0260); + return nmu_BlockPos__init_3($this.$this$0167); } function nme_EntityMinecartCommandBlock$1() { nmcs_CommandBlockLogic.call(this); - this.$this$0261 = null; + this.$this$0168 = null; } function nme_EntityMinecartCommandBlock$1__init_0(var_0) { var var_1 = new nme_EntityMinecartCommandBlock$1(); @@ -1244513,7 +1246917,7 @@ } main: while (true) { switch ($ptr) { case 0: - $this.$this$0261 = $this$0; + $this.$this$0168 = $this$0; $ptr = 1; case 1: nmcs_CommandBlockLogic__init_($this); @@ -1244534,7 +1246938,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0261.$dataWatcher; + var$1 = $this.$this$0168.$dataWatcher; var$2 = 23; var$3 = $this.$commandStored; $ptr = 1; @@ -1244543,7 +1246947,7 @@ if ($rt_suspending()) { break main; } - var$3 = $this.$this$0261.$dataWatcher; + var$3 = $this.$this$0168.$dataWatcher; var$2 = 24; var$1 = $this.$lastOutput; $ptr = 2; @@ -1244576,7 +1246980,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$2 = $this.$this$0261.$entityId; + var$2 = $this.$this$0168.$entityId; $ptr = 1; case 1: nmn_PacketBuffer_writeInt($bytebuf, var$2); @@ -1244591,22 +1246995,22 @@ function nme_EntityMinecartCommandBlock$1_getPosition($this) { var var$1, var$2; var$1 = new nmu_BlockPos; - var$2 = $this.$this$0261; + var$2 = $this.$this$0168; nmu_BlockPos__init_0(var$1, var$2.$posX, var$2.$posY + 0.5, var$2.$posZ); return var$1; } function nme_EntityMinecartCommandBlock$1_getPositionVector($this) { var var$1, var$2; var$1 = new nmu_Vec3; - var$2 = $this.$this$0261; + var$2 = $this.$this$0168; nmu_Vec3__init_(var$1, var$2.$posX, var$2.$posY, var$2.$posZ); return var$1; } function nme_EntityMinecartCommandBlock$1_getEntityWorld($this) { - return $this.$this$0261.$worldObj0; + return $this.$this$0168.$worldObj0; } function nme_EntityMinecartCommandBlock$1_getCommandSenderEntity($this) { - return $this.$this$0261; + return $this.$this$0168; } function nmea_EntityAICreeperSwell() { var a = this; nmea_EntityAIBase.call(a); @@ -1244748,7 +1247152,7 @@ var var$6, var$7; var$6 = cgcb_Predicates_alwaysTrue(); var$7 = new nmea_EntityAIAvoidEntity$1; - var$7.$this$0262 = $this; + var$7.$this$0169 = $this; $this.$canBeSeenSelector = var$7; $this.$theEntity12 = $parEntityCreature; $this.$field_181064_i = $parClass1; @@ -1245748,7 +1248152,7 @@ $this.$field_179434_b = $parEntityLiving; if (!($parEntityLiving instanceof nme_EntityCreature)) { var$2 = new nmea_EntityAIFindEntityNearestPlayer$1; - var$2.$this$0263 = $this; + var$2.$this$0170 = $this; $this.$field_179435_c = var$2; $this.$field_179432_d = nmea_EntityAINearestAttackableTarget$Sorter__init_($parEntityLiving); return; @@ -1245762,7 +1248166,7 @@ break main; } var$2 = new nmea_EntityAIFindEntityNearestPlayer$1; - var$2.$this$0263 = $this; + var$2.$this$0170 = $this; $this.$field_179435_c = var$2; $this.$field_179432_d = nmea_EntityAINearestAttackableTarget$Sorter__init_($parEntityLiving); return; @@ -1247071,10 +1249475,7 @@ }} $rt_nativeThread().push($this, $iattributeinstance, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, $ptr); } - function nmem_EntityEnderman$1() { - jl_Object.call(this); - this.$this$054 = null; - } + var nmem_EntityEnderman$1 = $rt_classWithoutFields(); function nmem_EntityEnderman$1_apply($this, var$1) { return var$1.$playerSpawned; } @@ -1248518,10 +1250919,7 @@ function nmea_EntityAIControlledByPlayer_isStairOrSlab($this, $blockIn) { return !($blockIn instanceof nmb_BlockStairs) && !($blockIn instanceof nmb_BlockSlab) ? 0 : 1; } - function nmep_EntitySheep$1() { - nmi_Container.call(this); - this.$this$052 = null; - } + var nmep_EntitySheep$1 = $rt_classWithoutFields(nmi_Container); function nmea_EntityAIEatGrass() { var a = this; nmea_EntityAIBase.call(a); a.$grassEaterEntity = null; @@ -1249688,13 +1252086,13 @@ nmea_EntityAINearestAttackableTarget.call(this); this.$theTameable = null; } - function nmea_EntityAITargetNonTamed__init_0(var_0, var_1, var_2, var_3) { + function nmea_EntityAITargetNonTamed__init_(var_0, var_1, var_2, var_3) { var var_4 = new nmea_EntityAITargetNonTamed(); - nmea_EntityAITargetNonTamed__init_(var_4, var_0, var_1, var_2, var_3); + nmea_EntityAITargetNonTamed__init_0(var_4, var_0, var_1, var_2, var_3); return var_4; } - function nmea_EntityAITargetNonTamed__init_($this, $entityIn, $classTarget, $checkSight, $targetSelector) { - nmea_EntityAINearestAttackableTarget__init_1($this, $entityIn, $classTarget, 10, $checkSight, 0, $targetSelector); + function nmea_EntityAITargetNonTamed__init_0($this, $entityIn, $classTarget, $checkSight, $targetSelector) { + nmea_EntityAINearestAttackableTarget__init_2($this, $entityIn, $classTarget, 10, $checkSight, 0, $targetSelector); $this.$theTameable = $entityIn; } function nmea_EntityAITargetNonTamed_shouldExecute($this) { @@ -1249728,10 +1252126,7 @@ }} $rt_nativeThread().push($this, var$1, var$2, $ptr); } - function nmep_EntityWolf$1() { - jl_Object.call(this); - this.$this$046 = null; - } + var nmep_EntityWolf$1 = $rt_classWithoutFields(); function nmep_EntityWolf$1_apply($this, var$1) { return !(var$1 instanceof nmep_EntitySheep) && !(var$1 instanceof nmep_EntityRabbit) ? 0 : 1; } @@ -1250533,7 +1252928,6 @@ var a = this; nmea_EntityJumpHelper.call(a); a.$theEntity2 = null; a.$field_180068_d = 0; - a.$this$053 = null; } function nmep_EntityRabbit$RabbitJumpHelper_doJump($this) { var var$1, var$2, $ptr, $tmp; @@ -1250883,7 +1253277,7 @@ var a = this; jl_Object.call(a); a.$val$parPredicate = null; a.$val$creature = null; - a.$this$056 = null; + a.$this$032 = null; } function nmem_EntityIronGolem$AINearestAttackableTargetNonCreeper$1_apply($this, var$1) { var var$2, var$3, var$4, var$5, $ptr, $tmp; @@ -1250903,11 +1253297,11 @@ if (var$1 instanceof nmem_EntityCreeper) return 0; if (var$1 instanceof nmep_EntityPlayer) { - var$2 = $this.$this$056; + var$2 = $this.$this$032; $ptr = 3; continue main; } - var$2 = $this.$this$056; + var$2 = $this.$this$032; var$3 = 0; $ptr = 2; continue main; @@ -1250922,11 +1253316,11 @@ else { if (!(var$1 instanceof nmem_EntityCreeper)) { if (var$1 instanceof nmep_EntityPlayer) { - var$2 = $this.$this$056; + var$2 = $this.$this$032; $ptr = 3; continue main; } - var$2 = $this.$this$056; + var$2 = $this.$this$032; var$3 = 0; $ptr = 2; continue main; @@ -1250971,7 +1253365,7 @@ } if (nme_Entity_getDistanceToEntity(var$1, $this.$val$creature) > var$4) return 0; - var$2 = $this.$this$056; + var$2 = $this.$this$032; var$3 = 0; $ptr = 2; continue main; @@ -1251883,7 +1254277,7 @@ a.$presetSkinId = 0; a.$customSkin = null; a.$lastCacheHit0 = Long_ZERO; - a.$this$0189 = null; + a.$this$0120 = null; } function nlevp_ServerSkinCache$SkinCacheEntry__init_1(var_0, var_1, var_2, var_3) { var var_4 = new nlevp_ServerSkinCache$SkinCacheEntry(); @@ -1251904,7 +1254298,7 @@ } main: while (true) { switch ($ptr) { case 0: - $this.$this$0189 = $this$0; + $this.$this$0120 = $this$0; $this.$lastCacheHit0 = jl_System_currentTimeMillis(); $this.$isPresetSkin = 0; $this.$presetSkinId = (-1); @@ -1251922,7 +1254316,7 @@ $rt_nativeThread().push($this, $this$0, $textureInstance, $resourceLocation, $model, $ptr); } function nlevp_ServerSkinCache$SkinCacheEntry__init_2($this, $this$0, $presetSkinId) { - $this.$this$0189 = $this$0; + $this.$this$0120 = $this$0; $this.$lastCacheHit0 = jl_System_currentTimeMillis(); $this.$isPresetSkin = 1; $this.$presetSkinId = $presetSkinId; @@ -1252011,7 +1254405,7 @@ case 0: if ($this.$isPresetSkin) return; - var$1 = $this.$this$0189.$textureManager1; + var$1 = $this.$this$0120.$textureManager1; var$2 = $this.$customSkin.$resourceLocation3; $ptr = 1; case 1: @@ -1252030,7 +1254424,7 @@ a.$presetCapeId = 0; a.$customCape = null; a.$lastCacheHit = Long_ZERO; - a.$this$0190 = null; + a.$this$0121 = null; } function nlevp_ServerCapeCache$CapeCacheEntry__init_1(var_0, var_1, var_2) { var var_3 = new nlevp_ServerCapeCache$CapeCacheEntry(); @@ -1252051,7 +1254445,7 @@ } main: while (true) { switch ($ptr) { case 0: - $this.$this$0190 = $this$0; + $this.$this$0121 = $this$0; $this.$lastCacheHit = jl_System_currentTimeMillis(); $this.$isPresetCape = 0; $this.$presetCapeId = (-1); @@ -1252069,7 +1254463,7 @@ $rt_nativeThread().push($this, $this$0, $textureInstance, $resourceLocation, $ptr); } function nlevp_ServerCapeCache$CapeCacheEntry__init_2($this, $this$0, $presetSkinId) { - $this.$this$0190 = $this$0; + $this.$this$0121 = $this$0; $this.$lastCacheHit = jl_System_currentTimeMillis(); $this.$isPresetCape = 1; $this.$presetCapeId = $presetSkinId; @@ -1252087,7 +1254481,7 @@ if (!$this.$isPresetCape) { var$1 = $this.$customCape.$resourceLocation2; if (var$1 !== null) { - var$2 = $this.$this$0190.$textureManager2; + var$2 = $this.$this$0121.$textureManager2; $ptr = 1; continue main; } @@ -1252105,7 +1254499,7 @@ } function nmea_EntityAIFindEntityNearestPlayer$1() { jl_Object.call(this); - this.$this$0263 = null; + this.$this$0170 = null; } function nmea_EntityAIFindEntityNearestPlayer$1_apply($this, var$1) { var var$2, var$3, var$4, var$5, var$6, var$7, $ptr, $tmp; @@ -1252121,7 +1254515,7 @@ else { var$3 = var$1; if (!var$3.$capabilities.$disableDamage) { - var$4 = $this.$this$0263; + var$4 = $this.$this$0170; $ptr = 1; continue main; } @@ -1252156,9 +1254550,9 @@ var$6 = 0.10000000149011612; var$5 = var$5 * 0.699999988079071 * var$6; } - if (nme_Entity_getDistanceToEntity(var$1, $this.$this$0263.$field_179434_b) > var$5) + if (nme_Entity_getDistanceToEntity(var$1, $this.$this$0170.$field_179434_b) > var$5) return 0; - var$3 = $this.$this$0263.$field_179434_b; + var$3 = $this.$this$0170.$field_179434_b; var$1 = var$1; var$7 = 0; var$2 = 1; @@ -1252195,7 +1254589,7 @@ } function nmea_EntityAIFindEntityNearest$1() { jl_Object.call(this); - this.$this$047 = null; + this.$this$027 = null; } function nmea_EntityAIFindEntityNearest$1_apply($this, var$1) { var var$2, var$3, var$4, var$5, $ptr, $tmp; @@ -1252207,7 +1254601,7 @@ main: while (true) { switch ($ptr) { case 0: var$1 = var$1; - var$2 = $this.$this$047; + var$2 = $this.$this$027; $ptr = 1; case 1: $tmp = nmea_EntityAIFindEntityNearest_func_179438_f(var$2); @@ -1252234,8 +1254628,8 @@ if (var$4) var$4 = 0; else { - if (nme_Entity_getDistanceToEntity(var$1, $this.$this$047.$field_179442_b) <= var$3) { - var$2 = $this.$this$047.$field_179442_b; + if (nme_Entity_getDistanceToEntity(var$1, $this.$this$027.$field_179442_b) <= var$3) { + var$2 = $this.$this$027.$field_179442_b; var$5 = 0; var$4 = 1; $ptr = 4; @@ -1252258,7 +1254652,7 @@ function nmea_EntityAINearestAttackableTarget$1() { var a = this; jl_Object.call(a); a.$val$targetSelector = null; - a.$this$0258 = null; + a.$this$0165 = null; } function nmea_EntityAINearestAttackableTarget$1_apply($this, var$1) { var var$2, var$3, var$4, var$5, $ptr, $tmp; @@ -1252276,11 +1254670,11 @@ continue main; } if (var$1 instanceof nmep_EntityPlayer) { - var$2 = $this.$this$0258; + var$2 = $this.$this$0165; $ptr = 3; continue main; } - var$2 = $this.$this$0258; + var$2 = $this.$this$0165; var$3 = 0; $ptr = 2; continue main; @@ -1252293,11 +1254687,11 @@ if (!var$3) return 0; if (var$1 instanceof nmep_EntityPlayer) { - var$2 = $this.$this$0258; + var$2 = $this.$this$0165; $ptr = 3; continue main; } - var$2 = $this.$this$0258; + var$2 = $this.$this$0165; var$3 = 0; $ptr = 2; case 2: @@ -1252335,9 +1254729,9 @@ var$5 = 0.10000000149011612; var$4 = var$4 * 0.699999988079071 * var$5; } - if (nme_Entity_getDistanceToEntity(var$1, $this.$this$0258.$taskOwner) > var$4) + if (nme_Entity_getDistanceToEntity(var$1, $this.$this$0165.$taskOwner) > var$4) return 0; - var$2 = $this.$this$0258; + var$2 = $this.$this$0165; var$3 = 0; $ptr = 2; continue main; @@ -1253618,7 +1256012,7 @@ } function nmea_EntityAIAvoidEntity$1() { jl_Object.call(this); - this.$this$0262 = null; + this.$this$0169 = null; } function nmea_EntityAIAvoidEntity$1_apply($this, var$1) { var var$2, var$3, $ptr, $tmp; @@ -1253639,7 +1256033,7 @@ var$2 = $tmp; if (!var$2) return 0; - var$3 = $this.$this$0262.$theEntity12.$senses; + var$3 = $this.$this$0169.$theEntity12.$senses; $ptr = 2; case 2: $tmp = nmea_EntitySenses_canSee(var$3, var$1); @@ -1253771,8 +1256165,6 @@ } $is = new jl_IllegalArgumentException; var$3 = $this.$blockstate; - var$5 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$5); $ptr = 3; continue main; case 2: @@ -1253782,25 +1256174,41 @@ } return $this; case 3: + $tmp = jl_String_valueOf(var$3); + if ($rt_suspending()) { + break main; + } + var$3 = $tmp; + $ptr = 4; + case 4: + $tmp = jl_String_valueOf($property); + if ($rt_suspending()) { + break main; + } + $property = $tmp; + var$5 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$5); + $ptr = 5; + case 5: jl_AbstractStringBuilder_append(var$5, var$3); if ($rt_suspending()) { break main; } var$3 = $rt_s(9024); - $ptr = 4; - case 4: + $ptr = 6; + case 6: jl_AbstractStringBuilder_append(var$5, var$3); if ($rt_suspending()) { break main; } - $ptr = 5; - case 5: + $ptr = 7; + case 7: jl_AbstractStringBuilder_append(var$5, $property); if ($rt_suspending()) { break main; } - $ptr = 6; - case 6: + $ptr = 8; + case 8: $tmp = jl_AbstractStringBuilder_toString(var$5); if ($rt_suspending()) { break main; @@ -1253860,24 +1256268,31 @@ main: while (true) { switch ($ptr) { case 0: var$1 = $this.$target1; + $ptr = 1; + case 1: + $tmp = jl_String_valueOf(var$1); + if ($rt_suspending()) { + break main; + } + var$1 = $tmp; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); var$3 = $rt_s(9025); - $ptr = 1; - case 1: + $ptr = 2; + case 2: jl_AbstractStringBuilder_append(var$2, var$3); if ($rt_suspending()) { break main; } - $ptr = 2; - case 2: + $ptr = 3; + case 3: jl_AbstractStringBuilder_append(var$2, var$1); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append0(var$2, 41); - $ptr = 3; - case 3: + $ptr = 4; + case 4: $tmp = jl_AbstractStringBuilder_toString(var$2); if ($rt_suspending()) { break main; @@ -1253935,6 +1256350,1924 @@ function nmv_MerchantRecipe_isRecipeDisabled($this) { return $this.$toolUses < $this.$maxTradeUses ? 0 : 1; } + function nmcp_EntityReddustFX() { + nmcp_EntityFX.call(this); + this.$reddustParticleScale = 0.0; + } + function nmcp_EntityReddustFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5) { + var var$9, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$9 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$entity = $thread.pop();$worldrenderer = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + var$9 = nmu_MathHelper_clamp_float(($this.$particleAge + $f) / $this.$particleMaxAge * 32.0, 0.0, 1.0); + $this.$particleScale = $this.$reddustParticleScale * var$9; + $ptr = 1; + case 1: + nmcp_EntityFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5, var$9, $ptr); + } + function nmcp_EntityReddustFX_onUpdate($this) { + var var$1, var$2, var$3, var$4, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $this.$prevPosX = $this.$posX; + $this.$prevPosY = $this.$posY; + $this.$prevPosZ = $this.$posZ; + var$1 = $this.$particleAge; + $this.$particleAge = var$1 + 1 | 0; + if (var$1 >= $this.$particleMaxAge) { + $ptr = 2; + continue main; + } + nmcp_EntityFX_setParticleTextureIndex($this, 7 - (($this.$particleAge * 8 | 0) / $this.$particleMaxAge | 0) | 0); + var$2 = $this.$motionX; + var$3 = $this.$motionY; + var$4 = $this.$motionZ; + $ptr = 1; + case 1: + nme_Entity_moveEntity($this, var$2, var$3, var$4); + if ($rt_suspending()) { + break main; + } + if ($this.$posY === $this.$prevPosY) { + $this.$motionX = $this.$motionX * 1.1; + $this.$motionZ = $this.$motionZ * 1.1; + } + var$2 = $this.$motionX * 0.9599999785423279; + $this.$motionX = var$2; + $this.$motionY = $this.$motionY * 0.9599999785423279; + var$3 = $this.$motionZ * 0.9599999785423279; + $this.$motionZ = var$3; + if ($this.$onGround) { + $this.$motionX = var$2 * 0.699999988079071; + $this.$motionZ = var$3 * 0.699999988079071; + } + return; + case 2: + nme_Entity_setDead($this); + if ($rt_suspending()) { + break main; + } + nmcp_EntityFX_setParticleTextureIndex($this, 7 - (($this.$particleAge * 8 | 0) / $this.$particleMaxAge | 0) | 0); + var$2 = $this.$motionX; + var$3 = $this.$motionY; + var$4 = $this.$motionZ; + $ptr = 1; + continue main; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); + } + var nlevsr_RelayQuery = $rt_classWithoutFields(0); + var nmcp_Barrier = $rt_classWithoutFields(nmcp_EntityFX); + function nmcp_Barrier_getFXLayer($this) { + return 1; + } + function nmcp_Barrier_renderParticle($this, $worldRendererIn, $entityIn, $partialTicks, $parFloat2, $parFloat3, $parFloat4, $parFloat5, $parFloat6) { + var $f, $f1, $f2, $f3, var$13, var$14, var$15, $f5, $f6, $f7, $i, $j, $k, var$22, var$23, var$24, var$25, var$26, var$27, var$28, var$29, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$29 = $thread.pop();var$28 = $thread.pop();var$27 = $thread.pop();var$26 = $thread.pop();var$25 = $thread.pop();var$24 = $thread.pop();var$23 = $thread.pop();var$22 = $thread.pop();$k = $thread.pop();$j = $thread.pop();$i = $thread.pop();$f7 = $thread.pop();$f6 = $thread.pop();$f5 = $thread.pop();var$15 = $thread.pop();var$14 = $thread.pop();var$13 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$parFloat6 = $thread.pop();$parFloat5 + = $thread.pop();$parFloat4 = $thread.pop();$parFloat3 = $thread.pop();$parFloat2 = $thread.pop();$partialTicks = $thread.pop();$entityIn = $thread.pop();$worldRendererIn = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $entityIn = $this.$particleIcon; + $f = $entityIn.$minU; + $f1 = $entityIn.$maxU; + $f2 = $entityIn.$minV; + $f3 = $entityIn.$maxV; + var$13 = $this.$prevPosX; + var$14 = $this.$posX - var$13; + var$15 = $partialTicks; + $f5 = var$13 + var$14 * var$15 - nmcp_EntityFX_interpPosX; + var$13 = $this.$prevPosY; + $f6 = var$13 + ($this.$posY - var$13) * var$15 - nmcp_EntityFX_interpPosY; + var$13 = $this.$prevPosZ; + $f7 = var$13 + ($this.$posZ - var$13) * var$15 - nmcp_EntityFX_interpPosZ; + $ptr = 1; + case 1: + $tmp = nme_Entity_getBrightnessForRender($this, $partialTicks); + if ($rt_suspending()) { + break main; + } + $i = $tmp; + $j = $i >> 16 & 65535; + $k = $i & 65535; + var$22 = $parFloat2 * 0.5; + var$23 = $f5 - var$22; + var$24 = $parFloat5 * 0.5; + var$14 = var$23 - var$24; + var$25 = $parFloat3 * 0.5; + var$26 = $f6 - var$25; + var$27 = $parFloat4 * 0.5; + $parFloat5 = $f7 - var$27; + $parFloat2 = $parFloat6 * 0.5; + var$13 = $parFloat5 - $parFloat2; + $ptr = 2; + case 2: + $tmp = nlevo_WorldRenderer_pos($worldRendererIn, var$14, var$26, var$13); + if ($rt_suspending()) { + break main; + } + $entityIn = $tmp; + var$14 = $f1; + var$15 = $f3; + $ptr = 3; + case 3: + $tmp = nlevo_WorldRenderer_tex($entityIn, var$14, var$15); + if ($rt_suspending()) { + break main; + } + $entityIn = $tmp; + $partialTicks = $this.$particleRed; + $parFloat3 = $this.$particleGreen; + $parFloat4 = $this.$particleBlue; + $parFloat6 = 1.0; + $ptr = 4; + case 4: + $tmp = nlevo_WorldRenderer_color0($entityIn, $partialTicks, $parFloat3, $parFloat4, $parFloat6); + if ($rt_suspending()) { + break main; + } + $entityIn = $tmp; + $ptr = 5; + case 5: + $tmp = nlevo_WorldRenderer_lightmap($entityIn, $j, $k); + if ($rt_suspending()) { + break main; + } + $entityIn = $tmp; + $ptr = 6; + case 6: + nlevo_WorldRenderer_endVertex($entityIn); + if ($rt_suspending()) { + break main; + } + var$13 = var$23 + var$24; + var$28 = $f6 + var$25; + var$29 = $parFloat5 + $parFloat2; + $ptr = 7; + case 7: + $tmp = nlevo_WorldRenderer_pos($worldRendererIn, var$13, var$28, var$29); + if ($rt_suspending()) { + break main; + } + $entityIn = $tmp; + var$13 = $f2; + $ptr = 8; + case 8: + $tmp = nlevo_WorldRenderer_tex($entityIn, var$14, var$13); + if ($rt_suspending()) { + break main; + } + $entityIn = $tmp; + $partialTicks = $this.$particleRed; + $parFloat3 = $this.$particleGreen; + $parFloat4 = $this.$particleBlue; + $parFloat5 = 1.0; + $ptr = 9; + case 9: + $tmp = nlevo_WorldRenderer_color0($entityIn, $partialTicks, $parFloat3, $parFloat4, $parFloat5); + if ($rt_suspending()) { + break main; + } + $entityIn = $tmp; + $ptr = 10; + case 10: + $tmp = nlevo_WorldRenderer_lightmap($entityIn, $j, $k); + if ($rt_suspending()) { + break main; + } + $entityIn = $tmp; + $ptr = 11; + case 11: + nlevo_WorldRenderer_endVertex($entityIn); + if ($rt_suspending()) { + break main; + } + $partialTicks = $f5 + var$22; + var$14 = $partialTicks + var$24; + $parFloat3 = $f7 + var$27; + var$29 = $parFloat3 + $parFloat2; + $ptr = 12; + case 12: + $tmp = nlevo_WorldRenderer_pos($worldRendererIn, var$14, var$28, var$29); + if ($rt_suspending()) { + break main; + } + $entityIn = $tmp; + var$14 = $f; + $ptr = 13; + case 13: + $tmp = nlevo_WorldRenderer_tex($entityIn, var$14, var$13); + if ($rt_suspending()) { + break main; + } + $entityIn = $tmp; + $parFloat4 = $this.$particleRed; + $parFloat5 = $this.$particleGreen; + $parFloat6 = $this.$particleBlue; + $f5 = 1.0; + $ptr = 14; + case 14: + $tmp = nlevo_WorldRenderer_color0($entityIn, $parFloat4, $parFloat5, $parFloat6, $f5); + if ($rt_suspending()) { + break main; + } + $entityIn = $tmp; + $ptr = 15; + case 15: + $tmp = nlevo_WorldRenderer_lightmap($entityIn, $j, $k); + if ($rt_suspending()) { + break main; + } + $entityIn = $tmp; + $ptr = 16; + case 16: + nlevo_WorldRenderer_endVertex($entityIn); + if ($rt_suspending()) { + break main; + } + var$28 = $partialTicks - var$24; + var$13 = $parFloat3 - $parFloat2; + $ptr = 17; + case 17: + $tmp = nlevo_WorldRenderer_pos($worldRendererIn, var$28, var$26, var$13); + if ($rt_suspending()) { + break main; + } + $worldRendererIn = $tmp; + $ptr = 18; + case 18: + $tmp = nlevo_WorldRenderer_tex($worldRendererIn, var$14, var$15); + if ($rt_suspending()) { + break main; + } + $worldRendererIn = $tmp; + $partialTicks = $this.$particleRed; + $parFloat2 = $this.$particleGreen; + $parFloat3 = $this.$particleBlue; + $parFloat4 = 1.0; + $ptr = 19; + case 19: + $tmp = nlevo_WorldRenderer_color0($worldRendererIn, $partialTicks, $parFloat2, $parFloat3, $parFloat4); + if ($rt_suspending()) { + break main; + } + $worldRendererIn = $tmp; + $ptr = 20; + case 20: + $tmp = nlevo_WorldRenderer_lightmap($worldRendererIn, $j, $k); + if ($rt_suspending()) { + break main; + } + $worldRendererIn = $tmp; + $ptr = 21; + case 21: + nlevo_WorldRenderer_endVertex($worldRendererIn); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $worldRendererIn, $entityIn, $partialTicks, $parFloat2, $parFloat3, $parFloat4, $parFloat5, $parFloat6, $f, $f1, $f2, $f3, var$13, var$14, var$15, $f5, $f6, $f7, $i, $j, $k, var$22, var$23, var$24, var$25, var$26, var$27, var$28, var$29, $ptr); + } + function nmcp_Barrier_renderAccelerated($this, $accelerator, $var2, $f, $f1, $f2, $f3, $f4, $f5) { + var var$9, var$10, var$11, var$12, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$var2 = $thread.pop();$accelerator = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $var2 = $this.$particleIcon; + var$9 = $var2.$originX; + var$10 = $var2.$originY; + $ptr = 1; + case 1: + $tmp = nme_Entity_getBrightnessForRender($this, $f); + if ($rt_suspending()) { + break main; + } + var$11 = $tmp; + $var2 = $this.$particleIcon; + var$12 = jl_Math_min($var2.$width9, $var2.$height9); + $f = 0.5; + $f1 = $this.$particleRed; + $f2 = $this.$particleGreen; + $f3 = $this.$particleBlue; + $f4 = $this.$particleAlpha; + $ptr = 2; + case 2: + $accelerator.$drawParticle($this, var$9, var$10, var$11, var$12, $f, $f1, $f2, $f3, $f4); + if ($rt_suspending()) { + break main; + } + return 1; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $accelerator, $var2, $f, $f1, $f2, $f3, $f4, $f5, var$9, var$10, var$11, var$12, $ptr); + } + function nmcp_EntitySnowShovelFX() { + nmcp_EntityFX.call(this); + this.$snowDigParticleScale = 0.0; + } + function nmcp_EntitySnowShovelFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5) { + var var$9, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$9 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$entity = $thread.pop();$worldrenderer = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + var$9 = nmu_MathHelper_clamp_float(($this.$particleAge + $f) / $this.$particleMaxAge * 32.0, 0.0, 1.0); + $this.$particleScale = $this.$snowDigParticleScale * var$9; + $ptr = 1; + case 1: + nmcp_EntityFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5, var$9, $ptr); + } + function nmcp_EntitySnowShovelFX_onUpdate($this) { + var var$1, var$2, var$3, var$4, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $this.$prevPosX = $this.$posX; + $this.$prevPosY = $this.$posY; + $this.$prevPosZ = $this.$posZ; + var$1 = $this.$particleAge; + $this.$particleAge = var$1 + 1 | 0; + if (var$1 >= $this.$particleMaxAge) { + $ptr = 2; + continue main; + } + nmcp_EntityFX_setParticleTextureIndex($this, 7 - (($this.$particleAge * 8 | 0) / $this.$particleMaxAge | 0) | 0); + var$2 = $this.$motionY - 0.03; + $this.$motionY = var$2; + var$3 = $this.$motionX; + var$4 = $this.$motionZ; + $ptr = 1; + case 1: + nme_Entity_moveEntity($this, var$3, var$2, var$4); + if ($rt_suspending()) { + break main; + } + var$2 = $this.$motionX * 0.9900000095367432; + $this.$motionX = var$2; + $this.$motionY = $this.$motionY * 0.9900000095367432; + var$3 = $this.$motionZ * 0.9900000095367432; + $this.$motionZ = var$3; + if ($this.$onGround) { + $this.$motionX = var$2 * 0.699999988079071; + $this.$motionZ = var$3 * 0.699999988079071; + } + return; + case 2: + nme_Entity_setDead($this); + if ($rt_suspending()) { + break main; + } + nmcp_EntityFX_setParticleTextureIndex($this, 7 - (($this.$particleAge * 8 | 0) / $this.$particleMaxAge | 0) | 0); + var$2 = $this.$motionY - 0.03; + $this.$motionY = var$2; + var$3 = $this.$motionX; + var$4 = $this.$motionZ; + $ptr = 1; + continue main; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); + } + var nmcp_EntityBlockDustFX = $rt_classWithoutFields(nmcp_EntityDiggingFX); + var nmcp_EntityExplodeFX = $rt_classWithoutFields(nmcp_EntityFX); + function nmcp_EntityExplodeFX_onUpdate($this) { + var var$1, var$2, var$3, var$4, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $this.$prevPosX = $this.$posX; + $this.$prevPosY = $this.$posY; + $this.$prevPosZ = $this.$posZ; + var$1 = $this.$particleAge; + $this.$particleAge = var$1 + 1 | 0; + if (var$1 >= $this.$particleMaxAge) { + $ptr = 2; + continue main; + } + nmcp_EntityFX_setParticleTextureIndex($this, 7 - (($this.$particleAge * 8 | 0) / $this.$particleMaxAge | 0) | 0); + var$2 = $this.$motionY + 0.004; + $this.$motionY = var$2; + var$3 = $this.$motionX; + var$4 = $this.$motionZ; + $ptr = 1; + case 1: + nme_Entity_moveEntity($this, var$3, var$2, var$4); + if ($rt_suspending()) { + break main; + } + var$2 = $this.$motionX * 0.8999999761581421; + $this.$motionX = var$2; + $this.$motionY = $this.$motionY * 0.8999999761581421; + var$3 = $this.$motionZ * 0.8999999761581421; + $this.$motionZ = var$3; + if ($this.$onGround) { + $this.$motionX = var$2 * 0.699999988079071; + $this.$motionZ = var$3 * 0.699999988079071; + } + return; + case 2: + nme_Entity_setDead($this); + if ($rt_suspending()) { + break main; + } + nmcp_EntityFX_setParticleTextureIndex($this, 7 - (($this.$particleAge * 8 | 0) / $this.$particleMaxAge | 0) | 0); + var$2 = $this.$motionY + 0.004; + $this.$motionY = var$2; + var$3 = $this.$motionX; + var$4 = $this.$motionZ; + $ptr = 1; + continue main; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); + } + function nmcp_EntitySpellParticleFX() { + nmcp_EntityFX.call(this); + this.$baseSpellTextureIndex = 0; + } + var nmcp_EntitySpellParticleFX_RANDOM = null; + var nmcp_EntitySpellParticleFX_$clinitCalled = false; + function nmcp_EntitySpellParticleFX_$callClinit() { + var $ptr = 0; + if ($rt_resuming()) { + $ptr = $rt_nativeThread().pop(); + } else if (nmcp_EntitySpellParticleFX_$clinitCalled) { + return; + } + main: while (true) { switch ($ptr) { + case 0: + nmcp_EntitySpellParticleFX_$clinitCalled = true; + $ptr = 1; + case 1: + nmcp_EntitySpellParticleFX__clinit_(); + if ($rt_suspending()) { + break main; + } + nmcp_EntitySpellParticleFX_$callClinit = $rt_eraseClinit(nmcp_EntitySpellParticleFX); + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($ptr); + } + function nmcp_EntitySpellParticleFX__init_0(var_0, var_1, var_2, var_3, var_4, var_5, var_6) { + var var_7 = new nmcp_EntitySpellParticleFX(); + nmcp_EntitySpellParticleFX__init_(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); + return var_7; + } + function nmcp_EntitySpellParticleFX__init_($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, $parDouble1, $parDouble2, $parDouble3) { + var var$8, var$9, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();$parDouble3 = $thread.pop();$parDouble2 = $thread.pop();$parDouble1 = $thread.pop();$zCoordIn = $thread.pop();$yCoordIn = $thread.pop();$xCoordIn = $thread.pop();$worldIn = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + nmcp_EntitySpellParticleFX_$callClinit(); + if ($rt_suspending()) { + break main; + } + var$8 = 0.5 - nlev_EaglercraftRandom_nextDouble(nmcp_EntitySpellParticleFX_RANDOM); + var$9 = 0.5 - nlev_EaglercraftRandom_nextDouble(nmcp_EntitySpellParticleFX_RANDOM); + $ptr = 2; + case 2: + nmcp_EntityFX__init_($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, var$8, $parDouble2, var$9); + if ($rt_suspending()) { + break main; + } + $this.$baseSpellTextureIndex = 128; + $this.$motionY = $this.$motionY * 0.20000000298023224; + if ($parDouble1 === 0.0 && $parDouble3 === 0.0) { + $this.$motionX = $this.$motionX * 0.10000000149011612; + $this.$motionZ = $this.$motionZ * 0.10000000149011612; + } + $this.$particleScale = $this.$particleScale * 0.75; + $this.$particleMaxAge = 8.0 / (jl_Math_random() * 0.8 + 0.2) | 0; + $this.$noClip = 0; + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, $parDouble1, $parDouble2, $parDouble3, var$8, var$9, $ptr); + } + function nmcp_EntitySpellParticleFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5) { + var $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$entity = $thread.pop();$worldrenderer = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + nmu_MathHelper_clamp_float(($this.$particleAge + $f) / $this.$particleMaxAge * 32.0, 0.0, 1.0); + $ptr = 1; + case 1: + nmcp_EntityFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5, $ptr); + } + function nmcp_EntitySpellParticleFX_onUpdate($this) { + var var$1, var$2, var$3, var$4, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $this.$prevPosX = $this.$posX; + $this.$prevPosY = $this.$posY; + $this.$prevPosZ = $this.$posZ; + var$1 = $this.$particleAge; + $this.$particleAge = var$1 + 1 | 0; + if (var$1 >= $this.$particleMaxAge) { + $ptr = 2; + continue main; + } + nmcp_EntityFX_setParticleTextureIndex($this, $this.$baseSpellTextureIndex + (7 - (($this.$particleAge * 8 | 0) / $this.$particleMaxAge | 0) | 0) | 0); + var$2 = $this.$motionY + 0.004; + $this.$motionY = var$2; + var$3 = $this.$motionX; + var$4 = $this.$motionZ; + $ptr = 1; + case 1: + nme_Entity_moveEntity($this, var$3, var$2, var$4); + if ($rt_suspending()) { + break main; + } + if ($this.$posY === $this.$prevPosY) { + $this.$motionX = $this.$motionX * 1.1; + $this.$motionZ = $this.$motionZ * 1.1; + } + var$2 = $this.$motionX * 0.9599999785423279; + $this.$motionX = var$2; + $this.$motionY = $this.$motionY * 0.9599999785423279; + var$3 = $this.$motionZ * 0.9599999785423279; + $this.$motionZ = var$3; + if ($this.$onGround) { + $this.$motionX = var$2 * 0.699999988079071; + $this.$motionZ = var$3 * 0.699999988079071; + } + return; + case 2: + nme_Entity_setDead($this); + if ($rt_suspending()) { + break main; + } + nmcp_EntityFX_setParticleTextureIndex($this, $this.$baseSpellTextureIndex + (7 - (($this.$particleAge * 8 | 0) / $this.$particleMaxAge | 0) | 0) | 0); + var$2 = $this.$motionY + 0.004; + $this.$motionY = var$2; + var$3 = $this.$motionX; + var$4 = $this.$motionZ; + $ptr = 1; + continue main; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); + } + function nmcp_EntitySpellParticleFX__clinit_() { + var var$1, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$1 = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + var$1 = new nlev_EaglercraftRandom; + $ptr = 1; + case 1: + nlev_EaglercraftRandom__init_(var$1); + if ($rt_suspending()) { + break main; + } + nmcp_EntitySpellParticleFX_RANDOM = var$1; + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push(var$1, $ptr); + } + function nmcp_EntityHugeExplodeFX() { + var a = this; nmcp_EntityFX.call(a); + a.$timeSinceStart = 0; + a.$maximumTime = 0; + } + function nmcp_EntityHugeExplodeFX_renderParticle($this, $var1, $var2, $var3, $var4, $var5, $var6, $var7, $var8) {} + function nmcp_EntityHugeExplodeFX_onUpdate($this) { + var $i, $d0, $d1, $d2, var$5, var$6, var$7, var$8, var$9, var$10, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();$d2 = $thread.pop();$d1 = $thread.pop();$d0 = $thread.pop();$i = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $i = 0; + if ($i >= 6) { + $i = $this.$timeSinceStart + 1 | 0; + $this.$timeSinceStart = $i; + if ($i != $this.$maximumTime) + return; + $ptr = 3; + continue main; + } + $d0 = $this.$posX + (nlev_EaglercraftRandom_nextDouble($this.$rand1) - nlev_EaglercraftRandom_nextDouble($this.$rand1)) * 4.0; + $d1 = $this.$posY + (nlev_EaglercraftRandom_nextDouble($this.$rand1) - nlev_EaglercraftRandom_nextDouble($this.$rand1)) * 4.0; + $d2 = $this.$posZ + (nlev_EaglercraftRandom_nextDouble($this.$rand1) - nlev_EaglercraftRandom_nextDouble($this.$rand1)) * 4.0; + var$5 = $this.$worldObj0; + $ptr = 1; + case 1: + nmu_EnumParticleTypes_$callClinit(); + if ($rt_suspending()) { + break main; + } + var$6 = nmu_EnumParticleTypes_EXPLOSION_LARGE; + var$7 = $this.$timeSinceStart / $this.$maximumTime; + var$8 = 0.0; + var$9 = 0.0; + var$10 = $rt_createIntArray(0); + $ptr = 2; + case 2: + nmw_World_spawnParticle(var$5, var$6, $d0, $d1, $d2, var$7, var$8, var$9, var$10); + if ($rt_suspending()) { + break main; + } + $i = $i + 1 | 0; + if ($i >= 6) { + $i = $this.$timeSinceStart + 1 | 0; + $this.$timeSinceStart = $i; + if ($i != $this.$maximumTime) + return; + $ptr = 3; + continue main; + } + $d0 = $this.$posX + (nlev_EaglercraftRandom_nextDouble($this.$rand1) - nlev_EaglercraftRandom_nextDouble($this.$rand1)) * 4.0; + $d1 = $this.$posY + (nlev_EaglercraftRandom_nextDouble($this.$rand1) - nlev_EaglercraftRandom_nextDouble($this.$rand1)) * 4.0; + $d2 = $this.$posZ + (nlev_EaglercraftRandom_nextDouble($this.$rand1) - nlev_EaglercraftRandom_nextDouble($this.$rand1)) * 4.0; + var$5 = $this.$worldObj0; + $ptr = 1; + continue main; + case 3: + nme_Entity_setDead($this); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $i, $d0, $d1, $d2, var$5, var$6, var$7, var$8, var$9, var$10, $ptr); + } + function nmcp_EntityHugeExplodeFX_getFXLayer($this) { + return 1; + } + var nmcp_EntitySuspendFX = $rt_classWithoutFields(nmcp_EntityFX); + function nmcp_EntitySuspendFX_onUpdate($this) { + var var$1, var$2, var$3, var$4, var$5, var$6, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $this.$prevPosX = $this.$posX; + $this.$prevPosY = $this.$posY; + $this.$prevPosZ = $this.$posZ; + var$1 = $this.$motionX; + var$2 = $this.$motionY; + var$3 = $this.$motionZ; + $ptr = 1; + case 1: + nme_Entity_moveEntity($this, var$1, var$2, var$3); + if ($rt_suspending()) { + break main; + } + var$4 = $this.$worldObj0; + var$5 = nmu_BlockPos__init_3($this); + $ptr = 2; + case 2: + $tmp = nmw_World_getBlockState(var$4, var$5); + if ($rt_suspending()) { + break main; + } + var$4 = $tmp; + var$5 = var$4.$block.$blockMaterial; + nmbm_Material_$callClinit(); + if (var$5 !== nmbm_Material_water) { + $ptr = 3; + continue main; + } + var$6 = $this.$particleMaxAge; + $this.$particleMaxAge = var$6 - 1 | 0; + if (var$6 > 0) + return; + $ptr = 4; + continue main; + case 3: + nme_Entity_setDead($this); + if ($rt_suspending()) { + break main; + } + var$6 = $this.$particleMaxAge; + $this.$particleMaxAge = var$6 - 1 | 0; + if (var$6 > 0) + return; + $ptr = 4; + case 4: + nme_Entity_setDead($this); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, var$5, var$6, $ptr); + } + var nmcp_EntityAuraFX = $rt_classWithoutFields(nmcp_EntityFX); + function nmcp_EntityAuraFX__init_0(var_0, var_1, var_2, var_3, var_4, var_5, var_6) { + var var_7 = new nmcp_EntityAuraFX(); + nmcp_EntityAuraFX__init_(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); + return var_7; + } + function nmcp_EntityAuraFX__init_($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, $xSpeedIn, $ySpeedIn, $speedIn) { + var $f, var$9, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$9 = $thread.pop();$f = $thread.pop();$speedIn = $thread.pop();$ySpeedIn = $thread.pop();$xSpeedIn = $thread.pop();$zCoordIn = $thread.pop();$yCoordIn = $thread.pop();$xCoordIn = $thread.pop();$worldIn = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + nmcp_EntityFX__init_($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, $xSpeedIn, $ySpeedIn, $speedIn); + if ($rt_suspending()) { + break main; + } + $f = nlev_EaglercraftRandom_nextFloat($this.$rand1) * 0.10000000149011612 + 0.20000000298023224; + $this.$particleRed = $f; + $this.$particleGreen = $f; + $this.$particleBlue = $f; + nmcp_EntityFX_setParticleTextureIndex($this, 0); + $f = 0.019999999552965164; + var$9 = 0.019999999552965164; + $ptr = 2; + case 2: + nme_Entity_setSize($this, $f, var$9); + if ($rt_suspending()) { + break main; + } + $this.$particleScale = $this.$particleScale * (nlev_EaglercraftRandom_nextFloat($this.$rand1) * 0.6000000238418579 + 0.5); + $this.$motionX = $this.$motionX * 0.019999999552965164; + $this.$motionY = $this.$motionY * 0.019999999552965164; + $this.$motionZ = $this.$motionZ * 0.019999999552965164; + $this.$particleMaxAge = 20.0 / (jl_Math_random() * 0.8 + 0.2) | 0; + $this.$noClip = 1; + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, $xSpeedIn, $ySpeedIn, $speedIn, $f, var$9, $ptr); + } + function nmcp_EntityAuraFX_onUpdate($this) { + var var$1, var$2, var$3, var$4, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $this.$prevPosX = $this.$posX; + $this.$prevPosY = $this.$posY; + $this.$prevPosZ = $this.$posZ; + var$1 = $this.$motionX; + var$2 = $this.$motionY; + var$3 = $this.$motionZ; + $ptr = 1; + case 1: + nme_Entity_moveEntity($this, var$1, var$2, var$3); + if ($rt_suspending()) { + break main; + } + $this.$motionX = $this.$motionX * 0.99; + $this.$motionY = $this.$motionY * 0.99; + $this.$motionZ = $this.$motionZ * 0.99; + var$4 = $this.$particleMaxAge; + $this.$particleMaxAge = var$4 - 1 | 0; + if (var$4 > 0) + return; + $ptr = 2; + case 2: + nme_Entity_setDead($this); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); + } + function nmcp_EntityHeartFX() { + nmcp_EntityFX.call(this); + this.$particleScaleOverTime = 0.0; + } + function nmcp_EntityHeartFX__init_0(var_0, var_1, var_2, var_3, var_4, var_5, var_6) { + var var_7 = new nmcp_EntityHeartFX(); + nmcp_EntityHeartFX__init_(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); + return var_7; + } + function nmcp_EntityHeartFX__init_($this, $worldIn, $parDouble1, $parDouble2, $parDouble3, $parDouble4, $parDouble5, $parDouble6) { + var var$8, var$9, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();$parDouble6 = $thread.pop();$parDouble5 = $thread.pop();$parDouble4 = $thread.pop();$parDouble3 = $thread.pop();$parDouble2 = $thread.pop();$parDouble1 = $thread.pop();$worldIn = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + var$8 = 2.0; + $parDouble4 = 0.0; + $parDouble5 = 0.0; + $parDouble6 = 0.0; + $ptr = 1; + case 1: + nmcp_EntityFX__init_($this, $worldIn, $parDouble1, $parDouble2, $parDouble3, $parDouble4, $parDouble5, $parDouble6); + if ($rt_suspending()) { + break main; + } + $this.$motionX = $this.$motionX * 0.009999999776482582; + $parDouble1 = $this.$motionY * 0.009999999776482582; + $this.$motionY = $parDouble1; + $this.$motionZ = $this.$motionZ * 0.009999999776482582; + $this.$motionY = $parDouble1 + 0.1; + var$9 = $this.$particleScale * 0.75; + $this.$particleScale = var$9; + var$8 = var$9 * var$8; + $this.$particleScale = var$8; + $this.$particleScaleOverTime = var$8; + $this.$particleMaxAge = 16; + $this.$noClip = 0; + nmcp_EntityFX_setParticleTextureIndex($this, 80); + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $worldIn, $parDouble1, $parDouble2, $parDouble3, $parDouble4, $parDouble5, $parDouble6, var$8, var$9, $ptr); + } + function nmcp_EntityHeartFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5) { + var var$9, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$9 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$entity = $thread.pop();$worldrenderer = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + var$9 = nmu_MathHelper_clamp_float(($this.$particleAge + $f) / $this.$particleMaxAge * 32.0, 0.0, 1.0); + $this.$particleScale = $this.$particleScaleOverTime * var$9; + $ptr = 1; + case 1: + nmcp_EntityFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5, var$9, $ptr); + } + function nmcp_EntityHeartFX_onUpdate($this) { + var var$1, var$2, var$3, var$4, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $this.$prevPosX = $this.$posX; + $this.$prevPosY = $this.$posY; + $this.$prevPosZ = $this.$posZ; + var$1 = $this.$particleAge; + $this.$particleAge = var$1 + 1 | 0; + if (var$1 >= $this.$particleMaxAge) { + $ptr = 2; + continue main; + } + var$2 = $this.$motionX; + var$3 = $this.$motionY; + var$4 = $this.$motionZ; + $ptr = 1; + case 1: + nme_Entity_moveEntity($this, var$2, var$3, var$4); + if ($rt_suspending()) { + break main; + } + if ($this.$posY === $this.$prevPosY) { + $this.$motionX = $this.$motionX * 1.1; + $this.$motionZ = $this.$motionZ * 1.1; + } + var$2 = $this.$motionX * 0.8600000143051147; + $this.$motionX = var$2; + $this.$motionY = $this.$motionY * 0.8600000143051147; + var$3 = $this.$motionZ * 0.8600000143051147; + $this.$motionZ = var$3; + if ($this.$onGround) { + $this.$motionX = var$2 * 0.699999988079071; + $this.$motionZ = var$3 * 0.699999988079071; + } + return; + case 2: + nme_Entity_setDead($this); + if ($rt_suspending()) { + break main; + } + var$2 = $this.$motionX; + var$3 = $this.$motionY; + var$4 = $this.$motionZ; + $ptr = 1; + continue main; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); + } + function nmcp_MobAppearance() { + nmcp_EntityFX.call(this); + this.$entity5 = null; + } + function nmcp_MobAppearance_getFXLayer($this) { + return 3; + } + function nmcp_MobAppearance_onUpdate($this) { + var $entityguardian, var$2, var$3, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();$entityguardian = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + nmcp_EntityFX_onUpdate($this); + if ($rt_suspending()) { + break main; + } + if ($this.$entity5 !== null) + return; + $entityguardian = new nmem_EntityGuardian; + var$2 = $this.$worldObj0; + $ptr = 2; + case 2: + nmem_EntityGuardian__init_0($entityguardian, var$2); + if ($rt_suspending()) { + break main; + } + var$3 = 1; + $ptr = 3; + case 3: + nmem_EntityGuardian_setElder($entityguardian, var$3); + if ($rt_suspending()) { + break main; + } + $entityguardian.$field_175485_bl = 1.0; + $entityguardian.$field_175486_bm = 1.0; + $this.$entity5 = $entityguardian; + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $entityguardian, var$2, var$3, $ptr); + } + function nmcp_MobAppearance_renderParticle($this, $var1, $entityx, $f, $var4, $var5, $var6, $var7, $var8) { + var $rendermanager, $f1, $f2, var$12, var$13, $f3, $f4, var$16, var$17, var$18, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$18 = $thread.pop();var$17 = $thread.pop();var$16 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();var$13 = $thread.pop();var$12 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$rendermanager = $thread.pop();$var8 = $thread.pop();$var7 = $thread.pop();$var6 = $thread.pop();$var5 = $thread.pop();$var4 = $thread.pop();$f = $thread.pop();$entityx = $thread.pop();$var1 = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + if ($this.$entity5 === null) + return; + $ptr = 1; + case 1: + $tmp = nmc_Minecraft_getMinecraft(); + if ($rt_suspending()) { + break main; + } + $var1 = $tmp; + $rendermanager = $var1.$renderManager; + nmcre_RenderManager_setRenderPosition($rendermanager, nmcp_EntityFX_interpPosX, nmcp_EntityFX_interpPosY, nmcp_EntityFX_interpPosZ); + $f1 = 0.42553192377090454; + $f2 = ($this.$particleAge + $f) / $this.$particleMaxAge; + var$12 = 1; + $ptr = 2; + case 2: + nlevo_GlStateManager_depthMask(var$12); + if ($rt_suspending()) { + break main; + } + $ptr = 3; + case 3: + nlevo_GlStateManager_enableBlend(); + if ($rt_suspending()) { + break main; + } + $ptr = 4; + case 4: + nlevo_GlStateManager_enableDepth(); + if ($rt_suspending()) { + break main; + } + var$12 = 770; + var$13 = 771; + $ptr = 5; + case 5: + nlevo_GlStateManager_blendFunc(var$12, var$13); + if ($rt_suspending()) { + break main; + } + $f3 = 240.0; + var$12 = 33985; + $ptr = 6; + case 6: + nlevo_OpenGlHelper_setLightmapTextureCoords(var$12, $f3, $f3); + if ($rt_suspending()) { + break main; + } + $ptr = 7; + case 7: + nlevo_GlStateManager_pushMatrix(); + if ($rt_suspending()) { + break main; + } + $f4 = 0.05000000074505806 + 0.5 * nmu_MathHelper_sin($f2 * 3.1415927410125732); + $var4 = 1.0; + $var5 = 1.0; + $var6 = 1.0; + $ptr = 8; + case 8: + nlevo_GlStateManager_color($var4, $var5, $var6, $f4); + if ($rt_suspending()) { + break main; + } + $var4 = 0.0; + $var5 = 1.7999999523162842; + $var6 = 0.0; + $ptr = 9; + case 9: + nlevo_GlStateManager_translate($var4, $var5, $var6); + if ($rt_suspending()) { + break main; + } + $var4 = 180.0 - $entityx.$rotationYaw; + $var5 = 0.0; + $var6 = 1.0; + $var7 = 0.0; + $ptr = 10; + case 10: + nlevo_GlStateManager_rotate($var4, $var5, $var6, $var7); + if ($rt_suspending()) { + break main; + } + $var4 = 60.0 - 150.0 * $f2 - $entityx.$rotationPitch; + $var5 = 1.0; + $var6 = 0.0; + $var7 = 0.0; + $ptr = 11; + case 11: + nlevo_GlStateManager_rotate($var4, $var5, $var6, $var7); + if ($rt_suspending()) { + break main; + } + $var4 = 0.0; + $var5 = (-0.4000000059604645); + $var6 = (-1.5); + $ptr = 12; + case 12: + nlevo_GlStateManager_translate($var4, $var5, $var6); + if ($rt_suspending()) { + break main; + } + $ptr = 13; + case 13: + nlevo_GlStateManager_scale($f1, $f1, $f1); + if ($rt_suspending()) { + break main; + } + $var1 = $this.$entity5; + $var1.$prevRotationYaw = 0.0; + $var1.$rotationYaw = 0.0; + $var1.$prevRotationYawHead = 0.0; + $var1.$rotationYawHead = 0.0; + var$16 = 0.0; + var$17 = 0.0; + var$18 = 0.0; + $var4 = 0.0; + $ptr = 14; + case 14: + nmcre_RenderManager_renderEntityWithPosYaw($rendermanager, $var1, var$16, var$17, var$18, $var4, $f); + if ($rt_suspending()) { + break main; + } + $ptr = 15; + case 15: + nlevo_GlStateManager_popMatrix(); + if ($rt_suspending()) { + break main; + } + $ptr = 16; + case 16: + nlevo_GlStateManager_enableDepth(); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $var1, $entityx, $f, $var4, $var5, $var6, $var7, $var8, $rendermanager, $f1, $f2, var$12, var$13, $f3, $f4, var$16, var$17, var$18, $ptr); + } + function nmcp_EntityCrit2FX() { + nmcp_EntityFX.call(this); + this.$field_174839_a = 0.0; + } + function nmcp_EntityCrit2FX__init_0(var_0, var_1, var_2, var_3, var_4, var_5, var_6) { + var var_7 = new nmcp_EntityCrit2FX(); + nmcp_EntityCrit2FX__init_(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); + return var_7; + } + function nmcp_EntityCrit2FX__init_($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, $parDouble1, $parDouble2, $parDouble3) { + var var$8, var$9, var$10, var$11, var$12, var$13, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$13 = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();$parDouble3 = $thread.pop();$parDouble2 = $thread.pop();$parDouble1 = $thread.pop();$zCoordIn = $thread.pop();$yCoordIn = $thread.pop();$xCoordIn = $thread.pop();$worldIn = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + var$8 = 1.0; + var$9 = 0.0; + var$10 = 0.0; + var$11 = 0.0; + $ptr = 1; + case 1: + nmcp_EntityFX__init_($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, var$9, var$10, var$11); + if ($rt_suspending()) { + break main; + } + var$9 = $this.$motionX * 0.10000000149011612; + $this.$motionX = var$9; + $xCoordIn = $this.$motionY * 0.10000000149011612; + $this.$motionY = $xCoordIn; + $yCoordIn = $this.$motionZ * 0.10000000149011612; + $this.$motionZ = $yCoordIn; + $this.$motionX = var$9 + $parDouble1 * 0.4; + $this.$motionY = $xCoordIn + $parDouble2 * 0.4; + $this.$motionZ = $yCoordIn + $parDouble3 * 0.4; + var$12 = jl_Math_random() * 0.30000001192092896 + 0.6000000238418579; + $this.$particleBlue = var$12; + $this.$particleGreen = var$12; + $this.$particleRed = var$12; + var$12 = $this.$particleScale * 0.75; + $this.$particleScale = var$12; + var$12 = var$12 * var$8; + $this.$particleScale = var$12; + $this.$field_174839_a = var$12; + var$13 = 6.0 / (jl_Math_random() * 0.8 + 0.6) | 0; + $this.$particleMaxAge = var$13; + $this.$particleMaxAge = var$13 * var$8 | 0; + $this.$noClip = 0; + nmcp_EntityFX_setParticleTextureIndex($this, 65); + $ptr = 2; + case 2: + nmcp_EntityCrit2FX_onUpdate($this); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, $parDouble1, $parDouble2, $parDouble3, var$8, var$9, var$10, var$11, var$12, var$13, $ptr); + } + function nmcp_EntityCrit2FX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5) { + var var$9, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$9 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$entity = $thread.pop();$worldrenderer = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + var$9 = nmu_MathHelper_clamp_float(($this.$particleAge + $f) / $this.$particleMaxAge * 32.0, 0.0, 1.0); + $this.$particleScale = $this.$field_174839_a * var$9; + $ptr = 1; + case 1: + nmcp_EntityFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5, var$9, $ptr); + } + function nmcp_EntityCrit2FX_onUpdate($this) { + var var$1, var$2, var$3, var$4, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $this.$prevPosX = $this.$posX; + $this.$prevPosY = $this.$posY; + $this.$prevPosZ = $this.$posZ; + var$1 = $this.$particleAge; + $this.$particleAge = var$1 + 1 | 0; + if (var$1 >= $this.$particleMaxAge) { + $ptr = 2; + continue main; + } + var$2 = $this.$motionX; + var$3 = $this.$motionY; + var$4 = $this.$motionZ; + $ptr = 1; + case 1: + nme_Entity_moveEntity($this, var$2, var$3, var$4); + if ($rt_suspending()) { + break main; + } + $this.$particleGreen = $this.$particleGreen * 0.96; + $this.$particleBlue = $this.$particleBlue * 0.9; + var$2 = $this.$motionX * 0.699999988079071; + $this.$motionX = var$2; + var$3 = $this.$motionY * 0.699999988079071; + $this.$motionY = var$3; + var$4 = $this.$motionZ * 0.699999988079071; + $this.$motionZ = var$4; + $this.$motionY = var$3 - 0.019999999552965164; + if ($this.$onGround) { + $this.$motionX = var$2 * 0.699999988079071; + $this.$motionZ = var$4 * 0.699999988079071; + } + return; + case 2: + nme_Entity_setDead($this); + if ($rt_suspending()) { + break main; + } + var$2 = $this.$motionX; + var$3 = $this.$motionY; + var$4 = $this.$motionZ; + $ptr = 1; + continue main; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); + } + function nmcp_EntityCloudFX() { + nmcp_EntityFX.call(this); + this.$field_70569_a = 0.0; + } + function nmcp_EntityCloudFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5) { + var var$9, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$9 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$entity = $thread.pop();$worldrenderer = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + var$9 = nmu_MathHelper_clamp_float(($this.$particleAge + $f) / $this.$particleMaxAge * 32.0, 0.0, 1.0); + $this.$particleScale = $this.$field_70569_a * var$9; + $ptr = 1; + case 1: + nmcp_EntityFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5, var$9, $ptr); + } + function nmcp_EntityCloudFX_onUpdate($this) { + var var$1, var$2, var$3, var$4, $entityplayer, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();$entityplayer = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $this.$prevPosX = $this.$posX; + $this.$prevPosY = $this.$posY; + $this.$prevPosZ = $this.$posZ; + var$1 = $this.$particleAge; + $this.$particleAge = var$1 + 1 | 0; + if (var$1 >= $this.$particleMaxAge) { + $ptr = 3; + continue main; + } + nmcp_EntityFX_setParticleTextureIndex($this, 7 - (($this.$particleAge * 8 | 0) / $this.$particleMaxAge | 0) | 0); + var$2 = $this.$motionX; + var$3 = $this.$motionY; + var$4 = $this.$motionZ; + $ptr = 1; + case 1: + nme_Entity_moveEntity($this, var$2, var$3, var$4); + if ($rt_suspending()) { + break main; + } + $this.$motionX = $this.$motionX * 0.9599999785423279; + $this.$motionY = $this.$motionY * 0.9599999785423279; + $this.$motionZ = $this.$motionZ * 0.9599999785423279; + $entityplayer = $this.$worldObj0; + var$2 = 2.0; + $ptr = 2; + case 2: + $tmp = nmw_World_getClosestPlayerToEntity($entityplayer, $this, var$2); + if ($rt_suspending()) { + break main; + } + $entityplayer = $tmp; + if ($entityplayer !== null) { + var$2 = $this.$posY; + var$3 = $entityplayer.$boundingBox.$minY0; + if (var$2 > var$3) { + var$2 = var$2 + (var$3 - var$2) * 0.2; + $this.$posY = var$2; + var$3 = $this.$motionY; + $this.$motionY = var$3 + ($entityplayer.$motionY - var$3) * 0.2; + var$3 = $this.$posX; + var$4 = $this.$posZ; + $ptr = 4; + continue main; + } + } + if ($this.$onGround) { + $this.$motionX = $this.$motionX * 0.699999988079071; + $this.$motionZ = $this.$motionZ * 0.699999988079071; + } + return; + case 3: + nme_Entity_setDead($this); + if ($rt_suspending()) { + break main; + } + nmcp_EntityFX_setParticleTextureIndex($this, 7 - (($this.$particleAge * 8 | 0) / $this.$particleMaxAge | 0) | 0); + var$2 = $this.$motionX; + var$3 = $this.$motionY; + var$4 = $this.$motionZ; + $ptr = 1; + continue main; + case 4: + nme_Entity_setPosition($this, var$3, var$2, var$4); + if ($rt_suspending()) { + break main; + } + if ($this.$onGround) { + $this.$motionX = $this.$motionX * 0.699999988079071; + $this.$motionZ = $this.$motionZ * 0.699999988079071; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $entityplayer, $ptr); + } + var nmcp_EntityBubbleFX = $rt_classWithoutFields(nmcp_EntityFX); + function nmcp_EntityBubbleFX_onUpdate($this) { + var var$1, var$2, var$3, var$4, var$5, var$6, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $this.$prevPosX = $this.$posX; + $this.$prevPosY = $this.$posY; + $this.$prevPosZ = $this.$posZ; + var$1 = $this.$motionY + 0.002; + $this.$motionY = var$1; + var$2 = $this.$motionX; + var$3 = $this.$motionZ; + $ptr = 1; + case 1: + nme_Entity_moveEntity($this, var$2, var$1, var$3); + if ($rt_suspending()) { + break main; + } + $this.$motionX = $this.$motionX * 0.8500000238418579; + $this.$motionY = $this.$motionY * 0.8500000238418579; + $this.$motionZ = $this.$motionZ * 0.8500000238418579; + var$4 = $this.$worldObj0; + var$5 = nmu_BlockPos__init_3($this); + $ptr = 2; + case 2: + $tmp = nmw_World_getBlockState(var$4, var$5); + if ($rt_suspending()) { + break main; + } + var$4 = $tmp; + var$5 = var$4.$block.$blockMaterial; + nmbm_Material_$callClinit(); + if (var$5 !== nmbm_Material_water) { + $ptr = 3; + continue main; + } + var$6 = $this.$particleMaxAge; + $this.$particleMaxAge = var$6 - 1 | 0; + if (var$6 > 0) + return; + $ptr = 4; + continue main; + case 3: + nme_Entity_setDead($this); + if ($rt_suspending()) { + break main; + } + var$6 = $this.$particleMaxAge; + $this.$particleMaxAge = var$6 - 1 | 0; + if (var$6 > 0) + return; + $ptr = 4; + case 4: + nme_Entity_setDead($this); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, var$5, var$6, $ptr); + } + function nmcp_EntityFlameFX() { + nmcp_EntityFX.call(this); + this.$flameScale = 0.0; + } + function nmcp_EntityFlameFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5) { + var $f6, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();$f6 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$entity = $thread.pop();$worldrenderer = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $f6 = ($this.$particleAge + $f) / $this.$particleMaxAge; + $this.$particleScale = $this.$flameScale * (1.0 - $f6 * $f6 * 0.5); + $ptr = 1; + case 1: + nmcp_EntityFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5, $f6, $ptr); + } + function nmcp_EntityFlameFX_getBrightnessForRender($this, $f) { + var var$2, $i, $j, $k, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();$k = $thread.pop();$j = $thread.pop();$i = $thread.pop();var$2 = $thread.pop();$f = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + var$2 = nmu_MathHelper_clamp_float(($this.$particleAge + $f) / $this.$particleMaxAge, 0.0, 1.0); + $ptr = 1; + case 1: + $tmp = nme_Entity_getBrightnessForRender($this, $f); + if ($rt_suspending()) { + break main; + } + $i = $tmp; + $j = $i & 255; + $k = $i >> 16 & 255; + $i = $j + (var$2 * 15.0 * 16.0 | 0) | 0; + if ($i > 240) + $i = 240; + return $i | $k << 16; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $f, var$2, $i, $j, $k, $ptr); + } + function nmcp_EntityFlameFX_getBrightness($this, $f) { + var var$2, $f2, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();$f2 = $thread.pop();var$2 = $thread.pop();$f = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + var$2 = nmu_MathHelper_clamp_float(($this.$particleAge + $f) / $this.$particleMaxAge, 0.0, 1.0); + $ptr = 1; + case 1: + $tmp = nme_Entity_getBrightness($this, $f); + if ($rt_suspending()) { + break main; + } + $f2 = $tmp; + return $f2 * var$2 + 1.0 - var$2; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $f, var$2, $f2, $ptr); + } + function nmcp_EntityFlameFX_onUpdate($this) { + var var$1, var$2, var$3, var$4, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $this.$prevPosX = $this.$posX; + $this.$prevPosY = $this.$posY; + $this.$prevPosZ = $this.$posZ; + var$1 = $this.$particleAge; + $this.$particleAge = var$1 + 1 | 0; + if (var$1 >= $this.$particleMaxAge) { + $ptr = 2; + continue main; + } + var$2 = $this.$motionX; + var$3 = $this.$motionY; + var$4 = $this.$motionZ; + $ptr = 1; + case 1: + nme_Entity_moveEntity($this, var$2, var$3, var$4); + if ($rt_suspending()) { + break main; + } + var$2 = $this.$motionX * 0.9599999785423279; + $this.$motionX = var$2; + $this.$motionY = $this.$motionY * 0.9599999785423279; + var$3 = $this.$motionZ * 0.9599999785423279; + $this.$motionZ = var$3; + if ($this.$onGround) { + $this.$motionX = var$2 * 0.699999988079071; + $this.$motionZ = var$3 * 0.699999988079071; + } + return; + case 2: + nme_Entity_setDead($this); + if ($rt_suspending()) { + break main; + } + var$2 = $this.$motionX; + var$3 = $this.$motionY; + var$4 = $this.$motionZ; + $ptr = 1; + continue main; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); + } + function nmcp_EntityDropParticleFX() { + var a = this; nmcp_EntityFX.call(a); + a.$materialType = null; + a.$bobTimer = 0; + } + function nmcp_EntityDropParticleFX__init_0(var_0, var_1, var_2, var_3, var_4) { + var var_5 = new nmcp_EntityDropParticleFX(); + nmcp_EntityDropParticleFX__init_(var_5, var_0, var_1, var_2, var_3, var_4); + return var_5; + } + function nmcp_EntityDropParticleFX__init_($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, $parMaterial) { + var var$6, var$7, var$8, var$9, var$10, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();$parMaterial = $thread.pop();$zCoordIn = $thread.pop();$yCoordIn = $thread.pop();$xCoordIn = $thread.pop();$worldIn = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + var$6 = 0.0; + var$7 = 0.0; + var$8 = 0.0; + $ptr = 1; + case 1: + nmcp_EntityFX__init_($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, var$6, var$7, var$8); + if ($rt_suspending()) { + break main; + } + $this.$motionZ = 0.0; + $this.$motionY = 0.0; + $this.$motionX = 0.0; + nmbm_Material_$callClinit(); + if ($parMaterial !== nmbm_Material_water) { + $this.$particleRed = 1.0; + $this.$particleGreen = 0.0; + $this.$particleBlue = 0.0; + } else { + $this.$particleRed = 0.0; + $this.$particleGreen = 0.0; + $this.$particleBlue = 1.0; + } + nmcp_EntityFX_setParticleTextureIndex($this, 113); + var$9 = 0.009999999776482582; + var$10 = 0.009999999776482582; + $ptr = 2; + case 2: + nme_Entity_setSize($this, var$9, var$10); + if ($rt_suspending()) { + break main; + } + $this.$particleGravity = 0.05999999865889549; + $this.$materialType = $parMaterial; + $this.$bobTimer = 40; + $this.$particleMaxAge = 64.0 / (jl_Math_random() * 0.8 + 0.2) | 0; + $this.$motionZ = 0.0; + $this.$motionY = 0.0; + $this.$motionX = 0.0; + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, $parMaterial, var$6, var$7, var$8, var$9, var$10, $ptr); + } + function nmcp_EntityDropParticleFX_getBrightnessForRender($this, $partialTicks) { + var var$2, var$3, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();$partialTicks = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + var$2 = $this.$materialType; + nmbm_Material_$callClinit(); + if (var$2 !== nmbm_Material_water) + return 257; + $ptr = 1; + case 1: + $tmp = nme_Entity_getBrightnessForRender($this, $partialTicks); + if ($rt_suspending()) { + break main; + } + var$3 = $tmp; + return var$3; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $partialTicks, var$2, var$3, $ptr); + } + function nmcp_EntityDropParticleFX_getBrightness($this, $partialTicks) { + var var$2, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$2 = $thread.pop();$partialTicks = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + var$2 = $this.$materialType; + nmbm_Material_$callClinit(); + if (var$2 !== nmbm_Material_water) + return 1.0; + $ptr = 1; + case 1: + $tmp = nme_Entity_getBrightness($this, $partialTicks); + if ($rt_suspending()) { + break main; + } + $partialTicks = $tmp; + return $partialTicks; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $partialTicks, var$2, $ptr); + } + function nmcp_EntityDropParticleFX_onUpdate($this) { + var $blockpos, var$2, $d0, $d1, var$5, $iblockstate, $material, var$8, var$9, var$10, var$11, var$12, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();$material = $thread.pop();$iblockstate = $thread.pop();var$5 = $thread.pop();$d1 = $thread.pop();$d0 = $thread.pop();var$2 = $thread.pop();$blockpos = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $this.$prevPosX = $this.$posX; + $this.$prevPosY = $this.$posY; + $this.$prevPosZ = $this.$posZ; + $blockpos = $this.$materialType; + nmbm_Material_$callClinit(); + if ($blockpos === nmbm_Material_water) { + $this.$particleRed = 0.20000000298023224; + $this.$particleGreen = 0.30000001192092896; + $this.$particleBlue = 1.0; + } else { + $this.$particleRed = 1.0; + var$2 = 40 - $this.$bobTimer | 0; + $this.$particleGreen = 16.0 / (var$2 + 16 | 0); + $this.$particleBlue = 4.0 / (var$2 + 8 | 0); + } + $d0 = $this.$motionY - $this.$particleGravity; + $this.$motionY = $d0; + var$2 = $this.$bobTimer; + $this.$bobTimer = var$2 - 1 | 0; + if (var$2 <= 0) + nmcp_EntityFX_setParticleTextureIndex($this, 112); + else { + $this.$motionX = $this.$motionX * 0.02; + $this.$motionY = $d0 * 0.02; + $this.$motionZ = $this.$motionZ * 0.02; + nmcp_EntityFX_setParticleTextureIndex($this, 113); + } + $d0 = $this.$motionX; + $d1 = $this.$motionY; + var$5 = $this.$motionZ; + $ptr = 1; + case 1: + nme_Entity_moveEntity($this, $d0, $d1, var$5); + if ($rt_suspending()) { + break main; + } + $this.$motionX = $this.$motionX * 0.9800000190734863; + $this.$motionY = $this.$motionY * 0.9800000190734863; + $this.$motionZ = $this.$motionZ * 0.9800000190734863; + var$2 = $this.$particleMaxAge; + $this.$particleMaxAge = var$2 - 1 | 0; + if (var$2 <= 0) { + $ptr = 2; + continue main; + } + if ($this.$onGround) { + if ($this.$materialType === nmbm_Material_water) { + $ptr = 4; + continue main; + } + nmcp_EntityFX_setParticleTextureIndex($this, 114); + $this.$motionX = $this.$motionX * 0.699999988079071; + $this.$motionZ = $this.$motionZ * 0.699999988079071; + } + $blockpos = nmu_BlockPos__init_3($this); + $iblockstate = $this.$worldObj0; + $ptr = 3; + continue main; + case 2: + nme_Entity_setDead($this); + if ($rt_suspending()) { + break main; + } + if ($this.$onGround) { + if ($this.$materialType === nmbm_Material_water) { + $ptr = 4; + continue main; + } + nmcp_EntityFX_setParticleTextureIndex($this, 114); + $this.$motionX = $this.$motionX * 0.699999988079071; + $this.$motionZ = $this.$motionZ * 0.699999988079071; + } + $blockpos = nmu_BlockPos__init_3($this); + $iblockstate = $this.$worldObj0; + $ptr = 3; + case 3: + $tmp = nmw_World_getBlockState($iblockstate, $blockpos); + if ($rt_suspending()) { + break main; + } + $iblockstate = $tmp; + $material = $iblockstate.$block.$blockMaterial; + if (!(!$material.$isLiquid() && !$material.$isSolid())) { + if ($iblockstate.$block instanceof nmb_BlockLiquid) { + $ptr = 7; + continue main; + } + $d1 = (nmu_MathHelper_floor_double($this.$posY) + 1 | 0) - 0.0; + if ($this.$posY < $d1) { + $ptr = 10; + continue main; + } + } + return; + case 4: + nme_Entity_setDead($this); + if ($rt_suspending()) { + break main; + } + $blockpos = $this.$worldObj0; + $ptr = 5; + case 5: + nmu_EnumParticleTypes_$callClinit(); + if ($rt_suspending()) { + break main; + } + $iblockstate = nmu_EnumParticleTypes_WATER_SPLASH; + var$8 = $this.$posX; + var$9 = $this.$posY; + var$10 = $this.$posZ; + $d0 = 0.0; + $d1 = 0.0; + var$5 = 0.0; + var$11 = $rt_createIntArray(0); + $ptr = 6; + case 6: + nmw_World_spawnParticle($blockpos, $iblockstate, var$8, var$9, var$10, $d0, $d1, var$5, var$11); + if ($rt_suspending()) { + break main; + } + $this.$motionX = $this.$motionX * 0.699999988079071; + $this.$motionZ = $this.$motionZ * 0.699999988079071; + $blockpos = nmu_BlockPos__init_3($this); + $iblockstate = $this.$worldObj0; + $ptr = 3; + continue main; + case 7: + nmb_BlockLiquid_$callClinit(); + if ($rt_suspending()) { + break main; + } + $blockpos = nmb_BlockLiquid_LEVEL; + $ptr = 8; + case 8: + $tmp = nmbs_BlockState$StateImplementation_getValue($iblockstate, $blockpos); + if ($rt_suspending()) { + break main; + } + $blockpos = $tmp; + var$2 = $blockpos.$value; + $ptr = 9; + case 9: + $tmp = nmb_BlockLiquid_getLiquidHeightPercent(var$2); + if ($rt_suspending()) { + break main; + } + var$12 = $tmp; + $d0 = var$12; + $d1 = (nmu_MathHelper_floor_double($this.$posY) + 1 | 0) - $d0; + if ($this.$posY >= $d1) + return; + $ptr = 10; + case 10: + nme_Entity_setDead($this); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $blockpos, var$2, $d0, $d1, var$5, $iblockstate, $material, var$8, var$9, var$10, var$11, var$12, $ptr); + } + var nlevsrp_ICEServerSet = $rt_classWithoutFields(); + function nlevsrp_ICEServerSet__init_0() { + var var_0 = new nlevsrp_ICEServerSet(); + nlevsrp_ICEServerSet__init_(var_0); + return var_0; + } + function nlevsrp_ICEServerSet__init_($this) {} var nmcp_EntityRainFX = $rt_classWithoutFields(nmcp_EntityFX); function nmcp_EntityRainFX__init_0(var_0, var_1, var_2, var_3) { var var_4 = new nmcp_EntityRainFX(); @@ -1254116,28 +1258449,20 @@ }} $rt_nativeThread().push($this, $d1, var$2, var$3, var$4, $blockpos, $iblockstate, $block, $material, var$9, var$10, $ptr); } - var nmcp_EntitySplashFX = $rt_classWithoutFields(nmcp_EntityRainFX); - var nlevsrp_ICEServerSet = $rt_classWithoutFields(); - function nlevsrp_ICEServerSet__init_0() { - var var_0 = new nlevsrp_ICEServerSet(); - nlevsrp_ICEServerSet__init_(var_0); - return var_0; - } - function nlevsrp_ICEServerSet__init_($this) {} - var nmcp_EntityBubbleFX = $rt_classWithoutFields(nmcp_EntityFX); - function nmcp_EntityBubbleFX_onUpdate($this) { - var var$1, var$2, var$3, var$4, var$5, var$6, $ptr, $tmp; + var nmcp_EntityFishWakeFX = $rt_classWithoutFields(nmcp_EntityFX); + function nmcp_EntityFishWakeFX_onUpdate($this) { + var var$1, var$2, var$3, $i, $f, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();$f = $thread.pop();$i = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: $this.$prevPosX = $this.$posX; $this.$prevPosY = $this.$posY; $this.$prevPosZ = $this.$posZ; - var$1 = $this.$motionY + 0.002; + var$1 = $this.$motionY - $this.$particleGravity; $this.$motionY = var$1; var$2 = $this.$motionX; var$3 = $this.$motionZ; @@ -1254147,41 +1258472,313 @@ if ($rt_suspending()) { break main; } - $this.$motionX = $this.$motionX * 0.8500000238418579; - $this.$motionY = $this.$motionY * 0.8500000238418579; - $this.$motionZ = $this.$motionZ * 0.8500000238418579; - var$4 = $this.$worldObj0; - var$5 = nmu_BlockPos__init_3($this); + $this.$motionX = $this.$motionX * 0.9800000190734863; + $this.$motionY = $this.$motionY * 0.9800000190734863; + $this.$motionZ = $this.$motionZ * 0.9800000190734863; + $i = 60 - $this.$particleMaxAge | 0; + $f = $i * 0.0010000000474974513; $ptr = 2; case 2: - $tmp = nmw_World_getBlockState(var$4, var$5); + nme_Entity_setSize($this, $f, $f); if ($rt_suspending()) { break main; } - var$4 = $tmp; - var$5 = var$4.$block.$blockMaterial; - nmbm_Material_$callClinit(); - if (var$5 !== nmbm_Material_water) { - $ptr = 3; - continue main; - } - var$6 = $this.$particleMaxAge; - $this.$particleMaxAge = var$6 - 1 | 0; - if (var$6 > 0) + nmcp_EntityFX_setParticleTextureIndex($this, 19 + ($i % 4 | 0) | 0); + $i = $this.$particleMaxAge; + $this.$particleMaxAge = $i - 1 | 0; + if ($i > 0) return; - $ptr = 4; - continue main; + $ptr = 3; case 3: nme_Entity_setDead($this); if ($rt_suspending()) { break main; } - var$6 = $this.$particleMaxAge; - $this.$particleMaxAge = var$6 - 1 | 0; - if (var$6 > 0) - return; + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, var$1, var$2, var$3, $i, $f, $ptr); + } + var nlevi_OpenGLObjects = $rt_classWithoutFields(); + function nlevi_OpenGLObjects__init_0() { + var var_0 = new nlevi_OpenGLObjects(); + nlevi_OpenGLObjects__init_(var_0); + return var_0; + } + function nlevi_OpenGLObjects__init_($this) {} + var nmcp_EntityFirework = $rt_classWithoutFields(); + function nmcp_EntityFirework__init_0() { + var var_0 = new nmcp_EntityFirework(); + nmcp_EntityFirework__init_(var_0); + return var_0; + } + function nmcp_EntityFirework__init_($this) {} + function nmcp_EntityFootStepFX() { + var a = this; nmcp_EntityFX.call(a); + a.$footstepAge = 0; + a.$footstepMaxAge = 0; + a.$currentFootSteps = null; + } + var nmcp_EntityFootStepFX_FOOTPRINT_TEXTURE = null; + var nmcp_EntityFootStepFX_$clinitCalled = false; + function nmcp_EntityFootStepFX_$callClinit() { + var $ptr = 0; + if ($rt_resuming()) { + $ptr = $rt_nativeThread().pop(); + } else if (nmcp_EntityFootStepFX_$clinitCalled) { + return; + } + main: while (true) { switch ($ptr) { + case 0: + nmcp_EntityFootStepFX_$clinitCalled = true; + $ptr = 1; + case 1: + nmcp_EntityFootStepFX__clinit_(); + if ($rt_suspending()) { + break main; + } + nmcp_EntityFootStepFX_$callClinit = $rt_eraseClinit(nmcp_EntityFootStepFX); + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($ptr); + } + function nmcp_EntityFootStepFX_renderParticle($this, $worldrenderer, $var2, $f, $var4, $var5, $var6, $var7, $var8) { + var $f1, $f2, $f4, $f5, $f6, var$14, $f7, var$16, var$17, var$18, var$19, var$20, var$21, var$22, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$22 = $thread.pop();var$21 = $thread.pop();var$20 = $thread.pop();var$19 = $thread.pop();var$18 = $thread.pop();var$17 = $thread.pop();var$16 = $thread.pop();$f7 = $thread.pop();var$14 = $thread.pop();$f6 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$var8 = $thread.pop();$var7 = $thread.pop();$var6 = $thread.pop();$var5 = $thread.pop();$var4 = $thread.pop();$f = $thread.pop();$var2 = $thread.pop();$worldrenderer = $thread.pop();$this + = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $f1 = ($this.$footstepAge + $f) / $this.$footstepMaxAge; + $f2 = 2.0 - $f1 * $f1 * 2.0; + if ($f2 > 1.0) + $f2 = 1.0; + $f = $f2 * 0.20000000298023224; + $ptr = 1; + case 1: + nlevo_GlStateManager_disableLighting(); + if ($rt_suspending()) { + break main; + } + $f4 = $this.$posX - nmcp_EntityFX_interpPosX; + $f5 = $this.$posY - nmcp_EntityFX_interpPosY; + $f6 = $this.$posZ - nmcp_EntityFX_interpPosZ; + $var2 = $this.$worldObj0; + var$14 = nmu_BlockPos__init_3($this); + $ptr = 2; + case 2: + $tmp = nmw_World_getLightBrightness($var2, var$14); + if ($rt_suspending()) { + break main; + } + $f7 = $tmp; + $var2 = $this.$currentFootSteps; + $ptr = 3; + case 3: + nmcp_EntityFootStepFX_$callClinit(); + if ($rt_suspending()) { + break main; + } + var$14 = nmcp_EntityFootStepFX_FOOTPRINT_TEXTURE; $ptr = 4; case 4: + nmcrt_TextureManager_bindTexture($var2, var$14); + if ($rt_suspending()) { + break main; + } + $ptr = 5; + case 5: + nlevo_GlStateManager_enableBlend(); + if ($rt_suspending()) { + break main; + } + var$16 = 770; + var$17 = 771; + $ptr = 6; + case 6: + nlevo_GlStateManager_blendFunc(var$16, var$17); + if ($rt_suspending()) { + break main; + } + var$16 = 7; + nmcrv_DefaultVertexFormats_$callClinit(); + $var2 = nmcrv_DefaultVertexFormats_POSITION_TEX_COLOR; + $ptr = 7; + case 7: + nlevo_WorldRenderer_begin($worldrenderer, var$16, $var2); + if ($rt_suspending()) { + break main; + } + var$18 = $f4 - 0.125; + var$19 = $f5; + var$20 = $f6 + 0.125; + $ptr = 8; + case 8: + $tmp = nlevo_WorldRenderer_pos($worldrenderer, var$18, var$19, var$20); + if ($rt_suspending()) { + break main; + } + $var2 = $tmp; + var$21 = 0.0; + var$22 = 1.0; + $ptr = 9; + case 9: + $tmp = nlevo_WorldRenderer_tex($var2, var$21, var$22); + if ($rt_suspending()) { + break main; + } + $var2 = $tmp; + $ptr = 10; + case 10: + $tmp = nlevo_WorldRenderer_color0($var2, $f7, $f7, $f7, $f); + if ($rt_suspending()) { + break main; + } + $var2 = $tmp; + $ptr = 11; + case 11: + nlevo_WorldRenderer_endVertex($var2); + if ($rt_suspending()) { + break main; + } + var$21 = $f4 + 0.125; + $ptr = 12; + case 12: + $tmp = nlevo_WorldRenderer_pos($worldrenderer, var$21, var$19, var$20); + if ($rt_suspending()) { + break main; + } + $var2 = $tmp; + var$20 = 1.0; + var$22 = 1.0; + $ptr = 13; + case 13: + $tmp = nlevo_WorldRenderer_tex($var2, var$20, var$22); + if ($rt_suspending()) { + break main; + } + $var2 = $tmp; + $ptr = 14; + case 14: + $tmp = nlevo_WorldRenderer_color0($var2, $f7, $f7, $f7, $f); + if ($rt_suspending()) { + break main; + } + $var2 = $tmp; + $ptr = 15; + case 15: + nlevo_WorldRenderer_endVertex($var2); + if ($rt_suspending()) { + break main; + } + var$20 = $f6 - 0.125; + $ptr = 16; + case 16: + $tmp = nlevo_WorldRenderer_pos($worldrenderer, var$21, var$19, var$20); + if ($rt_suspending()) { + break main; + } + $var2 = $tmp; + var$21 = 1.0; + var$22 = 0.0; + $ptr = 17; + case 17: + $tmp = nlevo_WorldRenderer_tex($var2, var$21, var$22); + if ($rt_suspending()) { + break main; + } + $var2 = $tmp; + $ptr = 18; + case 18: + $tmp = nlevo_WorldRenderer_color0($var2, $f7, $f7, $f7, $f); + if ($rt_suspending()) { + break main; + } + $var2 = $tmp; + $ptr = 19; + case 19: + nlevo_WorldRenderer_endVertex($var2); + if ($rt_suspending()) { + break main; + } + $ptr = 20; + case 20: + $tmp = nlevo_WorldRenderer_pos($worldrenderer, var$18, var$19, var$20); + if ($rt_suspending()) { + break main; + } + $worldrenderer = $tmp; + var$18 = 0.0; + var$19 = 0.0; + $ptr = 21; + case 21: + $tmp = nlevo_WorldRenderer_tex($worldrenderer, var$18, var$19); + if ($rt_suspending()) { + break main; + } + $worldrenderer = $tmp; + $ptr = 22; + case 22: + $tmp = nlevo_WorldRenderer_color0($worldrenderer, $f7, $f7, $f7, $f); + if ($rt_suspending()) { + break main; + } + $worldrenderer = $tmp; + $ptr = 23; + case 23: + nlevo_WorldRenderer_endVertex($worldrenderer); + if ($rt_suspending()) { + break main; + } + $ptr = 24; + case 24: + $tmp = nmcr_Tessellator_getInstance(); + if ($rt_suspending()) { + break main; + } + $worldrenderer = $tmp; + $ptr = 25; + case 25: + nmcr_Tessellator_draw($worldrenderer); + if ($rt_suspending()) { + break main; + } + $ptr = 26; + case 26: + nlevo_GlStateManager_disableBlend(); + if ($rt_suspending()) { + break main; + } + $ptr = 27; + case 27: + nlevo_GlStateManager_enableLighting(); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $worldrenderer, $var2, $f, $var4, $var5, $var6, $var7, $var8, $f1, $f2, $f4, $f5, $f6, var$14, $f7, var$16, var$17, var$18, var$19, var$20, var$21, var$22, $ptr); + } + function nmcp_EntityFootStepFX_onUpdate($this) { + var var$1, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + var$1 = $this.$footstepAge + 1 | 0; + $this.$footstepAge = var$1; + if (var$1 != $this.$footstepMaxAge) + return; + $ptr = 1; + case 1: nme_Entity_setDead($this); if ($rt_suspending()) { break main; @@ -1254189,219 +1258786,44 @@ return; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, var$5, var$6, $ptr); + $rt_nativeThread().push($this, var$1, $ptr); } - function nmcp_EntityCrit2FX() { - nmcp_EntityFX.call(this); - this.$field_174839_a = 0.0; - } - function nmcp_EntityCrit2FX__init_0(var_0, var_1, var_2, var_3, var_4, var_5, var_6) { - var var_7 = new nmcp_EntityCrit2FX(); - nmcp_EntityCrit2FX__init_(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); - return var_7; - } - function nmcp_EntityCrit2FX__init_($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, $parDouble1, $parDouble2, $parDouble3) { - var var$8, var$9, var$10, var$11, var$12, var$13, $ptr, $tmp; + function nmcp_EntityFootStepFX_getFXLayer($this) { + var $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$13 = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();$parDouble3 = $thread.pop();$parDouble2 = $thread.pop();$parDouble1 = $thread.pop();$zCoordIn = $thread.pop();$yCoordIn = $thread.pop();$xCoordIn = $thread.pop();$worldIn = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: - var$8 = 1.0; - var$9 = 0.0; - var$10 = 0.0; - var$11 = 0.0; - $ptr = 1; - case 1: - nmcp_EntityFX__init_($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, var$9, var$10, var$11); - if ($rt_suspending()) { - break main; - } - var$9 = $this.$motionX * 0.10000000149011612; - $this.$motionX = var$9; - $xCoordIn = $this.$motionY * 0.10000000149011612; - $this.$motionY = $xCoordIn; - $yCoordIn = $this.$motionZ * 0.10000000149011612; - $this.$motionZ = $yCoordIn; - $this.$motionX = var$9 + $parDouble1 * 0.4; - $this.$motionY = $xCoordIn + $parDouble2 * 0.4; - $this.$motionZ = $yCoordIn + $parDouble3 * 0.4; - var$12 = jl_Math_random() * 0.30000001192092896 + 0.6000000238418579; - $this.$particleBlue = var$12; - $this.$particleGreen = var$12; - $this.$particleRed = var$12; - var$12 = $this.$particleScale * 0.75; - $this.$particleScale = var$12; - var$12 = var$12 * var$8; - $this.$particleScale = var$12; - $this.$field_174839_a = var$12; - var$13 = 6.0 / (jl_Math_random() * 0.8 + 0.6) | 0; - $this.$particleMaxAge = var$13; - $this.$particleMaxAge = var$13 * var$8 | 0; - $this.$noClip = 0; - nmcp_EntityFX_setParticleTextureIndex($this, 65); - $ptr = 2; - case 2: - nmcp_EntityCrit2FX_onUpdate($this); - if ($rt_suspending()) { - break main; - } - return; + return 3; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, $parDouble1, $parDouble2, $parDouble3, var$8, var$9, var$10, var$11, var$12, var$13, $ptr); + $rt_nativeThread().push($this, $ptr); } - function nmcp_EntityCrit2FX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5) { - var var$9, $ptr, $tmp; + function nmcp_EntityFootStepFX__clinit_() { + var var$1, var$2, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$9 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$entity = $thread.pop();$worldrenderer = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: - var$9 = nmu_MathHelper_clamp_float(($this.$particleAge + $f) / $this.$particleMaxAge * 32.0, 0.0, 1.0); - $this.$particleScale = $this.$field_174839_a * var$9; + var$1 = new nmu_ResourceLocation; + var$2 = $rt_s(9026); $ptr = 1; case 1: - nmcp_EntityFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5); + nmu_ResourceLocation__init_(var$1, var$2); if ($rt_suspending()) { break main; } + nmcp_EntityFootStepFX_FOOTPRINT_TEXTURE = var$1; return; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5, var$9, $ptr); - } - function nmcp_EntityCrit2FX_onUpdate($this) { - var var$1, var$2, var$3, var$4, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $this.$prevPosX = $this.$posX; - $this.$prevPosY = $this.$posY; - $this.$prevPosZ = $this.$posZ; - var$1 = $this.$particleAge; - $this.$particleAge = var$1 + 1 | 0; - if (var$1 >= $this.$particleMaxAge) { - $ptr = 2; - continue main; - } - var$2 = $this.$motionX; - var$3 = $this.$motionY; - var$4 = $this.$motionZ; - $ptr = 1; - case 1: - nme_Entity_moveEntity($this, var$2, var$3, var$4); - if ($rt_suspending()) { - break main; - } - $this.$particleGreen = $this.$particleGreen * 0.96; - $this.$particleBlue = $this.$particleBlue * 0.9; - var$2 = $this.$motionX * 0.699999988079071; - $this.$motionX = var$2; - var$3 = $this.$motionY * 0.699999988079071; - $this.$motionY = var$3; - var$4 = $this.$motionZ * 0.699999988079071; - $this.$motionZ = var$4; - $this.$motionY = var$3 - 0.019999999552965164; - if ($this.$onGround) { - $this.$motionX = var$2 * 0.699999988079071; - $this.$motionZ = var$4 * 0.699999988079071; - } - return; - case 2: - nme_Entity_setDead($this); - if ($rt_suspending()) { - break main; - } - var$2 = $this.$motionX; - var$3 = $this.$motionY; - var$4 = $this.$motionZ; - $ptr = 1; - continue main; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); - } - function nmcp_EntityHugeExplodeFX() { - var a = this; nmcp_EntityFX.call(a); - a.$timeSinceStart = 0; - a.$maximumTime = 0; - } - function nmcp_EntityHugeExplodeFX_renderParticle($this, $var1, $var2, $var3, $var4, $var5, $var6, $var7, $var8) {} - function nmcp_EntityHugeExplodeFX_onUpdate($this) { - var $i, $d0, $d1, $d2, var$5, var$6, var$7, var$8, var$9, var$10, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();$d2 = $thread.pop();$d1 = $thread.pop();$d0 = $thread.pop();$i = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $i = 0; - if ($i >= 6) { - $i = $this.$timeSinceStart + 1 | 0; - $this.$timeSinceStart = $i; - if ($i != $this.$maximumTime) - return; - $ptr = 3; - continue main; - } - $d0 = $this.$posX + (nlev_EaglercraftRandom_nextDouble($this.$rand1) - nlev_EaglercraftRandom_nextDouble($this.$rand1)) * 4.0; - $d1 = $this.$posY + (nlev_EaglercraftRandom_nextDouble($this.$rand1) - nlev_EaglercraftRandom_nextDouble($this.$rand1)) * 4.0; - $d2 = $this.$posZ + (nlev_EaglercraftRandom_nextDouble($this.$rand1) - nlev_EaglercraftRandom_nextDouble($this.$rand1)) * 4.0; - var$5 = $this.$worldObj0; - $ptr = 1; - case 1: - nmu_EnumParticleTypes_$callClinit(); - if ($rt_suspending()) { - break main; - } - var$6 = nmu_EnumParticleTypes_EXPLOSION_LARGE; - var$7 = $this.$timeSinceStart / $this.$maximumTime; - var$8 = 0.0; - var$9 = 0.0; - var$10 = $rt_createIntArray(0); - $ptr = 2; - case 2: - nmw_World_spawnParticle(var$5, var$6, $d0, $d1, $d2, var$7, var$8, var$9, var$10); - if ($rt_suspending()) { - break main; - } - $i = $i + 1 | 0; - if ($i >= 6) { - $i = $this.$timeSinceStart + 1 | 0; - $this.$timeSinceStart = $i; - if ($i != $this.$maximumTime) - return; - $ptr = 3; - continue main; - } - $d0 = $this.$posX + (nlev_EaglercraftRandom_nextDouble($this.$rand1) - nlev_EaglercraftRandom_nextDouble($this.$rand1)) * 4.0; - $d1 = $this.$posY + (nlev_EaglercraftRandom_nextDouble($this.$rand1) - nlev_EaglercraftRandom_nextDouble($this.$rand1)) * 4.0; - $d2 = $this.$posZ + (nlev_EaglercraftRandom_nextDouble($this.$rand1) - nlev_EaglercraftRandom_nextDouble($this.$rand1)) * 4.0; - var$5 = $this.$worldObj0; - $ptr = 1; - continue main; - case 3: - nme_Entity_setDead($this); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $i, $d0, $d1, $d2, var$5, var$6, var$7, var$8, var$9, var$10, $ptr); - } - function nmcp_EntityHugeExplodeFX_getFXLayer($this) { - return 1; + $rt_nativeThread().push(var$1, var$2, $ptr); } var nmcp_EntityBreakingFX = $rt_classWithoutFields(nmcp_EntityFX); function nmcp_EntityBreakingFX__init_1(var_0, var_1, var_2, var_3, var_4) { @@ -1254786,42 +1259208,22 @@ }} $rt_nativeThread().push($this, $accelerator, $var2, $f, $f1, $f2, $f3, $f4, $f5, $w, $h, $xOffset, $yOffset, $texSize, $ptr); } - function nmcp_EntityFlameFX() { - nmcp_EntityFX.call(this); - this.$flameScale = 0.0; + function nmcp_EntityEnchantmentTableParticleFX() { + var a = this; nmcp_EntityFX.call(a); + a.$field_70565_a = 0.0; + a.$coordX = 0.0; + a.$coordY = 0.0; + a.$coordZ = 0.0; } - function nmcp_EntityFlameFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5) { - var $f6, $ptr, $tmp; + function nmcp_EntityEnchantmentTableParticleFX_getBrightnessForRender($this, $f) { + var $i, $f1, $j, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$f6 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$entity = $thread.pop();$worldrenderer = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();$j = $thread.pop();$f1 = $thread.pop();$i = $thread.pop();$f = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: - $f6 = ($this.$particleAge + $f) / $this.$particleMaxAge; - $this.$particleScale = $this.$flameScale * (1.0 - $f6 * $f6 * 0.5); - $ptr = 1; - case 1: - nmcp_EntityFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5, $f6, $ptr); - } - function nmcp_EntityFlameFX_getBrightnessForRender($this, $f) { - var var$2, $i, $j, $k, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$k = $thread.pop();$j = $thread.pop();$i = $thread.pop();var$2 = $thread.pop();$f = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - var$2 = nmu_MathHelper_clamp_float(($this.$particleAge + $f) / $this.$particleMaxAge, 0.0, 1.0); $ptr = 1; case 1: $tmp = nme_Entity_getBrightnessForRender($this, $f); @@ -1254829,88 +1259231,63 @@ break main; } $i = $tmp; + $f1 = $this.$particleAge / $this.$particleMaxAge; + $f = $f1 * $f1; + $f = $f * $f; $j = $i & 255; - $k = $i >> 16 & 255; - $i = $j + (var$2 * 15.0 * 16.0 | 0) | 0; + $i = ($i >> 16 & 255) + ($f * 15.0 * 16.0 | 0) | 0; if ($i > 240) $i = 240; - return $i | $k << 16; + return $j | $i << 16; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $f, var$2, $i, $j, $k, $ptr); + $rt_nativeThread().push($this, $f, $i, $f1, $j, $ptr); } - function nmcp_EntityFlameFX_getBrightness($this, $f) { - var var$2, $f2, $ptr, $tmp; + function nmcp_EntityEnchantmentTableParticleFX_getBrightness($this, $f) { + var $f1, $f2, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$f2 = $thread.pop();var$2 = $thread.pop();$f = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: - var$2 = nmu_MathHelper_clamp_float(($this.$particleAge + $f) / $this.$particleMaxAge, 0.0, 1.0); $ptr = 1; case 1: $tmp = nme_Entity_getBrightness($this, $f); if ($rt_suspending()) { break main; } - $f2 = $tmp; - return $f2 * var$2 + 1.0 - var$2; + $f1 = $tmp; + $f2 = $this.$particleAge / $this.$particleMaxAge; + $f = $f2 * $f2; + $f = $f * $f; + return $f1 * (1.0 - $f) + $f; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $f, var$2, $f2, $ptr); + $rt_nativeThread().push($this, $f, $f1, $f2, $ptr); } - function nmcp_EntityFlameFX_onUpdate($this) { - var var$1, var$2, var$3, var$4, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $this.$prevPosX = $this.$posX; - $this.$prevPosY = $this.$posY; - $this.$prevPosZ = $this.$posZ; - var$1 = $this.$particleAge; - $this.$particleAge = var$1 + 1 | 0; - if (var$1 >= $this.$particleMaxAge) { - $ptr = 2; - continue main; - } - var$2 = $this.$motionX; - var$3 = $this.$motionY; - var$4 = $this.$motionZ; - $ptr = 1; - case 1: - nme_Entity_moveEntity($this, var$2, var$3, var$4); - if ($rt_suspending()) { - break main; - } - var$2 = $this.$motionX * 0.9599999785423279; - $this.$motionX = var$2; - $this.$motionY = $this.$motionY * 0.9599999785423279; - var$3 = $this.$motionZ * 0.9599999785423279; - $this.$motionZ = var$3; - if ($this.$onGround) { - $this.$motionX = var$2 * 0.699999988079071; - $this.$motionZ = var$3 * 0.699999988079071; - } - return; - case 2: + function nmcp_EntityEnchantmentTableParticleFX_onUpdate($this) { + var var$1, $f, var$3, $f1, var$5, var$6, var$7; + $this.$prevPosX = $this.$posX; + $this.$prevPosY = $this.$posY; + $this.$prevPosZ = $this.$posZ; + var$1 = $this.$particleAge; + $f = var$1; + var$3 = $this.$particleMaxAge; + $f = 1.0 - $f / var$3; + $f1 = 1.0 - $f; + $f1 = $f1 * $f1; + $f1 = $f1 * $f1; + var$5 = $this.$coordX; + var$6 = $this.$motionX; + var$7 = $f; + $this.$posX = var$5 + var$6 * var$7; + $this.$posY = $this.$coordY + $this.$motionY * var$7 - $f1 * 1.2000000476837158; + $this.$posZ = $this.$coordZ + $this.$motionZ * var$7; + $this.$particleAge = var$1 + 1 | 0; + if (var$1 >= var$3) nme_Entity_setDead($this); - if ($rt_suspending()) { - break main; - } - var$2 = $this.$motionX; - var$3 = $this.$motionY; - var$4 = $this.$motionZ; - $ptr = 1; - continue main; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); } function nmcp_EntitySmokeFX() { nmcp_EntityFX.call(this); @@ -1255047,86 +1259424,21 @@ }} $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); } - function nmcp_EntitySpellParticleFX() { + function nmcp_EntityNoteFX() { nmcp_EntityFX.call(this); - this.$baseSpellTextureIndex = 0; + this.$noteParticleScale = 0.0; } - var nmcp_EntitySpellParticleFX_RANDOM = null; - var nmcp_EntitySpellParticleFX_$clinitCalled = false; - function nmcp_EntitySpellParticleFX_$callClinit() { - var $ptr = 0; - if ($rt_resuming()) { - $ptr = $rt_nativeThread().pop(); - } else if (nmcp_EntitySpellParticleFX_$clinitCalled) { - return; - } - main: while (true) { switch ($ptr) { - case 0: - nmcp_EntitySpellParticleFX_$clinitCalled = true; - $ptr = 1; - case 1: - nmcp_EntitySpellParticleFX__clinit_(); - if ($rt_suspending()) { - break main; - } - nmcp_EntitySpellParticleFX_$callClinit = $rt_eraseClinit(nmcp_EntitySpellParticleFX); - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($ptr); - } - function nmcp_EntitySpellParticleFX__init_0(var_0, var_1, var_2, var_3, var_4, var_5, var_6) { - var var_7 = new nmcp_EntitySpellParticleFX(); - nmcp_EntitySpellParticleFX__init_(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); - return var_7; - } - function nmcp_EntitySpellParticleFX__init_($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, $parDouble1, $parDouble2, $parDouble3) { - var var$8, var$9, $ptr, $tmp; + function nmcp_EntityNoteFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5) { + var var$9, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();$parDouble3 = $thread.pop();$parDouble2 = $thread.pop();$parDouble1 = $thread.pop();$zCoordIn = $thread.pop();$yCoordIn = $thread.pop();$xCoordIn = $thread.pop();$worldIn = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$9 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$entity = $thread.pop();$worldrenderer = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: - $ptr = 1; - case 1: - nmcp_EntitySpellParticleFX_$callClinit(); - if ($rt_suspending()) { - break main; - } - var$8 = 0.5 - nlev_EaglercraftRandom_nextDouble(nmcp_EntitySpellParticleFX_RANDOM); - var$9 = 0.5 - nlev_EaglercraftRandom_nextDouble(nmcp_EntitySpellParticleFX_RANDOM); - $ptr = 2; - case 2: - nmcp_EntityFX__init_($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, var$8, $parDouble2, var$9); - if ($rt_suspending()) { - break main; - } - $this.$baseSpellTextureIndex = 128; - $this.$motionY = $this.$motionY * 0.20000000298023224; - if ($parDouble1 === 0.0 && $parDouble3 === 0.0) { - $this.$motionX = $this.$motionX * 0.10000000149011612; - $this.$motionZ = $this.$motionZ * 0.10000000149011612; - } - $this.$particleScale = $this.$particleScale * 0.75; - $this.$particleMaxAge = 8.0 / (jl_Math_random() * 0.8 + 0.2) | 0; - $this.$noClip = 0; - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, $parDouble1, $parDouble2, $parDouble3, var$8, var$9, $ptr); - } - function nmcp_EntitySpellParticleFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5) { - var $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$entity = $thread.pop();$worldrenderer = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - nmu_MathHelper_clamp_float(($this.$particleAge + $f) / $this.$particleMaxAge * 32.0, 0.0, 1.0); + var$9 = nmu_MathHelper_clamp_float(($this.$particleAge + $f) / $this.$particleMaxAge * 32.0, 0.0, 1.0); + $this.$particleScale = $this.$noteParticleScale * var$9; $ptr = 1; case 1: nmcp_EntityFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5); @@ -1255136,9 +1259448,9 @@ return; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5, $ptr); + $rt_nativeThread().push($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5, var$9, $ptr); } - function nmcp_EntitySpellParticleFX_onUpdate($this) { + function nmcp_EntityNoteFX_onUpdate($this) { var var$1, var$2, var$3, var$4, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { @@ -1255156,14 +1259468,12 @@ $ptr = 2; continue main; } - nmcp_EntityFX_setParticleTextureIndex($this, $this.$baseSpellTextureIndex + (7 - (($this.$particleAge * 8 | 0) / $this.$particleMaxAge | 0) | 0) | 0); - var$2 = $this.$motionY + 0.004; - $this.$motionY = var$2; - var$3 = $this.$motionX; + var$2 = $this.$motionX; + var$3 = $this.$motionY; var$4 = $this.$motionZ; $ptr = 1; case 1: - nme_Entity_moveEntity($this, var$3, var$2, var$4); + nme_Entity_moveEntity($this, var$2, var$3, var$4); if ($rt_suspending()) { break main; } @@ -1255171,10 +1259481,10 @@ $this.$motionX = $this.$motionX * 1.1; $this.$motionZ = $this.$motionZ * 1.1; } - var$2 = $this.$motionX * 0.9599999785423279; + var$2 = $this.$motionX * 0.6600000262260437; $this.$motionX = var$2; - $this.$motionY = $this.$motionY * 0.9599999785423279; - var$3 = $this.$motionZ * 0.9599999785423279; + $this.$motionY = $this.$motionY * 0.6600000262260437; + var$3 = $this.$motionZ * 0.6600000262260437; $this.$motionZ = var$3; if ($this.$onGround) { $this.$motionX = var$2 * 0.699999988079071; @@ -1255186,10 +1259496,8 @@ if ($rt_suspending()) { break main; } - nmcp_EntityFX_setParticleTextureIndex($this, $this.$baseSpellTextureIndex + (7 - (($this.$particleAge * 8 | 0) / $this.$particleMaxAge | 0) | 0) | 0); - var$2 = $this.$motionY + 0.004; - $this.$motionY = var$2; - var$3 = $this.$motionX; + var$2 = $this.$motionX; + var$3 = $this.$motionY; var$4 = $this.$motionZ; $ptr = 1; continue main; @@ -1255197,311 +1259505,6 @@ }} $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); } - function nmcp_EntitySpellParticleFX__clinit_() { - var var$1, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$1 = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - var$1 = new nlev_EaglercraftRandom; - $ptr = 1; - case 1: - nlev_EaglercraftRandom__init_(var$1); - if ($rt_suspending()) { - break main; - } - nmcp_EntitySpellParticleFX_RANDOM = var$1; - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push(var$1, $ptr); - } - function nmcp_EntityDropParticleFX() { - var a = this; nmcp_EntityFX.call(a); - a.$materialType = null; - a.$bobTimer = 0; - } - function nmcp_EntityDropParticleFX__init_0(var_0, var_1, var_2, var_3, var_4) { - var var_5 = new nmcp_EntityDropParticleFX(); - nmcp_EntityDropParticleFX__init_(var_5, var_0, var_1, var_2, var_3, var_4); - return var_5; - } - function nmcp_EntityDropParticleFX__init_($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, $parMaterial) { - var var$6, var$7, var$8, var$9, var$10, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();$parMaterial = $thread.pop();$zCoordIn = $thread.pop();$yCoordIn = $thread.pop();$xCoordIn = $thread.pop();$worldIn = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - var$6 = 0.0; - var$7 = 0.0; - var$8 = 0.0; - $ptr = 1; - case 1: - nmcp_EntityFX__init_($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, var$6, var$7, var$8); - if ($rt_suspending()) { - break main; - } - $this.$motionZ = 0.0; - $this.$motionY = 0.0; - $this.$motionX = 0.0; - nmbm_Material_$callClinit(); - if ($parMaterial !== nmbm_Material_water) { - $this.$particleRed = 1.0; - $this.$particleGreen = 0.0; - $this.$particleBlue = 0.0; - } else { - $this.$particleRed = 0.0; - $this.$particleGreen = 0.0; - $this.$particleBlue = 1.0; - } - nmcp_EntityFX_setParticleTextureIndex($this, 113); - var$9 = 0.009999999776482582; - var$10 = 0.009999999776482582; - $ptr = 2; - case 2: - nme_Entity_setSize($this, var$9, var$10); - if ($rt_suspending()) { - break main; - } - $this.$particleGravity = 0.05999999865889549; - $this.$materialType = $parMaterial; - $this.$bobTimer = 40; - $this.$particleMaxAge = 64.0 / (jl_Math_random() * 0.8 + 0.2) | 0; - $this.$motionZ = 0.0; - $this.$motionY = 0.0; - $this.$motionX = 0.0; - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, $parMaterial, var$6, var$7, var$8, var$9, var$10, $ptr); - } - function nmcp_EntityDropParticleFX_getBrightnessForRender($this, $partialTicks) { - var var$2, var$3, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();$partialTicks = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - var$2 = $this.$materialType; - nmbm_Material_$callClinit(); - if (var$2 !== nmbm_Material_water) - return 257; - $ptr = 1; - case 1: - $tmp = nme_Entity_getBrightnessForRender($this, $partialTicks); - if ($rt_suspending()) { - break main; - } - var$3 = $tmp; - return var$3; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $partialTicks, var$2, var$3, $ptr); - } - function nmcp_EntityDropParticleFX_getBrightness($this, $partialTicks) { - var var$2, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$2 = $thread.pop();$partialTicks = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - var$2 = $this.$materialType; - nmbm_Material_$callClinit(); - if (var$2 !== nmbm_Material_water) - return 1.0; - $ptr = 1; - case 1: - $tmp = nme_Entity_getBrightness($this, $partialTicks); - if ($rt_suspending()) { - break main; - } - $partialTicks = $tmp; - return $partialTicks; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $partialTicks, var$2, $ptr); - } - function nmcp_EntityDropParticleFX_onUpdate($this) { - var $blockpos, var$2, $d0, $d1, var$5, $iblockstate, $material, var$8, var$9, var$10, var$11, var$12, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();$material = $thread.pop();$iblockstate = $thread.pop();var$5 = $thread.pop();$d1 = $thread.pop();$d0 = $thread.pop();var$2 = $thread.pop();$blockpos = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $this.$prevPosX = $this.$posX; - $this.$prevPosY = $this.$posY; - $this.$prevPosZ = $this.$posZ; - $blockpos = $this.$materialType; - nmbm_Material_$callClinit(); - if ($blockpos === nmbm_Material_water) { - $this.$particleRed = 0.20000000298023224; - $this.$particleGreen = 0.30000001192092896; - $this.$particleBlue = 1.0; - } else { - $this.$particleRed = 1.0; - var$2 = 40 - $this.$bobTimer | 0; - $this.$particleGreen = 16.0 / (var$2 + 16 | 0); - $this.$particleBlue = 4.0 / (var$2 + 8 | 0); - } - $d0 = $this.$motionY - $this.$particleGravity; - $this.$motionY = $d0; - var$2 = $this.$bobTimer; - $this.$bobTimer = var$2 - 1 | 0; - if (var$2 <= 0) - nmcp_EntityFX_setParticleTextureIndex($this, 112); - else { - $this.$motionX = $this.$motionX * 0.02; - $this.$motionY = $d0 * 0.02; - $this.$motionZ = $this.$motionZ * 0.02; - nmcp_EntityFX_setParticleTextureIndex($this, 113); - } - $d0 = $this.$motionX; - $d1 = $this.$motionY; - var$5 = $this.$motionZ; - $ptr = 1; - case 1: - nme_Entity_moveEntity($this, $d0, $d1, var$5); - if ($rt_suspending()) { - break main; - } - $this.$motionX = $this.$motionX * 0.9800000190734863; - $this.$motionY = $this.$motionY * 0.9800000190734863; - $this.$motionZ = $this.$motionZ * 0.9800000190734863; - var$2 = $this.$particleMaxAge; - $this.$particleMaxAge = var$2 - 1 | 0; - if (var$2 <= 0) { - $ptr = 2; - continue main; - } - if ($this.$onGround) { - if ($this.$materialType === nmbm_Material_water) { - $ptr = 4; - continue main; - } - nmcp_EntityFX_setParticleTextureIndex($this, 114); - $this.$motionX = $this.$motionX * 0.699999988079071; - $this.$motionZ = $this.$motionZ * 0.699999988079071; - } - $blockpos = nmu_BlockPos__init_3($this); - $iblockstate = $this.$worldObj0; - $ptr = 3; - continue main; - case 2: - nme_Entity_setDead($this); - if ($rt_suspending()) { - break main; - } - if ($this.$onGround) { - if ($this.$materialType === nmbm_Material_water) { - $ptr = 4; - continue main; - } - nmcp_EntityFX_setParticleTextureIndex($this, 114); - $this.$motionX = $this.$motionX * 0.699999988079071; - $this.$motionZ = $this.$motionZ * 0.699999988079071; - } - $blockpos = nmu_BlockPos__init_3($this); - $iblockstate = $this.$worldObj0; - $ptr = 3; - case 3: - $tmp = nmw_World_getBlockState($iblockstate, $blockpos); - if ($rt_suspending()) { - break main; - } - $iblockstate = $tmp; - $material = $iblockstate.$block.$blockMaterial; - if (!(!$material.$isLiquid() && !$material.$isSolid())) { - if ($iblockstate.$block instanceof nmb_BlockLiquid) { - $ptr = 7; - continue main; - } - $d1 = (nmu_MathHelper_floor_double($this.$posY) + 1 | 0) - 0.0; - if ($this.$posY < $d1) { - $ptr = 10; - continue main; - } - } - return; - case 4: - nme_Entity_setDead($this); - if ($rt_suspending()) { - break main; - } - $blockpos = $this.$worldObj0; - $ptr = 5; - case 5: - nmu_EnumParticleTypes_$callClinit(); - if ($rt_suspending()) { - break main; - } - $iblockstate = nmu_EnumParticleTypes_WATER_SPLASH; - var$8 = $this.$posX; - var$9 = $this.$posY; - var$10 = $this.$posZ; - $d0 = 0.0; - $d1 = 0.0; - var$5 = 0.0; - var$11 = $rt_createIntArray(0); - $ptr = 6; - case 6: - nmw_World_spawnParticle($blockpos, $iblockstate, var$8, var$9, var$10, $d0, $d1, var$5, var$11); - if ($rt_suspending()) { - break main; - } - $this.$motionX = $this.$motionX * 0.699999988079071; - $this.$motionZ = $this.$motionZ * 0.699999988079071; - $blockpos = nmu_BlockPos__init_3($this); - $iblockstate = $this.$worldObj0; - $ptr = 3; - continue main; - case 7: - nmb_BlockLiquid_$callClinit(); - if ($rt_suspending()) { - break main; - } - $blockpos = nmb_BlockLiquid_LEVEL; - $ptr = 8; - case 8: - $tmp = nmbs_BlockState$StateImplementation_getValue($iblockstate, $blockpos); - if ($rt_suspending()) { - break main; - } - $blockpos = $tmp; - var$2 = $blockpos.$value; - $ptr = 9; - case 9: - $tmp = nmb_BlockLiquid_getLiquidHeightPercent(var$2); - if ($rt_suspending()) { - break main; - } - var$12 = $tmp; - $d0 = var$12; - $d1 = (nmu_MathHelper_floor_double($this.$posY) + 1 | 0) - $d0; - if ($this.$posY >= $d1) - return; - $ptr = 10; - case 10: - nme_Entity_setDead($this); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $blockpos, var$2, $d0, $d1, var$5, $iblockstate, $material, var$8, var$9, var$10, var$11, var$12, $ptr); - } function nmcp_EntityLavaFX() { nmcp_EntityFX.call(this); this.$lavaParticleScale = 0.0; @@ -1255643,778 +1259646,37 @@ }} $rt_nativeThread().push($this, var$1, $f, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, $ptr); } - function nmcp_EntitySnowShovelFX() { - nmcp_EntityFX.call(this); - this.$snowDigParticleScale = 0.0; - } - function nmcp_EntitySnowShovelFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5) { - var var$9, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$9 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$entity = $thread.pop();$worldrenderer = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - var$9 = nmu_MathHelper_clamp_float(($this.$particleAge + $f) / $this.$particleMaxAge * 32.0, 0.0, 1.0); - $this.$particleScale = $this.$snowDigParticleScale * var$9; - $ptr = 1; - case 1: - nmcp_EntityFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5, var$9, $ptr); - } - function nmcp_EntitySnowShovelFX_onUpdate($this) { - var var$1, var$2, var$3, var$4, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $this.$prevPosX = $this.$posX; - $this.$prevPosY = $this.$posY; - $this.$prevPosZ = $this.$posZ; - var$1 = $this.$particleAge; - $this.$particleAge = var$1 + 1 | 0; - if (var$1 >= $this.$particleMaxAge) { - $ptr = 2; - continue main; - } - nmcp_EntityFX_setParticleTextureIndex($this, 7 - (($this.$particleAge * 8 | 0) / $this.$particleMaxAge | 0) | 0); - var$2 = $this.$motionY - 0.03; - $this.$motionY = var$2; - var$3 = $this.$motionX; - var$4 = $this.$motionZ; - $ptr = 1; - case 1: - nme_Entity_moveEntity($this, var$3, var$2, var$4); - if ($rt_suspending()) { - break main; - } - var$2 = $this.$motionX * 0.9900000095367432; - $this.$motionX = var$2; - $this.$motionY = $this.$motionY * 0.9900000095367432; - var$3 = $this.$motionZ * 0.9900000095367432; - $this.$motionZ = var$3; - if ($this.$onGround) { - $this.$motionX = var$2 * 0.699999988079071; - $this.$motionZ = var$3 * 0.699999988079071; - } - return; - case 2: - nme_Entity_setDead($this); - if ($rt_suspending()) { - break main; - } - nmcp_EntityFX_setParticleTextureIndex($this, 7 - (($this.$particleAge * 8 | 0) / $this.$particleMaxAge | 0) | 0); - var$2 = $this.$motionY - 0.03; - $this.$motionY = var$2; - var$3 = $this.$motionX; - var$4 = $this.$motionZ; - $ptr = 1; - continue main; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); - } - var nmcp_Barrier = $rt_classWithoutFields(nmcp_EntityFX); - function nmcp_Barrier_getFXLayer($this) { - return 1; - } - function nmcp_Barrier_renderParticle($this, $worldRendererIn, $entityIn, $partialTicks, $parFloat2, $parFloat3, $parFloat4, $parFloat5, $parFloat6) { - var $f, $f1, $f2, $f3, var$13, var$14, var$15, $f5, $f6, $f7, $i, $j, $k, var$22, var$23, var$24, var$25, var$26, var$27, var$28, var$29, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$29 = $thread.pop();var$28 = $thread.pop();var$27 = $thread.pop();var$26 = $thread.pop();var$25 = $thread.pop();var$24 = $thread.pop();var$23 = $thread.pop();var$22 = $thread.pop();$k = $thread.pop();$j = $thread.pop();$i = $thread.pop();$f7 = $thread.pop();$f6 = $thread.pop();$f5 = $thread.pop();var$15 = $thread.pop();var$14 = $thread.pop();var$13 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$parFloat6 = $thread.pop();$parFloat5 - = $thread.pop();$parFloat4 = $thread.pop();$parFloat3 = $thread.pop();$parFloat2 = $thread.pop();$partialTicks = $thread.pop();$entityIn = $thread.pop();$worldRendererIn = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $entityIn = $this.$particleIcon; - $f = $entityIn.$minU; - $f1 = $entityIn.$maxU; - $f2 = $entityIn.$minV; - $f3 = $entityIn.$maxV; - var$13 = $this.$prevPosX; - var$14 = $this.$posX - var$13; - var$15 = $partialTicks; - $f5 = var$13 + var$14 * var$15 - nmcp_EntityFX_interpPosX; - var$13 = $this.$prevPosY; - $f6 = var$13 + ($this.$posY - var$13) * var$15 - nmcp_EntityFX_interpPosY; - var$13 = $this.$prevPosZ; - $f7 = var$13 + ($this.$posZ - var$13) * var$15 - nmcp_EntityFX_interpPosZ; - $ptr = 1; - case 1: - $tmp = nme_Entity_getBrightnessForRender($this, $partialTicks); - if ($rt_suspending()) { - break main; - } - $i = $tmp; - $j = $i >> 16 & 65535; - $k = $i & 65535; - var$22 = $parFloat2 * 0.5; - var$23 = $f5 - var$22; - var$24 = $parFloat5 * 0.5; - var$14 = var$23 - var$24; - var$25 = $parFloat3 * 0.5; - var$26 = $f6 - var$25; - var$27 = $parFloat4 * 0.5; - $parFloat5 = $f7 - var$27; - $parFloat2 = $parFloat6 * 0.5; - var$13 = $parFloat5 - $parFloat2; - $ptr = 2; - case 2: - $tmp = nlevo_WorldRenderer_pos($worldRendererIn, var$14, var$26, var$13); - if ($rt_suspending()) { - break main; - } - $entityIn = $tmp; - var$14 = $f1; - var$15 = $f3; - $ptr = 3; - case 3: - $tmp = nlevo_WorldRenderer_tex($entityIn, var$14, var$15); - if ($rt_suspending()) { - break main; - } - $entityIn = $tmp; - $partialTicks = $this.$particleRed; - $parFloat3 = $this.$particleGreen; - $parFloat4 = $this.$particleBlue; - $parFloat6 = 1.0; - $ptr = 4; - case 4: - $tmp = nlevo_WorldRenderer_color0($entityIn, $partialTicks, $parFloat3, $parFloat4, $parFloat6); - if ($rt_suspending()) { - break main; - } - $entityIn = $tmp; - $ptr = 5; - case 5: - $tmp = nlevo_WorldRenderer_lightmap($entityIn, $j, $k); - if ($rt_suspending()) { - break main; - } - $entityIn = $tmp; - $ptr = 6; - case 6: - nlevo_WorldRenderer_endVertex($entityIn); - if ($rt_suspending()) { - break main; - } - var$13 = var$23 + var$24; - var$28 = $f6 + var$25; - var$29 = $parFloat5 + $parFloat2; - $ptr = 7; - case 7: - $tmp = nlevo_WorldRenderer_pos($worldRendererIn, var$13, var$28, var$29); - if ($rt_suspending()) { - break main; - } - $entityIn = $tmp; - var$13 = $f2; - $ptr = 8; - case 8: - $tmp = nlevo_WorldRenderer_tex($entityIn, var$14, var$13); - if ($rt_suspending()) { - break main; - } - $entityIn = $tmp; - $partialTicks = $this.$particleRed; - $parFloat3 = $this.$particleGreen; - $parFloat4 = $this.$particleBlue; - $parFloat5 = 1.0; - $ptr = 9; - case 9: - $tmp = nlevo_WorldRenderer_color0($entityIn, $partialTicks, $parFloat3, $parFloat4, $parFloat5); - if ($rt_suspending()) { - break main; - } - $entityIn = $tmp; - $ptr = 10; - case 10: - $tmp = nlevo_WorldRenderer_lightmap($entityIn, $j, $k); - if ($rt_suspending()) { - break main; - } - $entityIn = $tmp; - $ptr = 11; - case 11: - nlevo_WorldRenderer_endVertex($entityIn); - if ($rt_suspending()) { - break main; - } - $partialTicks = $f5 + var$22; - var$14 = $partialTicks + var$24; - $parFloat3 = $f7 + var$27; - var$29 = $parFloat3 + $parFloat2; - $ptr = 12; - case 12: - $tmp = nlevo_WorldRenderer_pos($worldRendererIn, var$14, var$28, var$29); - if ($rt_suspending()) { - break main; - } - $entityIn = $tmp; - var$14 = $f; - $ptr = 13; - case 13: - $tmp = nlevo_WorldRenderer_tex($entityIn, var$14, var$13); - if ($rt_suspending()) { - break main; - } - $entityIn = $tmp; - $parFloat4 = $this.$particleRed; - $parFloat5 = $this.$particleGreen; - $parFloat6 = $this.$particleBlue; - $f5 = 1.0; - $ptr = 14; - case 14: - $tmp = nlevo_WorldRenderer_color0($entityIn, $parFloat4, $parFloat5, $parFloat6, $f5); - if ($rt_suspending()) { - break main; - } - $entityIn = $tmp; - $ptr = 15; - case 15: - $tmp = nlevo_WorldRenderer_lightmap($entityIn, $j, $k); - if ($rt_suspending()) { - break main; - } - $entityIn = $tmp; - $ptr = 16; - case 16: - nlevo_WorldRenderer_endVertex($entityIn); - if ($rt_suspending()) { - break main; - } - var$28 = $partialTicks - var$24; - var$13 = $parFloat3 - $parFloat2; - $ptr = 17; - case 17: - $tmp = nlevo_WorldRenderer_pos($worldRendererIn, var$28, var$26, var$13); - if ($rt_suspending()) { - break main; - } - $worldRendererIn = $tmp; - $ptr = 18; - case 18: - $tmp = nlevo_WorldRenderer_tex($worldRendererIn, var$14, var$15); - if ($rt_suspending()) { - break main; - } - $worldRendererIn = $tmp; - $partialTicks = $this.$particleRed; - $parFloat2 = $this.$particleGreen; - $parFloat3 = $this.$particleBlue; - $parFloat4 = 1.0; - $ptr = 19; - case 19: - $tmp = nlevo_WorldRenderer_color0($worldRendererIn, $partialTicks, $parFloat2, $parFloat3, $parFloat4); - if ($rt_suspending()) { - break main; - } - $worldRendererIn = $tmp; - $ptr = 20; - case 20: - $tmp = nlevo_WorldRenderer_lightmap($worldRendererIn, $j, $k); - if ($rt_suspending()) { - break main; - } - $worldRendererIn = $tmp; - $ptr = 21; - case 21: - nlevo_WorldRenderer_endVertex($worldRendererIn); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $worldRendererIn, $entityIn, $partialTicks, $parFloat2, $parFloat3, $parFloat4, $parFloat5, $parFloat6, $f, $f1, $f2, $f3, var$13, var$14, var$15, $f5, $f6, $f7, $i, $j, $k, var$22, var$23, var$24, var$25, var$26, var$27, var$28, var$29, $ptr); - } - function nmcp_Barrier_renderAccelerated($this, $accelerator, $var2, $f, $f1, $f2, $f3, $f4, $f5) { - var var$9, var$10, var$11, var$12, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$var2 = $thread.pop();$accelerator = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $var2 = $this.$particleIcon; - var$9 = $var2.$originX; - var$10 = $var2.$originY; - $ptr = 1; - case 1: - $tmp = nme_Entity_getBrightnessForRender($this, $f); - if ($rt_suspending()) { - break main; - } - var$11 = $tmp; - $var2 = $this.$particleIcon; - var$12 = jl_Math_min($var2.$width9, $var2.$height9); - $f = 0.5; - $f1 = $this.$particleRed; - $f2 = $this.$particleGreen; - $f3 = $this.$particleBlue; - $f4 = $this.$particleAlpha; - $ptr = 2; - case 2: - $accelerator.$drawParticle($this, var$9, var$10, var$11, var$12, $f, $f1, $f2, $f3, $f4); - if ($rt_suspending()) { - break main; - } - return 1; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $accelerator, $var2, $f, $f1, $f2, $f3, $f4, $f5, var$9, var$10, var$11, var$12, $ptr); - } - function nmcp_MobAppearance() { - nmcp_EntityFX.call(this); - this.$entity5 = null; - } - function nmcp_MobAppearance_getFXLayer($this) { - return 3; - } - function nmcp_MobAppearance_onUpdate($this) { - var $entityguardian, var$2, var$3, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();$entityguardian = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - nmcp_EntityFX_onUpdate($this); - if ($rt_suspending()) { - break main; - } - if ($this.$entity5 !== null) - return; - $entityguardian = new nmem_EntityGuardian; - var$2 = $this.$worldObj0; - $ptr = 2; - case 2: - nmem_EntityGuardian__init_0($entityguardian, var$2); - if ($rt_suspending()) { - break main; - } - var$3 = 1; - $ptr = 3; - case 3: - nmem_EntityGuardian_setElder($entityguardian, var$3); - if ($rt_suspending()) { - break main; - } - $entityguardian.$field_175485_bl = 1.0; - $entityguardian.$field_175486_bm = 1.0; - $this.$entity5 = $entityguardian; - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $entityguardian, var$2, var$3, $ptr); - } - function nmcp_MobAppearance_renderParticle($this, $var1, $entityx, $f, $var4, $var5, $var6, $var7, $var8) { - var $rendermanager, $f1, $f2, var$12, var$13, $f3, $f4, var$16, var$17, var$18, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$18 = $thread.pop();var$17 = $thread.pop();var$16 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();var$13 = $thread.pop();var$12 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$rendermanager = $thread.pop();$var8 = $thread.pop();$var7 = $thread.pop();$var6 = $thread.pop();$var5 = $thread.pop();$var4 = $thread.pop();$f = $thread.pop();$entityx = $thread.pop();$var1 = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - if ($this.$entity5 === null) - return; - $ptr = 1; - case 1: - $tmp = nmc_Minecraft_getMinecraft(); - if ($rt_suspending()) { - break main; - } - $var1 = $tmp; - $rendermanager = $var1.$renderManager; - nmcre_RenderManager_setRenderPosition($rendermanager, nmcp_EntityFX_interpPosX, nmcp_EntityFX_interpPosY, nmcp_EntityFX_interpPosZ); - $f1 = 0.42553192377090454; - $f2 = ($this.$particleAge + $f) / $this.$particleMaxAge; - var$12 = 1; - $ptr = 2; - case 2: - nlevo_GlStateManager_depthMask(var$12); - if ($rt_suspending()) { - break main; - } - $ptr = 3; - case 3: - nlevo_GlStateManager_enableBlend(); - if ($rt_suspending()) { - break main; - } - $ptr = 4; - case 4: - nlevo_GlStateManager_enableDepth(); - if ($rt_suspending()) { - break main; - } - var$12 = 770; - var$13 = 771; - $ptr = 5; - case 5: - nlevo_GlStateManager_blendFunc(var$12, var$13); - if ($rt_suspending()) { - break main; - } - $f3 = 240.0; - var$12 = 33985; - $ptr = 6; - case 6: - nlevo_OpenGlHelper_setLightmapTextureCoords(var$12, $f3, $f3); - if ($rt_suspending()) { - break main; - } - $ptr = 7; - case 7: - nlevo_GlStateManager_pushMatrix(); - if ($rt_suspending()) { - break main; - } - $f4 = 0.05000000074505806 + 0.5 * nmu_MathHelper_sin($f2 * 3.1415927410125732); - $var4 = 1.0; - $var5 = 1.0; - $var6 = 1.0; - $ptr = 8; - case 8: - nlevo_GlStateManager_color($var4, $var5, $var6, $f4); - if ($rt_suspending()) { - break main; - } - $var4 = 0.0; - $var5 = 1.7999999523162842; - $var6 = 0.0; - $ptr = 9; - case 9: - nlevo_GlStateManager_translate($var4, $var5, $var6); - if ($rt_suspending()) { - break main; - } - $var4 = 180.0 - $entityx.$rotationYaw; - $var5 = 0.0; - $var6 = 1.0; - $var7 = 0.0; - $ptr = 10; - case 10: - nlevo_GlStateManager_rotate($var4, $var5, $var6, $var7); - if ($rt_suspending()) { - break main; - } - $var4 = 60.0 - 150.0 * $f2 - $entityx.$rotationPitch; - $var5 = 1.0; - $var6 = 0.0; - $var7 = 0.0; - $ptr = 11; - case 11: - nlevo_GlStateManager_rotate($var4, $var5, $var6, $var7); - if ($rt_suspending()) { - break main; - } - $var4 = 0.0; - $var5 = (-0.4000000059604645); - $var6 = (-1.5); - $ptr = 12; - case 12: - nlevo_GlStateManager_translate($var4, $var5, $var6); - if ($rt_suspending()) { - break main; - } - $ptr = 13; - case 13: - nlevo_GlStateManager_scale($f1, $f1, $f1); - if ($rt_suspending()) { - break main; - } - $var1 = $this.$entity5; - $var1.$prevRotationYaw = 0.0; - $var1.$rotationYaw = 0.0; - $var1.$prevRotationYawHead = 0.0; - $var1.$rotationYawHead = 0.0; - var$16 = 0.0; - var$17 = 0.0; - var$18 = 0.0; - $var4 = 0.0; - $ptr = 14; - case 14: - nmcre_RenderManager_renderEntityWithPosYaw($rendermanager, $var1, var$16, var$17, var$18, $var4, $f); - if ($rt_suspending()) { - break main; - } - $ptr = 15; - case 15: - nlevo_GlStateManager_popMatrix(); - if ($rt_suspending()) { - break main; - } - $ptr = 16; - case 16: - nlevo_GlStateManager_enableDepth(); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $var1, $entityx, $f, $var4, $var5, $var6, $var7, $var8, $rendermanager, $f1, $f2, var$12, var$13, $f3, $f4, var$16, var$17, var$18, $ptr); - } - function nmcp_EntityHeartFX() { - nmcp_EntityFX.call(this); - this.$particleScaleOverTime = 0.0; - } - function nmcp_EntityHeartFX__init_0(var_0, var_1, var_2, var_3, var_4, var_5, var_6) { - var var_7 = new nmcp_EntityHeartFX(); - nmcp_EntityHeartFX__init_(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); - return var_7; - } - function nmcp_EntityHeartFX__init_($this, $worldIn, $parDouble1, $parDouble2, $parDouble3, $parDouble4, $parDouble5, $parDouble6) { - var var$8, var$9, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();$parDouble6 = $thread.pop();$parDouble5 = $thread.pop();$parDouble4 = $thread.pop();$parDouble3 = $thread.pop();$parDouble2 = $thread.pop();$parDouble1 = $thread.pop();$worldIn = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - var$8 = 2.0; - $parDouble4 = 0.0; - $parDouble5 = 0.0; - $parDouble6 = 0.0; - $ptr = 1; - case 1: - nmcp_EntityFX__init_($this, $worldIn, $parDouble1, $parDouble2, $parDouble3, $parDouble4, $parDouble5, $parDouble6); - if ($rt_suspending()) { - break main; - } - $this.$motionX = $this.$motionX * 0.009999999776482582; - $parDouble1 = $this.$motionY * 0.009999999776482582; - $this.$motionY = $parDouble1; - $this.$motionZ = $this.$motionZ * 0.009999999776482582; - $this.$motionY = $parDouble1 + 0.1; - var$9 = $this.$particleScale * 0.75; - $this.$particleScale = var$9; - var$8 = var$9 * var$8; - $this.$particleScale = var$8; - $this.$particleScaleOverTime = var$8; - $this.$particleMaxAge = 16; - $this.$noClip = 0; - nmcp_EntityFX_setParticleTextureIndex($this, 80); - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $worldIn, $parDouble1, $parDouble2, $parDouble3, $parDouble4, $parDouble5, $parDouble6, var$8, var$9, $ptr); - } - function nmcp_EntityHeartFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5) { - var var$9, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$9 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$entity = $thread.pop();$worldrenderer = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - var$9 = nmu_MathHelper_clamp_float(($this.$particleAge + $f) / $this.$particleMaxAge * 32.0, 0.0, 1.0); - $this.$particleScale = $this.$particleScaleOverTime * var$9; - $ptr = 1; - case 1: - nmcp_EntityFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5, var$9, $ptr); - } - function nmcp_EntityHeartFX_onUpdate($this) { - var var$1, var$2, var$3, var$4, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $this.$prevPosX = $this.$posX; - $this.$prevPosY = $this.$posY; - $this.$prevPosZ = $this.$posZ; - var$1 = $this.$particleAge; - $this.$particleAge = var$1 + 1 | 0; - if (var$1 >= $this.$particleMaxAge) { - $ptr = 2; - continue main; - } - var$2 = $this.$motionX; - var$3 = $this.$motionY; - var$4 = $this.$motionZ; - $ptr = 1; - case 1: - nme_Entity_moveEntity($this, var$2, var$3, var$4); - if ($rt_suspending()) { - break main; - } - if ($this.$posY === $this.$prevPosY) { - $this.$motionX = $this.$motionX * 1.1; - $this.$motionZ = $this.$motionZ * 1.1; - } - var$2 = $this.$motionX * 0.8600000143051147; - $this.$motionX = var$2; - $this.$motionY = $this.$motionY * 0.8600000143051147; - var$3 = $this.$motionZ * 0.8600000143051147; - $this.$motionZ = var$3; - if ($this.$onGround) { - $this.$motionX = var$2 * 0.699999988079071; - $this.$motionZ = var$3 * 0.699999988079071; - } - return; - case 2: - nme_Entity_setDead($this); - if ($rt_suspending()) { - break main; - } - var$2 = $this.$motionX; - var$3 = $this.$motionY; - var$4 = $this.$motionZ; - $ptr = 1; - continue main; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); - } - var nlevsr_RelayQuery = $rt_classWithoutFields(0); - function nmcp_EntityCloudFX() { - nmcp_EntityFX.call(this); - this.$field_70569_a = 0.0; - } - function nmcp_EntityCloudFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5) { - var var$9, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$9 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$entity = $thread.pop();$worldrenderer = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - var$9 = nmu_MathHelper_clamp_float(($this.$particleAge + $f) / $this.$particleMaxAge * 32.0, 0.0, 1.0); - $this.$particleScale = $this.$field_70569_a * var$9; - $ptr = 1; - case 1: - nmcp_EntityFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5, var$9, $ptr); - } - function nmcp_EntityCloudFX_onUpdate($this) { - var var$1, var$2, var$3, var$4, $entityplayer, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$entityplayer = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $this.$prevPosX = $this.$posX; - $this.$prevPosY = $this.$posY; - $this.$prevPosZ = $this.$posZ; - var$1 = $this.$particleAge; - $this.$particleAge = var$1 + 1 | 0; - if (var$1 >= $this.$particleMaxAge) { - $ptr = 3; - continue main; - } - nmcp_EntityFX_setParticleTextureIndex($this, 7 - (($this.$particleAge * 8 | 0) / $this.$particleMaxAge | 0) | 0); - var$2 = $this.$motionX; - var$3 = $this.$motionY; - var$4 = $this.$motionZ; - $ptr = 1; - case 1: - nme_Entity_moveEntity($this, var$2, var$3, var$4); - if ($rt_suspending()) { - break main; - } - $this.$motionX = $this.$motionX * 0.9599999785423279; - $this.$motionY = $this.$motionY * 0.9599999785423279; - $this.$motionZ = $this.$motionZ * 0.9599999785423279; - $entityplayer = $this.$worldObj0; - var$2 = 2.0; - $ptr = 2; - case 2: - $tmp = nmw_World_getClosestPlayerToEntity($entityplayer, $this, var$2); - if ($rt_suspending()) { - break main; - } - $entityplayer = $tmp; - if ($entityplayer !== null) { - var$2 = $this.$posY; - var$3 = $entityplayer.$boundingBox.$minY0; - if (var$2 > var$3) { - var$2 = var$2 + (var$3 - var$2) * 0.2; - $this.$posY = var$2; - var$3 = $this.$motionY; - $this.$motionY = var$3 + ($entityplayer.$motionY - var$3) * 0.2; - var$3 = $this.$posX; - var$4 = $this.$posZ; - $ptr = 4; - continue main; - } - } - if ($this.$onGround) { - $this.$motionX = $this.$motionX * 0.699999988079071; - $this.$motionZ = $this.$motionZ * 0.699999988079071; - } - return; - case 3: - nme_Entity_setDead($this); - if ($rt_suspending()) { - break main; - } - nmcp_EntityFX_setParticleTextureIndex($this, 7 - (($this.$particleAge * 8 | 0) / $this.$particleMaxAge | 0) | 0); - var$2 = $this.$motionX; - var$3 = $this.$motionY; - var$4 = $this.$motionZ; - $ptr = 1; - continue main; - case 4: - nme_Entity_setPosition($this, var$3, var$2, var$4); - if ($rt_suspending()) { - break main; - } - if ($this.$onGround) { - $this.$motionX = $this.$motionX * 0.699999988079071; - $this.$motionZ = $this.$motionZ * 0.699999988079071; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $entityplayer, $ptr); - } - function nmcp_EntityEnchantmentTableParticleFX() { + function nmcp_EntityPortalFX() { var a = this; nmcp_EntityFX.call(a); - a.$field_70565_a = 0.0; - a.$coordX = 0.0; - a.$coordY = 0.0; - a.$coordZ = 0.0; + a.$portalParticleScale = 0.0; + a.$portalPosX = 0.0; + a.$portalPosY = 0.0; + a.$portalPosZ = 0.0; } - function nmcp_EntityEnchantmentTableParticleFX_getBrightnessForRender($this, $f) { + function nmcp_EntityPortalFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5) { + var $f6, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();$f6 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$entity = $thread.pop();$worldrenderer = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $f6 = 1.0 - ($this.$particleAge + $f) / $this.$particleMaxAge; + $f6 = 1.0 - $f6 * $f6; + $this.$particleScale = $this.$portalParticleScale * $f6; + $ptr = 1; + case 1: + nmcp_EntityFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5, $f6, $ptr); + } + function nmcp_EntityPortalFX_getBrightnessForRender($this, $f) { var $i, $f1, $j, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { @@ -1256442,7 +1259704,7 @@ }} $rt_nativeThread().push($this, $f, $i, $f1, $j, $ptr); } - function nmcp_EntityEnchantmentTableParticleFX_getBrightness($this, $f) { + function nmcp_EntityPortalFX_getBrightness($this, $f) { var $f1, $f2, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { @@ -1256459,608 +1259721,33 @@ } $f1 = $tmp; $f2 = $this.$particleAge / $this.$particleMaxAge; - $f = $f2 * $f2; - $f = $f * $f; + $f = $f2 * $f2 * $f2 * $f2; return $f1 * (1.0 - $f) + $f; default: $rt_invalidPointer(); }} $rt_nativeThread().push($this, $f, $f1, $f2, $ptr); } - function nmcp_EntityEnchantmentTableParticleFX_onUpdate($this) { - var var$1, $f, var$3, $f1, var$5, var$6, var$7; + function nmcp_EntityPortalFX_onUpdate($this) { + var var$1, $f, var$3, var$4, var$5, var$6, var$7; $this.$prevPosX = $this.$posX; $this.$prevPosY = $this.$posY; $this.$prevPosZ = $this.$posZ; var$1 = $this.$particleAge; $f = var$1; var$3 = $this.$particleMaxAge; - $f = 1.0 - $f / var$3; - $f1 = 1.0 - $f; - $f1 = $f1 * $f1; - $f1 = $f1 * $f1; - var$5 = $this.$coordX; + $f = $f / var$3; + var$4 = 1.0 - ( -$f + $f * $f * 2.0); + var$5 = $this.$portalPosX; var$6 = $this.$motionX; - var$7 = $f; + var$7 = var$4; $this.$posX = var$5 + var$6 * var$7; - $this.$posY = $this.$coordY + $this.$motionY * var$7 - $f1 * 1.2000000476837158; - $this.$posZ = $this.$coordZ + $this.$motionZ * var$7; + $this.$posY = $this.$portalPosY + $this.$motionY * var$7 + 1.0 - var$4; + $this.$posZ = $this.$portalPosZ + $this.$motionZ * var$7; $this.$particleAge = var$1 + 1 | 0; if (var$1 >= var$3) nme_Entity_setDead($this); } - var nmcp_EntityExplodeFX = $rt_classWithoutFields(nmcp_EntityFX); - function nmcp_EntityExplodeFX_onUpdate($this) { - var var$1, var$2, var$3, var$4, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $this.$prevPosX = $this.$posX; - $this.$prevPosY = $this.$posY; - $this.$prevPosZ = $this.$posZ; - var$1 = $this.$particleAge; - $this.$particleAge = var$1 + 1 | 0; - if (var$1 >= $this.$particleMaxAge) { - $ptr = 2; - continue main; - } - nmcp_EntityFX_setParticleTextureIndex($this, 7 - (($this.$particleAge * 8 | 0) / $this.$particleMaxAge | 0) | 0); - var$2 = $this.$motionY + 0.004; - $this.$motionY = var$2; - var$3 = $this.$motionX; - var$4 = $this.$motionZ; - $ptr = 1; - case 1: - nme_Entity_moveEntity($this, var$3, var$2, var$4); - if ($rt_suspending()) { - break main; - } - var$2 = $this.$motionX * 0.8999999761581421; - $this.$motionX = var$2; - $this.$motionY = $this.$motionY * 0.8999999761581421; - var$3 = $this.$motionZ * 0.8999999761581421; - $this.$motionZ = var$3; - if ($this.$onGround) { - $this.$motionX = var$2 * 0.699999988079071; - $this.$motionZ = var$3 * 0.699999988079071; - } - return; - case 2: - nme_Entity_setDead($this); - if ($rt_suspending()) { - break main; - } - nmcp_EntityFX_setParticleTextureIndex($this, 7 - (($this.$particleAge * 8 | 0) / $this.$particleMaxAge | 0) | 0); - var$2 = $this.$motionY + 0.004; - $this.$motionY = var$2; - var$3 = $this.$motionX; - var$4 = $this.$motionZ; - $ptr = 1; - continue main; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); - } - var nmcp_EntityCritFX = $rt_classWithoutFields(nmcp_EntitySmokeFX); - var nmcp_EntityBlockDustFX = $rt_classWithoutFields(nmcp_EntityDiggingFX); - var nmcp_EntitySuspendFX = $rt_classWithoutFields(nmcp_EntityFX); - function nmcp_EntitySuspendFX_onUpdate($this) { - var var$1, var$2, var$3, var$4, var$5, var$6, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $this.$prevPosX = $this.$posX; - $this.$prevPosY = $this.$posY; - $this.$prevPosZ = $this.$posZ; - var$1 = $this.$motionX; - var$2 = $this.$motionY; - var$3 = $this.$motionZ; - $ptr = 1; - case 1: - nme_Entity_moveEntity($this, var$1, var$2, var$3); - if ($rt_suspending()) { - break main; - } - var$4 = $this.$worldObj0; - var$5 = nmu_BlockPos__init_3($this); - $ptr = 2; - case 2: - $tmp = nmw_World_getBlockState(var$4, var$5); - if ($rt_suspending()) { - break main; - } - var$4 = $tmp; - var$5 = var$4.$block.$blockMaterial; - nmbm_Material_$callClinit(); - if (var$5 !== nmbm_Material_water) { - $ptr = 3; - continue main; - } - var$6 = $this.$particleMaxAge; - $this.$particleMaxAge = var$6 - 1 | 0; - if (var$6 > 0) - return; - $ptr = 4; - continue main; - case 3: - nme_Entity_setDead($this); - if ($rt_suspending()) { - break main; - } - var$6 = $this.$particleMaxAge; - $this.$particleMaxAge = var$6 - 1 | 0; - if (var$6 > 0) - return; - $ptr = 4; - case 4: - nme_Entity_setDead($this); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, var$5, var$6, $ptr); - } - var nlevi_OpenGLObjects = $rt_classWithoutFields(); - function nlevi_OpenGLObjects__init_0() { - var var_0 = new nlevi_OpenGLObjects(); - nlevi_OpenGLObjects__init_(var_0); - return var_0; - } - function nlevi_OpenGLObjects__init_($this) {} - function nmcp_EntityFootStepFX() { - var a = this; nmcp_EntityFX.call(a); - a.$footstepAge = 0; - a.$footstepMaxAge = 0; - a.$currentFootSteps = null; - } - var nmcp_EntityFootStepFX_FOOTPRINT_TEXTURE = null; - var nmcp_EntityFootStepFX_$clinitCalled = false; - function nmcp_EntityFootStepFX_$callClinit() { - var $ptr = 0; - if ($rt_resuming()) { - $ptr = $rt_nativeThread().pop(); - } else if (nmcp_EntityFootStepFX_$clinitCalled) { - return; - } - main: while (true) { switch ($ptr) { - case 0: - nmcp_EntityFootStepFX_$clinitCalled = true; - $ptr = 1; - case 1: - nmcp_EntityFootStepFX__clinit_(); - if ($rt_suspending()) { - break main; - } - nmcp_EntityFootStepFX_$callClinit = $rt_eraseClinit(nmcp_EntityFootStepFX); - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($ptr); - } - function nmcp_EntityFootStepFX_renderParticle($this, $worldrenderer, $var2, $f, $var4, $var5, $var6, $var7, $var8) { - var $f1, $f2, $f4, $f5, $f6, var$14, $f7, var$16, var$17, var$18, var$19, var$20, var$21, var$22, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$22 = $thread.pop();var$21 = $thread.pop();var$20 = $thread.pop();var$19 = $thread.pop();var$18 = $thread.pop();var$17 = $thread.pop();var$16 = $thread.pop();$f7 = $thread.pop();var$14 = $thread.pop();$f6 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$var8 = $thread.pop();$var7 = $thread.pop();$var6 = $thread.pop();$var5 = $thread.pop();$var4 = $thread.pop();$f = $thread.pop();$var2 = $thread.pop();$worldrenderer = $thread.pop();$this - = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $f1 = ($this.$footstepAge + $f) / $this.$footstepMaxAge; - $f2 = 2.0 - $f1 * $f1 * 2.0; - if ($f2 > 1.0) - $f2 = 1.0; - $f = $f2 * 0.20000000298023224; - $ptr = 1; - case 1: - nlevo_GlStateManager_disableLighting(); - if ($rt_suspending()) { - break main; - } - $f4 = $this.$posX - nmcp_EntityFX_interpPosX; - $f5 = $this.$posY - nmcp_EntityFX_interpPosY; - $f6 = $this.$posZ - nmcp_EntityFX_interpPosZ; - $var2 = $this.$worldObj0; - var$14 = nmu_BlockPos__init_3($this); - $ptr = 2; - case 2: - $tmp = nmw_World_getLightBrightness($var2, var$14); - if ($rt_suspending()) { - break main; - } - $f7 = $tmp; - $var2 = $this.$currentFootSteps; - $ptr = 3; - case 3: - nmcp_EntityFootStepFX_$callClinit(); - if ($rt_suspending()) { - break main; - } - var$14 = nmcp_EntityFootStepFX_FOOTPRINT_TEXTURE; - $ptr = 4; - case 4: - nmcrt_TextureManager_bindTexture($var2, var$14); - if ($rt_suspending()) { - break main; - } - $ptr = 5; - case 5: - nlevo_GlStateManager_enableBlend(); - if ($rt_suspending()) { - break main; - } - var$16 = 770; - var$17 = 771; - $ptr = 6; - case 6: - nlevo_GlStateManager_blendFunc(var$16, var$17); - if ($rt_suspending()) { - break main; - } - var$16 = 7; - nmcrv_DefaultVertexFormats_$callClinit(); - $var2 = nmcrv_DefaultVertexFormats_POSITION_TEX_COLOR; - $ptr = 7; - case 7: - nlevo_WorldRenderer_begin($worldrenderer, var$16, $var2); - if ($rt_suspending()) { - break main; - } - var$18 = $f4 - 0.125; - var$19 = $f5; - var$20 = $f6 + 0.125; - $ptr = 8; - case 8: - $tmp = nlevo_WorldRenderer_pos($worldrenderer, var$18, var$19, var$20); - if ($rt_suspending()) { - break main; - } - $var2 = $tmp; - var$21 = 0.0; - var$22 = 1.0; - $ptr = 9; - case 9: - $tmp = nlevo_WorldRenderer_tex($var2, var$21, var$22); - if ($rt_suspending()) { - break main; - } - $var2 = $tmp; - $ptr = 10; - case 10: - $tmp = nlevo_WorldRenderer_color0($var2, $f7, $f7, $f7, $f); - if ($rt_suspending()) { - break main; - } - $var2 = $tmp; - $ptr = 11; - case 11: - nlevo_WorldRenderer_endVertex($var2); - if ($rt_suspending()) { - break main; - } - var$21 = $f4 + 0.125; - $ptr = 12; - case 12: - $tmp = nlevo_WorldRenderer_pos($worldrenderer, var$21, var$19, var$20); - if ($rt_suspending()) { - break main; - } - $var2 = $tmp; - var$20 = 1.0; - var$22 = 1.0; - $ptr = 13; - case 13: - $tmp = nlevo_WorldRenderer_tex($var2, var$20, var$22); - if ($rt_suspending()) { - break main; - } - $var2 = $tmp; - $ptr = 14; - case 14: - $tmp = nlevo_WorldRenderer_color0($var2, $f7, $f7, $f7, $f); - if ($rt_suspending()) { - break main; - } - $var2 = $tmp; - $ptr = 15; - case 15: - nlevo_WorldRenderer_endVertex($var2); - if ($rt_suspending()) { - break main; - } - var$20 = $f6 - 0.125; - $ptr = 16; - case 16: - $tmp = nlevo_WorldRenderer_pos($worldrenderer, var$21, var$19, var$20); - if ($rt_suspending()) { - break main; - } - $var2 = $tmp; - var$21 = 1.0; - var$22 = 0.0; - $ptr = 17; - case 17: - $tmp = nlevo_WorldRenderer_tex($var2, var$21, var$22); - if ($rt_suspending()) { - break main; - } - $var2 = $tmp; - $ptr = 18; - case 18: - $tmp = nlevo_WorldRenderer_color0($var2, $f7, $f7, $f7, $f); - if ($rt_suspending()) { - break main; - } - $var2 = $tmp; - $ptr = 19; - case 19: - nlevo_WorldRenderer_endVertex($var2); - if ($rt_suspending()) { - break main; - } - $ptr = 20; - case 20: - $tmp = nlevo_WorldRenderer_pos($worldrenderer, var$18, var$19, var$20); - if ($rt_suspending()) { - break main; - } - $worldrenderer = $tmp; - var$18 = 0.0; - var$19 = 0.0; - $ptr = 21; - case 21: - $tmp = nlevo_WorldRenderer_tex($worldrenderer, var$18, var$19); - if ($rt_suspending()) { - break main; - } - $worldrenderer = $tmp; - $ptr = 22; - case 22: - $tmp = nlevo_WorldRenderer_color0($worldrenderer, $f7, $f7, $f7, $f); - if ($rt_suspending()) { - break main; - } - $worldrenderer = $tmp; - $ptr = 23; - case 23: - nlevo_WorldRenderer_endVertex($worldrenderer); - if ($rt_suspending()) { - break main; - } - $ptr = 24; - case 24: - $tmp = nmcr_Tessellator_getInstance(); - if ($rt_suspending()) { - break main; - } - $worldrenderer = $tmp; - $ptr = 25; - case 25: - nmcr_Tessellator_draw($worldrenderer); - if ($rt_suspending()) { - break main; - } - $ptr = 26; - case 26: - nlevo_GlStateManager_disableBlend(); - if ($rt_suspending()) { - break main; - } - $ptr = 27; - case 27: - nlevo_GlStateManager_enableLighting(); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $worldrenderer, $var2, $f, $var4, $var5, $var6, $var7, $var8, $f1, $f2, $f4, $f5, $f6, var$14, $f7, var$16, var$17, var$18, var$19, var$20, var$21, var$22, $ptr); - } - function nmcp_EntityFootStepFX_onUpdate($this) { - var var$1, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - var$1 = $this.$footstepAge + 1 | 0; - $this.$footstepAge = var$1; - if (var$1 != $this.$footstepMaxAge) - return; - $ptr = 1; - case 1: - nme_Entity_setDead($this); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, var$1, $ptr); - } - function nmcp_EntityFootStepFX_getFXLayer($this) { - var $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - return 3; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $ptr); - } - function nmcp_EntityFootStepFX__clinit_() { - var var$1, var$2, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - var$1 = new nmu_ResourceLocation; - var$2 = $rt_s(9026); - $ptr = 1; - case 1: - nmu_ResourceLocation__init_(var$1, var$2); - if ($rt_suspending()) { - break main; - } - nmcp_EntityFootStepFX_FOOTPRINT_TEXTURE = var$1; - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push(var$1, var$2, $ptr); - } - function nmcp_EntityReddustFX() { - nmcp_EntityFX.call(this); - this.$reddustParticleScale = 0.0; - } - function nmcp_EntityReddustFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5) { - var var$9, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$9 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$entity = $thread.pop();$worldrenderer = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - var$9 = nmu_MathHelper_clamp_float(($this.$particleAge + $f) / $this.$particleMaxAge * 32.0, 0.0, 1.0); - $this.$particleScale = $this.$reddustParticleScale * var$9; - $ptr = 1; - case 1: - nmcp_EntityFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5, var$9, $ptr); - } - function nmcp_EntityReddustFX_onUpdate($this) { - var var$1, var$2, var$3, var$4, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $this.$prevPosX = $this.$posX; - $this.$prevPosY = $this.$posY; - $this.$prevPosZ = $this.$posZ; - var$1 = $this.$particleAge; - $this.$particleAge = var$1 + 1 | 0; - if (var$1 >= $this.$particleMaxAge) { - $ptr = 2; - continue main; - } - nmcp_EntityFX_setParticleTextureIndex($this, 7 - (($this.$particleAge * 8 | 0) / $this.$particleMaxAge | 0) | 0); - var$2 = $this.$motionX; - var$3 = $this.$motionY; - var$4 = $this.$motionZ; - $ptr = 1; - case 1: - nme_Entity_moveEntity($this, var$2, var$3, var$4); - if ($rt_suspending()) { - break main; - } - if ($this.$posY === $this.$prevPosY) { - $this.$motionX = $this.$motionX * 1.1; - $this.$motionZ = $this.$motionZ * 1.1; - } - var$2 = $this.$motionX * 0.9599999785423279; - $this.$motionX = var$2; - $this.$motionY = $this.$motionY * 0.9599999785423279; - var$3 = $this.$motionZ * 0.9599999785423279; - $this.$motionZ = var$3; - if ($this.$onGround) { - $this.$motionX = var$2 * 0.699999988079071; - $this.$motionZ = var$3 * 0.699999988079071; - } - return; - case 2: - nme_Entity_setDead($this); - if ($rt_suspending()) { - break main; - } - nmcp_EntityFX_setParticleTextureIndex($this, 7 - (($this.$particleAge * 8 | 0) / $this.$particleMaxAge | 0) | 0); - var$2 = $this.$motionX; - var$3 = $this.$motionY; - var$4 = $this.$motionZ; - $ptr = 1; - continue main; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); - } - var nmcp_EntityFishWakeFX = $rt_classWithoutFields(nmcp_EntityFX); - function nmcp_EntityFishWakeFX_onUpdate($this) { - var var$1, var$2, var$3, $i, $f, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$f = $thread.pop();$i = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $this.$prevPosX = $this.$posX; - $this.$prevPosY = $this.$posY; - $this.$prevPosZ = $this.$posZ; - var$1 = $this.$motionY - $this.$particleGravity; - $this.$motionY = var$1; - var$2 = $this.$motionX; - var$3 = $this.$motionZ; - $ptr = 1; - case 1: - nme_Entity_moveEntity($this, var$2, var$1, var$3); - if ($rt_suspending()) { - break main; - } - $this.$motionX = $this.$motionX * 0.9800000190734863; - $this.$motionY = $this.$motionY * 0.9800000190734863; - $this.$motionZ = $this.$motionZ * 0.9800000190734863; - $i = 60 - $this.$particleMaxAge | 0; - $f = $i * 0.0010000000474974513; - $ptr = 2; - case 2: - nme_Entity_setSize($this, $f, $f); - if ($rt_suspending()) { - break main; - } - nmcp_EntityFX_setParticleTextureIndex($this, 19 + ($i % 4 | 0) | 0); - $i = $this.$particleMaxAge; - $this.$particleMaxAge = $i - 1 | 0; - if ($i > 0) - return; - $ptr = 3; - case 3: - nme_Entity_setDead($this); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, var$1, var$2, var$3, $i, $f, $ptr); - } + var nmcp_EntitySplashFX = $rt_classWithoutFields(nmcp_EntityRainFX); function nmcp_EntityLargeExplodeFX() { var a = this; nmcp_EntityFX.call(a); a.$field_70581_a = 0; @@ -1257508,279 +1260195,7 @@ }} $rt_nativeThread().push(var$1, var$2, $ptr); } - function nmcp_EntityNoteFX() { - nmcp_EntityFX.call(this); - this.$noteParticleScale = 0.0; - } - function nmcp_EntityNoteFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5) { - var var$9, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$9 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$entity = $thread.pop();$worldrenderer = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - var$9 = nmu_MathHelper_clamp_float(($this.$particleAge + $f) / $this.$particleMaxAge * 32.0, 0.0, 1.0); - $this.$particleScale = $this.$noteParticleScale * var$9; - $ptr = 1; - case 1: - nmcp_EntityFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5, var$9, $ptr); - } - function nmcp_EntityNoteFX_onUpdate($this) { - var var$1, var$2, var$3, var$4, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $this.$prevPosX = $this.$posX; - $this.$prevPosY = $this.$posY; - $this.$prevPosZ = $this.$posZ; - var$1 = $this.$particleAge; - $this.$particleAge = var$1 + 1 | 0; - if (var$1 >= $this.$particleMaxAge) { - $ptr = 2; - continue main; - } - var$2 = $this.$motionX; - var$3 = $this.$motionY; - var$4 = $this.$motionZ; - $ptr = 1; - case 1: - nme_Entity_moveEntity($this, var$2, var$3, var$4); - if ($rt_suspending()) { - break main; - } - if ($this.$posY === $this.$prevPosY) { - $this.$motionX = $this.$motionX * 1.1; - $this.$motionZ = $this.$motionZ * 1.1; - } - var$2 = $this.$motionX * 0.6600000262260437; - $this.$motionX = var$2; - $this.$motionY = $this.$motionY * 0.6600000262260437; - var$3 = $this.$motionZ * 0.6600000262260437; - $this.$motionZ = var$3; - if ($this.$onGround) { - $this.$motionX = var$2 * 0.699999988079071; - $this.$motionZ = var$3 * 0.699999988079071; - } - return; - case 2: - nme_Entity_setDead($this); - if ($rt_suspending()) { - break main; - } - var$2 = $this.$motionX; - var$3 = $this.$motionY; - var$4 = $this.$motionZ; - $ptr = 1; - continue main; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); - } - var nmcp_EntityAuraFX = $rt_classWithoutFields(nmcp_EntityFX); - function nmcp_EntityAuraFX__init_0(var_0, var_1, var_2, var_3, var_4, var_5, var_6) { - var var_7 = new nmcp_EntityAuraFX(); - nmcp_EntityAuraFX__init_(var_7, var_0, var_1, var_2, var_3, var_4, var_5, var_6); - return var_7; - } - function nmcp_EntityAuraFX__init_($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, $xSpeedIn, $ySpeedIn, $speedIn) { - var $f, var$9, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$9 = $thread.pop();$f = $thread.pop();$speedIn = $thread.pop();$ySpeedIn = $thread.pop();$xSpeedIn = $thread.pop();$zCoordIn = $thread.pop();$yCoordIn = $thread.pop();$xCoordIn = $thread.pop();$worldIn = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - nmcp_EntityFX__init_($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, $xSpeedIn, $ySpeedIn, $speedIn); - if ($rt_suspending()) { - break main; - } - $f = nlev_EaglercraftRandom_nextFloat($this.$rand1) * 0.10000000149011612 + 0.20000000298023224; - $this.$particleRed = $f; - $this.$particleGreen = $f; - $this.$particleBlue = $f; - nmcp_EntityFX_setParticleTextureIndex($this, 0); - $f = 0.019999999552965164; - var$9 = 0.019999999552965164; - $ptr = 2; - case 2: - nme_Entity_setSize($this, $f, var$9); - if ($rt_suspending()) { - break main; - } - $this.$particleScale = $this.$particleScale * (nlev_EaglercraftRandom_nextFloat($this.$rand1) * 0.6000000238418579 + 0.5); - $this.$motionX = $this.$motionX * 0.019999999552965164; - $this.$motionY = $this.$motionY * 0.019999999552965164; - $this.$motionZ = $this.$motionZ * 0.019999999552965164; - $this.$particleMaxAge = 20.0 / (jl_Math_random() * 0.8 + 0.2) | 0; - $this.$noClip = 1; - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $worldIn, $xCoordIn, $yCoordIn, $zCoordIn, $xSpeedIn, $ySpeedIn, $speedIn, $f, var$9, $ptr); - } - function nmcp_EntityAuraFX_onUpdate($this) { - var var$1, var$2, var$3, var$4, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $this.$prevPosX = $this.$posX; - $this.$prevPosY = $this.$posY; - $this.$prevPosZ = $this.$posZ; - var$1 = $this.$motionX; - var$2 = $this.$motionY; - var$3 = $this.$motionZ; - $ptr = 1; - case 1: - nme_Entity_moveEntity($this, var$1, var$2, var$3); - if ($rt_suspending()) { - break main; - } - $this.$motionX = $this.$motionX * 0.99; - $this.$motionY = $this.$motionY * 0.99; - $this.$motionZ = $this.$motionZ * 0.99; - var$4 = $this.$particleMaxAge; - $this.$particleMaxAge = var$4 - 1 | 0; - if (var$4 > 0) - return; - $ptr = 2; - case 2: - nme_Entity_setDead($this); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); - } - function nmcp_EntityPortalFX() { - var a = this; nmcp_EntityFX.call(a); - a.$portalParticleScale = 0.0; - a.$portalPosX = 0.0; - a.$portalPosY = 0.0; - a.$portalPosZ = 0.0; - } - function nmcp_EntityPortalFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5) { - var $f6, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$f6 = $thread.pop();$f5 = $thread.pop();$f4 = $thread.pop();$f3 = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$entity = $thread.pop();$worldrenderer = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $f6 = 1.0 - ($this.$particleAge + $f) / $this.$particleMaxAge; - $f6 = 1.0 - $f6 * $f6; - $this.$particleScale = $this.$portalParticleScale * $f6; - $ptr = 1; - case 1: - nmcp_EntityFX_renderParticle($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $worldrenderer, $entity, $f, $f1, $f2, $f3, $f4, $f5, $f6, $ptr); - } - function nmcp_EntityPortalFX_getBrightnessForRender($this, $f) { - var $i, $f1, $j, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$j = $thread.pop();$f1 = $thread.pop();$i = $thread.pop();$f = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - $tmp = nme_Entity_getBrightnessForRender($this, $f); - if ($rt_suspending()) { - break main; - } - $i = $tmp; - $f1 = $this.$particleAge / $this.$particleMaxAge; - $f = $f1 * $f1; - $f = $f * $f; - $j = $i & 255; - $i = ($i >> 16 & 255) + ($f * 15.0 * 16.0 | 0) | 0; - if ($i > 240) - $i = 240; - return $j | $i << 16; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $f, $i, $f1, $j, $ptr); - } - function nmcp_EntityPortalFX_getBrightness($this, $f) { - var $f1, $f2, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$f2 = $thread.pop();$f1 = $thread.pop();$f = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - $tmp = nme_Entity_getBrightness($this, $f); - if ($rt_suspending()) { - break main; - } - $f1 = $tmp; - $f2 = $this.$particleAge / $this.$particleMaxAge; - $f = $f2 * $f2 * $f2 * $f2; - return $f1 * (1.0 - $f) + $f; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $f, $f1, $f2, $ptr); - } - function nmcp_EntityPortalFX_onUpdate($this) { - var var$1, $f, var$3, var$4, var$5, var$6, var$7; - $this.$prevPosX = $this.$posX; - $this.$prevPosY = $this.$posY; - $this.$prevPosZ = $this.$posZ; - var$1 = $this.$particleAge; - $f = var$1; - var$3 = $this.$particleMaxAge; - $f = $f / var$3; - var$4 = 1.0 - ( -$f + $f * $f * 2.0); - var$5 = $this.$portalPosX; - var$6 = $this.$motionX; - var$7 = var$4; - $this.$posX = var$5 + var$6 * var$7; - $this.$posY = $this.$portalPosY + $this.$motionY * var$7 + 1.0 - var$4; - $this.$posZ = $this.$portalPosZ + $this.$motionZ * var$7; - $this.$particleAge = var$1 + 1 | 0; - if (var$1 >= var$3) - nme_Entity_setDead($this); - } - var nmcp_EntityFirework = $rt_classWithoutFields(); - function nmcp_EntityFirework__init_0() { - var var_0 = new nmcp_EntityFirework(); - nmcp_EntityFirework__init_(var_0); - return var_0; - } - function nmcp_EntityFirework__init_($this) {} + var nmcp_EntityCritFX = $rt_classWithoutFields(nmcp_EntitySmokeFX); function nmwgs_StructureBoundingBox() { var a = this; jl_Object.call(a); a.$minX3 = 0; @@ -1258086,7 +1260501,7 @@ } function cgcc_HashBiMap$Inverse$1$1() { cgcc_HashBiMap$Itr.call(this); - this.$this$21 = null; + this.$this$20 = null; } function cgcc_HashBiMap$Inverse$1$1_output($this, var$1) { var var$2; @@ -1258096,9 +1260511,8 @@ return var$2; } function nmwc_Chunk$3() { - var a = this; jl_Object.call(a); - a.$val$pos2 = null; - a.$this$0193 = null; + jl_Object.call(this); + this.$val$pos2 = null; } function nmwc_Chunk$3_call($this) { var var$1, $ptr, $tmp; @@ -1258565,14 +1260979,14 @@ } function ju_AbstractMap$Values() { ju_AbstractCollection.call(this); - this.$this$09 = null; + this.$this$05 = null; } function ju_AbstractMap$Values_size($this) { - return $this.$this$09.$size0(); + return $this.$this$05.$size0(); } function ju_AbstractMap$Values_iterator($this) { var $it, var$2; - $it = ($this.$this$09.$entrySet()).$iterator(); + $it = ($this.$this$05.$entrySet()).$iterator(); var$2 = new ju_AbstractMap$Values$1; var$2.$this$18 = $this; var$2.$val$it0 = $it; @@ -1259103,10 +1261517,10 @@ } function cgcc_DenseImmutableTable$ImmutableArrayMap$1() { cgcc_ImmutableMapEntrySet.call(this); - this.$this$0218 = null; + this.$this$0140 = null; } function cgcc_DenseImmutableTable$ImmutableArrayMap$1_map($this) { - return $this.$this$0218; + return $this.$this$0140; } function cgcc_DenseImmutableTable$ImmutableArrayMap$1_iterator($this) { var var$1; @@ -1259114,7 +1261528,7 @@ var$1.$this$19 = $this; cgcc_AbstractIterator__init_(var$1); var$1.$index18 = (-1); - var$1.$maxIndex = (var$1.$this$19.$this$0218.$keyToIndex()).$size0(); + var$1.$maxIndex = (var$1.$this$19.$this$0140.$keyToIndex()).$size0(); return var$1; } function cgcc_DenseImmutableTable$ImmutableArrayMap$1_iterator0($this) { @@ -1259122,10 +1261536,10 @@ } function nmcg_GuiSelectWorld$List() { nmcg_GuiSlot.call(this); - this.$this$0235 = null; + this.$this$0151 = null; } function nmcg_GuiSelectWorld$List_getSize($this) { - return $this.$this$0235.$field_146639_s.$size; + return $this.$this$0151.$field_146639_s.$size; } function nmcg_GuiSelectWorld$List_elementClicked($this, $i, $flag, $var3, $var4) { var var$5, $flag1, $ptr, $tmp; @@ -1259136,12 +1261550,12 @@ } main: while (true) { switch ($ptr) { case 0: - $this.$this$0235.$field_146640_r = $i; + $this.$this$0151.$field_146640_r = $i; if ($i >= 0) { $ptr = 1; continue main; } - var$5 = $this.$this$0235; + var$5 = $this.$this$0151; var$5.$selectButton.$enabled = 0; var$5.$deleteButton.$enabled = 0; var$5.$renameButton.$enabled = 0; @@ -1259158,7 +1261572,7 @@ } $var3 = $tmp; $flag1 = $i >= $var3 ? 0 : 1; - var$5 = $this.$this$0235; + var$5 = $this.$this$0151; var$5.$selectButton.$enabled = $flag1; var$5.$deleteButton.$enabled = $flag1; var$5.$renameButton.$enabled = $flag1; @@ -1259179,10 +1261593,10 @@ $rt_nativeThread().push($this, $i, $flag, $var3, $var4, var$5, $flag1, $ptr); } function nmcg_GuiSelectWorld$List_isSelected($this, $i) { - return $i != $this.$this$0235.$field_146640_r ? 0 : 1; + return $i != $this.$this$0151.$field_146640_r ? 0 : 1; } function nmcg_GuiSelectWorld$List_getContentHeight($this) { - return $this.$this$0235.$field_146639_s.$size * 36 | 0; + return $this.$this$0151.$field_146639_s.$size * 36 | 0; } function nmcg_GuiSelectWorld$List_drawBackground($this) { var var$1, $ptr, $tmp; @@ -1259193,7 +1261607,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0235; + var$1 = $this.$this$0151; $ptr = 1; case 1: nmcg_GuiScreen_drawDefaultBackground(var$1); @@ -1259214,7 +1261628,7 @@ } main: while (true) { switch ($ptr) { case 0: - $s2 = $this.$this$0235.$field_146639_s; + $s2 = $this.$this$0151.$field_146639_s; $ptr = 1; case 1: $tmp = ju_ArrayList_get($s2, $i); @@ -1259232,7 +1261646,7 @@ } $var4 = $tmp; if ($var4) { - $s2 = $this.$this$0235.$field_146637_u; + $s2 = $this.$this$0151.$field_146637_u; $i = $i + 1 | 0; var$10 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$10); @@ -1259240,7 +1261654,7 @@ continue main; } $s1 = $saveformatcomparator.$fileName; - $s2 = $this.$this$0235.$field_146633_h; + $s2 = $this.$this$0151.$field_146633_h; var$10 = ju_Date__init_1($saveformatcomparator.$lastTimePlayed0); $ptr = 5; continue main; @@ -1259259,7 +1261673,7 @@ } $s = $tmp; $s1 = $saveformatcomparator.$fileName; - $s2 = $this.$this$0235.$field_146633_h; + $s2 = $this.$this$0151.$field_146633_h; var$10 = ju_Date__init_1($saveformatcomparator.$lastTimePlayed0); $ptr = 5; case 5: @@ -1259314,13 +1261728,13 @@ var$12 = $tmp; $s2 = $rt_s(14); if ($saveformatcomparator.$requiresConversion) { - var$10 = $this.$this$0235.$field_146636_v; + var$10 = $this.$this$0151.$field_146636_v; $s1 = new jl_StringBuilder; jl_AbstractStringBuilder__init_($s1); $ptr = 12; continue main; } - $s2 = $this.$this$0235.$field_146635_w.data[$saveformatcomparator.$theEnumGameType.$id0]; + $s2 = $this.$this$0151.$field_146635_w.data[$saveformatcomparator.$theEnumGameType.$id0]; if ($saveformatcomparator.$hardcore1) { $ptr = 15; continue main; @@ -1259328,15 +1261742,15 @@ if ($saveformatcomparator.$cheatsEnabled) { var$10 = $rt_s(9037); var$13 = $rt_createArray(jl_Object, 0); - $ptr = 24; + $ptr = 26; continue main; } - var$10 = $this.$this$0235; + var$10 = $this.$this$0151; $s1 = var$10.$fontRendererObj0; - $i = $j + 2 | 0; - $j = $k + 1 | 0; - $var4 = 16777215; - $ptr = 21; + $j = $j + 2 | 0; + $var4 = $k + 1 | 0; + $i = 16777215; + $ptr = 23; continue main; case 12: jl_AbstractStringBuilder_append($s1, var$10); @@ -1259357,12 +1261771,12 @@ break main; } $s2 = $tmp; - var$10 = $this.$this$0235; + var$10 = $this.$this$0151; $s1 = var$10.$fontRendererObj0; - $i = $j + 2 | 0; - $j = $k + 1 | 0; - $var4 = 16777215; - $ptr = 21; + $j = $j + 2 | 0; + $var4 = $k + 1 | 0; + $i = 16777215; + $ptr = 23; continue main; case 15: nmu_EnumChatFormatting_$callClinit(); @@ -1259370,38 +1261784,52 @@ break main; } $s2 = nmu_EnumChatFormatting_DARK_RED; - var$10 = $rt_s(9038); - var$13 = $rt_createArray(jl_Object, 0); $ptr = 16; case 16: + $tmp = jl_String_valueOf($s2); + if ($rt_suspending()) { + break main; + } + $s2 = $tmp; + var$10 = $rt_s(9038); + var$13 = $rt_createArray(jl_Object, 0); + $ptr = 17; + case 17: $tmp = nmcr_I18n_format(var$10, var$13); if ($rt_suspending()) { break main; } var$10 = $tmp; $s1 = nmu_EnumChatFormatting_RESET; - var$14 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$14); - $ptr = 17; - case 17: - jl_AbstractStringBuilder_append(var$14, $s2); - if ($rt_suspending()) { - break main; - } $ptr = 18; case 18: - jl_AbstractStringBuilder_append(var$14, var$10); + $tmp = jl_String_valueOf($s1); if ($rt_suspending()) { break main; } + $s1 = $tmp; + var$14 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$14); $ptr = 19; case 19: - jl_AbstractStringBuilder_append(var$14, $s1); + jl_AbstractStringBuilder_append(var$14, $s2); if ($rt_suspending()) { break main; } $ptr = 20; case 20: + jl_AbstractStringBuilder_append(var$14, var$10); + if ($rt_suspending()) { + break main; + } + $ptr = 21; + case 21: + jl_AbstractStringBuilder_append(var$14, $s1); + if ($rt_suspending()) { + break main; + } + $ptr = 22; + case 22: $tmp = jl_AbstractStringBuilder_toString(var$14); if ($rt_suspending()) { break main; @@ -1259410,42 +1261838,42 @@ if ($saveformatcomparator.$cheatsEnabled) { var$10 = $rt_s(9037); var$13 = $rt_createArray(jl_Object, 0); - $ptr = 24; + $ptr = 26; continue main; } - var$10 = $this.$this$0235; + var$10 = $this.$this$0151; $s1 = var$10.$fontRendererObj0; - $i = $j + 2 | 0; - $j = $k + 1 | 0; - $var4 = 16777215; - $ptr = 21; - case 21: - nmcg_Gui_drawString(var$10, $s1, $s, $i, $j, $var4); - if ($rt_suspending()) { - break main; - } - var$10 = $this.$this$0235; - $s1 = var$10.$fontRendererObj0; - $j = $k + 12 | 0; - $k = 8421504; - $ptr = 22; - case 22: - nmcg_Gui_drawString(var$10, $s1, var$12, $i, $j, $k); - if ($rt_suspending()) { - break main; - } - var$10 = $this.$this$0235; - $s1 = var$10.$fontRendererObj0; - $j = $j + 10 | 0; - $k = 8421504; + $j = $j + 2 | 0; + $var4 = $k + 1 | 0; + $i = 16777215; $ptr = 23; case 23: - nmcg_Gui_drawString(var$10, $s1, $s2, $i, $j, $k); + nmcg_Gui_drawString(var$10, $s1, $s, $j, $var4, $i); + if ($rt_suspending()) { + break main; + } + var$10 = $this.$this$0151; + $s1 = var$10.$fontRendererObj0; + $i = $k + 12 | 0; + $k = 8421504; + $ptr = 24; + case 24: + nmcg_Gui_drawString(var$10, $s1, var$12, $j, $i, $k); + if ($rt_suspending()) { + break main; + } + var$10 = $this.$this$0151; + $s1 = var$10.$fontRendererObj0; + $i = $i + 10 | 0; + $k = 8421504; + $ptr = 25; + case 25: + nmcg_Gui_drawString(var$10, $s1, $s2, $j, $i, $k); if ($rt_suspending()) { break main; } return; - case 24: + case 26: $tmp = nmcr_I18n_format(var$10, var$13); if ($rt_suspending()) { break main; @@ -1259453,38 +1261881,38 @@ var$10 = $tmp; $s1 = new jl_StringBuilder; jl_AbstractStringBuilder__init_($s1); - $ptr = 25; - case 25: + $ptr = 27; + case 27: jl_AbstractStringBuilder_append($s1, $s2); if ($rt_suspending()) { break main; } $s2 = $rt_s(554); - $ptr = 26; - case 26: + $ptr = 28; + case 28: jl_AbstractStringBuilder_append($s1, $s2); if ($rt_suspending()) { break main; } - $ptr = 27; - case 27: + $ptr = 29; + case 29: jl_AbstractStringBuilder_append($s1, var$10); if ($rt_suspending()) { break main; } - $ptr = 28; - case 28: + $ptr = 30; + case 30: $tmp = jl_AbstractStringBuilder_toString($s1); if ($rt_suspending()) { break main; } $s2 = $tmp; - var$10 = $this.$this$0235; + var$10 = $this.$this$0151; $s1 = var$10.$fontRendererObj0; - $i = $j + 2 | 0; - $j = $k + 1 | 0; - $var4 = 16777215; - $ptr = 21; + $j = $j + 2 | 0; + $var4 = $k + 1 | 0; + $i = 16777215; + $ptr = 23; continue main; default: $rt_invalidPointer(); }} @@ -1259559,6 +1261987,10 @@ }} $rt_nativeThread().push(var$0, var$1, var$2, var$3, var$4, $ptr); } + function nmep_EntityRabbit$RabbitTypeData() { + jl_Object.call(this); + this.$typeData = 0; + } function nmem_EntitySpider$GroupData() { jl_Object.call(this); this.$potionEffectId = 0; @@ -1259569,15 +1262001,419 @@ return var_0; } function nmem_EntitySpider$GroupData__init_($this) {} - function nmep_EntityRabbit$RabbitTypeData() { - jl_Object.call(this); - this.$typeData = 0; - } function nmep_EntityHorse$GroupData() { var a = this; jl_Object.call(a); a.$horseType = 0; a.$horseVariant = 0; } + function nlevsg_GuiScreenLANConnecting() { + var a = this; nmcg_GuiScreen.call(a); + a.$parent6 = null; + a.$code2 = null; + a.$relay = null; + a.$completed0 = 0; + a.$networkManager5 = null; + a.$renderCount = 0; + } + function nlevsg_GuiScreenLANConnecting_doesGuiPauseGame($this) { + return 0; + } + function nlevsg_GuiScreenLANConnecting_updateScreen($this) { + var var$1, var$2, var$3, var$4, var$5, var$6, $$je, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + var$1 = $this.$networkManager5; + if (var$1 === null) + return; + $ptr = 1; + case 1: + $tmp = nlevsl_LANClientNetworkManager_isChannelOpen(var$1); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; + if (!var$2) { + var$1 = $this.$networkManager5; + $ptr = 2; + continue main; + } + try { + var$1 = $this.$networkManager5; + $ptr = 3; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof ji_IOException) { + } else { + throw $$e; + } + } + return; + case 2: + $tmp = nlevsl_LANClientNetworkManager_checkDisconnected(var$1); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; + if (!var$2) + return; + var$1 = $this.$mc15.$session0; + $ptr = 4; + continue main; + case 3: + a: { + try { + nlevsl_LANClientNetworkManager_processReceivedPackets(var$1); + if ($rt_suspending()) { + break main; + } + break a; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof ji_IOException) { + } else { + throw $$e; + } + } + } + return; + case 4: + nmu_Session_reset(var$1); + if ($rt_suspending()) { + break main; + } + var$1 = $this.$mc15; + if (var$1.$currentScreen !== $this) + return; + var$3 = null; + $ptr = 5; + case 5: + nmc_Minecraft_loadWorld(var$1, var$3); + if ($rt_suspending()) { + break main; + } + var$1 = $this.$mc15; + var$3 = new nmcg_GuiDisconnected; + var$4 = $this.$parent6; + var$5 = $rt_s(5709); + var$6 = nmu_ChatComponentText__init_($rt_s(9039)); + $ptr = 6; + case 6: + nmcg_GuiDisconnected__init_(var$3, var$4, var$5, var$6); + if ($rt_suspending()) { + break main; + } + $ptr = 7; + case 7: + nmc_Minecraft_displayGuiScreen(var$1, var$3); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, var$5, var$6, $ptr); + } + function nlevsg_GuiScreenLANConnecting_drawScreen($this, $par1, $par2, $par3) { + var $ls, var$5, $message, $sock, var$8, var$9, var$10, var$11, var$12, var$13, var$14, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$14 = $thread.pop();var$13 = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();$sock = $thread.pop();$message = $thread.pop();var$5 = $thread.pop();$ls = $thread.pop();$par3 = $thread.pop();$par2 = $thread.pop();$par1 = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + nmcg_GuiScreen_drawDefaultBackground($this); + if ($rt_suspending()) { + break main; + } + if ($this.$completed0) { + $ls = $rt_s(5715); + var$5 = $rt_createArray(jl_Object, 0); + $ptr = 5; + continue main; + } + $ls = $this.$mc15.$loadingScreen; + $message = $rt_s(9040); + var$5 = $rt_createArray(jl_Object, 0); + $ptr = 2; + case 2: + $tmp = nmcr_I18n_format($message, var$5); + if ($rt_suspending()) { + break main; + } + $message = $tmp; + $sock = $this.$fontRendererObj0; + $par1 = ($this.$width7 - nmcg_FontRenderer_getStringWidth($sock, $message) | 0) / 2 | 0; + $par2 = ($this.$height7 / 3 | 0) + 10 | 0; + var$8 = 16777215; + $ptr = 3; + case 3: + nmcg_Gui_drawString($this, $sock, $message, $par1, $par2, var$8); + if ($rt_suspending()) { + break main; + } + $ptr = 4; + case 4: + nlevi_PlatformWebRTC_$callClinit(); + if ($rt_suspending()) { + break main; + } + if (nlevi_PlatformWebRTC_rtcLANClient === null) + nlevi_PlatformWebRTC_rtcLANClient = nlevi_PlatformWebRTC$LANClient__init_0(); + $par1 = $this.$renderCount + 1 | 0; + $this.$renderCount = $par1; + if ($par1 <= 1) + return; + $message = $this.$relay; + if ($message !== null) { + $ptr = 7; + continue main; + } + $ptr = 9; + continue main; + case 5: + $tmp = nmcr_I18n_format($ls, var$5); + if ($rt_suspending()) { + break main; + } + $message = $tmp; + $ls = $this.$fontRendererObj0; + $par1 = ($this.$width7 - nmcg_FontRenderer_getStringWidth($ls, $message) | 0) / 2 | 0; + $par2 = ($this.$height7 / 3 | 0) + 10 | 0; + var$8 = 16777215; + $ptr = 6; + case 6: + nmcg_Gui_drawString($this, $ls, $message, $par1, $par2, var$8); + if ($rt_suspending()) { + break main; + } + return; + case 7: + nlevsr_RelayManager_$callClinit(); + if ($rt_suspending()) { + break main; + } + $ls = nlevsr_RelayManager_relayManager; + $par1 = 2; + $sock = $this.$code2; + $ptr = 8; + case 8: + $tmp = nlevsr_RelayManager_connectHandshake($ls, $message, $par1, $sock); + if ($rt_suspending()) { + break main; + } + $sock = $tmp; + if ($sock !== null) { + $ls = $this.$code2; + $message = $sock.$getURI(); + $ptr = 11; + continue main; + } + $ls = $this.$mc15; + $message = new nlevsg_GuiScreenNoRelays; + var$9 = $this.$parent6; + $sock = $rt_s(9041); + var$5 = $rt_createArray(jl_Object, 0); + $ptr = 12; + continue main; + case 9: + nlevsr_RelayManager_$callClinit(); + if ($rt_suspending()) { + break main; + } + $message = nlevsr_RelayManager_relayManager; + $sock = new nlevsg_GuiScreenLANConnecting$drawScreen$lambda$_4_0; + $sock.$_0210 = $ls; + $par1 = 2; + $ls = $this.$code2; + $ptr = 10; + case 10: + $tmp = nlevsr_RelayManager_getWorkingRelay($message, $sock, $par1, $ls); + if ($rt_suspending()) { + break main; + } + $sock = $tmp; + if ($sock !== null) { + $ls = $this.$code2; + $message = $sock.$getURI(); + $ptr = 11; + continue main; + } + $ls = $this.$mc15; + $message = new nlevsg_GuiScreenNoRelays; + var$9 = $this.$parent6; + $sock = $rt_s(9041); + var$5 = $rt_createArray(jl_Object, 0); + $ptr = 12; + continue main; + case 11: + $tmp = nlevsl_LANClientNetworkManager_connectToWorld($sock, $ls, $message); + if ($rt_suspending()) { + break main; + } + $ls = $tmp; + $this.$networkManager5 = $ls; + if ($ls !== null) { + $this.$completed0 = 1; + $ls = $this.$mc15.$session0; + $ptr = 19; + continue main; + } + $message = $this.$mc15; + $sock = new nmcg_GuiDisconnected; + var$10 = $this.$parent6; + var$9 = $rt_s(5709); + var$11 = new nmu_ChatComponentText; + $ls = $rt_s(9042); + var$5 = $rt_createArray(jl_Object, 0); + $ptr = 25; + continue main; + case 12: + $tmp = nmcr_I18n_format($sock, var$5); + if ($rt_suspending()) { + break main; + } + $sock = $tmp; + var$10 = $rt_s(8697); + var$11 = $this.$code2; + $ptr = 13; + case 13: + $tmp = jl_String_replace0($sock, var$10, var$11); + if ($rt_suspending()) { + break main; + } + var$11 = $tmp; + $sock = $rt_s(9043); + var$5 = $rt_createArray(jl_Object, 0); + $ptr = 14; + case 14: + $tmp = nmcr_I18n_format($sock, var$5); + if ($rt_suspending()) { + break main; + } + $sock = $tmp; + var$10 = $rt_s(8697); + var$12 = $this.$code2; + $ptr = 15; + case 15: + $tmp = jl_String_replace0($sock, var$10, var$12); + if ($rt_suspending()) { + break main; + } + $sock = $tmp; + var$10 = $rt_s(9044); + var$5 = $rt_createArray(jl_Object, 0); + $ptr = 16; + case 16: + $tmp = nmcr_I18n_format(var$10, var$5); + if ($rt_suspending()) { + break main; + } + var$10 = $tmp; + $ptr = 17; + case 17: + nmcg_GuiScreen__init_($message); + if ($rt_suspending()) { + break main; + } + $message.$parent7 = var$9; + $message.$title10 = var$11; + $message.$title2 = $sock; + $message.$title3 = var$10; + $ptr = 18; + case 18: + nmc_Minecraft_displayGuiScreen($ls, $message); + if ($rt_suspending()) { + break main; + } + return; + case 19: + nmu_Session_setLAN($ls); + if ($rt_suspending()) { + break main; + } + $ls = $this.$mc15; + $ptr = 20; + case 20: + nmc_Minecraft_clearTitles($ls); + if ($rt_suspending()) { + break main; + } + $ls = $this.$networkManager5; + $ptr = 21; + case 21: + nmn_EnumConnectionState_$callClinit(); + if ($rt_suspending()) { + break main; + } + $ls.$packetState0 = nmn_EnumConnectionState_LOGIN; + $ls.$nethandler0 = nlevss_NetHandlerSingleplayerLogin__init_($ls, $this.$mc15, $this.$parent6); + $ls = $this.$networkManager5; + $message = new nmnlc_C00PacketLoginStart; + $sock = $this.$mc15.$session0.$profile; + $ptr = 22; + case 22: + $tmp = nlevp_EaglerProfile_getSkinPacket(); + if ($rt_suspending()) { + break main; + } + var$5 = $tmp; + $ptr = 23; + case 23: + $tmp = nlevp_EaglerProfile_getCapePacket(); + if ($rt_suspending()) { + break main; + } + var$13 = $tmp; + nmnlc_C00PacketLoginStart__init_2($message, $sock, var$5, var$13); + $ptr = 24; + case 24: + nlevsl_LANClientNetworkManager_sendPacket($ls, $message); + if ($rt_suspending()) { + break main; + } + return; + case 25: + $tmp = nmcr_I18n_format($ls, var$5); + if ($rt_suspending()) { + break main; + } + $ls = $tmp; + var$12 = $rt_s(8697); + var$14 = $this.$code2; + $ptr = 26; + case 26: + $tmp = jl_String_replace0($ls, var$12, var$14); + if ($rt_suspending()) { + break main; + } + $ls = $tmp; + nmu_ChatComponentText__init_0(var$11, $ls); + $ptr = 27; + case 27: + nmcg_GuiDisconnected__init_($sock, var$10, var$9, var$11); + if ($rt_suspending()) { + break main; + } + $ptr = 28; + case 28: + nmc_Minecraft_displayGuiScreen($message, $sock); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $par1, $par2, $par3, $ls, var$5, $message, $sock, var$8, var$9, var$10, var$11, var$12, var$13, var$14, $ptr); + } function nlevsg_GuiScreenCreateWorldSelection() { var a = this; nmcg_GuiScreen.call(a); a.$mainmenu1 = null; @@ -1259601,7 +1262437,7 @@ var$3 = 1; var$4 = ($this.$width7 / 2 | 0) - 100 | 0; var$5 = ($this.$height7 / 4 | 0) + 40 | 0; - var$6 = $rt_s(9039); + var$6 = $rt_s(9045); var$7 = $rt_createArray(jl_Object, 0); $ptr = 1; case 1: @@ -1259628,7 +1262464,7 @@ var$3 = 2; var$8 = ($this.$width7 / 2 | 0) - 100 | 0; var$4 = ($this.$height7 / 4 | 0) + 65 | 0; - var$6 = $rt_s(9040); + var$6 = $rt_s(9046); var$7 = $rt_createArray(jl_Object, 0); $ptr = 4; case 4: @@ -1259655,7 +1262491,7 @@ var$3 = 3; var$8 = ($this.$width7 / 2 | 0) - 100 | 0; var$4 = ($this.$height7 / 4 | 0) + 90 | 0; - var$6 = $rt_s(9041); + var$6 = $rt_s(9047); var$7 = $rt_createArray(jl_Object, 0); $ptr = 7; case 7: @@ -1259765,7 +1262601,7 @@ var$4.$world9 = $fr; $fr = $fr.$fileName0; var$4.$name78 = $fr; - if (jl_String_length($fr) > 4 && !(!jl_String_endsWith(var$4.$name78, $rt_s(2741)) && !jl_String_endsWith(var$4.$name78, $rt_s(9042)))) { + if (jl_String_length($fr) > 4 && !(!jl_String_endsWith(var$4.$name78, $rt_s(2741)) && !jl_String_endsWith(var$4.$name78, $rt_s(9048)))) { $fr = var$4.$name78; var$4.$name78 = jl_String_substring0($fr, 0, jl_String_length($fr) - 4 | 0); } @@ -1259798,7 +1262634,7 @@ break main; } var$4 = $this.$fontRendererObj0; - var$5 = $rt_s(9043); + var$5 = $rt_s(9049); var$6 = $rt_createArray(jl_Object, 0); $ptr = 2; case 2: @@ -1259819,14 +1262655,14 @@ $toolTipColor = 14540202; if ($this.$worldCreate.$hovered) { var$4 = $this.$fontRendererObj0; - var$5 = $rt_s(9044); + var$5 = $rt_s(9050); var$6 = $rt_createArray(jl_Object, 0); $ptr = 4; continue main; } if ($this.$worldImport.$hovered) { var$4 = $this.$fontRendererObj0; - var$5 = $rt_s(9045); + var$5 = $rt_s(9051); var$6 = $rt_createArray(jl_Object, 0); $ptr = 6; continue main; @@ -1259836,7 +1262672,7 @@ continue main; } var$4 = $this.$fontRendererObj0; - var$5 = $rt_s(9046); + var$5 = $rt_s(9052); var$6 = $rt_createArray(jl_Object, 0); $ptr = 9; continue main; @@ -1259994,7 +1262830,7 @@ var$3 = 0; var$4 = ($this.$width7 / 2 | 0) - 100 | 0; var$5 = (($this.$height7 / 4 | 0) + 96 | 0) + 12 | 0; - $s = !$this.$duplicate0 ? $rt_s(9047) : $rt_s(9048); + $s = !$this.$duplicate0 ? $rt_s(9053) : $rt_s(9054); var$7 = $rt_createArray(jl_Object, 0); $ptr = 1; case 1: @@ -1260078,7 +1262914,7 @@ if ($rt_suspending()) { break main; } - $worldinfo = $rt_s(9049); + $worldinfo = $rt_s(9055); $ptr = 10; case 10: jl_AbstractStringBuilder_append($isaveformat, $worldinfo); @@ -1260176,8 +1263012,8 @@ $parGuiButton = $this.$mc15; var$3 = new nlevsg_GuiScreenIntegratedServerBusy; var$5 = $this.$parentScreen11; - var$4 = $rt_s(9050); - var$6 = $rt_s(9051); + var$4 = $rt_s(9056); + var$6 = $rt_s(9057); var$7 = new nmcg_GuiRenameWorld$actionPerformed$lambda$_5_0; $ptr = 4; case 4: @@ -1260209,7 +1263045,7 @@ var$3 = new nlevsg_GuiScreenIntegratedServerBusy; var$4 = $this.$parentScreen11; var$6 = $rt_s(552); - var$5 = $rt_s(9052); + var$5 = $rt_s(9058); var$7 = new nmcg_GuiRenameWorld$actionPerformed$lambda$_5_1; $ptr = 8; case 8: @@ -1260320,7 +1263156,7 @@ break main; } var$4 = $this.$fontRendererObj0; - var$5 = !$this.$duplicate0 ? $rt_s(9053) : $rt_s(9054); + var$5 = !$this.$duplicate0 ? $rt_s(9059) : $rt_s(9060); var$6 = $rt_createArray(jl_Object, 0); $ptr = 2; case 2: @@ -1260339,7 +1263175,7 @@ break main; } var$5 = $this.$fontRendererObj0; - var$4 = $rt_s(9055); + var$4 = $rt_s(9061); var$6 = $rt_createArray(jl_Object, 0); $ptr = 4; case 4: @@ -1260401,7 +1263237,7 @@ var$3 = 1; var$4 = ($this.$width7 / 2 | 0) - 100 | 0; var$5 = ($this.$height7 / 5 | 0) + 5 | 0; - var$6 = $rt_s(9056); + var$6 = $rt_s(9062); var$7 = $rt_createArray(jl_Object, 0); $ptr = 1; case 1: @@ -1260428,7 +1263264,7 @@ var$3 = 2; var$8 = ($this.$width7 / 2 | 0) - 100 | 0; var$4 = ($this.$height7 / 5 | 0) + 30 | 0; - var$6 = $rt_s(9057); + var$6 = $rt_s(9063); var$7 = $rt_createArray(jl_Object, 0); $ptr = 4; case 4: @@ -1260455,7 +1263291,7 @@ var$5 = 3; var$3 = ($this.$width7 / 2 | 0) - 100 | 0; var$8 = ($this.$height7 / 5 | 0) + 80 | 0; - var$6 = $rt_s(9058); + var$6 = $rt_s(9064); var$7 = $rt_createArray(jl_Object, 0); $ptr = 7; case 7: @@ -1260482,7 +1263318,7 @@ var$3 = 4; var$8 = ($this.$width7 / 2 | 0) - 100 | 0; var$4 = ($this.$height7 / 5 | 0) + 105 | 0; - var$6 = $rt_s(9059); + var$6 = $rt_s(9065); var$7 = $rt_createArray(jl_Object, 0); $ptr = 10; case 10: @@ -1260509,7 +1263345,7 @@ var$3 = 5; var$8 = ($this.$width7 / 2 | 0) - 100 | 0; var$4 = ($this.$height7 / 5 | 0) + 136 | 0; - var$6 = $rt_s(9060); + var$6 = $rt_s(9066); var$7 = $rt_createArray(jl_Object, 0); $ptr = 13; case 13: @@ -1260578,7 +1263414,7 @@ break main; } var$4 = $this.$fontRendererObj0; - var$5 = $rt_s(9061); + var$5 = $rt_s(9067); var$6 = $rt_createArray(jl_Object, 1); var$6.data[0] = $this.$worldName9; $ptr = 2; @@ -1260598,7 +1263434,7 @@ break main; } var$7 = $this.$fontRendererObj0; - var$5 = $rt_s(9062); + var$5 = $rt_s(9068); var$6 = $rt_createArray(jl_Object, 0); $ptr = 4; case 4: @@ -1260637,28 +1263473,28 @@ $toolTipColor = 14540202; if ($this.$worldRecreate.$hovered) { var$7 = $this.$fontRendererObj0; - var$5 = $rt_s(9063); + var$5 = $rt_s(9069); var$6 = $rt_createArray(jl_Object, 0); $ptr = 8; continue main; } if ($this.$worldDuplicate.$hovered) { var$7 = $this.$fontRendererObj0; - var$5 = $rt_s(9064); + var$5 = $rt_s(9070); var$6 = $rt_createArray(jl_Object, 0); $ptr = 10; continue main; } if ($this.$worldExport.$hovered) { var$7 = $this.$fontRendererObj0; - var$5 = $rt_s(9065); + var$5 = $rt_s(9071); var$6 = $rt_createArray(jl_Object, 0); $ptr = 13; continue main; } if ($this.$worldConvert.$hovered) { var$7 = $this.$fontRendererObj0; - var$5 = $rt_s(9066); + var$5 = $rt_s(9072); var$6 = $rt_createArray(jl_Object, 0); $ptr = 15; continue main; @@ -1260668,7 +1263504,7 @@ continue main; } var$7 = $this.$fontRendererObj0; - var$5 = $rt_s(9067); + var$5 = $rt_s(9073); var$6 = $rt_createArray(jl_Object, 0); $ptr = 17; continue main; @@ -1260808,7 +1263644,7 @@ return; $cw = $this.$mc15; var$4 = new nmcg_GuiYesNo; - $par1GuiButton = $rt_s(9068); + $par1GuiButton = $rt_s(9074); var$7 = $rt_createArray(jl_Object, 0); $ptr = 16; continue main; @@ -1260839,7 +1263675,7 @@ if ($rt_suspending()) { break main; } - var$5 = $rt_s(9069); + var$5 = $rt_s(9075); var$7 = $rt_createArray(jl_Object, 1); var$7.data[0] = var$4.$levelName0; $ptr = 5; @@ -1260899,9 +1263735,9 @@ $cw = new nlevsg_GuiScreenIntegratedServerBusy; var$4 = $this.$selectWorld; var$5 = $rt_s(1987); - var$9 = $rt_s(9070); + var$9 = $rt_s(9076); var$10 = new nlevsg_GuiScreenBackupWorldSelection$actionPerformed$lambda$_3_0; - var$10.$_0210 = $this; + var$10.$_0211 = $this; $ptr = 10; case 10: nlevsg_GuiScreenIntegratedServerBusy__init_($cw, var$4, var$5, var$9, var$10); @@ -1260930,9 +1263766,9 @@ $cw = new nlevsg_GuiScreenIntegratedServerBusy; var$4 = $this.$selectWorld; var$5 = $rt_s(2030); - var$9 = $rt_s(9071); + var$9 = $rt_s(9077); var$10 = new nlevsg_GuiScreenBackupWorldSelection$actionPerformed$lambda$_3_1; - var$10.$_0211 = $this; + var$10.$_0212 = $this; $ptr = 14; case 14: nlevsg_GuiScreenIntegratedServerBusy__init_($cw, var$4, var$5, var$9, var$10); @@ -1260952,7 +1263788,7 @@ break main; } $par1GuiButton = $tmp; - var$5 = $rt_s(9072); + var$5 = $rt_s(9078); var$7 = $rt_createArray(jl_Object, 2); var$11 = var$7.data; var$11[0] = $this.$worldName9; @@ -1261036,8 +1263872,8 @@ } var$5 = $this.$mc15; var$6 = new nlevsg_GuiScreenIntegratedServerBusy; - var$3 = $rt_s(9073); - var$4 = $rt_s(9074); + var$3 = $rt_s(9079); + var$4 = $rt_s(9080); var$7 = new nlevsg_GuiScreenBackupWorldSelection$confirmClicked$lambda$_4_0; $ptr = 5; case 5: @@ -1261056,414 +1263892,6 @@ }} $rt_nativeThread().push($this, $par1, $par2, var$3, var$4, var$5, var$6, var$7, $ptr); } - function nlevsg_GuiScreenLANConnecting() { - var a = this; nmcg_GuiScreen.call(a); - a.$parent6 = null; - a.$code2 = null; - a.$relay = null; - a.$completed0 = 0; - a.$networkManager5 = null; - a.$renderCount = 0; - } - function nlevsg_GuiScreenLANConnecting_doesGuiPauseGame($this) { - return 0; - } - function nlevsg_GuiScreenLANConnecting_updateScreen($this) { - var var$1, var$2, var$3, var$4, var$5, var$6, $$je, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - var$1 = $this.$networkManager5; - if (var$1 === null) - return; - $ptr = 1; - case 1: - $tmp = nlevsl_LANClientNetworkManager_isChannelOpen(var$1); - if ($rt_suspending()) { - break main; - } - var$2 = $tmp; - if (!var$2) { - var$1 = $this.$networkManager5; - $ptr = 2; - continue main; - } - try { - var$1 = $this.$networkManager5; - $ptr = 3; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - return; - case 2: - $tmp = nlevsl_LANClientNetworkManager_checkDisconnected(var$1); - if ($rt_suspending()) { - break main; - } - var$2 = $tmp; - if (!var$2) - return; - var$1 = $this.$mc15.$session0; - $ptr = 4; - continue main; - case 3: - a: { - try { - nlevsl_LANClientNetworkManager_processReceivedPackets(var$1); - if ($rt_suspending()) { - break main; - } - break a; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof ji_IOException) { - } else { - throw $$e; - } - } - } - return; - case 4: - nmu_Session_reset(var$1); - if ($rt_suspending()) { - break main; - } - var$1 = $this.$mc15; - if (var$1.$currentScreen !== $this) - return; - var$3 = null; - $ptr = 5; - case 5: - nmc_Minecraft_loadWorld(var$1, var$3); - if ($rt_suspending()) { - break main; - } - var$1 = $this.$mc15; - var$3 = new nmcg_GuiDisconnected; - var$4 = $this.$parent6; - var$5 = $rt_s(5709); - var$6 = nmu_ChatComponentText__init_($rt_s(9075)); - $ptr = 6; - case 6: - nmcg_GuiDisconnected__init_(var$3, var$4, var$5, var$6); - if ($rt_suspending()) { - break main; - } - $ptr = 7; - case 7: - nmc_Minecraft_displayGuiScreen(var$1, var$3); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, var$5, var$6, $ptr); - } - function nlevsg_GuiScreenLANConnecting_drawScreen($this, $par1, $par2, $par3) { - var $ls, var$5, $message, $sock, var$8, var$9, var$10, var$11, var$12, var$13, var$14, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$14 = $thread.pop();var$13 = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();$sock = $thread.pop();$message = $thread.pop();var$5 = $thread.pop();$ls = $thread.pop();$par3 = $thread.pop();$par2 = $thread.pop();$par1 = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - nmcg_GuiScreen_drawDefaultBackground($this); - if ($rt_suspending()) { - break main; - } - if ($this.$completed0) { - $ls = $rt_s(5715); - var$5 = $rt_createArray(jl_Object, 0); - $ptr = 5; - continue main; - } - $ls = $this.$mc15.$loadingScreen; - $message = $rt_s(9076); - var$5 = $rt_createArray(jl_Object, 0); - $ptr = 2; - case 2: - $tmp = nmcr_I18n_format($message, var$5); - if ($rt_suspending()) { - break main; - } - $message = $tmp; - $sock = $this.$fontRendererObj0; - $par1 = ($this.$width7 - nmcg_FontRenderer_getStringWidth($sock, $message) | 0) / 2 | 0; - $par2 = ($this.$height7 / 3 | 0) + 10 | 0; - var$8 = 16777215; - $ptr = 3; - case 3: - nmcg_Gui_drawString($this, $sock, $message, $par1, $par2, var$8); - if ($rt_suspending()) { - break main; - } - $ptr = 4; - case 4: - nlevi_PlatformWebRTC_$callClinit(); - if ($rt_suspending()) { - break main; - } - if (nlevi_PlatformWebRTC_rtcLANClient === null) - nlevi_PlatformWebRTC_rtcLANClient = nlevi_PlatformWebRTC$LANClient__init_0(); - $par1 = $this.$renderCount + 1 | 0; - $this.$renderCount = $par1; - if ($par1 <= 1) - return; - $message = $this.$relay; - if ($message !== null) { - $ptr = 7; - continue main; - } - $ptr = 9; - continue main; - case 5: - $tmp = nmcr_I18n_format($ls, var$5); - if ($rt_suspending()) { - break main; - } - $message = $tmp; - $ls = $this.$fontRendererObj0; - $par1 = ($this.$width7 - nmcg_FontRenderer_getStringWidth($ls, $message) | 0) / 2 | 0; - $par2 = ($this.$height7 / 3 | 0) + 10 | 0; - var$8 = 16777215; - $ptr = 6; - case 6: - nmcg_Gui_drawString($this, $ls, $message, $par1, $par2, var$8); - if ($rt_suspending()) { - break main; - } - return; - case 7: - nlevsr_RelayManager_$callClinit(); - if ($rt_suspending()) { - break main; - } - $ls = nlevsr_RelayManager_relayManager; - $par1 = 2; - $sock = $this.$code2; - $ptr = 8; - case 8: - $tmp = nlevsr_RelayManager_connectHandshake($ls, $message, $par1, $sock); - if ($rt_suspending()) { - break main; - } - $sock = $tmp; - if ($sock !== null) { - $ls = $this.$code2; - $message = $sock.$getURI(); - $ptr = 11; - continue main; - } - $ls = $this.$mc15; - $message = new nlevsg_GuiScreenNoRelays; - var$9 = $this.$parent6; - $sock = $rt_s(9077); - var$5 = $rt_createArray(jl_Object, 0); - $ptr = 12; - continue main; - case 9: - nlevsr_RelayManager_$callClinit(); - if ($rt_suspending()) { - break main; - } - $message = nlevsr_RelayManager_relayManager; - $sock = new nlevsg_GuiScreenLANConnecting$drawScreen$lambda$_4_0; - $sock.$_0212 = $ls; - $par1 = 2; - $ls = $this.$code2; - $ptr = 10; - case 10: - $tmp = nlevsr_RelayManager_getWorkingRelay($message, $sock, $par1, $ls); - if ($rt_suspending()) { - break main; - } - $sock = $tmp; - if ($sock !== null) { - $ls = $this.$code2; - $message = $sock.$getURI(); - $ptr = 11; - continue main; - } - $ls = $this.$mc15; - $message = new nlevsg_GuiScreenNoRelays; - var$9 = $this.$parent6; - $sock = $rt_s(9077); - var$5 = $rt_createArray(jl_Object, 0); - $ptr = 12; - continue main; - case 11: - $tmp = nlevsl_LANClientNetworkManager_connectToWorld($sock, $ls, $message); - if ($rt_suspending()) { - break main; - } - $ls = $tmp; - $this.$networkManager5 = $ls; - if ($ls !== null) { - $this.$completed0 = 1; - $ls = $this.$mc15.$session0; - $ptr = 19; - continue main; - } - $message = $this.$mc15; - $sock = new nmcg_GuiDisconnected; - var$10 = $this.$parent6; - var$9 = $rt_s(5709); - var$11 = new nmu_ChatComponentText; - $ls = $rt_s(9078); - var$5 = $rt_createArray(jl_Object, 0); - $ptr = 25; - continue main; - case 12: - $tmp = nmcr_I18n_format($sock, var$5); - if ($rt_suspending()) { - break main; - } - $sock = $tmp; - var$10 = $rt_s(8697); - var$11 = $this.$code2; - $ptr = 13; - case 13: - $tmp = jl_String_replace0($sock, var$10, var$11); - if ($rt_suspending()) { - break main; - } - var$11 = $tmp; - $sock = $rt_s(9079); - var$5 = $rt_createArray(jl_Object, 0); - $ptr = 14; - case 14: - $tmp = nmcr_I18n_format($sock, var$5); - if ($rt_suspending()) { - break main; - } - $sock = $tmp; - var$10 = $rt_s(8697); - var$12 = $this.$code2; - $ptr = 15; - case 15: - $tmp = jl_String_replace0($sock, var$10, var$12); - if ($rt_suspending()) { - break main; - } - $sock = $tmp; - var$10 = $rt_s(9080); - var$5 = $rt_createArray(jl_Object, 0); - $ptr = 16; - case 16: - $tmp = nmcr_I18n_format(var$10, var$5); - if ($rt_suspending()) { - break main; - } - var$10 = $tmp; - $ptr = 17; - case 17: - nmcg_GuiScreen__init_($message); - if ($rt_suspending()) { - break main; - } - $message.$parent7 = var$9; - $message.$title10 = var$11; - $message.$title2 = $sock; - $message.$title3 = var$10; - $ptr = 18; - case 18: - nmc_Minecraft_displayGuiScreen($ls, $message); - if ($rt_suspending()) { - break main; - } - return; - case 19: - nmu_Session_setLAN($ls); - if ($rt_suspending()) { - break main; - } - $ls = $this.$mc15; - $ptr = 20; - case 20: - nmc_Minecraft_clearTitles($ls); - if ($rt_suspending()) { - break main; - } - $ls = $this.$networkManager5; - $ptr = 21; - case 21: - nmn_EnumConnectionState_$callClinit(); - if ($rt_suspending()) { - break main; - } - $ls.$packetState0 = nmn_EnumConnectionState_LOGIN; - $ls.$nethandler0 = nlevss_NetHandlerSingleplayerLogin__init_($ls, $this.$mc15, $this.$parent6); - $ls = $this.$networkManager5; - $message = new nmnlc_C00PacketLoginStart; - $sock = $this.$mc15.$session0.$profile; - $ptr = 22; - case 22: - $tmp = nlevp_EaglerProfile_getSkinPacket(); - if ($rt_suspending()) { - break main; - } - var$5 = $tmp; - $ptr = 23; - case 23: - $tmp = nlevp_EaglerProfile_getCapePacket(); - if ($rt_suspending()) { - break main; - } - var$13 = $tmp; - nmnlc_C00PacketLoginStart__init_2($message, $sock, var$5, var$13); - $ptr = 24; - case 24: - nlevsl_LANClientNetworkManager_sendPacket($ls, $message); - if ($rt_suspending()) { - break main; - } - return; - case 25: - $tmp = nmcr_I18n_format($ls, var$5); - if ($rt_suspending()) { - break main; - } - $ls = $tmp; - var$12 = $rt_s(8697); - var$14 = $this.$code2; - $ptr = 26; - case 26: - $tmp = jl_String_replace0($ls, var$12, var$14); - if ($rt_suspending()) { - break main; - } - $ls = $tmp; - nmu_ChatComponentText__init_0(var$11, $ls); - $ptr = 27; - case 27: - nmcg_GuiDisconnected__init_($sock, var$10, var$9, var$11); - if ($rt_suspending()) { - break main; - } - $ptr = 28; - case 28: - nmc_Minecraft_displayGuiScreen($message, $sock); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $par1, $par2, $par3, $ls, var$5, $message, $sock, var$8, var$9, var$10, var$11, var$12, var$13, var$14, $ptr); - } function nmu_EntityDamageSource() { var a = this; nmu_DamageSource.call(a); a.$damageSourceEntity = null; @@ -1262105,7 +1264533,6 @@ a.$xPosition3 = 0; a.$zPosition1 = 0; a.$lastAccessTime = Long_ZERO; - a.$this$0231 = null; } function ju_AbstractList$SubAbstractList$SubAbstractListIterator() { var a = this; jl_Object.call(a); @@ -1262129,7 +1264556,7 @@ function cgcc_ImmutableMapKeySet$1() { var a = this; cgcc_ImmutableAsList.call(a); a.$val$entryList = null; - a.$this$0240 = null; + a.$this$0156 = null; } function cgcc_ImmutableMapKeySet$1_get($this, $index) { var var$2, $ptr, $tmp; @@ -1262162,7 +1264589,7 @@ $rt_nativeThread().push($this, $index, var$2, $ptr); } function cgcc_ImmutableMapKeySet$1_delegateCollection($this) { - return $this.$this$0240; + return $this.$this$0156; } function cgcc_ImmutableEnumMap$2$1() { var a = this; cgcc_UnmodifiableIterator.call(a); @@ -1262206,7 +1264633,7 @@ a.$rowIterator = null; a.$rowEntry = null; a.$columnIterator = null; - a.$this$0243 = null; + a.$this$0159 = null; } function cgcc_StandardTable$CellIterator_hasNext($this) { var var$1, var$2, $ptr, $tmp; @@ -1262377,7 +1264804,7 @@ var a = this; jl_Object.call(a); a.$val$i1 = 0; a.$val$j = 0; - a.$this$0226 = null; + a.$this$0146 = null; } function nmwgs_MapGenStructure$1_call($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1262388,7 +1264815,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0226; + var$1 = $this.$this$0146; var$2 = $this.$val$i1; var$3 = $this.$val$j; $ptr = 1; @@ -1262407,7 +1264834,6 @@ var a = this; jl_Object.call(a); a.$val$i2 = 0; a.$val$j0 = 0; - a.$this$0227 = null; } function nmwgs_MapGenStructure$2_call($this) { var var$1, var$2, $ptr, $tmp; @@ -1262433,7 +1264859,7 @@ } function nmwgs_MapGenStructure$3() { jl_Object.call(this); - this.$this$0228 = null; + this.$this$0147 = null; } function nmwgs_MapGenStructure$3_call($this) { var var$1, $ptr, $tmp; @@ -1262444,7 +1264870,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = jl_Object_getClass($this.$this$0228); + var$1 = jl_Object_getClass($this.$this$0147); $ptr = 1; case 1: $tmp = jl_Class_getCanonicalName(var$1); @@ -1262511,9 +1264937,8 @@ $rt_nativeThread().push(var$1, var$2, $ptr); } function nmwc_Chunk$2() { - var a = this; jl_Object.call(a); - a.$val$blockpos3 = null; - a.$this$0192 = null; + jl_Object.call(this); + this.$val$blockpos3 = null; } function nmwc_Chunk$2_call($this) { var var$1, $ptr, $tmp; @@ -1262539,31 +1264964,31 @@ } function ju_IdentityHashMap$1() { ju_AbstractSet.call(this); - this.$this$051 = null; + this.$this$030 = null; } function ju_IdentityHashMap$1_contains($this, $object) { - return ju_IdentityHashMap_containsKey($this.$this$051, $object); + return ju_IdentityHashMap_containsKey($this.$this$030, $object); } function ju_IdentityHashMap$1_size($this) { - return $this.$this$051.$elementCount1; + return $this.$this$030.$elementCount1; } function ju_IdentityHashMap$1_remove($this, $key) { - return ju_IdentityHashMap_removeEntry($this.$this$051, $key) === null ? 0 : 1; + return ju_IdentityHashMap_removeEntry($this.$this$030, $key) === null ? 0 : 1; } function ju_IdentityHashMap$1_iterator($this) { var var$1; var$1 = new ju_IdentityHashMap$KeyIterator; - ju_IdentityHashMap$AbstractMapIterator__init_(var$1, $this.$this$051); + ju_IdentityHashMap$AbstractMapIterator__init_(var$1, $this.$this$030); return var$1; } function juc_ConcurrentHashMap$1() { ju_AbstractSet.call(this); - this.$this$0211 = null; + this.$this$0136 = null; } function juc_ConcurrentHashMap$1_iterator($this) { var var$1, var$2; var$1 = new juc_ConcurrentHashMap$KeyIterator; - var$2 = $this.$this$0211; + var$2 = $this.$this$0136; var$1.$associatedMap3 = var$2; var$1.$expectedModCount4 = var$2.$modCount9; var$1.$futureEntry2 = null; @@ -1263142,27 +1265567,27 @@ if (var$4 < 0) break a; $btn = $this.$slots1.$relayManager; - $ptr = 20; + $ptr = 21; continue main; } if (var$2 != 4) { if (var$2 == 5) { $btn = $this.$slots1.$relayManager; - $ptr = 22; + $ptr = 23; continue main; } if (var$2 != 6) break a; $btn = $rt_s(9090); $srv = $rt_s(9091); - $ptr = 24; + $ptr = 25; continue main; } $millis = jl_System_currentTimeMillis(); if (Long_gt(Long_sub($millis, $this.$lastRefresh0), Long_fromInt(700))) { $this.$lastRefresh0 = $millis; $btn = $this.$slots1.$relayManager; - $ptr = 23; + $ptr = 24; continue main; } $this.$lastRefresh0 = Long_add($this.$lastRefresh0, Long_fromInt(60)); @@ -1263242,85 +1265667,92 @@ break main; } var$10 = nmu_EnumChatFormatting_GRAY; + $ptr = 11; + case 11: + $tmp = jl_String_valueOf(var$10); + if ($rt_suspending()) { + break main; + } + var$10 = $tmp; var$11 = $srv.$comment2; $srv = $srv.$address1; var$12 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$12); - $ptr = 11; - case 11: + $ptr = 12; + case 12: jl_AbstractStringBuilder_append(var$12, var$9); if ($rt_suspending()) { break main; } - $ptr = 12; - case 12: + $ptr = 13; + case 13: jl_AbstractStringBuilder_append(var$12, var$10); if ($rt_suspending()) { break main; } var$9 = $rt_s(992); - $ptr = 13; - case 13: + $ptr = 14; + case 14: jl_AbstractStringBuilder_append(var$12, var$9); if ($rt_suspending()) { break main; } - $ptr = 14; - case 14: + $ptr = 15; + case 15: jl_AbstractStringBuilder_append(var$12, var$11); if ($rt_suspending()) { break main; } var$9 = $rt_s(9093); - $ptr = 15; - case 15: + $ptr = 16; + case 16: jl_AbstractStringBuilder_append(var$12, var$9); if ($rt_suspending()) { break main; } - $ptr = 16; - case 16: + $ptr = 17; + case 17: jl_AbstractStringBuilder_append(var$12, $srv); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append0(var$12, 41); - $ptr = 17; - case 17: + $ptr = 18; + case 18: $tmp = jl_AbstractStringBuilder_toString(var$12); if ($rt_suspending()) { break main; } $srv = $tmp; var$4 = $this.$selected0; - $ptr = 18; - case 18: + $ptr = 19; + case 19: nmcg_GuiYesNo__init_(var$7, $this, $btn, $srv, var$4); if ($rt_suspending()) { break main; } - $ptr = 19; - case 19: + $ptr = 20; + case 20: nmc_Minecraft_displayGuiScreen(var$6, var$7); if ($rt_suspending()) { break main; } $this.$deleting = 1; return; - case 20: + case 21: nlevsr_RelayManager_setPrimary0($btn, var$4); if ($rt_suspending()) { break main; } - $ptr = 21; - case 21: + $ptr = 22; + case 22: nlevsr_RelayManager_save($btn); if ($rt_suspending()) { break main; } $this.$selected0 = 0; return; - case 22: + case 23: nlevsr_RelayManager_loadDefaults($btn); if ($rt_suspending()) { break main; @@ -1263332,29 +1265764,29 @@ } $this.$lastRefresh0 = $millis; $btn = $this.$slots1.$relayManager; - $ptr = 26; + $ptr = 27; continue main; - case 23: + case 24: nlevsr_RelayManager_ping($btn); if ($rt_suspending()) { break main; } $this.$lastRefresh0 = Long_add($this.$lastRefresh0, Long_fromInt(60)); return; - case 24: + case 25: $tmp = nlev_EagRuntime_getResourceBytes($srv); if ($rt_suspending()) { break main; } var$8 = $tmp; - $ptr = 25; - case 25: + $ptr = 26; + case 26: nlev_EagRuntime_downloadFileWithName($btn, var$8); if ($rt_suspending()) { break main; } return; - case 26: + case 27: nlevsr_RelayManager_ping($btn); if ($rt_suspending()) { break main; @@ -1263449,7 +1265881,7 @@ $w2 = ($par1 + $ww | 0) + 7 | 0; $ww = $par2 - 2 | 0; var$11 = (-1073741824); - $ptr = 16; + $ptr = 17; continue main; case 2: $tmp = nmcr_I18n_format(var$5, var$6); @@ -1263536,10 +1265968,17 @@ break main; } var$4 = nmu_EnumChatFormatting_UNDERLINE; - var$5 = $rt_s(9096); - var$6 = $rt_createArray(jl_Object, 0); $ptr = 12; case 12: + $tmp = jl_String_valueOf(var$4); + if ($rt_suspending()) { + break main; + } + var$4 = $tmp; + var$5 = $rt_s(9096); + var$6 = $rt_createArray(jl_Object, 0); + $ptr = 13; + case 13: $tmp = nmcr_I18n_format(var$5, var$6); if ($rt_suspending()) { break main; @@ -1263547,20 +1265986,20 @@ var$5 = $tmp; var$15 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$15); - $ptr = 13; - case 13: - jl_AbstractStringBuilder_append(var$15, var$4); - if ($rt_suspending()) { - break main; - } $ptr = 14; case 14: - jl_AbstractStringBuilder_append(var$15, var$5); + jl_AbstractStringBuilder_append(var$15, var$4); if ($rt_suspending()) { break main; } $ptr = 15; case 15: + jl_AbstractStringBuilder_append(var$15, var$5); + if ($rt_suspending()) { + break main; + } + $ptr = 16; + case 16: $tmp = jl_AbstractStringBuilder_toString(var$15); if ($rt_suspending()) { break main; @@ -1263568,19 +1266007,17 @@ var$5 = $tmp; $w2 = nmcg_FontRenderer_getStringWidth($this.$fontRendererObj0, var$5); $b = $par1 > ($w + 5 | 0) && $par1 < ($b + (($w2 * 3 | 0) / 4 | 0) | 0) && $par2 > 3 && $par2 < 11 ? 1 : 0; - if ($b) { - nlevi_EnumCursorType_$callClinit(); - var$4 = nlevi_EnumCursorType_HAND; - $ptr = 22; + if (!$b) { + var$15 = $this.$fontRendererObj0; + var$4 = nmu_EnumChatFormatting_UNDERLINE; + $ptr = 19; continue main; } - var$15 = $this.$fontRendererObj0; - var$16 = nmu_EnumChatFormatting_UNDERLINE; - var$4 = $rt_s(9096); - var$6 = $rt_createArray(jl_Object, 0); - $ptr = 18; + nlevi_EnumCursorType_$callClinit(); + var$4 = nlevi_EnumCursorType_HAND; + $ptr = 24; continue main; - case 16: + case 17: nmcg_Gui_drawRect($w, $b, $w2, $ww, var$11); if ($rt_suspending()) { break main; @@ -1263591,8 +1266028,8 @@ $w = $par1 + 4 | 0; $b = $par2 - 12 | 0; $w2 = (-6710887); - $ptr = 17; - case 17: + $ptr = 18; + case 18: nmcg_Gui_drawString(var$4, var$5, var$15, $w, $b, $w2); if ($rt_suspending()) { break main; @@ -1263603,7 +1266040,16 @@ var$6 = $rt_createArray(jl_Object, 0); $ptr = 2; continue main; - case 18: + case 19: + $tmp = jl_String_valueOf(var$4); + if ($rt_suspending()) { + break main; + } + var$16 = $tmp; + var$4 = $rt_s(9096); + var$6 = $rt_createArray(jl_Object, 0); + $ptr = 20; + case 20: $tmp = nmcr_I18n_format(var$4, var$6); if ($rt_suspending()) { break main; @@ -1263611,20 +1266057,20 @@ var$4 = $tmp; var$5 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$5); - $ptr = 19; - case 19: + $ptr = 21; + case 21: jl_AbstractStringBuilder_append(var$5, var$16); if ($rt_suspending()) { break main; } - $ptr = 20; - case 20: + $ptr = 22; + case 22: jl_AbstractStringBuilder_append(var$5, var$4); if ($rt_suspending()) { break main; } - $ptr = 21; - case 21: + $ptr = 23; + case 23: $tmp = jl_AbstractStringBuilder_toString(var$5); if ($rt_suspending()) { break main; @@ -1263633,32 +1266079,30 @@ $w = 0; $w2 = 0; $b = !$b ? 10066329 : 13421772; - $ptr = 23; + $ptr = 25; continue main; - case 22: + case 24: nlev_Mouse_showCursor(var$4); if ($rt_suspending()) { break main; } var$15 = $this.$fontRendererObj0; - var$16 = nmu_EnumChatFormatting_UNDERLINE; - var$4 = $rt_s(9096); - var$6 = $rt_createArray(jl_Object, 0); - $ptr = 18; + var$4 = nmu_EnumChatFormatting_UNDERLINE; + $ptr = 19; continue main; - case 23: + case 25: nmcg_Gui_drawString($this, var$15, var$4, $w, $w2, $b); if ($rt_suspending()) { break main; } - $ptr = 24; - case 24: + $ptr = 26; + case 26: nlevo_GlStateManager_popMatrix(); if ($rt_suspending()) { break main; } - $ptr = 25; - case 25: + $ptr = 27; + case 27: nmcg_GuiScreen_drawScreen($this, $par1, $par2, $par3); if ($rt_suspending()) { break main; @@ -1263913,7 +1266357,6 @@ a.$lanServerRelay = null; a.$lanServerCode = null; a.$flagged = 0; - a.$this$0250 = null; } function nlevsg_GuiScreenSingleplayerConnecting() { var a = this; nmcg_GuiScreen.call(a); @@ -1265804,9 +1268247,8 @@ $rt_nativeThread().push($this, var$1, var$2, var$3, $ptr); } function nlevm_EaglerTextureAtlasSprite$1() { - var a = this; jl_Object.call(a); - a.$val$aint = null; - a.$this$0151 = null; + jl_Object.call(this); + this.$val$aint = null; } function nlevm_EaglerTextureAtlasSprite$1_call($this) { var var$1, var$2, var$3, var$4, $ptr, $tmp; @@ -1265859,9 +1268301,8 @@ $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); } function nlevoedt_EaglerTextureAtlasSpritePBR$1() { - var a = this; jl_Object.call(a); - a.$val$aint0 = null; - a.$this$0153 = null; + jl_Object.call(this); + this.$val$aint0 = null; } function nlevoedt_EaglerTextureAtlasSpritePBR$1_call($this) { var var$1, var$2, var$3, var$4, $ptr, $tmp; @@ -1266138,71 +1268579,85 @@ var$3 = $this.$width20; var$4 = $this.$height21; var$5 = $this.$holder0; - var$6 = $this.$subSlots; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); - var$8 = $rt_s(9100); $ptr = 1; case 1: - jl_AbstractStringBuilder_append(var$7, var$8); + $tmp = jl_String_valueOf(var$5); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append1(var$7, var$1); - var$8 = $rt_s(9101); + var$6 = $tmp; + var$5 = $this.$subSlots; $ptr = 2; case 2: - jl_AbstractStringBuilder_append(var$7, var$8); + $tmp = jl_String_valueOf(var$5); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append1(var$7, var$2); - var$8 = $rt_s(6072); + var$7 = $tmp; + var$8 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$8); + var$5 = $rt_s(9100); $ptr = 3; case 3: - jl_AbstractStringBuilder_append(var$7, var$8); + jl_AbstractStringBuilder_append(var$8, var$5); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append1(var$7, var$3); - var$8 = $rt_s(6071); + jl_AbstractStringBuilder_append1(var$8, var$1); + var$5 = $rt_s(9101); $ptr = 4; case 4: - jl_AbstractStringBuilder_append(var$7, var$8); + jl_AbstractStringBuilder_append(var$8, var$5); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append1(var$7, var$4); - var$8 = $rt_s(9102); + jl_AbstractStringBuilder_append1(var$8, var$2); + var$5 = $rt_s(6072); $ptr = 5; case 5: - jl_AbstractStringBuilder_append(var$7, var$8); + jl_AbstractStringBuilder_append(var$8, var$5); if ($rt_suspending()) { break main; } + jl_AbstractStringBuilder_append1(var$8, var$3); + var$5 = $rt_s(6071); $ptr = 6; case 6: - jl_AbstractStringBuilder_append(var$7, var$5); + jl_AbstractStringBuilder_append(var$8, var$5); if ($rt_suspending()) { break main; } - var$5 = $rt_s(9103); + jl_AbstractStringBuilder_append1(var$8, var$4); + var$5 = $rt_s(9102); $ptr = 7; case 7: - jl_AbstractStringBuilder_append(var$7, var$5); + jl_AbstractStringBuilder_append(var$8, var$5); if ($rt_suspending()) { break main; } $ptr = 8; case 8: - jl_AbstractStringBuilder_append(var$7, var$6); + jl_AbstractStringBuilder_append(var$8, var$6); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append0(var$7, 125); + var$5 = $rt_s(9103); $ptr = 9; case 9: - $tmp = jl_AbstractStringBuilder_toString(var$7); + jl_AbstractStringBuilder_append(var$8, var$5); + if ($rt_suspending()) { + break main; + } + $ptr = 10; + case 10: + jl_AbstractStringBuilder_append(var$8, var$7); + if ($rt_suspending()) { + break main; + } + jl_AbstractStringBuilder_append0(var$8, 125); + $ptr = 11; + case 11: + $tmp = jl_AbstractStringBuilder_toString(var$8); if ($rt_suspending()) { break main; } @@ -1266534,8 +1268989,12 @@ $this.$offsetX = $textureU; $this.$offsetY = $textureV; } + function nmei_EntityPainting$EnumArt_$values() { + nmei_EntityPainting$EnumArt_$callClinit(); + return $rt_createArrayFromData(nmei_EntityPainting$EnumArt, [nmei_EntityPainting$EnumArt_KEBAB, nmei_EntityPainting$EnumArt_AZTEC, nmei_EntityPainting$EnumArt_ALBAN, nmei_EntityPainting$EnumArt_AZTEC_2, nmei_EntityPainting$EnumArt_BOMB, nmei_EntityPainting$EnumArt_PLANT, nmei_EntityPainting$EnumArt_WASTELAND, nmei_EntityPainting$EnumArt_POOL, nmei_EntityPainting$EnumArt_COURBET, nmei_EntityPainting$EnumArt_SEA, nmei_EntityPainting$EnumArt_SUNSET, nmei_EntityPainting$EnumArt_CREEBET, nmei_EntityPainting$EnumArt_WANDERER, + nmei_EntityPainting$EnumArt_GRAHAM, nmei_EntityPainting$EnumArt_MATCH, nmei_EntityPainting$EnumArt_BUST, nmei_EntityPainting$EnumArt_STAGE, nmei_EntityPainting$EnumArt_VOID, nmei_EntityPainting$EnumArt_SKULL_AND_ROSES, nmei_EntityPainting$EnumArt_WITHER, nmei_EntityPainting$EnumArt_FIGHTERS, nmei_EntityPainting$EnumArt_POINTER, nmei_EntityPainting$EnumArt_PIGSCENE, nmei_EntityPainting$EnumArt_BURNING_SKULL, nmei_EntityPainting$EnumArt_SKELETON, nmei_EntityPainting$EnumArt_DONKEY_KONG]); + } function nmei_EntityPainting$EnumArt__clinit_() { - var var$1; nmei_EntityPainting$EnumArt_KEBAB = nmei_EntityPainting$EnumArt__init_($rt_s(9105), 0, $rt_s(9106), 16, 16, 0, 0); nmei_EntityPainting$EnumArt_AZTEC = nmei_EntityPainting$EnumArt__init_($rt_s(9107), 1, $rt_s(9108), 16, 16, 16, 0); nmei_EntityPainting$EnumArt_ALBAN = nmei_EntityPainting$EnumArt__init_($rt_s(9109), 2, $rt_s(9110), 16, 16, 32, 0); @@ -1266561,13 +1269020,34 @@ nmei_EntityPainting$EnumArt_PIGSCENE = nmei_EntityPainting$EnumArt__init_($rt_s(9149), 22, $rt_s(9150), 64, 64, 64, 192); nmei_EntityPainting$EnumArt_BURNING_SKULL = nmei_EntityPainting$EnumArt__init_($rt_s(9151), 23, $rt_s(9152), 64, 64, 128, 192); nmei_EntityPainting$EnumArt_SKELETON = nmei_EntityPainting$EnumArt__init_($rt_s(9153), 24, $rt_s(2613), 64, 48, 192, 64); - var$1 = nmei_EntityPainting$EnumArt__init_($rt_s(9154), 25, $rt_s(9155), 64, 48, 192, 112); - nmei_EntityPainting$EnumArt_DONKEY_KONG = var$1; - nmei_EntityPainting$EnumArt_$VALUES = $rt_createArrayFromData(nmei_EntityPainting$EnumArt, [nmei_EntityPainting$EnumArt_KEBAB, nmei_EntityPainting$EnumArt_AZTEC, nmei_EntityPainting$EnumArt_ALBAN, nmei_EntityPainting$EnumArt_AZTEC_2, nmei_EntityPainting$EnumArt_BOMB, nmei_EntityPainting$EnumArt_PLANT, nmei_EntityPainting$EnumArt_WASTELAND, nmei_EntityPainting$EnumArt_POOL, nmei_EntityPainting$EnumArt_COURBET, nmei_EntityPainting$EnumArt_SEA, nmei_EntityPainting$EnumArt_SUNSET, nmei_EntityPainting$EnumArt_CREEBET, - nmei_EntityPainting$EnumArt_WANDERER, nmei_EntityPainting$EnumArt_GRAHAM, nmei_EntityPainting$EnumArt_MATCH, nmei_EntityPainting$EnumArt_BUST, nmei_EntityPainting$EnumArt_STAGE, nmei_EntityPainting$EnumArt_VOID, nmei_EntityPainting$EnumArt_SKULL_AND_ROSES, nmei_EntityPainting$EnumArt_WITHER, nmei_EntityPainting$EnumArt_FIGHTERS, nmei_EntityPainting$EnumArt_POINTER, nmei_EntityPainting$EnumArt_PIGSCENE, nmei_EntityPainting$EnumArt_BURNING_SKULL, nmei_EntityPainting$EnumArt_SKELETON, var$1]); + nmei_EntityPainting$EnumArt_DONKEY_KONG = nmei_EntityPainting$EnumArt__init_($rt_s(9154), 25, $rt_s(9155), 64, 48, 192, 112); + nmei_EntityPainting$EnumArt_$VALUES = nmei_EntityPainting$EnumArt_$values(); nmei_EntityPainting$EnumArt__VALUES = nmei_EntityPainting$EnumArt_values(); nmei_EntityPainting$EnumArt_field_180001_A = jl_String_length($rt_s(9142)); } + var cgcc_ComparisonChain = $rt_classWithoutFields(); + var cgcc_ComparisonChain_ACTIVE = null; + var cgcc_ComparisonChain_LESS = null; + var cgcc_ComparisonChain_GREATER = null; + function cgcc_ComparisonChain_$callClinit() { + cgcc_ComparisonChain_$callClinit = $rt_eraseClinit(cgcc_ComparisonChain); + cgcc_ComparisonChain__clinit_(); + } + function cgcc_ComparisonChain__init_($this) { + cgcc_ComparisonChain_$callClinit(); + } + function cgcc_ComparisonChain_start() { + cgcc_ComparisonChain_$callClinit(); + return cgcc_ComparisonChain_ACTIVE; + } + function cgcc_ComparisonChain__clinit_() { + var var$1; + var$1 = new cgcc_ComparisonChain$1; + cgcc_ComparisonChain__init_(var$1); + cgcc_ComparisonChain_ACTIVE = var$1; + cgcc_ComparisonChain_LESS = cgcc_ComparisonChain$InactiveComparisonChain__init_((-1)); + cgcc_ComparisonChain_GREATER = cgcc_ComparisonChain$InactiveComparisonChain__init_(1); + } var nlevp_ProfileImporter$importProfileAndSettings$lambda$_6_0 = $rt_classWithoutFields(); function nlevp_ProfileImporter$importProfileAndSettings$lambda$_6_0__init_0() { var var_0 = new nlevp_ProfileImporter$importProfileAndSettings$lambda$_6_0(); @@ -1266596,47 +1269076,6 @@ }} $rt_nativeThread().push(var$0, var$1, $ptr); } - var cgcc_ComparisonChain = $rt_classWithoutFields(); - var cgcc_ComparisonChain_ACTIVE = null; - var cgcc_ComparisonChain_LESS = null; - var cgcc_ComparisonChain_GREATER = null; - function cgcc_ComparisonChain_$callClinit() { - cgcc_ComparisonChain_$callClinit = $rt_eraseClinit(cgcc_ComparisonChain); - cgcc_ComparisonChain__clinit_(); - } - function cgcc_ComparisonChain__init_($this) { - cgcc_ComparisonChain_$callClinit(); - } - function cgcc_ComparisonChain_start() { - cgcc_ComparisonChain_$callClinit(); - return cgcc_ComparisonChain_ACTIVE; - } - function cgcc_ComparisonChain__clinit_() { - var var$1; - var$1 = new cgcc_ComparisonChain$1; - cgcc_ComparisonChain__init_(var$1); - cgcc_ComparisonChain_ACTIVE = var$1; - cgcc_ComparisonChain_LESS = cgcc_ComparisonChain$InactiveComparisonChain__init_((-1)); - cgcc_ComparisonChain_GREATER = cgcc_ComparisonChain$InactiveComparisonChain__init_(1); - } - var nmcrbm_ItemCameraTransforms$1 = $rt_classWithoutFields(); - var nmcrbm_ItemCameraTransforms$1_$SwitchMap$net$minecraft$client$renderer$block$model$ItemCameraTransforms$TransformType = null; - function nmcrbm_ItemCameraTransforms$1_$callClinit() { - nmcrbm_ItemCameraTransforms$1_$callClinit = $rt_eraseClinit(nmcrbm_ItemCameraTransforms$1); - nmcrbm_ItemCameraTransforms$1__clinit_(); - } - function nmcrbm_ItemCameraTransforms$1__clinit_() { - var var$1, var$2; - var$1 = $rt_createIntArray((nmcrbm_ItemCameraTransforms$TransformType_values()).data.length); - var$2 = var$1.data; - nmcrbm_ItemCameraTransforms$1_$SwitchMap$net$minecraft$client$renderer$block$model$ItemCameraTransforms$TransformType = var$1; - var$2[nmcrbm_ItemCameraTransforms$TransformType_THIRD_PERSON.$ordinal] = 1; - var$2[nmcrbm_ItemCameraTransforms$TransformType_FIRST_PERSON.$ordinal] = 2; - var$2[nmcrbm_ItemCameraTransforms$TransformType_HEAD.$ordinal] = 3; - var$2[nmcrbm_ItemCameraTransforms$TransformType_GUI.$ordinal] = 4; - var$2[nmcrbm_ItemCameraTransforms$TransformType_GROUND.$ordinal] = 5; - var$2[nmcrbm_ItemCameraTransforms$TransformType_FIXED.$ordinal] = 6; - } var nlevu_GuiUpdateVersionSlot$refresh$lambda$_1_0 = $rt_classWithoutFields(); function nlevu_GuiUpdateVersionSlot$refresh$lambda$_1_0__init_0() { var var_0 = new nlevu_GuiUpdateVersionSlot$refresh$lambda$_1_0(); @@ -1267514,22 +1269953,6 @@ }} $rt_nativeThread().push($this, $ptr); } - var nlevp_GuiPasswordTextField = $rt_classWithoutFields(nmcg_GuiTextField); - var nlevp_GuiPasswordTextField_STARS = null; - function nlevp_GuiPasswordTextField_stars($len) { - var var$2, var$3, var$4; - var$2 = new jl_String; - var$3 = nlevp_GuiPasswordTextField_STARS; - var$4 = var$3.data.length; - if ($len > var$4) - $len = var$4; - jl_String__init_6(var$2, var$3, 0, $len); - return var$2; - } - function nlevp_GuiPasswordTextField__clinit_() { - nlevp_GuiPasswordTextField_STARS = $rt_createCharArrayFromData([42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, - 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42]); - } var nPs_IOptionControl = $rt_classWithoutFields(0); function nPs_GuiOptionSliderOF() { nmcg_GuiOptionSlider.call(this); @@ -1267593,13 +1270016,33 @@ }} $rt_nativeThread().push($this, $p_i49_1_, $p_i49_2_, $p_i49_3_, $p_i49_4_, $p_i49_5_, $ptr); } + function nmcg_GuiCustomizeSkin$ButtonPart() { + nmcg_GuiButton.call(this); + this.$playerModelParts = null; + } + var nlevp_GuiPasswordTextField = $rt_classWithoutFields(nmcg_GuiTextField); + var nlevp_GuiPasswordTextField_STARS = null; + function nlevp_GuiPasswordTextField_stars($len) { + var var$2, var$3, var$4; + var$2 = new jl_String; + var$3 = nlevp_GuiPasswordTextField_STARS; + var$4 = var$3.data.length; + if ($len > var$4) + $len = var$4; + jl_String__init_6(var$2, var$3, 0, $len); + return var$2; + } + function nlevp_GuiPasswordTextField__clinit_() { + nlevp_GuiPasswordTextField_STARS = $rt_createCharArrayFromData([42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, + 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42]); + } function nmcg_GuiScreenOptionsSounds$Button() { var a = this; nmcg_GuiButton.call(a); a.$field_146153_r = null; a.$field_146152_s = null; a.$field_146156_o = 0.0; a.$field_146155_p = 0; - a.$this$0264 = null; + a.$this$0171 = null; } function nmcg_GuiScreenOptionsSounds$Button__init_0(var_0, var_1, var_2, var_3, var_4, var_5) { var var_6 = new nmcg_GuiScreenOptionsSounds$Button(); @@ -1267615,7 +1270058,7 @@ } main: while (true) { switch ($ptr) { case 0: - $this.$this$0264 = $this$0; + $this.$this$0171 = $this$0; var$7 = !$parFlag ? 150 : 310; $parFlag = 20; var$8 = $rt_s(14); @@ -1267782,7 +1270225,7 @@ break main; } $minecraft = $this.$field_146152_s; - var$8 = $this.$this$0264; + var$8 = $this.$this$0171; var$9 = $this.$field_146153_r; $ptr = 6; case 6: @@ -1267868,7 +1270311,7 @@ break main; } $minecraft = $this.$field_146152_s; - var$5 = $this.$this$0264; + var$5 = $this.$this$0171; var$6 = $this.$field_146153_r; $ptr = 4; case 4: @@ -1267934,11 +1270377,11 @@ break main; } if (var$3 !== nmca_SoundCategory_MASTER) { - var$4 = $this.$this$0264.$game_settings_4; + var$4 = $this.$this$0171.$game_settings_4; $ptr = 2; continue main; } - var$5 = $this.$this$0264.$mc15.$mcSoundHandler; + var$5 = $this.$this$0171.$mc15.$mcSoundHandler; var$4 = new nmu_ResourceLocation; var$3 = $rt_s(5704); $ptr = 3; @@ -1267948,7 +1270391,7 @@ if ($rt_suspending()) { break main; } - var$5 = $this.$this$0264.$mc15.$mcSoundHandler; + var$5 = $this.$this$0171.$mc15.$mcSoundHandler; var$4 = new nmu_ResourceLocation; var$3 = $rt_s(5704); $ptr = 3; @@ -1268025,9 +1270468,23 @@ break main; } $var3 = nmu_EnumChatFormatting_UNDERLINE; - var$4 = nmu_EnumChatFormatting_BOLD; $ptr = 2; case 2: + $tmp = jl_String_valueOf($var3); + if ($rt_suspending()) { + break main; + } + var$4 = $tmp; + $var3 = nmu_EnumChatFormatting_BOLD; + $ptr = 3; + case 3: + $tmp = jl_String_valueOf($var3); + if ($rt_suspending()) { + break main; + } + $var3 = $tmp; + $ptr = 4; + case 4: $tmp = $this.$getListHeader(); if ($rt_suspending()) { break main; @@ -1268035,38 +1270492,38 @@ var$5 = $tmp; var$6 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$6); - $ptr = 3; - case 3: - jl_AbstractStringBuilder_append(var$6, $var3); - if ($rt_suspending()) { - break main; - } - $ptr = 4; - case 4: - jl_AbstractStringBuilder_append(var$6, var$4); - if ($rt_suspending()) { - break main; - } $ptr = 5; case 5: - jl_AbstractStringBuilder_append(var$6, var$5); + jl_AbstractStringBuilder_append(var$6, var$4); if ($rt_suspending()) { break main; } $ptr = 6; case 6: + jl_AbstractStringBuilder_append(var$6, $var3); + if ($rt_suspending()) { + break main; + } + $ptr = 7; + case 7: + jl_AbstractStringBuilder_append(var$6, var$5); + if ($rt_suspending()) { + break main; + } + $ptr = 8; + case 8: $tmp = jl_AbstractStringBuilder_toString(var$6); if ($rt_suspending()) { break main; } var$4 = $tmp; $var3 = $this.$mc28.$fontRendererObj; - $i = ($i + ($this.$width13 / 2 | 0) | 0) - (nmcg_FontRenderer_getStringWidth($var3, var$4) / 2 | 0) | 0; - $j = jl_Math_min($this.$top + 3 | 0, $j); - var$7 = 16777215; - $ptr = 7; - case 7: - nmcg_FontRenderer_drawString($var3, var$4, $i, $j, var$7); + var$7 = ($i + ($this.$width13 / 2 | 0) | 0) - (nmcg_FontRenderer_getStringWidth($var3, var$4) / 2 | 0) | 0; + $i = jl_Math_min($this.$top + 3 | 0, $j); + $j = 16777215; + $ptr = 9; + case 9: + nmcg_FontRenderer_drawString($var3, var$4, var$7, $i, $j); if ($rt_suspending()) { break main; } @@ -1268980,7 +1271437,7 @@ var$7 = $this.$mc26; var$8 = new nmcg_GuiYesNo; var$3 = new nmcr_ResourcePackListEntry$1; - var$3.$this$0265 = $this; + var$3.$this$0172 = $this; $l = 0; $ptr = 14; case 14: @@ -1269062,7 +1271519,7 @@ $list1 = $this.$mc26; var$10 = new nmcg_GuiYesNo; $list = new nmcr_ResourcePackListEntry$2; - $list.$this$0266 = $this; + $list.$this$0173 = $this; $list.$val$l0 = $l; var$11 = $rt_s(9169); var$12 = $rt_createArray(jl_Object, 1); @@ -1269455,23 +1271912,30 @@ break main; } var$1 = nmu_EnumChatFormatting_RED; - var$2 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$2); $ptr = 3; case 3: - jl_AbstractStringBuilder_append(var$2, var$1); + $tmp = jl_String_valueOf(var$1); if ($rt_suspending()) { break main; } - var$1 = $rt_s(9177); + var$1 = $tmp; + var$2 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$2); $ptr = 4; case 4: jl_AbstractStringBuilder_append(var$2, var$1); if ($rt_suspending()) { break main; } + var$1 = $rt_s(9177); $ptr = 5; case 5: + jl_AbstractStringBuilder_append(var$2, var$1); + if ($rt_suspending()) { + break main; + } + $ptr = 6; + case 6: $tmp = jl_AbstractStringBuilder_toString(var$2); if ($rt_suspending()) { break main; @@ -1269712,23 +1272176,30 @@ break main; } $jsonparseexception = nmu_EnumChatFormatting_RED; - $packmetadatasection = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($packmetadatasection); $ptr = 9; case 9: - jl_AbstractStringBuilder_append($packmetadatasection, $jsonparseexception); + $tmp = jl_String_valueOf($jsonparseexception); if ($rt_suspending()) { break main; } - $jsonparseexception = $rt_s(9179); + $jsonparseexception = $tmp; + $packmetadatasection = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($packmetadatasection); $ptr = 10; case 10: jl_AbstractStringBuilder_append($packmetadatasection, $jsonparseexception); if ($rt_suspending()) { break main; } + $jsonparseexception = $rt_s(9179); $ptr = 11; case 11: + jl_AbstractStringBuilder_append($packmetadatasection, $jsonparseexception); + if ($rt_suspending()) { + break main; + } + $ptr = 12; + case 12: $tmp = jl_AbstractStringBuilder_toString($packmetadatasection); if ($rt_suspending()) { break main; @@ -1269867,2027 +1272338,6 @@ }} $rt_nativeThread().push(var$1, $ptr); } - function nmcg_GuiCustomizeSkin$ButtonPart() { - var a = this; nmcg_GuiButton.call(a); - a.$playerModelParts = null; - a.$this$0253 = null; - } - function nPs_GuiDetailSettingsOF() { - var a = this; nmcg_GuiScreen.call(a); - a.$prevScreen = null; - a.$title7 = null; - a.$settings1 = null; - } - var nPs_GuiDetailSettingsOF_enumOptions = null; - function nPs_GuiDetailSettingsOF_$callClinit() { - nPs_GuiDetailSettingsOF_$callClinit = $rt_eraseClinit(nPs_GuiDetailSettingsOF); - nPs_GuiDetailSettingsOF__clinit_(); - } - function nPs_GuiDetailSettingsOF_initGui($this) { - var $gamesettings$options, var$2, $i, var$4, var$5, $j, var$7, $k, var$9, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$9 = $thread.pop();$k = $thread.pop();var$7 = $thread.pop();$j = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$i = $thread.pop();var$2 = $thread.pop();$gamesettings$options = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $gamesettings$options = $rt_s(9180); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 1; - case 1: - $tmp = nmcr_I18n_format($gamesettings$options, var$2); - if ($rt_suspending()) { - break main; - } - $gamesettings$options = $tmp; - $this.$title7 = $gamesettings$options; - ju_ArrayList_clear($this.$buttonList); - $i = 0; - nPs_GuiDetailSettingsOF_$callClinit(); - var$2 = nPs_GuiDetailSettingsOF_enumOptions.data; - if ($i >= var$2.length) { - $gamesettings$options = $this.$buttonList; - var$4 = new nmcg_GuiButton; - $i = 200; - var$5 = ($this.$width7 / 2 | 0) - 100 | 0; - $j = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; - var$7 = $rt_s(5191); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 2; - continue main; - } - $gamesettings$options = var$2[$i]; - $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; - $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; - if ($gamesettings$options.$enumFloat) { - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionSliderOF; - var$5 = $gamesettings$options.$ordinal; - $ptr = 5; - continue main; - } - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionButtonOF; - var$5 = $gamesettings$options.$ordinal; - var$9 = $this.$settings1; - $ptr = 7; - continue main; - case 2: - $tmp = nmcr_I18n_format(var$7, var$2); - if ($rt_suspending()) { - break main; - } - var$7 = $tmp; - $ptr = 3; - case 3: - nmcg_GuiButton__init_(var$4, $i, var$5, $j, var$7); - if ($rt_suspending()) { - break main; - } - $ptr = 4; - case 4: - ju_ArrayList_add($gamesettings$options, var$4); - if ($rt_suspending()) { - break main; - } - return; - case 5: - nPs_GuiOptionSliderOF__init_(var$7, var$5, $j, $k, $gamesettings$options); - if ($rt_suspending()) { - break main; - } - $ptr = 6; - case 6: - ju_ArrayList_add(var$4, var$7); - if ($rt_suspending()) { - break main; - } - $i = $i + 1 | 0; - nPs_GuiDetailSettingsOF_$callClinit(); - var$2 = nPs_GuiDetailSettingsOF_enumOptions.data; - if ($i >= var$2.length) { - $gamesettings$options = $this.$buttonList; - var$4 = new nmcg_GuiButton; - $i = 200; - var$5 = ($this.$width7 / 2 | 0) - 100 | 0; - $j = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; - var$7 = $rt_s(5191); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 2; - continue main; - } - $gamesettings$options = var$2[$i]; - $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; - $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; - if ($gamesettings$options.$enumFloat) { - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionSliderOF; - var$5 = $gamesettings$options.$ordinal; - $ptr = 5; - continue main; - } - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionButtonOF; - var$5 = $gamesettings$options.$ordinal; - var$9 = $this.$settings1; - $ptr = 7; - case 7: - $tmp = nmcs_GameSettings_getKeyBinding(var$9, $gamesettings$options); - if ($rt_suspending()) { - break main; - } - var$9 = $tmp; - $ptr = 8; - case 8: - nPs_GuiOptionButtonOF__init_(var$7, var$5, $j, $k, $gamesettings$options, var$9); - if ($rt_suspending()) { - break main; - } - $ptr = 9; - case 9: - ju_ArrayList_add(var$4, var$7); - if ($rt_suspending()) { - break main; - } - $i = $i + 1 | 0; - nPs_GuiDetailSettingsOF_$callClinit(); - var$2 = nPs_GuiDetailSettingsOF_enumOptions.data; - if ($i >= var$2.length) { - $gamesettings$options = $this.$buttonList; - var$4 = new nmcg_GuiButton; - $i = 200; - var$5 = ($this.$width7 / 2 | 0) - 100 | 0; - $j = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; - var$7 = $rt_s(5191); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 2; - continue main; - } - $gamesettings$options = var$2[$i]; - $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; - $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; - if ($gamesettings$options.$enumFloat) { - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionSliderOF; - var$5 = $gamesettings$options.$ordinal; - $ptr = 5; - continue main; - } - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionButtonOF; - var$5 = $gamesettings$options.$ordinal; - var$9 = $this.$settings1; - $ptr = 7; - continue main; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $gamesettings$options, var$2, $i, var$4, var$5, $j, var$7, $k, var$9, $ptr); - } - function nPs_GuiDetailSettingsOF_actionPerformed($this, $button) { - var var$2, var$3, var$4, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();$button = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - if ($button.$enabled) { - if ($button.$id12 < 200 && $button instanceof nmcg_GuiOptionButton) { - var$2 = $this.$settings1; - var$3 = $button.$enumOptions; - var$4 = 1; - $ptr = 3; - continue main; - } - if ($button.$id12 == 200) { - $button = $this.$mc15.$gameSettings; - $ptr = 1; - continue main; - } - } - return; - case 1: - nmcs_GameSettings_saveOptions($button); - if ($rt_suspending()) { - break main; - } - $button = $this.$mc15; - var$2 = $this.$prevScreen; - $ptr = 2; - case 2: - nmc_Minecraft_displayGuiScreen($button, var$2); - if ($rt_suspending()) { - break main; - } - return; - case 3: - nmcs_GameSettings_setOptionValue(var$2, var$3, var$4); - if ($rt_suspending()) { - break main; - } - var$2 = $this.$settings1; - var$3 = nmcs_GameSettings$Options_getEnumOptions($button.$id12); - $ptr = 4; - case 4: - $tmp = nmcs_GameSettings_getKeyBinding(var$2, var$3); - if ($rt_suspending()) { - break main; - } - var$2 = $tmp; - $button.$displayString = var$2; - if ($button.$id12 != 200) - return; - $button = $this.$mc15.$gameSettings; - $ptr = 1; - continue main; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $button, var$2, var$3, var$4, $ptr); - } - function nPs_GuiDetailSettingsOF_drawScreen($this, $mouseX, $mouseY, $partialTicks) { - var var$4, var$5, var$6, var$7, var$8, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$partialTicks = $thread.pop();$mouseY = $thread.pop();$mouseX = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - nmcg_GuiScreen_drawDefaultBackground($this); - if ($rt_suspending()) { - break main; - } - var$4 = $this.$fontRendererObj0; - var$5 = $this.$title7; - var$6 = $this.$width7 / 2 | 0; - var$7 = 15; - var$8 = 16777215; - $ptr = 2; - case 2: - nmcg_Gui_drawCenteredString($this, var$4, var$5, var$6, var$7, var$8); - if ($rt_suspending()) { - break main; - } - $ptr = 3; - case 3: - nmcg_GuiScreen_drawScreen($this, $mouseX, $mouseY, $partialTicks); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $mouseX, $mouseY, $partialTicks, var$4, var$5, var$6, var$7, var$8, $ptr); - } - function nPs_GuiDetailSettingsOF__clinit_() { - var var$1, var$2; - var$1 = $rt_createArray(nmcs_GameSettings$Options, 14); - var$2 = var$1.data; - nmcs_GameSettings$Options_$callClinit(); - var$2[0] = nmcs_GameSettings$Options_RENDER_CLOUDS; - var$2[1] = nmcs_GameSettings$Options_CLOUD_HEIGHT; - var$2[2] = nmcs_GameSettings$Options_TREES; - var$2[3] = nmcs_GameSettings$Options_RAIN; - var$2[4] = nmcs_GameSettings$Options_SKY; - var$2[5] = nmcs_GameSettings$Options_STARS; - var$2[6] = nmcs_GameSettings$Options_SUN_MOON; - var$2[7] = nmcs_GameSettings$Options_SHOW_CAPES; - var$2[8] = nmcs_GameSettings$Options_TRANSLUCENT_BLOCKS; - var$2[9] = nmcs_GameSettings$Options_HELD_ITEM_TOOLTIPS; - var$2[10] = nmcs_GameSettings$Options_DROPPED_ITEMS; - var$2[11] = nmcs_GameSettings$Options_ENTITY_SHADOWS; - var$2[12] = nmcs_GameSettings$Options_VIGNETTE; - var$2[13] = nmcs_GameSettings$Options_DYNAMIC_FOV; - nPs_GuiDetailSettingsOF_enumOptions = var$1; - } - function nPs_GuiQualitySettingsOF() { - var a = this; nmcg_GuiScreen.call(a); - a.$prevScreen0 = null; - a.$title8 = null; - a.$settings2 = null; - } - var nPs_GuiQualitySettingsOF_enumOptions = null; - function nPs_GuiQualitySettingsOF_$callClinit() { - nPs_GuiQualitySettingsOF_$callClinit = $rt_eraseClinit(nPs_GuiQualitySettingsOF); - nPs_GuiQualitySettingsOF__clinit_(); - } - function nPs_GuiQualitySettingsOF_initGui($this) { - var $gamesettings$options, var$2, $i, var$4, var$5, $j, var$7, $k, var$9, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$9 = $thread.pop();$k = $thread.pop();var$7 = $thread.pop();$j = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$i = $thread.pop();var$2 = $thread.pop();$gamesettings$options = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $gamesettings$options = $rt_s(9181); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 1; - case 1: - $tmp = nmcr_I18n_format($gamesettings$options, var$2); - if ($rt_suspending()) { - break main; - } - $gamesettings$options = $tmp; - $this.$title8 = $gamesettings$options; - ju_ArrayList_clear($this.$buttonList); - $i = 0; - nPs_GuiQualitySettingsOF_$callClinit(); - var$2 = nPs_GuiQualitySettingsOF_enumOptions.data; - if ($i >= var$2.length) { - $gamesettings$options = $this.$buttonList; - var$4 = new nmcg_GuiButton; - $i = 200; - var$5 = ($this.$width7 / 2 | 0) - 100 | 0; - $j = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; - var$7 = $rt_s(5191); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 2; - continue main; - } - $gamesettings$options = var$2[$i]; - $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; - $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; - if ($gamesettings$options.$enumFloat) { - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionSliderOF; - var$5 = $gamesettings$options.$ordinal; - $ptr = 5; - continue main; - } - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionButtonOF; - var$5 = $gamesettings$options.$ordinal; - var$9 = $this.$settings2; - $ptr = 7; - continue main; - case 2: - $tmp = nmcr_I18n_format(var$7, var$2); - if ($rt_suspending()) { - break main; - } - var$7 = $tmp; - $ptr = 3; - case 3: - nmcg_GuiButton__init_(var$4, $i, var$5, $j, var$7); - if ($rt_suspending()) { - break main; - } - $ptr = 4; - case 4: - ju_ArrayList_add($gamesettings$options, var$4); - if ($rt_suspending()) { - break main; - } - return; - case 5: - nPs_GuiOptionSliderOF__init_(var$7, var$5, $j, $k, $gamesettings$options); - if ($rt_suspending()) { - break main; - } - $ptr = 6; - case 6: - ju_ArrayList_add(var$4, var$7); - if ($rt_suspending()) { - break main; - } - $i = $i + 1 | 0; - nPs_GuiQualitySettingsOF_$callClinit(); - var$2 = nPs_GuiQualitySettingsOF_enumOptions.data; - if ($i >= var$2.length) { - $gamesettings$options = $this.$buttonList; - var$4 = new nmcg_GuiButton; - $i = 200; - var$5 = ($this.$width7 / 2 | 0) - 100 | 0; - $j = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; - var$7 = $rt_s(5191); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 2; - continue main; - } - $gamesettings$options = var$2[$i]; - $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; - $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; - if ($gamesettings$options.$enumFloat) { - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionSliderOF; - var$5 = $gamesettings$options.$ordinal; - $ptr = 5; - continue main; - } - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionButtonOF; - var$5 = $gamesettings$options.$ordinal; - var$9 = $this.$settings2; - $ptr = 7; - case 7: - $tmp = nmcs_GameSettings_getKeyBinding(var$9, $gamesettings$options); - if ($rt_suspending()) { - break main; - } - var$9 = $tmp; - $ptr = 8; - case 8: - nPs_GuiOptionButtonOF__init_(var$7, var$5, $j, $k, $gamesettings$options, var$9); - if ($rt_suspending()) { - break main; - } - $ptr = 9; - case 9: - ju_ArrayList_add(var$4, var$7); - if ($rt_suspending()) { - break main; - } - $i = $i + 1 | 0; - nPs_GuiQualitySettingsOF_$callClinit(); - var$2 = nPs_GuiQualitySettingsOF_enumOptions.data; - if ($i >= var$2.length) { - $gamesettings$options = $this.$buttonList; - var$4 = new nmcg_GuiButton; - $i = 200; - var$5 = ($this.$width7 / 2 | 0) - 100 | 0; - $j = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; - var$7 = $rt_s(5191); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 2; - continue main; - } - $gamesettings$options = var$2[$i]; - $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; - $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; - if ($gamesettings$options.$enumFloat) { - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionSliderOF; - var$5 = $gamesettings$options.$ordinal; - $ptr = 5; - continue main; - } - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionButtonOF; - var$5 = $gamesettings$options.$ordinal; - var$9 = $this.$settings2; - $ptr = 7; - continue main; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $gamesettings$options, var$2, $i, var$4, var$5, $j, var$7, $k, var$9, $ptr); - } - function nPs_GuiQualitySettingsOF_actionPerformed($this, $button) { - var $scaledresolution, var$3, var$4, var$5, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();$scaledresolution = $thread.pop();$button = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - if ($button.$enabled) { - if ($button.$id12 < 200 && $button instanceof nmcg_GuiOptionButton) { - $scaledresolution = $this.$settings2; - var$3 = $button.$enumOptions; - var$4 = 1; - $ptr = 3; - continue main; - } - if ($button.$id12 == 200) { - $scaledresolution = $this.$mc15.$gameSettings; - $ptr = 1; - continue main; - } - var$4 = $button.$id12; - nmcs_GameSettings$Options_$callClinit(); - if (var$4 != nmcs_GameSettings$Options_AA_LEVEL.$ordinal) { - $scaledresolution = new nmcg_ScaledResolution; - $button = $this.$mc15; - $ptr = 5; - continue main; - } - } - return; - case 1: - nmcs_GameSettings_saveOptions($scaledresolution); - if ($rt_suspending()) { - break main; - } - $scaledresolution = $this.$mc15; - var$3 = $this.$prevScreen0; - $ptr = 2; - case 2: - nmc_Minecraft_displayGuiScreen($scaledresolution, var$3); - if ($rt_suspending()) { - break main; - } - var$4 = $button.$id12; - nmcs_GameSettings$Options_$callClinit(); - if (var$4 == nmcs_GameSettings$Options_AA_LEVEL.$ordinal) - return; - $scaledresolution = new nmcg_ScaledResolution; - $button = $this.$mc15; - $ptr = 5; - continue main; - case 3: - nmcs_GameSettings_setOptionValue($scaledresolution, var$3, var$4); - if ($rt_suspending()) { - break main; - } - $scaledresolution = $this.$settings2; - var$3 = nmcs_GameSettings$Options_getEnumOptions($button.$id12); - $ptr = 4; - case 4: - $tmp = nmcs_GameSettings_getKeyBinding($scaledresolution, var$3); - if ($rt_suspending()) { - break main; - } - $scaledresolution = $tmp; - $button.$displayString = $scaledresolution; - if ($button.$id12 == 200) { - $scaledresolution = $this.$mc15.$gameSettings; - $ptr = 1; - continue main; - } - var$4 = $button.$id12; - nmcs_GameSettings$Options_$callClinit(); - if (var$4 == nmcs_GameSettings$Options_AA_LEVEL.$ordinal) - return; - $scaledresolution = new nmcg_ScaledResolution; - $button = $this.$mc15; - $ptr = 5; - case 5: - nmcg_ScaledResolution__init_($scaledresolution, $button); - if ($rt_suspending()) { - break main; - } - $button = $this.$mc15; - var$5 = nmcg_ScaledResolution_scaledWidth; - var$4 = nmcg_ScaledResolution_scaledHeight; - $ptr = 6; - case 6: - nmcg_GuiScreen_setWorldAndResolution($this, $button, var$5, var$4); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $button, $scaledresolution, var$3, var$4, var$5, $ptr); - } - function nPs_GuiQualitySettingsOF_drawScreen($this, $mouseX, $mouseY, $partialTicks) { - var var$4, var$5, var$6, var$7, var$8, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$partialTicks = $thread.pop();$mouseY = $thread.pop();$mouseX = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - nmcg_GuiScreen_drawDefaultBackground($this); - if ($rt_suspending()) { - break main; - } - var$4 = $this.$fontRendererObj0; - var$5 = $this.$title8; - var$6 = $this.$width7 / 2 | 0; - var$7 = 15; - var$8 = 16777215; - $ptr = 2; - case 2: - nmcg_Gui_drawCenteredString($this, var$4, var$5, var$6, var$7, var$8); - if ($rt_suspending()) { - break main; - } - $ptr = 3; - case 3: - nmcg_GuiScreen_drawScreen($this, $mouseX, $mouseY, $partialTicks); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $mouseX, $mouseY, $partialTicks, var$4, var$5, var$6, var$7, var$8, $ptr); - } - function nPs_GuiQualitySettingsOF__clinit_() { - var var$1, var$2; - var$1 = $rt_createArray(nmcs_GameSettings$Options, 15); - var$2 = var$1.data; - nmcs_GameSettings$Options_$callClinit(); - var$2[0] = nmcs_GameSettings$Options_MIPMAP_LEVELS; - var$2[1] = nmcs_GameSettings$Options_MIPMAP_TYPE; - var$2[2] = nmcs_GameSettings$Options_AF_LEVEL; - var$2[3] = nmcs_GameSettings$Options_FXAA; - var$2[4] = nmcs_GameSettings$Options_CLEAR_WATER; - var$2[5] = nmcs_GameSettings$Options_RANDOM_MOBS; - var$2[6] = nmcs_GameSettings$Options_BETTER_GRASS; - var$2[7] = nmcs_GameSettings$Options_BETTER_SNOW; - var$2[8] = nmcs_GameSettings$Options_CUSTOM_FONTS; - var$2[9] = nmcs_GameSettings$Options_CUSTOM_COLORS; - var$2[10] = nmcs_GameSettings$Options_SWAMP_COLORS; - var$2[11] = nmcs_GameSettings$Options_SMOOTH_BIOMES; - var$2[12] = nmcs_GameSettings$Options_CUSTOM_SKY; - var$2[13] = nmcs_GameSettings$Options_CUSTOM_ITEMS; - var$2[14] = nmcs_GameSettings$Options_DYNAMIC_LIGHTS; - nPs_GuiQualitySettingsOF_enumOptions = var$1; - } - function nPs_GuiAnimationSettingsOF() { - var a = this; nmcg_GuiScreen.call(a); - a.$prevScreen1 = null; - a.$title9 = null; - a.$settings3 = null; - } - var nPs_GuiAnimationSettingsOF_enumOptions = null; - function nPs_GuiAnimationSettingsOF_$callClinit() { - nPs_GuiAnimationSettingsOF_$callClinit = $rt_eraseClinit(nPs_GuiAnimationSettingsOF); - nPs_GuiAnimationSettingsOF__clinit_(); - } - function nPs_GuiAnimationSettingsOF_initGui($this) { - var $gamesettings$options, var$2, $i, var$4, var$5, $k, var$7, var$8, $j, var$10, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$10 = $thread.pop();$j = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();$k = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$i = $thread.pop();var$2 = $thread.pop();$gamesettings$options = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $gamesettings$options = $rt_s(9182); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 1; - case 1: - $tmp = nmcr_I18n_format($gamesettings$options, var$2); - if ($rt_suspending()) { - break main; - } - $gamesettings$options = $tmp; - $this.$title9 = $gamesettings$options; - ju_ArrayList_clear($this.$buttonList); - $i = 0; - nPs_GuiAnimationSettingsOF_$callClinit(); - var$2 = nPs_GuiAnimationSettingsOF_enumOptions.data; - if ($i >= var$2.length) { - var$4 = $this.$buttonList; - var$5 = new nmcg_GuiButton; - $i = 210; - $k = ($this.$width7 / 2 | 0) - 155 | 0; - var$7 = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; - var$8 = 70; - $j = 20; - $gamesettings$options = $rt_s(9183); - $ptr = 2; - continue main; - } - $gamesettings$options = var$2[$i]; - $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; - $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; - if ($gamesettings$options.$enumFloat) { - var$4 = $this.$buttonList; - var$5 = new nPs_GuiOptionSliderOF; - var$7 = $gamesettings$options.$ordinal; - $ptr = 9; - continue main; - } - var$4 = $this.$buttonList; - var$5 = new nPs_GuiOptionButtonOF; - var$7 = $gamesettings$options.$ordinal; - var$10 = $this.$settings3; - $ptr = 11; - continue main; - case 2: - nmcg_GuiButton__init_0(var$5, $i, $k, var$7, var$8, $j, $gamesettings$options); - if ($rt_suspending()) { - break main; - } - $ptr = 3; - case 3: - ju_ArrayList_add(var$4, var$5); - if ($rt_suspending()) { - break main; - } - $gamesettings$options = $this.$buttonList; - var$4 = new nmcg_GuiButton; - var$7 = 211; - var$8 = (($this.$width7 / 2 | 0) - 155 | 0) + 80 | 0; - $i = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; - $j = 70; - $k = 20; - var$5 = $rt_s(9184); - $ptr = 4; - case 4: - nmcg_GuiButton__init_0(var$4, var$7, var$8, $i, $j, $k, var$5); - if ($rt_suspending()) { - break main; - } - $ptr = 5; - case 5: - ju_ArrayList_add($gamesettings$options, var$4); - if ($rt_suspending()) { - break main; - } - $gamesettings$options = $this.$buttonList; - var$4 = new nmcg_GuiOptionButton; - $i = 200; - $j = ($this.$width7 / 2 | 0) + 5 | 0; - $k = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; - var$5 = $rt_s(5191); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 6; - case 6: - $tmp = nmcr_I18n_format(var$5, var$2); - if ($rt_suspending()) { - break main; - } - var$5 = $tmp; - $ptr = 7; - case 7: - nmcg_GuiOptionButton__init_0(var$4, $i, $j, $k, var$5); - if ($rt_suspending()) { - break main; - } - $ptr = 8; - case 8: - ju_ArrayList_add($gamesettings$options, var$4); - if ($rt_suspending()) { - break main; - } - return; - case 9: - nPs_GuiOptionSliderOF__init_(var$5, var$7, $j, $k, $gamesettings$options); - if ($rt_suspending()) { - break main; - } - $ptr = 10; - case 10: - ju_ArrayList_add(var$4, var$5); - if ($rt_suspending()) { - break main; - } - $i = $i + 1 | 0; - nPs_GuiAnimationSettingsOF_$callClinit(); - var$2 = nPs_GuiAnimationSettingsOF_enumOptions.data; - if ($i >= var$2.length) { - var$4 = $this.$buttonList; - var$5 = new nmcg_GuiButton; - $i = 210; - $k = ($this.$width7 / 2 | 0) - 155 | 0; - var$7 = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; - var$8 = 70; - $j = 20; - $gamesettings$options = $rt_s(9183); - $ptr = 2; - continue main; - } - $gamesettings$options = var$2[$i]; - $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; - $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; - if ($gamesettings$options.$enumFloat) { - var$4 = $this.$buttonList; - var$5 = new nPs_GuiOptionSliderOF; - var$7 = $gamesettings$options.$ordinal; - $ptr = 9; - continue main; - } - var$4 = $this.$buttonList; - var$5 = new nPs_GuiOptionButtonOF; - var$7 = $gamesettings$options.$ordinal; - var$10 = $this.$settings3; - $ptr = 11; - case 11: - $tmp = nmcs_GameSettings_getKeyBinding(var$10, $gamesettings$options); - if ($rt_suspending()) { - break main; - } - var$10 = $tmp; - $ptr = 12; - case 12: - nPs_GuiOptionButtonOF__init_(var$5, var$7, $j, $k, $gamesettings$options, var$10); - if ($rt_suspending()) { - break main; - } - $ptr = 13; - case 13: - ju_ArrayList_add(var$4, var$5); - if ($rt_suspending()) { - break main; - } - $i = $i + 1 | 0; - nPs_GuiAnimationSettingsOF_$callClinit(); - var$2 = nPs_GuiAnimationSettingsOF_enumOptions.data; - if ($i >= var$2.length) { - var$4 = $this.$buttonList; - var$5 = new nmcg_GuiButton; - $i = 210; - $k = ($this.$width7 / 2 | 0) - 155 | 0; - var$7 = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; - var$8 = 70; - $j = 20; - $gamesettings$options = $rt_s(9183); - $ptr = 2; - continue main; - } - $gamesettings$options = var$2[$i]; - $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; - $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; - if ($gamesettings$options.$enumFloat) { - var$4 = $this.$buttonList; - var$5 = new nPs_GuiOptionSliderOF; - var$7 = $gamesettings$options.$ordinal; - $ptr = 9; - continue main; - } - var$4 = $this.$buttonList; - var$5 = new nPs_GuiOptionButtonOF; - var$7 = $gamesettings$options.$ordinal; - var$10 = $this.$settings3; - $ptr = 11; - continue main; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $gamesettings$options, var$2, $i, var$4, var$5, $k, var$7, var$8, $j, var$10, $ptr); - } - function nPs_GuiAnimationSettingsOF_actionPerformed($this, $button) { - var $scaledresolution, var$3, var$4, var$5, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();$scaledresolution = $thread.pop();$button = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - if (!$button.$enabled) - return; - if ($button.$id12 < 200 && $button instanceof nmcg_GuiOptionButton) { - $scaledresolution = $this.$settings3; - var$3 = $button.$enumOptions; - var$4 = 1; - $ptr = 3; - continue main; - } - if ($button.$id12 == 200) { - $scaledresolution = $this.$mc15.$gameSettings; - $ptr = 1; - continue main; - } - if ($button.$id12 == 210) { - $scaledresolution = $this.$mc15.$gameSettings; - var$4 = 1; - $ptr = 5; - continue main; - } - if ($button.$id12 != 211) { - $scaledresolution = new nmcg_ScaledResolution; - $button = $this.$mc15; - $ptr = 6; - continue main; - } - $button = $this.$mc15.$gameSettings; - var$4 = 0; - $ptr = 8; - continue main; - case 1: - nmcs_GameSettings_saveOptions($scaledresolution); - if ($rt_suspending()) { - break main; - } - $scaledresolution = $this.$mc15; - var$3 = $this.$prevScreen1; - $ptr = 2; - case 2: - nmc_Minecraft_displayGuiScreen($scaledresolution, var$3); - if ($rt_suspending()) { - break main; - } - if ($button.$id12 == 210) { - $scaledresolution = $this.$mc15.$gameSettings; - var$4 = 1; - $ptr = 5; - continue main; - } - if ($button.$id12 != 211) { - $scaledresolution = new nmcg_ScaledResolution; - $button = $this.$mc15; - $ptr = 6; - continue main; - } - $button = $this.$mc15.$gameSettings; - var$4 = 0; - $ptr = 8; - continue main; - case 3: - nmcs_GameSettings_setOptionValue($scaledresolution, var$3, var$4); - if ($rt_suspending()) { - break main; - } - $scaledresolution = $this.$settings3; - var$3 = nmcs_GameSettings$Options_getEnumOptions($button.$id12); - $ptr = 4; - case 4: - $tmp = nmcs_GameSettings_getKeyBinding($scaledresolution, var$3); - if ($rt_suspending()) { - break main; - } - $scaledresolution = $tmp; - $button.$displayString = $scaledresolution; - if ($button.$id12 == 200) { - $scaledresolution = $this.$mc15.$gameSettings; - $ptr = 1; - continue main; - } - if ($button.$id12 == 210) { - $scaledresolution = $this.$mc15.$gameSettings; - var$4 = 1; - $ptr = 5; - continue main; - } - if ($button.$id12 != 211) { - $scaledresolution = new nmcg_ScaledResolution; - $button = $this.$mc15; - $ptr = 6; - continue main; - } - $button = $this.$mc15.$gameSettings; - var$4 = 0; - $ptr = 8; - continue main; - case 5: - nmcs_GameSettings_setAllAnimations($scaledresolution, var$4); - if ($rt_suspending()) { - break main; - } - if ($button.$id12 != 211) { - $scaledresolution = new nmcg_ScaledResolution; - $button = $this.$mc15; - $ptr = 6; - continue main; - } - $button = $this.$mc15.$gameSettings; - var$4 = 0; - $ptr = 8; - continue main; - case 6: - nmcg_ScaledResolution__init_($scaledresolution, $button); - if ($rt_suspending()) { - break main; - } - $button = $this.$mc15; - var$5 = nmcg_ScaledResolution_scaledWidth; - var$4 = nmcg_ScaledResolution_scaledHeight; - $ptr = 7; - case 7: - nmcg_GuiScreen_setWorldAndResolution($this, $button, var$5, var$4); - if ($rt_suspending()) { - break main; - } - return; - case 8: - nmcs_GameSettings_setAllAnimations($button, var$4); - if ($rt_suspending()) { - break main; - } - $scaledresolution = new nmcg_ScaledResolution; - $button = $this.$mc15; - $ptr = 6; - continue main; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $button, $scaledresolution, var$3, var$4, var$5, $ptr); - } - function nPs_GuiAnimationSettingsOF_drawScreen($this, $mouseX, $mouseY, $partialTicks) { - var var$4, var$5, var$6, var$7, var$8, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$partialTicks = $thread.pop();$mouseY = $thread.pop();$mouseX = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - nmcg_GuiScreen_drawDefaultBackground($this); - if ($rt_suspending()) { - break main; - } - var$4 = $this.$fontRendererObj0; - var$5 = $this.$title9; - var$6 = $this.$width7 / 2 | 0; - var$7 = 15; - var$8 = 16777215; - $ptr = 2; - case 2: - nmcg_Gui_drawCenteredString($this, var$4, var$5, var$6, var$7, var$8); - if ($rt_suspending()) { - break main; - } - $ptr = 3; - case 3: - nmcg_GuiScreen_drawScreen($this, $mouseX, $mouseY, $partialTicks); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $mouseX, $mouseY, $partialTicks, var$4, var$5, var$6, var$7, var$8, $ptr); - } - function nPs_GuiAnimationSettingsOF__clinit_() { - var var$1, var$2; - var$1 = $rt_createArray(nmcs_GameSettings$Options, 18); - var$2 = var$1.data; - nmcs_GameSettings$Options_$callClinit(); - var$2[0] = nmcs_GameSettings$Options_ANIMATED_WATER; - var$2[1] = nmcs_GameSettings$Options_ANIMATED_LAVA; - var$2[2] = nmcs_GameSettings$Options_ANIMATED_FIRE; - var$2[3] = nmcs_GameSettings$Options_ANIMATED_PORTAL; - var$2[4] = nmcs_GameSettings$Options_ANIMATED_REDSTONE; - var$2[5] = nmcs_GameSettings$Options_ANIMATED_EXPLOSION; - var$2[6] = nmcs_GameSettings$Options_ANIMATED_FLAME; - var$2[7] = nmcs_GameSettings$Options_ANIMATED_SMOKE; - var$2[8] = nmcs_GameSettings$Options_VOID_PARTICLES; - var$2[9] = nmcs_GameSettings$Options_WATER_PARTICLES; - var$2[10] = nmcs_GameSettings$Options_RAIN_SPLASH; - var$2[11] = nmcs_GameSettings$Options_PORTAL_PARTICLES; - var$2[12] = nmcs_GameSettings$Options_POTION_PARTICLES; - var$2[13] = nmcs_GameSettings$Options_DRIPPING_WATER_LAVA; - var$2[14] = nmcs_GameSettings$Options_ANIMATED_TERRAIN; - var$2[15] = nmcs_GameSettings$Options_ANIMATED_TEXTURES; - var$2[16] = nmcs_GameSettings$Options_FIREWORK_PARTICLES; - var$2[17] = nmcs_GameSettings$Options_PARTICLES; - nPs_GuiAnimationSettingsOF_enumOptions = var$1; - } - function nPs_GuiPerformanceSettingsOF() { - var a = this; nmcg_GuiScreen.call(a); - a.$prevScreen2 = null; - a.$title11 = null; - a.$settings4 = null; - } - var nPs_GuiPerformanceSettingsOF_enumOptions = null; - function nPs_GuiPerformanceSettingsOF_$callClinit() { - nPs_GuiPerformanceSettingsOF_$callClinit = $rt_eraseClinit(nPs_GuiPerformanceSettingsOF); - nPs_GuiPerformanceSettingsOF__clinit_(); - } - function nPs_GuiPerformanceSettingsOF_initGui($this) { - var $gamesettings$options, var$2, $i, var$4, var$5, $j, var$7, $k, var$9, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$9 = $thread.pop();$k = $thread.pop();var$7 = $thread.pop();$j = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$i = $thread.pop();var$2 = $thread.pop();$gamesettings$options = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $gamesettings$options = $rt_s(9185); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 1; - case 1: - $tmp = nmcr_I18n_format($gamesettings$options, var$2); - if ($rt_suspending()) { - break main; - } - $gamesettings$options = $tmp; - $this.$title11 = $gamesettings$options; - ju_ArrayList_clear($this.$buttonList); - $i = 0; - nPs_GuiPerformanceSettingsOF_$callClinit(); - var$2 = nPs_GuiPerformanceSettingsOF_enumOptions.data; - if ($i >= var$2.length) { - $gamesettings$options = $this.$buttonList; - var$4 = new nmcg_GuiButton; - $i = 200; - var$5 = ($this.$width7 / 2 | 0) - 100 | 0; - $j = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; - var$7 = $rt_s(5191); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 2; - continue main; - } - $gamesettings$options = var$2[$i]; - $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; - $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; - if ($gamesettings$options.$enumFloat) { - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionSliderOF; - var$5 = $gamesettings$options.$ordinal; - $ptr = 5; - continue main; - } - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionButtonOF; - var$5 = $gamesettings$options.$ordinal; - var$9 = $this.$settings4; - $ptr = 7; - continue main; - case 2: - $tmp = nmcr_I18n_format(var$7, var$2); - if ($rt_suspending()) { - break main; - } - var$7 = $tmp; - $ptr = 3; - case 3: - nmcg_GuiButton__init_(var$4, $i, var$5, $j, var$7); - if ($rt_suspending()) { - break main; - } - $ptr = 4; - case 4: - ju_ArrayList_add($gamesettings$options, var$4); - if ($rt_suspending()) { - break main; - } - return; - case 5: - nPs_GuiOptionSliderOF__init_(var$7, var$5, $j, $k, $gamesettings$options); - if ($rt_suspending()) { - break main; - } - $ptr = 6; - case 6: - ju_ArrayList_add(var$4, var$7); - if ($rt_suspending()) { - break main; - } - $i = $i + 1 | 0; - nPs_GuiPerformanceSettingsOF_$callClinit(); - var$2 = nPs_GuiPerformanceSettingsOF_enumOptions.data; - if ($i >= var$2.length) { - $gamesettings$options = $this.$buttonList; - var$4 = new nmcg_GuiButton; - $i = 200; - var$5 = ($this.$width7 / 2 | 0) - 100 | 0; - $j = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; - var$7 = $rt_s(5191); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 2; - continue main; - } - $gamesettings$options = var$2[$i]; - $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; - $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; - if ($gamesettings$options.$enumFloat) { - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionSliderOF; - var$5 = $gamesettings$options.$ordinal; - $ptr = 5; - continue main; - } - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionButtonOF; - var$5 = $gamesettings$options.$ordinal; - var$9 = $this.$settings4; - $ptr = 7; - case 7: - $tmp = nmcs_GameSettings_getKeyBinding(var$9, $gamesettings$options); - if ($rt_suspending()) { - break main; - } - var$9 = $tmp; - $ptr = 8; - case 8: - nPs_GuiOptionButtonOF__init_(var$7, var$5, $j, $k, $gamesettings$options, var$9); - if ($rt_suspending()) { - break main; - } - $ptr = 9; - case 9: - ju_ArrayList_add(var$4, var$7); - if ($rt_suspending()) { - break main; - } - $i = $i + 1 | 0; - nPs_GuiPerformanceSettingsOF_$callClinit(); - var$2 = nPs_GuiPerformanceSettingsOF_enumOptions.data; - if ($i >= var$2.length) { - $gamesettings$options = $this.$buttonList; - var$4 = new nmcg_GuiButton; - $i = 200; - var$5 = ($this.$width7 / 2 | 0) - 100 | 0; - $j = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; - var$7 = $rt_s(5191); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 2; - continue main; - } - $gamesettings$options = var$2[$i]; - $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; - $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; - if ($gamesettings$options.$enumFloat) { - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionSliderOF; - var$5 = $gamesettings$options.$ordinal; - $ptr = 5; - continue main; - } - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionButtonOF; - var$5 = $gamesettings$options.$ordinal; - var$9 = $this.$settings4; - $ptr = 7; - continue main; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $gamesettings$options, var$2, $i, var$4, var$5, $j, var$7, $k, var$9, $ptr); - } - function nPs_GuiPerformanceSettingsOF_actionPerformed($this, $button) { - var var$2, var$3, var$4, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();$button = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - if ($button.$enabled) { - if ($button.$id12 < 200 && $button instanceof nmcg_GuiOptionButton) { - var$2 = $this.$settings4; - var$3 = $button.$enumOptions; - var$4 = 1; - $ptr = 3; - continue main; - } - if ($button.$id12 == 200) { - $button = $this.$mc15.$gameSettings; - $ptr = 1; - continue main; - } - } - return; - case 1: - nmcs_GameSettings_saveOptions($button); - if ($rt_suspending()) { - break main; - } - $button = $this.$mc15; - var$2 = $this.$prevScreen2; - $ptr = 2; - case 2: - nmc_Minecraft_displayGuiScreen($button, var$2); - if ($rt_suspending()) { - break main; - } - return; - case 3: - nmcs_GameSettings_setOptionValue(var$2, var$3, var$4); - if ($rt_suspending()) { - break main; - } - var$2 = $this.$settings4; - var$3 = nmcs_GameSettings$Options_getEnumOptions($button.$id12); - $ptr = 4; - case 4: - $tmp = nmcs_GameSettings_getKeyBinding(var$2, var$3); - if ($rt_suspending()) { - break main; - } - var$2 = $tmp; - $button.$displayString = var$2; - if ($button.$id12 != 200) - return; - $button = $this.$mc15.$gameSettings; - $ptr = 1; - continue main; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $button, var$2, var$3, var$4, $ptr); - } - function nPs_GuiPerformanceSettingsOF_drawScreen($this, $mouseX, $mouseY, $partialTicks) { - var var$4, var$5, var$6, var$7, var$8, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$partialTicks = $thread.pop();$mouseY = $thread.pop();$mouseX = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - nmcg_GuiScreen_drawDefaultBackground($this); - if ($rt_suspending()) { - break main; - } - var$4 = $this.$fontRendererObj0; - var$5 = $this.$title11; - var$6 = $this.$width7 / 2 | 0; - var$7 = 15; - var$8 = 16777215; - $ptr = 2; - case 2: - nmcg_Gui_drawCenteredString($this, var$4, var$5, var$6, var$7, var$8); - if ($rt_suspending()) { - break main; - } - $ptr = 3; - case 3: - nmcg_GuiScreen_drawScreen($this, $mouseX, $mouseY, $partialTicks); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $mouseX, $mouseY, $partialTicks, var$4, var$5, var$6, var$7, var$8, $ptr); - } - function nPs_GuiPerformanceSettingsOF__clinit_() { - var var$1, var$2; - var$1 = $rt_createArray(nmcs_GameSettings$Options, 5); - var$2 = var$1.data; - nmcs_GameSettings$Options_$callClinit(); - var$2[0] = nmcs_GameSettings$Options_SMOOTH_FPS; - var$2[1] = nmcs_GameSettings$Options_SMOOTH_WORLD; - var$2[2] = nmcs_GameSettings$Options_FAST_MATH; - var$2[3] = nmcs_GameSettings$Options_CHUNK_UPDATES; - var$2[4] = nmcs_GameSettings$Options_CHUNK_FIX; - nPs_GuiPerformanceSettingsOF_enumOptions = var$1; - } - function nPs_GuiOtherSettingsOF() { - var a = this; nmcg_GuiScreen.call(a); - a.$prevScreen3 = null; - a.$title12 = null; - a.$settings5 = null; - } - var nPs_GuiOtherSettingsOF_enumOptions = null; - function nPs_GuiOtherSettingsOF_$callClinit() { - nPs_GuiOtherSettingsOF_$callClinit = $rt_eraseClinit(nPs_GuiOtherSettingsOF); - nPs_GuiOtherSettingsOF__clinit_(); - } - function nPs_GuiOtherSettingsOF_initGui($this) { - var $gamesettings$options, var$2, $i, var$4, $k, var$6, var$7, $j, var$9, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$9 = $thread.pop();$j = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();$k = $thread.pop();var$4 = $thread.pop();$i = $thread.pop();var$2 = $thread.pop();$gamesettings$options = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $gamesettings$options = $rt_s(9186); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 1; - case 1: - $tmp = nmcr_I18n_format($gamesettings$options, var$2); - if ($rt_suspending()) { - break main; - } - $gamesettings$options = $tmp; - $this.$title12 = $gamesettings$options; - ju_ArrayList_clear($this.$buttonList); - $i = 0; - nPs_GuiOtherSettingsOF_$callClinit(); - var$2 = nPs_GuiOtherSettingsOF_enumOptions.data; - if ($i >= var$2.length) { - $gamesettings$options = $this.$buttonList; - var$4 = new nmcg_GuiButton; - $i = 210; - $k = ($this.$width7 / 2 | 0) - 100 | 0; - var$6 = ((($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0) - 28 | 0; - var$7 = $rt_s(9187); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 2; - continue main; - } - $gamesettings$options = var$2[$i]; - $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; - $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; - if ($gamesettings$options.$enumFloat) { - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionSliderOF; - var$6 = $gamesettings$options.$ordinal; - $ptr = 8; - continue main; - } - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionButtonOF; - var$6 = $gamesettings$options.$ordinal; - var$9 = $this.$settings5; - $ptr = 10; - continue main; - case 2: - $tmp = nmcr_I18n_format(var$7, var$2); - if ($rt_suspending()) { - break main; - } - var$7 = $tmp; - $ptr = 3; - case 3: - nmcg_GuiButton__init_(var$4, $i, $k, var$6, var$7); - if ($rt_suspending()) { - break main; - } - $ptr = 4; - case 4: - ju_ArrayList_add($gamesettings$options, var$4); - if ($rt_suspending()) { - break main; - } - $gamesettings$options = $this.$buttonList; - var$7 = new nmcg_GuiButton; - var$6 = 200; - $i = ($this.$width7 / 2 | 0) - 100 | 0; - $j = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; - var$4 = $rt_s(5191); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 5; - case 5: - $tmp = nmcr_I18n_format(var$4, var$2); - if ($rt_suspending()) { - break main; - } - var$4 = $tmp; - $ptr = 6; - case 6: - nmcg_GuiButton__init_(var$7, var$6, $i, $j, var$4); - if ($rt_suspending()) { - break main; - } - $ptr = 7; - case 7: - ju_ArrayList_add($gamesettings$options, var$7); - if ($rt_suspending()) { - break main; - } - return; - case 8: - nPs_GuiOptionSliderOF__init_(var$7, var$6, $j, $k, $gamesettings$options); - if ($rt_suspending()) { - break main; - } - $ptr = 9; - case 9: - ju_ArrayList_add(var$4, var$7); - if ($rt_suspending()) { - break main; - } - $i = $i + 1 | 0; - nPs_GuiOtherSettingsOF_$callClinit(); - var$2 = nPs_GuiOtherSettingsOF_enumOptions.data; - if ($i >= var$2.length) { - $gamesettings$options = $this.$buttonList; - var$4 = new nmcg_GuiButton; - $i = 210; - $k = ($this.$width7 / 2 | 0) - 100 | 0; - var$6 = ((($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0) - 28 | 0; - var$7 = $rt_s(9187); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 2; - continue main; - } - $gamesettings$options = var$2[$i]; - $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; - $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; - if ($gamesettings$options.$enumFloat) { - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionSliderOF; - var$6 = $gamesettings$options.$ordinal; - $ptr = 8; - continue main; - } - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionButtonOF; - var$6 = $gamesettings$options.$ordinal; - var$9 = $this.$settings5; - $ptr = 10; - case 10: - $tmp = nmcs_GameSettings_getKeyBinding(var$9, $gamesettings$options); - if ($rt_suspending()) { - break main; - } - var$9 = $tmp; - $ptr = 11; - case 11: - nPs_GuiOptionButtonOF__init_(var$7, var$6, $j, $k, $gamesettings$options, var$9); - if ($rt_suspending()) { - break main; - } - $ptr = 12; - case 12: - ju_ArrayList_add(var$4, var$7); - if ($rt_suspending()) { - break main; - } - $i = $i + 1 | 0; - nPs_GuiOtherSettingsOF_$callClinit(); - var$2 = nPs_GuiOtherSettingsOF_enumOptions.data; - if ($i >= var$2.length) { - $gamesettings$options = $this.$buttonList; - var$4 = new nmcg_GuiButton; - $i = 210; - $k = ($this.$width7 / 2 | 0) - 100 | 0; - var$6 = ((($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0) - 28 | 0; - var$7 = $rt_s(9187); - var$2 = $rt_createArray(jl_Object, 0); - $ptr = 2; - continue main; - } - $gamesettings$options = var$2[$i]; - $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; - $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; - if ($gamesettings$options.$enumFloat) { - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionSliderOF; - var$6 = $gamesettings$options.$ordinal; - $ptr = 8; - continue main; - } - var$4 = $this.$buttonList; - var$7 = new nPs_GuiOptionButtonOF; - var$6 = $gamesettings$options.$ordinal; - var$9 = $this.$settings5; - $ptr = 10; - continue main; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $gamesettings$options, var$2, $i, var$4, $k, var$6, var$7, $j, var$9, $ptr); - } - function nPs_GuiOtherSettingsOF_actionPerformed($this, $button) { - var $guiyesno, var$3, var$4, var$5, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();$guiyesno = $thread.pop();$button = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - if ($button.$enabled) { - if ($button.$id12 < 200 && $button instanceof nmcg_GuiOptionButton) { - $guiyesno = $this.$settings5; - var$3 = $button.$enumOptions; - var$4 = 1; - $ptr = 3; - continue main; - } - if ($button.$id12 == 200) { - $guiyesno = $this.$mc15.$gameSettings; - $ptr = 1; - continue main; - } - if ($button.$id12 == 210) { - $button = $this.$mc15.$gameSettings; - $ptr = 5; - continue main; - } - } - return; - case 1: - nmcs_GameSettings_saveOptions($guiyesno); - if ($rt_suspending()) { - break main; - } - $guiyesno = $this.$mc15; - var$3 = $this.$prevScreen3; - $ptr = 2; - case 2: - nmc_Minecraft_displayGuiScreen($guiyesno, var$3); - if ($rt_suspending()) { - break main; - } - if ($button.$id12 != 210) - return; - $button = $this.$mc15.$gameSettings; - $ptr = 5; - continue main; - case 3: - nmcs_GameSettings_setOptionValue($guiyesno, var$3, var$4); - if ($rt_suspending()) { - break main; - } - $guiyesno = $this.$settings5; - var$3 = nmcs_GameSettings$Options_getEnumOptions($button.$id12); - $ptr = 4; - case 4: - $tmp = nmcs_GameSettings_getKeyBinding($guiyesno, var$3); - if ($rt_suspending()) { - break main; - } - $guiyesno = $tmp; - $button.$displayString = $guiyesno; - if ($button.$id12 == 200) { - $guiyesno = $this.$mc15.$gameSettings; - $ptr = 1; - continue main; - } - if ($button.$id12 != 210) - return; - $button = $this.$mc15.$gameSettings; - $ptr = 5; - case 5: - nmcs_GameSettings_saveOptions($button); - if ($rt_suspending()) { - break main; - } - $guiyesno = new nmcg_GuiYesNo; - $button = $rt_s(9188); - var$5 = $rt_createArray(jl_Object, 0); - $ptr = 6; - case 6: - $tmp = nmcr_I18n_format($button, var$5); - if ($rt_suspending()) { - break main; - } - $button = $tmp; - var$3 = $rt_s(14); - var$4 = 9999; - $ptr = 7; - case 7: - nmcg_GuiYesNo__init_($guiyesno, $this, $button, var$3, var$4); - if ($rt_suspending()) { - break main; - } - $button = $this.$mc15; - $ptr = 8; - case 8: - nmc_Minecraft_displayGuiScreen($button, $guiyesno); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $button, $guiyesno, var$3, var$4, var$5, $ptr); - } - function nPs_GuiOtherSettingsOF_confirmClicked($this, $result, $id) { - var var$3, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$3 = $thread.pop();$id = $thread.pop();$result = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - var$3 = $this.$mc15; - $ptr = 1; - case 1: - nmc_Minecraft_displayGuiScreen(var$3, $this); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $result, $id, var$3, $ptr); - } - function nPs_GuiOtherSettingsOF_drawScreen($this, $mouseX, $mouseY, $partialTicks) { - var var$4, var$5, var$6, var$7, var$8, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$partialTicks = $thread.pop();$mouseY = $thread.pop();$mouseX = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - nmcg_GuiScreen_drawDefaultBackground($this); - if ($rt_suspending()) { - break main; - } - var$4 = $this.$fontRendererObj0; - var$5 = $this.$title12; - var$6 = $this.$width7 / 2 | 0; - var$7 = 15; - var$8 = 16777215; - $ptr = 2; - case 2: - nmcg_Gui_drawCenteredString($this, var$4, var$5, var$6, var$7, var$8); - if ($rt_suspending()) { - break main; - } - $ptr = 3; - case 3: - nmcg_GuiScreen_drawScreen($this, $mouseX, $mouseY, $partialTicks); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $mouseX, $mouseY, $partialTicks, var$4, var$5, var$6, var$7, var$8, $ptr); - } - function nPs_GuiOtherSettingsOF__clinit_() { - var var$1, var$2; - var$1 = $rt_createArray(nmcs_GameSettings$Options, 14); - var$2 = var$1.data; - nmcs_GameSettings$Options_$callClinit(); - var$2[0] = nmcs_GameSettings$Options_LAGOMETER; - var$2[1] = nmcs_GameSettings$Options_PROFILER; - var$2[2] = nmcs_GameSettings$Options_WEATHER; - var$2[3] = nmcs_GameSettings$Options_TIME; - var$2[4] = nmcs_GameSettings$Options_FULLSCREEN; - var$2[5] = nmcs_GameSettings$Options_FNAW_SKINS; - var$2[6] = nmcs_GameSettings$Options_HUD_FPS; - var$2[7] = nmcs_GameSettings$Options_AUTOSAVE_TICKS; - var$2[8] = nmcs_GameSettings$Options_ANAGLYPH; - var$2[9] = nmcs_GameSettings$Options_HUD_COORDS; - var$2[10] = nmcs_GameSettings$Options_HUD_PLAYER; - var$2[11] = nmcs_GameSettings$Options_HUD_STATS; - var$2[12] = nmcs_GameSettings$Options_HUD_WORLD; - var$2[13] = nmcs_GameSettings$Options_HUD_24H; - nPs_GuiOtherSettingsOF_enumOptions = var$1; - } - function nPs_GuiShaders() { - var a = this; nmcg_GuiScreen.call(a); - a.$parentScreen15 = null; - a.$list3 = null; - a.$shaderOptions = null; - a.$screen2 = null; - } - function nPs_GuiShaders_initGui($this) { - var $i, $j, var$3, $k, $j1, $k1, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$14 = $thread.pop();var$13 = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();$k1 = $thread.pop();$j1 = $thread.pop();$k = $thread.pop();var$3 = $thread.pop();$j = $thread.pop();$i = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - ju_ArrayList_clear($this.$buttonList); - $i = 120; - $j = 20; - var$3 = $this.$width7 - $i | 0; - $k = var$3 - 10 | 0; - $j1 = var$3 - 20 | 0; - $k1 = jl_Math_min(150, ($j1 / 2 | 0) - 10 | 0); - var$7 = $this.$buttonList; - var$8 = new nmcg_GuiButton; - var$3 = 201; - $j1 = $j1 / 4 | 0; - var$9 = $k1 / 2 | 0; - var$10 = $j1 - var$9 | 0; - var$11 = $this.$height7 - 25 | 0; - var$12 = $rt_s(9189); - $ptr = 1; - case 1: - nmcg_GuiButton__init_0(var$8, var$3, var$10, var$11, $k1, $j, var$12); - if ($rt_suspending()) { - break main; - } - $ptr = 2; - case 2: - ju_ArrayList_add(var$7, var$8); - if ($rt_suspending()) { - break main; - } - var$7 = $this.$buttonList; - var$13 = new nmcg_GuiButton; - var$10 = 202; - $j1 = ($j1 * 3 | 0) - var$9 | 0; - var$9 = $this.$height7 - 25 | 0; - var$12 = $rt_s(5191); - var$14 = $rt_createArray(jl_Object, 0); - $ptr = 3; - case 3: - $tmp = nmcr_I18n_format(var$12, var$14); - if ($rt_suspending()) { - break main; - } - var$12 = $tmp; - $ptr = 4; - case 4: - nmcg_GuiButton__init_0(var$13, var$10, $j1, var$9, $k1, $j, var$12); - if ($rt_suspending()) { - break main; - } - $ptr = 5; - case 5: - ju_ArrayList_add(var$7, var$13); - if ($rt_suspending()) { - break main; - } - var$8.$enabled = 0; - var$12 = $this.$buttonList; - var$8 = new nmcg_GuiButton; - var$3 = 1; - var$9 = 30; - var$7 = $rt_s(9190); - $ptr = 6; - case 6: - nmcg_GuiButton__init_0(var$8, var$3, $k, var$9, $i, $j, var$7); - if ($rt_suspending()) { - break main; - } - $this.$shaderOptions = var$8; - $ptr = 7; - case 7: - ju_ArrayList_add(var$12, var$8); - if ($rt_suspending()) { - break main; - } - var$12 = $this.$shaderOptions; - $ptr = 8; - case 8: - $tmp = nmc_Minecraft_getMinecraft(); - if ($rt_suspending()) { - break main; - } - var$8 = $tmp; - var$12.$enabled = var$8.$gameSettings.$shaders; - var$12 = new nPs_GuiShaders$List; - var$8 = $this.$mc15; - var$12.$this$0267 = $this; - $i = ($this.$width7 - 120 | 0) - 20 | 0; - $j = $this.$height7; - var$3 = 30; - var$9 = $j - 50 | 0; - $k = 16; - $ptr = 9; - case 9: - nmcg_GuiSlot__init_(var$12, var$8, $i, $j, var$3, var$9, $k); - if ($rt_suspending()) { - break main; - } - var$8 = ju_HashMap__init_0(); - var$12.$languageMap1 = var$8; - var$7 = jl_Integer_valueOf0(1); - var$13 = $rt_s(632); - $ptr = 10; - case 10: - ju_HashMap_putImpl(var$8, var$7, var$13); - if ($rt_suspending()) { - break main; - } - var$8 = var$12.$languageMap1; - var$7 = jl_Integer_valueOf0(2); - var$13 = $rt_s(9191); - $ptr = 11; - case 11: - ju_HashMap_putImpl(var$8, var$7, var$13); - if ($rt_suspending()) { - break main; - } - $this.$list3 = var$12; - var$3 = 7; - var$9 = 8; - $ptr = 12; - case 12: - nmcg_GuiSlot_registerScrollButtons(var$12, var$3, var$9); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $i, $j, var$3, $k, $j1, $k1, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, $ptr); - } - function nPs_GuiShaders_handleMouseInput($this) { - var var$1, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - nmcg_GuiScreen_handleMouseInput($this); - if ($rt_suspending()) { - break main; - } - var$1 = $this.$list3; - $ptr = 2; - case 2: - nmcg_GuiSlot_handleMouseInput(var$1); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, var$1, $ptr); - } - function nPs_GuiShaders_actionPerformed($this, $parGuiButton) { - var var$2, var$3, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();$parGuiButton = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - if ($parGuiButton.$enabled) { - if ($parGuiButton.$id12 == 202) { - $ptr = 1; - continue main; - } - if ($parGuiButton.$id12 == 1) { - $parGuiButton = $this.$mc15; - var$2 = new nlevoedg_GuiShaderConfig; - $ptr = 3; - continue main; - } - } - return; - case 1: - $tmp = nmc_Minecraft_getMinecraft(); - if ($rt_suspending()) { - break main; - } - var$2 = $tmp; - var$3 = $this.$parentScreen15; - $ptr = 2; - case 2: - nmc_Minecraft_displayGuiScreen(var$2, var$3); - if ($rt_suspending()) { - break main; - } - if ($parGuiButton.$id12 != 1) - return; - $parGuiButton = $this.$mc15; - var$2 = new nlevoedg_GuiShaderConfig; - $ptr = 3; - case 3: - nlevoedg_GuiShaderConfig_$callClinit(); - if ($rt_suspending()) { - break main; - } - $ptr = 4; - case 4: - nmcg_GuiScreen__init_(var$2); - if ($rt_suspending()) { - break main; - } - var$2.$shaderStartState = 0; - var$2.$parent2 = $this; - $ptr = 5; - case 5: - $tmp = nmc_Minecraft_getMinecraft(); - if ($rt_suspending()) { - break main; - } - var$3 = $tmp; - var$2.$shaderStartState = var$3.$gameSettings.$shaders; - $ptr = 6; - case 6: - nmc_Minecraft_displayGuiScreen($parGuiButton, var$2); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $parGuiButton, var$2, var$3, $ptr); - } - function nPs_GuiShaders_drawScreen($this, $i, $j, $f) { - var var$4, var$5, var$6, var$7, var$8, var$9, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$f = $thread.pop();$j = $thread.pop();$i = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - nmcg_GuiScreen_drawDefaultBackground($this); - if ($rt_suspending()) { - break main; - } - var$4 = $this.$list3; - $ptr = 2; - case 2: - nmcg_GuiSlot_drawScreen(var$4, $i, $j, $f); - if ($rt_suspending()) { - break main; - } - var$5 = $this.$fontRendererObj0; - var$4 = $rt_s(9192); - var$6 = $this.$width7 / 2 | 0; - var$7 = 15; - var$8 = 16777215; - $ptr = 3; - case 3: - nmcg_Gui_drawCenteredString($this, var$5, var$4, var$6, var$7, var$8); - if ($rt_suspending()) { - break main; - } - var$4 = $this.$shaderOptions; - if (var$4 === null) { - $ptr = 4; - continue main; - } - var$5 = $this.$fontRendererObj0; - var$9 = $rt_s(9193); - var$8 = var$4.$xPosition0 + 42 | 0; - var$6 = var$4.$yPosition - 10 | 0; - var$7 = 8421504; - $ptr = 5; - continue main; - case 4: - nmcg_GuiScreen_drawScreen($this, $i, $j, $f); - if ($rt_suspending()) { - break main; - } - return; - case 5: - nmcg_Gui_drawCenteredString($this, var$5, var$9, var$8, var$6, var$7); - if ($rt_suspending()) { - break main; - } - $ptr = 4; - continue main; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $i, $j, $f, var$4, var$5, var$6, var$7, var$8, var$9, $ptr); - } function nmcg_GuiScreenServerList() { var a = this; nmcg_GuiScreen.call(a); a.$field_146303_a = null; @@ -1272324,7 +1272774,7 @@ function nPs_GuiShadowExperimental() { var a = this; nmcg_GuiScreen.call(a); a.$parentScreen18 = null; - a.$title13 = null; + a.$title7 = null; } var nPs_GuiShadowExperimental_enumOptions = null; function nPs_GuiShadowExperimental_$callClinit() { @@ -1272367,7 +1272817,7 @@ } main: while (true) { switch ($ptr) { case 0: - $gamesettings$options = $rt_s(9194); + $gamesettings$options = $rt_s(9180); var$2 = $rt_createArray(jl_Object, 0); $ptr = 1; case 1: @@ -1272376,7 +1272826,7 @@ break main; } $gamesettings$options = $tmp; - $this.$title13 = $gamesettings$options; + $this.$title7 = $gamesettings$options; ju_ArrayList_clear($this.$buttonList); $i = 0; nPs_GuiShadowExperimental_$callClinit(); @@ -1272638,7 +1273088,7 @@ break main; } var$4 = $this.$fontRendererObj0; - var$5 = $this.$title13; + var$5 = $this.$title7; var$6 = $this.$width7 / 2 | 0; var$7 = 15; var$8 = 16777215; @@ -1272688,6 +1273138,2022 @@ var$2[1] = nmcs_GameSettings$Options_BUFFER_QUEUE; nPs_GuiShadowExperimental_enumOptions = var$1; } + function nPs_GuiDetailSettingsOF() { + var a = this; nmcg_GuiScreen.call(a); + a.$prevScreen = null; + a.$title8 = null; + a.$settings1 = null; + } + var nPs_GuiDetailSettingsOF_enumOptions = null; + function nPs_GuiDetailSettingsOF_$callClinit() { + nPs_GuiDetailSettingsOF_$callClinit = $rt_eraseClinit(nPs_GuiDetailSettingsOF); + nPs_GuiDetailSettingsOF__clinit_(); + } + function nPs_GuiDetailSettingsOF_initGui($this) { + var $gamesettings$options, var$2, $i, var$4, var$5, $j, var$7, $k, var$9, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$9 = $thread.pop();$k = $thread.pop();var$7 = $thread.pop();$j = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$i = $thread.pop();var$2 = $thread.pop();$gamesettings$options = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $gamesettings$options = $rt_s(9181); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 1; + case 1: + $tmp = nmcr_I18n_format($gamesettings$options, var$2); + if ($rt_suspending()) { + break main; + } + $gamesettings$options = $tmp; + $this.$title8 = $gamesettings$options; + ju_ArrayList_clear($this.$buttonList); + $i = 0; + nPs_GuiDetailSettingsOF_$callClinit(); + var$2 = nPs_GuiDetailSettingsOF_enumOptions.data; + if ($i >= var$2.length) { + $gamesettings$options = $this.$buttonList; + var$4 = new nmcg_GuiButton; + $i = 200; + var$5 = ($this.$width7 / 2 | 0) - 100 | 0; + $j = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; + var$7 = $rt_s(5191); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 2; + continue main; + } + $gamesettings$options = var$2[$i]; + $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; + $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; + if ($gamesettings$options.$enumFloat) { + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionSliderOF; + var$5 = $gamesettings$options.$ordinal; + $ptr = 5; + continue main; + } + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionButtonOF; + var$5 = $gamesettings$options.$ordinal; + var$9 = $this.$settings1; + $ptr = 7; + continue main; + case 2: + $tmp = nmcr_I18n_format(var$7, var$2); + if ($rt_suspending()) { + break main; + } + var$7 = $tmp; + $ptr = 3; + case 3: + nmcg_GuiButton__init_(var$4, $i, var$5, $j, var$7); + if ($rt_suspending()) { + break main; + } + $ptr = 4; + case 4: + ju_ArrayList_add($gamesettings$options, var$4); + if ($rt_suspending()) { + break main; + } + return; + case 5: + nPs_GuiOptionSliderOF__init_(var$7, var$5, $j, $k, $gamesettings$options); + if ($rt_suspending()) { + break main; + } + $ptr = 6; + case 6: + ju_ArrayList_add(var$4, var$7); + if ($rt_suspending()) { + break main; + } + $i = $i + 1 | 0; + nPs_GuiDetailSettingsOF_$callClinit(); + var$2 = nPs_GuiDetailSettingsOF_enumOptions.data; + if ($i >= var$2.length) { + $gamesettings$options = $this.$buttonList; + var$4 = new nmcg_GuiButton; + $i = 200; + var$5 = ($this.$width7 / 2 | 0) - 100 | 0; + $j = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; + var$7 = $rt_s(5191); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 2; + continue main; + } + $gamesettings$options = var$2[$i]; + $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; + $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; + if ($gamesettings$options.$enumFloat) { + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionSliderOF; + var$5 = $gamesettings$options.$ordinal; + $ptr = 5; + continue main; + } + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionButtonOF; + var$5 = $gamesettings$options.$ordinal; + var$9 = $this.$settings1; + $ptr = 7; + case 7: + $tmp = nmcs_GameSettings_getKeyBinding(var$9, $gamesettings$options); + if ($rt_suspending()) { + break main; + } + var$9 = $tmp; + $ptr = 8; + case 8: + nPs_GuiOptionButtonOF__init_(var$7, var$5, $j, $k, $gamesettings$options, var$9); + if ($rt_suspending()) { + break main; + } + $ptr = 9; + case 9: + ju_ArrayList_add(var$4, var$7); + if ($rt_suspending()) { + break main; + } + $i = $i + 1 | 0; + nPs_GuiDetailSettingsOF_$callClinit(); + var$2 = nPs_GuiDetailSettingsOF_enumOptions.data; + if ($i >= var$2.length) { + $gamesettings$options = $this.$buttonList; + var$4 = new nmcg_GuiButton; + $i = 200; + var$5 = ($this.$width7 / 2 | 0) - 100 | 0; + $j = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; + var$7 = $rt_s(5191); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 2; + continue main; + } + $gamesettings$options = var$2[$i]; + $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; + $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; + if ($gamesettings$options.$enumFloat) { + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionSliderOF; + var$5 = $gamesettings$options.$ordinal; + $ptr = 5; + continue main; + } + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionButtonOF; + var$5 = $gamesettings$options.$ordinal; + var$9 = $this.$settings1; + $ptr = 7; + continue main; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $gamesettings$options, var$2, $i, var$4, var$5, $j, var$7, $k, var$9, $ptr); + } + function nPs_GuiDetailSettingsOF_actionPerformed($this, $button) { + var var$2, var$3, var$4, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();$button = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + if ($button.$enabled) { + if ($button.$id12 < 200 && $button instanceof nmcg_GuiOptionButton) { + var$2 = $this.$settings1; + var$3 = $button.$enumOptions; + var$4 = 1; + $ptr = 3; + continue main; + } + if ($button.$id12 == 200) { + $button = $this.$mc15.$gameSettings; + $ptr = 1; + continue main; + } + } + return; + case 1: + nmcs_GameSettings_saveOptions($button); + if ($rt_suspending()) { + break main; + } + $button = $this.$mc15; + var$2 = $this.$prevScreen; + $ptr = 2; + case 2: + nmc_Minecraft_displayGuiScreen($button, var$2); + if ($rt_suspending()) { + break main; + } + return; + case 3: + nmcs_GameSettings_setOptionValue(var$2, var$3, var$4); + if ($rt_suspending()) { + break main; + } + var$2 = $this.$settings1; + var$3 = nmcs_GameSettings$Options_getEnumOptions($button.$id12); + $ptr = 4; + case 4: + $tmp = nmcs_GameSettings_getKeyBinding(var$2, var$3); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; + $button.$displayString = var$2; + if ($button.$id12 != 200) + return; + $button = $this.$mc15.$gameSettings; + $ptr = 1; + continue main; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $button, var$2, var$3, var$4, $ptr); + } + function nPs_GuiDetailSettingsOF_drawScreen($this, $mouseX, $mouseY, $partialTicks) { + var var$4, var$5, var$6, var$7, var$8, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$partialTicks = $thread.pop();$mouseY = $thread.pop();$mouseX = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + nmcg_GuiScreen_drawDefaultBackground($this); + if ($rt_suspending()) { + break main; + } + var$4 = $this.$fontRendererObj0; + var$5 = $this.$title8; + var$6 = $this.$width7 / 2 | 0; + var$7 = 15; + var$8 = 16777215; + $ptr = 2; + case 2: + nmcg_Gui_drawCenteredString($this, var$4, var$5, var$6, var$7, var$8); + if ($rt_suspending()) { + break main; + } + $ptr = 3; + case 3: + nmcg_GuiScreen_drawScreen($this, $mouseX, $mouseY, $partialTicks); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $mouseX, $mouseY, $partialTicks, var$4, var$5, var$6, var$7, var$8, $ptr); + } + function nPs_GuiDetailSettingsOF__clinit_() { + var var$1, var$2; + var$1 = $rt_createArray(nmcs_GameSettings$Options, 14); + var$2 = var$1.data; + nmcs_GameSettings$Options_$callClinit(); + var$2[0] = nmcs_GameSettings$Options_RENDER_CLOUDS; + var$2[1] = nmcs_GameSettings$Options_CLOUD_HEIGHT; + var$2[2] = nmcs_GameSettings$Options_TREES; + var$2[3] = nmcs_GameSettings$Options_RAIN; + var$2[4] = nmcs_GameSettings$Options_SKY; + var$2[5] = nmcs_GameSettings$Options_STARS; + var$2[6] = nmcs_GameSettings$Options_SUN_MOON; + var$2[7] = nmcs_GameSettings$Options_SHOW_CAPES; + var$2[8] = nmcs_GameSettings$Options_TRANSLUCENT_BLOCKS; + var$2[9] = nmcs_GameSettings$Options_HELD_ITEM_TOOLTIPS; + var$2[10] = nmcs_GameSettings$Options_DROPPED_ITEMS; + var$2[11] = nmcs_GameSettings$Options_ENTITY_SHADOWS; + var$2[12] = nmcs_GameSettings$Options_VIGNETTE; + var$2[13] = nmcs_GameSettings$Options_DYNAMIC_FOV; + nPs_GuiDetailSettingsOF_enumOptions = var$1; + } + function nPs_GuiQualitySettingsOF() { + var a = this; nmcg_GuiScreen.call(a); + a.$prevScreen0 = null; + a.$title9 = null; + a.$settings2 = null; + } + var nPs_GuiQualitySettingsOF_enumOptions = null; + function nPs_GuiQualitySettingsOF_$callClinit() { + nPs_GuiQualitySettingsOF_$callClinit = $rt_eraseClinit(nPs_GuiQualitySettingsOF); + nPs_GuiQualitySettingsOF__clinit_(); + } + function nPs_GuiQualitySettingsOF_initGui($this) { + var $gamesettings$options, var$2, $i, var$4, var$5, $j, var$7, $k, var$9, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$9 = $thread.pop();$k = $thread.pop();var$7 = $thread.pop();$j = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$i = $thread.pop();var$2 = $thread.pop();$gamesettings$options = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $gamesettings$options = $rt_s(9182); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 1; + case 1: + $tmp = nmcr_I18n_format($gamesettings$options, var$2); + if ($rt_suspending()) { + break main; + } + $gamesettings$options = $tmp; + $this.$title9 = $gamesettings$options; + ju_ArrayList_clear($this.$buttonList); + $i = 0; + nPs_GuiQualitySettingsOF_$callClinit(); + var$2 = nPs_GuiQualitySettingsOF_enumOptions.data; + if ($i >= var$2.length) { + $gamesettings$options = $this.$buttonList; + var$4 = new nmcg_GuiButton; + $i = 200; + var$5 = ($this.$width7 / 2 | 0) - 100 | 0; + $j = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; + var$7 = $rt_s(5191); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 2; + continue main; + } + $gamesettings$options = var$2[$i]; + $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; + $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; + if ($gamesettings$options.$enumFloat) { + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionSliderOF; + var$5 = $gamesettings$options.$ordinal; + $ptr = 5; + continue main; + } + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionButtonOF; + var$5 = $gamesettings$options.$ordinal; + var$9 = $this.$settings2; + $ptr = 7; + continue main; + case 2: + $tmp = nmcr_I18n_format(var$7, var$2); + if ($rt_suspending()) { + break main; + } + var$7 = $tmp; + $ptr = 3; + case 3: + nmcg_GuiButton__init_(var$4, $i, var$5, $j, var$7); + if ($rt_suspending()) { + break main; + } + $ptr = 4; + case 4: + ju_ArrayList_add($gamesettings$options, var$4); + if ($rt_suspending()) { + break main; + } + return; + case 5: + nPs_GuiOptionSliderOF__init_(var$7, var$5, $j, $k, $gamesettings$options); + if ($rt_suspending()) { + break main; + } + $ptr = 6; + case 6: + ju_ArrayList_add(var$4, var$7); + if ($rt_suspending()) { + break main; + } + $i = $i + 1 | 0; + nPs_GuiQualitySettingsOF_$callClinit(); + var$2 = nPs_GuiQualitySettingsOF_enumOptions.data; + if ($i >= var$2.length) { + $gamesettings$options = $this.$buttonList; + var$4 = new nmcg_GuiButton; + $i = 200; + var$5 = ($this.$width7 / 2 | 0) - 100 | 0; + $j = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; + var$7 = $rt_s(5191); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 2; + continue main; + } + $gamesettings$options = var$2[$i]; + $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; + $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; + if ($gamesettings$options.$enumFloat) { + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionSliderOF; + var$5 = $gamesettings$options.$ordinal; + $ptr = 5; + continue main; + } + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionButtonOF; + var$5 = $gamesettings$options.$ordinal; + var$9 = $this.$settings2; + $ptr = 7; + case 7: + $tmp = nmcs_GameSettings_getKeyBinding(var$9, $gamesettings$options); + if ($rt_suspending()) { + break main; + } + var$9 = $tmp; + $ptr = 8; + case 8: + nPs_GuiOptionButtonOF__init_(var$7, var$5, $j, $k, $gamesettings$options, var$9); + if ($rt_suspending()) { + break main; + } + $ptr = 9; + case 9: + ju_ArrayList_add(var$4, var$7); + if ($rt_suspending()) { + break main; + } + $i = $i + 1 | 0; + nPs_GuiQualitySettingsOF_$callClinit(); + var$2 = nPs_GuiQualitySettingsOF_enumOptions.data; + if ($i >= var$2.length) { + $gamesettings$options = $this.$buttonList; + var$4 = new nmcg_GuiButton; + $i = 200; + var$5 = ($this.$width7 / 2 | 0) - 100 | 0; + $j = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; + var$7 = $rt_s(5191); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 2; + continue main; + } + $gamesettings$options = var$2[$i]; + $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; + $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; + if ($gamesettings$options.$enumFloat) { + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionSliderOF; + var$5 = $gamesettings$options.$ordinal; + $ptr = 5; + continue main; + } + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionButtonOF; + var$5 = $gamesettings$options.$ordinal; + var$9 = $this.$settings2; + $ptr = 7; + continue main; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $gamesettings$options, var$2, $i, var$4, var$5, $j, var$7, $k, var$9, $ptr); + } + function nPs_GuiQualitySettingsOF_actionPerformed($this, $button) { + var $scaledresolution, var$3, var$4, var$5, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();$scaledresolution = $thread.pop();$button = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + if ($button.$enabled) { + if ($button.$id12 < 200 && $button instanceof nmcg_GuiOptionButton) { + $scaledresolution = $this.$settings2; + var$3 = $button.$enumOptions; + var$4 = 1; + $ptr = 3; + continue main; + } + if ($button.$id12 == 200) { + $scaledresolution = $this.$mc15.$gameSettings; + $ptr = 1; + continue main; + } + var$4 = $button.$id12; + nmcs_GameSettings$Options_$callClinit(); + if (var$4 != nmcs_GameSettings$Options_AA_LEVEL.$ordinal) { + $scaledresolution = new nmcg_ScaledResolution; + $button = $this.$mc15; + $ptr = 5; + continue main; + } + } + return; + case 1: + nmcs_GameSettings_saveOptions($scaledresolution); + if ($rt_suspending()) { + break main; + } + $scaledresolution = $this.$mc15; + var$3 = $this.$prevScreen0; + $ptr = 2; + case 2: + nmc_Minecraft_displayGuiScreen($scaledresolution, var$3); + if ($rt_suspending()) { + break main; + } + var$4 = $button.$id12; + nmcs_GameSettings$Options_$callClinit(); + if (var$4 == nmcs_GameSettings$Options_AA_LEVEL.$ordinal) + return; + $scaledresolution = new nmcg_ScaledResolution; + $button = $this.$mc15; + $ptr = 5; + continue main; + case 3: + nmcs_GameSettings_setOptionValue($scaledresolution, var$3, var$4); + if ($rt_suspending()) { + break main; + } + $scaledresolution = $this.$settings2; + var$3 = nmcs_GameSettings$Options_getEnumOptions($button.$id12); + $ptr = 4; + case 4: + $tmp = nmcs_GameSettings_getKeyBinding($scaledresolution, var$3); + if ($rt_suspending()) { + break main; + } + $scaledresolution = $tmp; + $button.$displayString = $scaledresolution; + if ($button.$id12 == 200) { + $scaledresolution = $this.$mc15.$gameSettings; + $ptr = 1; + continue main; + } + var$4 = $button.$id12; + nmcs_GameSettings$Options_$callClinit(); + if (var$4 == nmcs_GameSettings$Options_AA_LEVEL.$ordinal) + return; + $scaledresolution = new nmcg_ScaledResolution; + $button = $this.$mc15; + $ptr = 5; + case 5: + nmcg_ScaledResolution__init_($scaledresolution, $button); + if ($rt_suspending()) { + break main; + } + $button = $this.$mc15; + var$5 = nmcg_ScaledResolution_scaledWidth; + var$4 = nmcg_ScaledResolution_scaledHeight; + $ptr = 6; + case 6: + nmcg_GuiScreen_setWorldAndResolution($this, $button, var$5, var$4); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $button, $scaledresolution, var$3, var$4, var$5, $ptr); + } + function nPs_GuiQualitySettingsOF_drawScreen($this, $mouseX, $mouseY, $partialTicks) { + var var$4, var$5, var$6, var$7, var$8, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$partialTicks = $thread.pop();$mouseY = $thread.pop();$mouseX = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + nmcg_GuiScreen_drawDefaultBackground($this); + if ($rt_suspending()) { + break main; + } + var$4 = $this.$fontRendererObj0; + var$5 = $this.$title9; + var$6 = $this.$width7 / 2 | 0; + var$7 = 15; + var$8 = 16777215; + $ptr = 2; + case 2: + nmcg_Gui_drawCenteredString($this, var$4, var$5, var$6, var$7, var$8); + if ($rt_suspending()) { + break main; + } + $ptr = 3; + case 3: + nmcg_GuiScreen_drawScreen($this, $mouseX, $mouseY, $partialTicks); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $mouseX, $mouseY, $partialTicks, var$4, var$5, var$6, var$7, var$8, $ptr); + } + function nPs_GuiQualitySettingsOF__clinit_() { + var var$1, var$2; + var$1 = $rt_createArray(nmcs_GameSettings$Options, 15); + var$2 = var$1.data; + nmcs_GameSettings$Options_$callClinit(); + var$2[0] = nmcs_GameSettings$Options_MIPMAP_LEVELS; + var$2[1] = nmcs_GameSettings$Options_MIPMAP_TYPE; + var$2[2] = nmcs_GameSettings$Options_AF_LEVEL; + var$2[3] = nmcs_GameSettings$Options_FXAA; + var$2[4] = nmcs_GameSettings$Options_CLEAR_WATER; + var$2[5] = nmcs_GameSettings$Options_RANDOM_MOBS; + var$2[6] = nmcs_GameSettings$Options_BETTER_GRASS; + var$2[7] = nmcs_GameSettings$Options_BETTER_SNOW; + var$2[8] = nmcs_GameSettings$Options_CUSTOM_FONTS; + var$2[9] = nmcs_GameSettings$Options_CUSTOM_COLORS; + var$2[10] = nmcs_GameSettings$Options_SWAMP_COLORS; + var$2[11] = nmcs_GameSettings$Options_SMOOTH_BIOMES; + var$2[12] = nmcs_GameSettings$Options_CUSTOM_SKY; + var$2[13] = nmcs_GameSettings$Options_CUSTOM_ITEMS; + var$2[14] = nmcs_GameSettings$Options_DYNAMIC_LIGHTS; + nPs_GuiQualitySettingsOF_enumOptions = var$1; + } + function nPs_GuiAnimationSettingsOF() { + var a = this; nmcg_GuiScreen.call(a); + a.$prevScreen1 = null; + a.$title11 = null; + a.$settings3 = null; + } + var nPs_GuiAnimationSettingsOF_enumOptions = null; + function nPs_GuiAnimationSettingsOF_$callClinit() { + nPs_GuiAnimationSettingsOF_$callClinit = $rt_eraseClinit(nPs_GuiAnimationSettingsOF); + nPs_GuiAnimationSettingsOF__clinit_(); + } + function nPs_GuiAnimationSettingsOF_initGui($this) { + var $gamesettings$options, var$2, $i, var$4, var$5, $k, var$7, var$8, $j, var$10, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$10 = $thread.pop();$j = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();$k = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$i = $thread.pop();var$2 = $thread.pop();$gamesettings$options = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $gamesettings$options = $rt_s(9183); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 1; + case 1: + $tmp = nmcr_I18n_format($gamesettings$options, var$2); + if ($rt_suspending()) { + break main; + } + $gamesettings$options = $tmp; + $this.$title11 = $gamesettings$options; + ju_ArrayList_clear($this.$buttonList); + $i = 0; + nPs_GuiAnimationSettingsOF_$callClinit(); + var$2 = nPs_GuiAnimationSettingsOF_enumOptions.data; + if ($i >= var$2.length) { + var$4 = $this.$buttonList; + var$5 = new nmcg_GuiButton; + $i = 210; + $k = ($this.$width7 / 2 | 0) - 155 | 0; + var$7 = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; + var$8 = 70; + $j = 20; + $gamesettings$options = $rt_s(9184); + $ptr = 2; + continue main; + } + $gamesettings$options = var$2[$i]; + $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; + $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; + if ($gamesettings$options.$enumFloat) { + var$4 = $this.$buttonList; + var$5 = new nPs_GuiOptionSliderOF; + var$7 = $gamesettings$options.$ordinal; + $ptr = 9; + continue main; + } + var$4 = $this.$buttonList; + var$5 = new nPs_GuiOptionButtonOF; + var$7 = $gamesettings$options.$ordinal; + var$10 = $this.$settings3; + $ptr = 11; + continue main; + case 2: + nmcg_GuiButton__init_0(var$5, $i, $k, var$7, var$8, $j, $gamesettings$options); + if ($rt_suspending()) { + break main; + } + $ptr = 3; + case 3: + ju_ArrayList_add(var$4, var$5); + if ($rt_suspending()) { + break main; + } + $gamesettings$options = $this.$buttonList; + var$4 = new nmcg_GuiButton; + var$7 = 211; + var$8 = (($this.$width7 / 2 | 0) - 155 | 0) + 80 | 0; + $i = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; + $j = 70; + $k = 20; + var$5 = $rt_s(9185); + $ptr = 4; + case 4: + nmcg_GuiButton__init_0(var$4, var$7, var$8, $i, $j, $k, var$5); + if ($rt_suspending()) { + break main; + } + $ptr = 5; + case 5: + ju_ArrayList_add($gamesettings$options, var$4); + if ($rt_suspending()) { + break main; + } + $gamesettings$options = $this.$buttonList; + var$4 = new nmcg_GuiOptionButton; + $i = 200; + $j = ($this.$width7 / 2 | 0) + 5 | 0; + $k = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; + var$5 = $rt_s(5191); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 6; + case 6: + $tmp = nmcr_I18n_format(var$5, var$2); + if ($rt_suspending()) { + break main; + } + var$5 = $tmp; + $ptr = 7; + case 7: + nmcg_GuiOptionButton__init_0(var$4, $i, $j, $k, var$5); + if ($rt_suspending()) { + break main; + } + $ptr = 8; + case 8: + ju_ArrayList_add($gamesettings$options, var$4); + if ($rt_suspending()) { + break main; + } + return; + case 9: + nPs_GuiOptionSliderOF__init_(var$5, var$7, $j, $k, $gamesettings$options); + if ($rt_suspending()) { + break main; + } + $ptr = 10; + case 10: + ju_ArrayList_add(var$4, var$5); + if ($rt_suspending()) { + break main; + } + $i = $i + 1 | 0; + nPs_GuiAnimationSettingsOF_$callClinit(); + var$2 = nPs_GuiAnimationSettingsOF_enumOptions.data; + if ($i >= var$2.length) { + var$4 = $this.$buttonList; + var$5 = new nmcg_GuiButton; + $i = 210; + $k = ($this.$width7 / 2 | 0) - 155 | 0; + var$7 = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; + var$8 = 70; + $j = 20; + $gamesettings$options = $rt_s(9184); + $ptr = 2; + continue main; + } + $gamesettings$options = var$2[$i]; + $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; + $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; + if ($gamesettings$options.$enumFloat) { + var$4 = $this.$buttonList; + var$5 = new nPs_GuiOptionSliderOF; + var$7 = $gamesettings$options.$ordinal; + $ptr = 9; + continue main; + } + var$4 = $this.$buttonList; + var$5 = new nPs_GuiOptionButtonOF; + var$7 = $gamesettings$options.$ordinal; + var$10 = $this.$settings3; + $ptr = 11; + case 11: + $tmp = nmcs_GameSettings_getKeyBinding(var$10, $gamesettings$options); + if ($rt_suspending()) { + break main; + } + var$10 = $tmp; + $ptr = 12; + case 12: + nPs_GuiOptionButtonOF__init_(var$5, var$7, $j, $k, $gamesettings$options, var$10); + if ($rt_suspending()) { + break main; + } + $ptr = 13; + case 13: + ju_ArrayList_add(var$4, var$5); + if ($rt_suspending()) { + break main; + } + $i = $i + 1 | 0; + nPs_GuiAnimationSettingsOF_$callClinit(); + var$2 = nPs_GuiAnimationSettingsOF_enumOptions.data; + if ($i >= var$2.length) { + var$4 = $this.$buttonList; + var$5 = new nmcg_GuiButton; + $i = 210; + $k = ($this.$width7 / 2 | 0) - 155 | 0; + var$7 = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; + var$8 = 70; + $j = 20; + $gamesettings$options = $rt_s(9184); + $ptr = 2; + continue main; + } + $gamesettings$options = var$2[$i]; + $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; + $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; + if ($gamesettings$options.$enumFloat) { + var$4 = $this.$buttonList; + var$5 = new nPs_GuiOptionSliderOF; + var$7 = $gamesettings$options.$ordinal; + $ptr = 9; + continue main; + } + var$4 = $this.$buttonList; + var$5 = new nPs_GuiOptionButtonOF; + var$7 = $gamesettings$options.$ordinal; + var$10 = $this.$settings3; + $ptr = 11; + continue main; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $gamesettings$options, var$2, $i, var$4, var$5, $k, var$7, var$8, $j, var$10, $ptr); + } + function nPs_GuiAnimationSettingsOF_actionPerformed($this, $button) { + var $scaledresolution, var$3, var$4, var$5, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();$scaledresolution = $thread.pop();$button = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + if (!$button.$enabled) + return; + if ($button.$id12 < 200 && $button instanceof nmcg_GuiOptionButton) { + $scaledresolution = $this.$settings3; + var$3 = $button.$enumOptions; + var$4 = 1; + $ptr = 3; + continue main; + } + if ($button.$id12 == 200) { + $scaledresolution = $this.$mc15.$gameSettings; + $ptr = 1; + continue main; + } + if ($button.$id12 == 210) { + $scaledresolution = $this.$mc15.$gameSettings; + var$4 = 1; + $ptr = 5; + continue main; + } + if ($button.$id12 != 211) { + $scaledresolution = new nmcg_ScaledResolution; + $button = $this.$mc15; + $ptr = 6; + continue main; + } + $button = $this.$mc15.$gameSettings; + var$4 = 0; + $ptr = 8; + continue main; + case 1: + nmcs_GameSettings_saveOptions($scaledresolution); + if ($rt_suspending()) { + break main; + } + $scaledresolution = $this.$mc15; + var$3 = $this.$prevScreen1; + $ptr = 2; + case 2: + nmc_Minecraft_displayGuiScreen($scaledresolution, var$3); + if ($rt_suspending()) { + break main; + } + if ($button.$id12 == 210) { + $scaledresolution = $this.$mc15.$gameSettings; + var$4 = 1; + $ptr = 5; + continue main; + } + if ($button.$id12 != 211) { + $scaledresolution = new nmcg_ScaledResolution; + $button = $this.$mc15; + $ptr = 6; + continue main; + } + $button = $this.$mc15.$gameSettings; + var$4 = 0; + $ptr = 8; + continue main; + case 3: + nmcs_GameSettings_setOptionValue($scaledresolution, var$3, var$4); + if ($rt_suspending()) { + break main; + } + $scaledresolution = $this.$settings3; + var$3 = nmcs_GameSettings$Options_getEnumOptions($button.$id12); + $ptr = 4; + case 4: + $tmp = nmcs_GameSettings_getKeyBinding($scaledresolution, var$3); + if ($rt_suspending()) { + break main; + } + $scaledresolution = $tmp; + $button.$displayString = $scaledresolution; + if ($button.$id12 == 200) { + $scaledresolution = $this.$mc15.$gameSettings; + $ptr = 1; + continue main; + } + if ($button.$id12 == 210) { + $scaledresolution = $this.$mc15.$gameSettings; + var$4 = 1; + $ptr = 5; + continue main; + } + if ($button.$id12 != 211) { + $scaledresolution = new nmcg_ScaledResolution; + $button = $this.$mc15; + $ptr = 6; + continue main; + } + $button = $this.$mc15.$gameSettings; + var$4 = 0; + $ptr = 8; + continue main; + case 5: + nmcs_GameSettings_setAllAnimations($scaledresolution, var$4); + if ($rt_suspending()) { + break main; + } + if ($button.$id12 != 211) { + $scaledresolution = new nmcg_ScaledResolution; + $button = $this.$mc15; + $ptr = 6; + continue main; + } + $button = $this.$mc15.$gameSettings; + var$4 = 0; + $ptr = 8; + continue main; + case 6: + nmcg_ScaledResolution__init_($scaledresolution, $button); + if ($rt_suspending()) { + break main; + } + $button = $this.$mc15; + var$5 = nmcg_ScaledResolution_scaledWidth; + var$4 = nmcg_ScaledResolution_scaledHeight; + $ptr = 7; + case 7: + nmcg_GuiScreen_setWorldAndResolution($this, $button, var$5, var$4); + if ($rt_suspending()) { + break main; + } + return; + case 8: + nmcs_GameSettings_setAllAnimations($button, var$4); + if ($rt_suspending()) { + break main; + } + $scaledresolution = new nmcg_ScaledResolution; + $button = $this.$mc15; + $ptr = 6; + continue main; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $button, $scaledresolution, var$3, var$4, var$5, $ptr); + } + function nPs_GuiAnimationSettingsOF_drawScreen($this, $mouseX, $mouseY, $partialTicks) { + var var$4, var$5, var$6, var$7, var$8, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$partialTicks = $thread.pop();$mouseY = $thread.pop();$mouseX = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + nmcg_GuiScreen_drawDefaultBackground($this); + if ($rt_suspending()) { + break main; + } + var$4 = $this.$fontRendererObj0; + var$5 = $this.$title11; + var$6 = $this.$width7 / 2 | 0; + var$7 = 15; + var$8 = 16777215; + $ptr = 2; + case 2: + nmcg_Gui_drawCenteredString($this, var$4, var$5, var$6, var$7, var$8); + if ($rt_suspending()) { + break main; + } + $ptr = 3; + case 3: + nmcg_GuiScreen_drawScreen($this, $mouseX, $mouseY, $partialTicks); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $mouseX, $mouseY, $partialTicks, var$4, var$5, var$6, var$7, var$8, $ptr); + } + function nPs_GuiAnimationSettingsOF__clinit_() { + var var$1, var$2; + var$1 = $rt_createArray(nmcs_GameSettings$Options, 18); + var$2 = var$1.data; + nmcs_GameSettings$Options_$callClinit(); + var$2[0] = nmcs_GameSettings$Options_ANIMATED_WATER; + var$2[1] = nmcs_GameSettings$Options_ANIMATED_LAVA; + var$2[2] = nmcs_GameSettings$Options_ANIMATED_FIRE; + var$2[3] = nmcs_GameSettings$Options_ANIMATED_PORTAL; + var$2[4] = nmcs_GameSettings$Options_ANIMATED_REDSTONE; + var$2[5] = nmcs_GameSettings$Options_ANIMATED_EXPLOSION; + var$2[6] = nmcs_GameSettings$Options_ANIMATED_FLAME; + var$2[7] = nmcs_GameSettings$Options_ANIMATED_SMOKE; + var$2[8] = nmcs_GameSettings$Options_VOID_PARTICLES; + var$2[9] = nmcs_GameSettings$Options_WATER_PARTICLES; + var$2[10] = nmcs_GameSettings$Options_RAIN_SPLASH; + var$2[11] = nmcs_GameSettings$Options_PORTAL_PARTICLES; + var$2[12] = nmcs_GameSettings$Options_POTION_PARTICLES; + var$2[13] = nmcs_GameSettings$Options_DRIPPING_WATER_LAVA; + var$2[14] = nmcs_GameSettings$Options_ANIMATED_TERRAIN; + var$2[15] = nmcs_GameSettings$Options_ANIMATED_TEXTURES; + var$2[16] = nmcs_GameSettings$Options_FIREWORK_PARTICLES; + var$2[17] = nmcs_GameSettings$Options_PARTICLES; + nPs_GuiAnimationSettingsOF_enumOptions = var$1; + } + function nPs_GuiPerformanceSettingsOF() { + var a = this; nmcg_GuiScreen.call(a); + a.$prevScreen2 = null; + a.$title12 = null; + a.$settings4 = null; + } + var nPs_GuiPerformanceSettingsOF_enumOptions = null; + function nPs_GuiPerformanceSettingsOF_$callClinit() { + nPs_GuiPerformanceSettingsOF_$callClinit = $rt_eraseClinit(nPs_GuiPerformanceSettingsOF); + nPs_GuiPerformanceSettingsOF__clinit_(); + } + function nPs_GuiPerformanceSettingsOF_initGui($this) { + var $gamesettings$options, var$2, $i, var$4, var$5, $j, var$7, $k, var$9, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$9 = $thread.pop();$k = $thread.pop();var$7 = $thread.pop();$j = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$i = $thread.pop();var$2 = $thread.pop();$gamesettings$options = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $gamesettings$options = $rt_s(9186); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 1; + case 1: + $tmp = nmcr_I18n_format($gamesettings$options, var$2); + if ($rt_suspending()) { + break main; + } + $gamesettings$options = $tmp; + $this.$title12 = $gamesettings$options; + ju_ArrayList_clear($this.$buttonList); + $i = 0; + nPs_GuiPerformanceSettingsOF_$callClinit(); + var$2 = nPs_GuiPerformanceSettingsOF_enumOptions.data; + if ($i >= var$2.length) { + $gamesettings$options = $this.$buttonList; + var$4 = new nmcg_GuiButton; + $i = 200; + var$5 = ($this.$width7 / 2 | 0) - 100 | 0; + $j = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; + var$7 = $rt_s(5191); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 2; + continue main; + } + $gamesettings$options = var$2[$i]; + $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; + $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; + if ($gamesettings$options.$enumFloat) { + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionSliderOF; + var$5 = $gamesettings$options.$ordinal; + $ptr = 5; + continue main; + } + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionButtonOF; + var$5 = $gamesettings$options.$ordinal; + var$9 = $this.$settings4; + $ptr = 7; + continue main; + case 2: + $tmp = nmcr_I18n_format(var$7, var$2); + if ($rt_suspending()) { + break main; + } + var$7 = $tmp; + $ptr = 3; + case 3: + nmcg_GuiButton__init_(var$4, $i, var$5, $j, var$7); + if ($rt_suspending()) { + break main; + } + $ptr = 4; + case 4: + ju_ArrayList_add($gamesettings$options, var$4); + if ($rt_suspending()) { + break main; + } + return; + case 5: + nPs_GuiOptionSliderOF__init_(var$7, var$5, $j, $k, $gamesettings$options); + if ($rt_suspending()) { + break main; + } + $ptr = 6; + case 6: + ju_ArrayList_add(var$4, var$7); + if ($rt_suspending()) { + break main; + } + $i = $i + 1 | 0; + nPs_GuiPerformanceSettingsOF_$callClinit(); + var$2 = nPs_GuiPerformanceSettingsOF_enumOptions.data; + if ($i >= var$2.length) { + $gamesettings$options = $this.$buttonList; + var$4 = new nmcg_GuiButton; + $i = 200; + var$5 = ($this.$width7 / 2 | 0) - 100 | 0; + $j = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; + var$7 = $rt_s(5191); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 2; + continue main; + } + $gamesettings$options = var$2[$i]; + $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; + $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; + if ($gamesettings$options.$enumFloat) { + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionSliderOF; + var$5 = $gamesettings$options.$ordinal; + $ptr = 5; + continue main; + } + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionButtonOF; + var$5 = $gamesettings$options.$ordinal; + var$9 = $this.$settings4; + $ptr = 7; + case 7: + $tmp = nmcs_GameSettings_getKeyBinding(var$9, $gamesettings$options); + if ($rt_suspending()) { + break main; + } + var$9 = $tmp; + $ptr = 8; + case 8: + nPs_GuiOptionButtonOF__init_(var$7, var$5, $j, $k, $gamesettings$options, var$9); + if ($rt_suspending()) { + break main; + } + $ptr = 9; + case 9: + ju_ArrayList_add(var$4, var$7); + if ($rt_suspending()) { + break main; + } + $i = $i + 1 | 0; + nPs_GuiPerformanceSettingsOF_$callClinit(); + var$2 = nPs_GuiPerformanceSettingsOF_enumOptions.data; + if ($i >= var$2.length) { + $gamesettings$options = $this.$buttonList; + var$4 = new nmcg_GuiButton; + $i = 200; + var$5 = ($this.$width7 / 2 | 0) - 100 | 0; + $j = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; + var$7 = $rt_s(5191); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 2; + continue main; + } + $gamesettings$options = var$2[$i]; + $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; + $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; + if ($gamesettings$options.$enumFloat) { + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionSliderOF; + var$5 = $gamesettings$options.$ordinal; + $ptr = 5; + continue main; + } + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionButtonOF; + var$5 = $gamesettings$options.$ordinal; + var$9 = $this.$settings4; + $ptr = 7; + continue main; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $gamesettings$options, var$2, $i, var$4, var$5, $j, var$7, $k, var$9, $ptr); + } + function nPs_GuiPerformanceSettingsOF_actionPerformed($this, $button) { + var var$2, var$3, var$4, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();$button = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + if ($button.$enabled) { + if ($button.$id12 < 200 && $button instanceof nmcg_GuiOptionButton) { + var$2 = $this.$settings4; + var$3 = $button.$enumOptions; + var$4 = 1; + $ptr = 3; + continue main; + } + if ($button.$id12 == 200) { + $button = $this.$mc15.$gameSettings; + $ptr = 1; + continue main; + } + } + return; + case 1: + nmcs_GameSettings_saveOptions($button); + if ($rt_suspending()) { + break main; + } + $button = $this.$mc15; + var$2 = $this.$prevScreen2; + $ptr = 2; + case 2: + nmc_Minecraft_displayGuiScreen($button, var$2); + if ($rt_suspending()) { + break main; + } + return; + case 3: + nmcs_GameSettings_setOptionValue(var$2, var$3, var$4); + if ($rt_suspending()) { + break main; + } + var$2 = $this.$settings4; + var$3 = nmcs_GameSettings$Options_getEnumOptions($button.$id12); + $ptr = 4; + case 4: + $tmp = nmcs_GameSettings_getKeyBinding(var$2, var$3); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; + $button.$displayString = var$2; + if ($button.$id12 != 200) + return; + $button = $this.$mc15.$gameSettings; + $ptr = 1; + continue main; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $button, var$2, var$3, var$4, $ptr); + } + function nPs_GuiPerformanceSettingsOF_drawScreen($this, $mouseX, $mouseY, $partialTicks) { + var var$4, var$5, var$6, var$7, var$8, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$partialTicks = $thread.pop();$mouseY = $thread.pop();$mouseX = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + nmcg_GuiScreen_drawDefaultBackground($this); + if ($rt_suspending()) { + break main; + } + var$4 = $this.$fontRendererObj0; + var$5 = $this.$title12; + var$6 = $this.$width7 / 2 | 0; + var$7 = 15; + var$8 = 16777215; + $ptr = 2; + case 2: + nmcg_Gui_drawCenteredString($this, var$4, var$5, var$6, var$7, var$8); + if ($rt_suspending()) { + break main; + } + $ptr = 3; + case 3: + nmcg_GuiScreen_drawScreen($this, $mouseX, $mouseY, $partialTicks); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $mouseX, $mouseY, $partialTicks, var$4, var$5, var$6, var$7, var$8, $ptr); + } + function nPs_GuiPerformanceSettingsOF__clinit_() { + var var$1, var$2; + var$1 = $rt_createArray(nmcs_GameSettings$Options, 5); + var$2 = var$1.data; + nmcs_GameSettings$Options_$callClinit(); + var$2[0] = nmcs_GameSettings$Options_SMOOTH_FPS; + var$2[1] = nmcs_GameSettings$Options_SMOOTH_WORLD; + var$2[2] = nmcs_GameSettings$Options_FAST_MATH; + var$2[3] = nmcs_GameSettings$Options_CHUNK_UPDATES; + var$2[4] = nmcs_GameSettings$Options_CHUNK_FIX; + nPs_GuiPerformanceSettingsOF_enumOptions = var$1; + } + function nPs_GuiOtherSettingsOF() { + var a = this; nmcg_GuiScreen.call(a); + a.$prevScreen3 = null; + a.$title13 = null; + a.$settings5 = null; + } + var nPs_GuiOtherSettingsOF_enumOptions = null; + function nPs_GuiOtherSettingsOF_$callClinit() { + nPs_GuiOtherSettingsOF_$callClinit = $rt_eraseClinit(nPs_GuiOtherSettingsOF); + nPs_GuiOtherSettingsOF__clinit_(); + } + function nPs_GuiOtherSettingsOF_initGui($this) { + var $gamesettings$options, var$2, $i, var$4, $k, var$6, var$7, $j, var$9, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$9 = $thread.pop();$j = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();$k = $thread.pop();var$4 = $thread.pop();$i = $thread.pop();var$2 = $thread.pop();$gamesettings$options = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $gamesettings$options = $rt_s(9187); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 1; + case 1: + $tmp = nmcr_I18n_format($gamesettings$options, var$2); + if ($rt_suspending()) { + break main; + } + $gamesettings$options = $tmp; + $this.$title13 = $gamesettings$options; + ju_ArrayList_clear($this.$buttonList); + $i = 0; + nPs_GuiOtherSettingsOF_$callClinit(); + var$2 = nPs_GuiOtherSettingsOF_enumOptions.data; + if ($i >= var$2.length) { + $gamesettings$options = $this.$buttonList; + var$4 = new nmcg_GuiButton; + $i = 210; + $k = ($this.$width7 / 2 | 0) - 100 | 0; + var$6 = ((($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0) - 28 | 0; + var$7 = $rt_s(9188); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 2; + continue main; + } + $gamesettings$options = var$2[$i]; + $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; + $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; + if ($gamesettings$options.$enumFloat) { + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionSliderOF; + var$6 = $gamesettings$options.$ordinal; + $ptr = 8; + continue main; + } + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionButtonOF; + var$6 = $gamesettings$options.$ordinal; + var$9 = $this.$settings5; + $ptr = 10; + continue main; + case 2: + $tmp = nmcr_I18n_format(var$7, var$2); + if ($rt_suspending()) { + break main; + } + var$7 = $tmp; + $ptr = 3; + case 3: + nmcg_GuiButton__init_(var$4, $i, $k, var$6, var$7); + if ($rt_suspending()) { + break main; + } + $ptr = 4; + case 4: + ju_ArrayList_add($gamesettings$options, var$4); + if ($rt_suspending()) { + break main; + } + $gamesettings$options = $this.$buttonList; + var$7 = new nmcg_GuiButton; + var$6 = 200; + $i = ($this.$width7 / 2 | 0) - 100 | 0; + $j = (($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0; + var$4 = $rt_s(5191); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 5; + case 5: + $tmp = nmcr_I18n_format(var$4, var$2); + if ($rt_suspending()) { + break main; + } + var$4 = $tmp; + $ptr = 6; + case 6: + nmcg_GuiButton__init_(var$7, var$6, $i, $j, var$4); + if ($rt_suspending()) { + break main; + } + $ptr = 7; + case 7: + ju_ArrayList_add($gamesettings$options, var$7); + if ($rt_suspending()) { + break main; + } + return; + case 8: + nPs_GuiOptionSliderOF__init_(var$7, var$6, $j, $k, $gamesettings$options); + if ($rt_suspending()) { + break main; + } + $ptr = 9; + case 9: + ju_ArrayList_add(var$4, var$7); + if ($rt_suspending()) { + break main; + } + $i = $i + 1 | 0; + nPs_GuiOtherSettingsOF_$callClinit(); + var$2 = nPs_GuiOtherSettingsOF_enumOptions.data; + if ($i >= var$2.length) { + $gamesettings$options = $this.$buttonList; + var$4 = new nmcg_GuiButton; + $i = 210; + $k = ($this.$width7 / 2 | 0) - 100 | 0; + var$6 = ((($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0) - 28 | 0; + var$7 = $rt_s(9188); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 2; + continue main; + } + $gamesettings$options = var$2[$i]; + $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; + $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; + if ($gamesettings$options.$enumFloat) { + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionSliderOF; + var$6 = $gamesettings$options.$ordinal; + $ptr = 8; + continue main; + } + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionButtonOF; + var$6 = $gamesettings$options.$ordinal; + var$9 = $this.$settings5; + $ptr = 10; + case 10: + $tmp = nmcs_GameSettings_getKeyBinding(var$9, $gamesettings$options); + if ($rt_suspending()) { + break main; + } + var$9 = $tmp; + $ptr = 11; + case 11: + nPs_GuiOptionButtonOF__init_(var$7, var$6, $j, $k, $gamesettings$options, var$9); + if ($rt_suspending()) { + break main; + } + $ptr = 12; + case 12: + ju_ArrayList_add(var$4, var$7); + if ($rt_suspending()) { + break main; + } + $i = $i + 1 | 0; + nPs_GuiOtherSettingsOF_$callClinit(); + var$2 = nPs_GuiOtherSettingsOF_enumOptions.data; + if ($i >= var$2.length) { + $gamesettings$options = $this.$buttonList; + var$4 = new nmcg_GuiButton; + $i = 210; + $k = ($this.$width7 / 2 | 0) - 100 | 0; + var$6 = ((($this.$height7 / 6 | 0) + 168 | 0) + 11 | 0) - 28 | 0; + var$7 = $rt_s(9188); + var$2 = $rt_createArray(jl_Object, 0); + $ptr = 2; + continue main; + } + $gamesettings$options = var$2[$i]; + $j = (($this.$width7 / 2 | 0) - 155 | 0) + (($i % 2 | 0) * 160 | 0) | 0; + $k = (($this.$height7 / 6 | 0) + (21 * ($i / 2 | 0) | 0) | 0) - 12 | 0; + if ($gamesettings$options.$enumFloat) { + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionSliderOF; + var$6 = $gamesettings$options.$ordinal; + $ptr = 8; + continue main; + } + var$4 = $this.$buttonList; + var$7 = new nPs_GuiOptionButtonOF; + var$6 = $gamesettings$options.$ordinal; + var$9 = $this.$settings5; + $ptr = 10; + continue main; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $gamesettings$options, var$2, $i, var$4, $k, var$6, var$7, $j, var$9, $ptr); + } + function nPs_GuiOtherSettingsOF_actionPerformed($this, $button) { + var $guiyesno, var$3, var$4, var$5, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();$guiyesno = $thread.pop();$button = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + if ($button.$enabled) { + if ($button.$id12 < 200 && $button instanceof nmcg_GuiOptionButton) { + $guiyesno = $this.$settings5; + var$3 = $button.$enumOptions; + var$4 = 1; + $ptr = 3; + continue main; + } + if ($button.$id12 == 200) { + $guiyesno = $this.$mc15.$gameSettings; + $ptr = 1; + continue main; + } + if ($button.$id12 == 210) { + $button = $this.$mc15.$gameSettings; + $ptr = 5; + continue main; + } + } + return; + case 1: + nmcs_GameSettings_saveOptions($guiyesno); + if ($rt_suspending()) { + break main; + } + $guiyesno = $this.$mc15; + var$3 = $this.$prevScreen3; + $ptr = 2; + case 2: + nmc_Minecraft_displayGuiScreen($guiyesno, var$3); + if ($rt_suspending()) { + break main; + } + if ($button.$id12 != 210) + return; + $button = $this.$mc15.$gameSettings; + $ptr = 5; + continue main; + case 3: + nmcs_GameSettings_setOptionValue($guiyesno, var$3, var$4); + if ($rt_suspending()) { + break main; + } + $guiyesno = $this.$settings5; + var$3 = nmcs_GameSettings$Options_getEnumOptions($button.$id12); + $ptr = 4; + case 4: + $tmp = nmcs_GameSettings_getKeyBinding($guiyesno, var$3); + if ($rt_suspending()) { + break main; + } + $guiyesno = $tmp; + $button.$displayString = $guiyesno; + if ($button.$id12 == 200) { + $guiyesno = $this.$mc15.$gameSettings; + $ptr = 1; + continue main; + } + if ($button.$id12 != 210) + return; + $button = $this.$mc15.$gameSettings; + $ptr = 5; + case 5: + nmcs_GameSettings_saveOptions($button); + if ($rt_suspending()) { + break main; + } + $guiyesno = new nmcg_GuiYesNo; + $button = $rt_s(9189); + var$5 = $rt_createArray(jl_Object, 0); + $ptr = 6; + case 6: + $tmp = nmcr_I18n_format($button, var$5); + if ($rt_suspending()) { + break main; + } + $button = $tmp; + var$3 = $rt_s(14); + var$4 = 9999; + $ptr = 7; + case 7: + nmcg_GuiYesNo__init_($guiyesno, $this, $button, var$3, var$4); + if ($rt_suspending()) { + break main; + } + $button = $this.$mc15; + $ptr = 8; + case 8: + nmc_Minecraft_displayGuiScreen($button, $guiyesno); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $button, $guiyesno, var$3, var$4, var$5, $ptr); + } + function nPs_GuiOtherSettingsOF_confirmClicked($this, $result, $id) { + var var$3, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$3 = $thread.pop();$id = $thread.pop();$result = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + var$3 = $this.$mc15; + $ptr = 1; + case 1: + nmc_Minecraft_displayGuiScreen(var$3, $this); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $result, $id, var$3, $ptr); + } + function nPs_GuiOtherSettingsOF_drawScreen($this, $mouseX, $mouseY, $partialTicks) { + var var$4, var$5, var$6, var$7, var$8, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$partialTicks = $thread.pop();$mouseY = $thread.pop();$mouseX = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + nmcg_GuiScreen_drawDefaultBackground($this); + if ($rt_suspending()) { + break main; + } + var$4 = $this.$fontRendererObj0; + var$5 = $this.$title13; + var$6 = $this.$width7 / 2 | 0; + var$7 = 15; + var$8 = 16777215; + $ptr = 2; + case 2: + nmcg_Gui_drawCenteredString($this, var$4, var$5, var$6, var$7, var$8); + if ($rt_suspending()) { + break main; + } + $ptr = 3; + case 3: + nmcg_GuiScreen_drawScreen($this, $mouseX, $mouseY, $partialTicks); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $mouseX, $mouseY, $partialTicks, var$4, var$5, var$6, var$7, var$8, $ptr); + } + function nPs_GuiOtherSettingsOF__clinit_() { + var var$1, var$2; + var$1 = $rt_createArray(nmcs_GameSettings$Options, 14); + var$2 = var$1.data; + nmcs_GameSettings$Options_$callClinit(); + var$2[0] = nmcs_GameSettings$Options_LAGOMETER; + var$2[1] = nmcs_GameSettings$Options_PROFILER; + var$2[2] = nmcs_GameSettings$Options_WEATHER; + var$2[3] = nmcs_GameSettings$Options_TIME; + var$2[4] = nmcs_GameSettings$Options_FULLSCREEN; + var$2[5] = nmcs_GameSettings$Options_FNAW_SKINS; + var$2[6] = nmcs_GameSettings$Options_HUD_FPS; + var$2[7] = nmcs_GameSettings$Options_AUTOSAVE_TICKS; + var$2[8] = nmcs_GameSettings$Options_ANAGLYPH; + var$2[9] = nmcs_GameSettings$Options_HUD_COORDS; + var$2[10] = nmcs_GameSettings$Options_HUD_PLAYER; + var$2[11] = nmcs_GameSettings$Options_HUD_STATS; + var$2[12] = nmcs_GameSettings$Options_HUD_WORLD; + var$2[13] = nmcs_GameSettings$Options_HUD_24H; + nPs_GuiOtherSettingsOF_enumOptions = var$1; + } + function nPs_GuiShaders() { + var a = this; nmcg_GuiScreen.call(a); + a.$parentScreen15 = null; + a.$list3 = null; + a.$shaderOptions = null; + a.$screen2 = null; + } + function nPs_GuiShaders_initGui($this) { + var $i, $j, var$3, $k, $j1, $k1, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$14 = $thread.pop();var$13 = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();$k1 = $thread.pop();$j1 = $thread.pop();$k = $thread.pop();var$3 = $thread.pop();$j = $thread.pop();$i = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + ju_ArrayList_clear($this.$buttonList); + $i = 120; + $j = 20; + var$3 = $this.$width7 - $i | 0; + $k = var$3 - 10 | 0; + $j1 = var$3 - 20 | 0; + $k1 = jl_Math_min(150, ($j1 / 2 | 0) - 10 | 0); + var$7 = $this.$buttonList; + var$8 = new nmcg_GuiButton; + var$3 = 201; + $j1 = $j1 / 4 | 0; + var$9 = $k1 / 2 | 0; + var$10 = $j1 - var$9 | 0; + var$11 = $this.$height7 - 25 | 0; + var$12 = $rt_s(9190); + $ptr = 1; + case 1: + nmcg_GuiButton__init_0(var$8, var$3, var$10, var$11, $k1, $j, var$12); + if ($rt_suspending()) { + break main; + } + $ptr = 2; + case 2: + ju_ArrayList_add(var$7, var$8); + if ($rt_suspending()) { + break main; + } + var$7 = $this.$buttonList; + var$13 = new nmcg_GuiButton; + var$10 = 202; + $j1 = ($j1 * 3 | 0) - var$9 | 0; + var$9 = $this.$height7 - 25 | 0; + var$12 = $rt_s(5191); + var$14 = $rt_createArray(jl_Object, 0); + $ptr = 3; + case 3: + $tmp = nmcr_I18n_format(var$12, var$14); + if ($rt_suspending()) { + break main; + } + var$12 = $tmp; + $ptr = 4; + case 4: + nmcg_GuiButton__init_0(var$13, var$10, $j1, var$9, $k1, $j, var$12); + if ($rt_suspending()) { + break main; + } + $ptr = 5; + case 5: + ju_ArrayList_add(var$7, var$13); + if ($rt_suspending()) { + break main; + } + var$8.$enabled = 0; + var$12 = $this.$buttonList; + var$8 = new nmcg_GuiButton; + var$3 = 1; + var$9 = 30; + var$7 = $rt_s(9191); + $ptr = 6; + case 6: + nmcg_GuiButton__init_0(var$8, var$3, $k, var$9, $i, $j, var$7); + if ($rt_suspending()) { + break main; + } + $this.$shaderOptions = var$8; + $ptr = 7; + case 7: + ju_ArrayList_add(var$12, var$8); + if ($rt_suspending()) { + break main; + } + var$12 = $this.$shaderOptions; + $ptr = 8; + case 8: + $tmp = nmc_Minecraft_getMinecraft(); + if ($rt_suspending()) { + break main; + } + var$8 = $tmp; + var$12.$enabled = var$8.$gameSettings.$shaders; + var$12 = new nPs_GuiShaders$List; + var$8 = $this.$mc15; + var$12.$this$0174 = $this; + $i = ($this.$width7 - 120 | 0) - 20 | 0; + $j = $this.$height7; + var$3 = 30; + var$9 = $j - 50 | 0; + $k = 16; + $ptr = 9; + case 9: + nmcg_GuiSlot__init_(var$12, var$8, $i, $j, var$3, var$9, $k); + if ($rt_suspending()) { + break main; + } + var$8 = ju_HashMap__init_0(); + var$12.$languageMap1 = var$8; + var$7 = jl_Integer_valueOf0(1); + var$13 = $rt_s(632); + $ptr = 10; + case 10: + ju_HashMap_putImpl(var$8, var$7, var$13); + if ($rt_suspending()) { + break main; + } + var$8 = var$12.$languageMap1; + var$7 = jl_Integer_valueOf0(2); + var$13 = $rt_s(9192); + $ptr = 11; + case 11: + ju_HashMap_putImpl(var$8, var$7, var$13); + if ($rt_suspending()) { + break main; + } + $this.$list3 = var$12; + var$3 = 7; + var$9 = 8; + $ptr = 12; + case 12: + nmcg_GuiSlot_registerScrollButtons(var$12, var$3, var$9); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $i, $j, var$3, $k, $j1, $k1, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, $ptr); + } + function nPs_GuiShaders_handleMouseInput($this) { + var var$1, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + nmcg_GuiScreen_handleMouseInput($this); + if ($rt_suspending()) { + break main; + } + var$1 = $this.$list3; + $ptr = 2; + case 2: + nmcg_GuiSlot_handleMouseInput(var$1); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, var$1, $ptr); + } + function nPs_GuiShaders_actionPerformed($this, $parGuiButton) { + var var$2, var$3, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();$parGuiButton = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + if ($parGuiButton.$enabled) { + if ($parGuiButton.$id12 == 202) { + $ptr = 1; + continue main; + } + if ($parGuiButton.$id12 == 1) { + $parGuiButton = $this.$mc15; + var$2 = new nlevoedg_GuiShaderConfig; + $ptr = 3; + continue main; + } + } + return; + case 1: + $tmp = nmc_Minecraft_getMinecraft(); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; + var$3 = $this.$parentScreen15; + $ptr = 2; + case 2: + nmc_Minecraft_displayGuiScreen(var$2, var$3); + if ($rt_suspending()) { + break main; + } + if ($parGuiButton.$id12 != 1) + return; + $parGuiButton = $this.$mc15; + var$2 = new nlevoedg_GuiShaderConfig; + $ptr = 3; + case 3: + nlevoedg_GuiShaderConfig_$callClinit(); + if ($rt_suspending()) { + break main; + } + $ptr = 4; + case 4: + nmcg_GuiScreen__init_(var$2); + if ($rt_suspending()) { + break main; + } + var$2.$shaderStartState = 0; + var$2.$parent1 = $this; + $ptr = 5; + case 5: + $tmp = nmc_Minecraft_getMinecraft(); + if ($rt_suspending()) { + break main; + } + var$3 = $tmp; + var$2.$shaderStartState = var$3.$gameSettings.$shaders; + $ptr = 6; + case 6: + nmc_Minecraft_displayGuiScreen($parGuiButton, var$2); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $parGuiButton, var$2, var$3, $ptr); + } + function nPs_GuiShaders_drawScreen($this, $i, $j, $f) { + var var$4, var$5, var$6, var$7, var$8, var$9, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$f = $thread.pop();$j = $thread.pop();$i = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + nmcg_GuiScreen_drawDefaultBackground($this); + if ($rt_suspending()) { + break main; + } + var$4 = $this.$list3; + $ptr = 2; + case 2: + nmcg_GuiSlot_drawScreen(var$4, $i, $j, $f); + if ($rt_suspending()) { + break main; + } + var$5 = $this.$fontRendererObj0; + var$4 = $rt_s(9193); + var$6 = $this.$width7 / 2 | 0; + var$7 = 15; + var$8 = 16777215; + $ptr = 3; + case 3: + nmcg_Gui_drawCenteredString($this, var$5, var$4, var$6, var$7, var$8); + if ($rt_suspending()) { + break main; + } + var$4 = $this.$shaderOptions; + if (var$4 === null) { + $ptr = 4; + continue main; + } + var$5 = $this.$fontRendererObj0; + var$9 = $rt_s(9194); + var$8 = var$4.$xPosition0 + 42 | 0; + var$6 = var$4.$yPosition - 10 | 0; + var$7 = 8421504; + $ptr = 5; + continue main; + case 4: + nmcg_GuiScreen_drawScreen($this, $i, $j, $f); + if ($rt_suspending()) { + break main; + } + return; + case 5: + nmcg_Gui_drawCenteredString($this, var$5, var$9, var$8, var$6, var$7); + if ($rt_suspending()) { + break main; + } + $ptr = 4; + continue main; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $i, $j, $f, var$4, var$5, var$6, var$7, var$8, var$9, $ptr); + } function nlevi_PlatformWebRTC$LANPeer$_init_$lambda$_0_0() { var a = this; jl_Object.call(a); a.$_0207 = null; @@ -1274964,9 +1277430,8 @@ $rt_nativeThread().push(var$1, var$2, $ptr); } function nmb_BlockRedstoneComparator$1() { - var a = this; jl_Object.call(a); - a.$val$facing = null; - a.$this$035 = null; + jl_Object.call(this); + this.$val$facing = null; } function nmb_BlockRedstoneComparator$1_apply($this, var$1) { var $ptr, $tmp; @@ -1275179,7 +1277644,7 @@ var a = this; jl_Object.call(a); a.$labelText = null; a.$labelWidth = 0; - a.$this$0206 = null; + a.$this$0133 = null; } function nmcg_GuiKeyBindingList$CategoryEntry_drawEntry($this, $var1, $var2, $i, $var4, $j, $var6, $var7, $var8) { var var$9, var$10, var$11, $ptr, $tmp; @@ -1275190,7 +1277655,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$9 = $this.$this$0206.$mc23; + var$9 = $this.$this$0133.$mc23; var$10 = var$9.$fontRendererObj; var$11 = $this.$labelText; $var4 = (var$9.$currentScreen.$width7 / 2 | 0) - ($this.$labelWidth / 2 | 0) | 0; @@ -1275218,45 +1277683,45 @@ a.$keyDesc = null; a.$btnChangeKeyBinding = null; a.$btnReset = null; - a.$this$0207 = null; + a.$this$0134 = null; } function nmcg_GuiKeyBindingList$KeyEntry_drawEntry($this, $var1, $i, $j, $var4, $k, $l, $i1, $var8) { - var var$9, $flag, $keybindingx, var$12, $flag1, $kb, $m, var$16, var$17, var$18, var$19, $ptr, $tmp; + var var$9, $flag, var$11, $keybindingx, $flag1, $kb, $m, var$16, var$17, var$18, var$19, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$19 = $thread.pop();var$18 = $thread.pop();var$17 = $thread.pop();var$16 = $thread.pop();$m = $thread.pop();$kb = $thread.pop();$flag1 = $thread.pop();var$12 = $thread.pop();$keybindingx = $thread.pop();$flag = $thread.pop();var$9 = $thread.pop();$var8 = $thread.pop();$i1 = $thread.pop();$l = $thread.pop();$k = $thread.pop();$var4 = $thread.pop();$j = $thread.pop();$i = $thread.pop();$var1 = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$19 = $thread.pop();var$18 = $thread.pop();var$17 = $thread.pop();var$16 = $thread.pop();$m = $thread.pop();$kb = $thread.pop();$flag1 = $thread.pop();$keybindingx = $thread.pop();var$11 = $thread.pop();$flag = $thread.pop();var$9 = $thread.pop();$var8 = $thread.pop();$i1 = $thread.pop();$l = $thread.pop();$k = $thread.pop();$var4 = $thread.pop();$j = $thread.pop();$i = $thread.pop();$var1 = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: - var$9 = $this.$this$0207; + var$9 = $this.$this$0134; $flag = var$9.$field_148191_k.$buttonId !== $this.$keybinding ? 0 : 1; - $keybindingx = var$9.$mc23.$fontRendererObj; - var$12 = $this.$keyDesc; - $var4 = ($i + 90 | 0) - var$9.$maxListLabelWidth | 0; - $var1 = ($j + ($k / 2 | 0) | 0) - ($keybindingx.$FONT_HEIGHT / 2 | 0) | 0; + var$11 = var$9.$mc23.$fontRendererObj; + $keybindingx = $this.$keyDesc; + $var1 = ($i + 90 | 0) - var$9.$maxListLabelWidth | 0; + $var4 = ($j + ($k / 2 | 0) | 0) - (var$11.$FONT_HEIGHT / 2 | 0) | 0; $k = 16777215; $ptr = 1; case 1: - nmcg_FontRenderer_drawString($keybindingx, var$12, $var4, $var1, $k); + nmcg_FontRenderer_drawString(var$11, $keybindingx, $var1, $var4, $k); if ($rt_suspending()) { break main; } - var$9 = $this.$btnReset; - var$9.$xPosition0 = $i + 190 | 0; - var$9.$yPosition = $j; + var$11 = $this.$btnReset; + var$11.$xPosition0 = $i + 190 | 0; + var$11.$yPosition = $j; $keybindingx = $this.$keybinding; - var$9.$enabled = $keybindingx.$keyCode == $keybindingx.$keyCodeDefault ? 0 : 1; - $keybindingx = $this.$this$0207.$mc23; + var$11.$enabled = $keybindingx.$keyCode == $keybindingx.$keyCodeDefault ? 0 : 1; + $keybindingx = $this.$this$0134.$mc23; $ptr = 2; case 2: - nmcg_GuiButton_drawButton(var$9, $keybindingx, $l, $i1); + nmcg_GuiButton_drawButton(var$11, $keybindingx, $l, $i1); if ($rt_suspending()) { break main; } - var$9 = $this.$btnChangeKeyBinding; - var$9.$xPosition0 = $i + 105 | 0; - var$9.$yPosition = $j; + var$11 = $this.$btnChangeKeyBinding; + var$11.$xPosition0 = $i + 105 | 0; + var$11.$yPosition = $j; $var1 = $this.$keybinding.$keyCode; $ptr = 3; case 3: @@ -1275266,19 +1277731,19 @@ break main; } $keybindingx = $tmp; - var$9.$displayString = $keybindingx; + var$11.$displayString = $keybindingx; $flag1 = 0; - var$9 = $this.$keybinding; - $var1 = var$9.$keyCode; - if ($var1) { - $kb = $this.$this$0207.$mc23.$gameSettings.$keyBindings; + var$11 = $this.$keybinding; + $i = var$11.$keyCode; + if ($i) { + $kb = $this.$this$0134.$mc23.$gameSettings.$keyBindings; $m = 0; while (true) { var$16 = $kb.data; if ($m >= var$16.length) break; $keybindingx = var$16[$m]; - if ($keybindingx !== var$9 && $keybindingx.$keyCode == $var1) { + if ($keybindingx !== var$11 && $keybindingx.$keyCode == $i) { $flag1 = 1; break a; } @@ -1275287,120 +1277752,149 @@ } } if ($flag) { - var$9 = $this.$btnChangeKeyBinding; + $keybindingx = $this.$btnChangeKeyBinding; $ptr = 4; continue main; } if ($flag1) { - var$9 = $this.$btnChangeKeyBinding; - $ptr = 13; + var$11 = $this.$btnChangeKeyBinding; + $ptr = 16; continue main; } - var$9 = $this.$btnChangeKeyBinding; - $keybindingx = $this.$this$0207.$mc23; - $ptr = 12; + var$11 = $this.$btnChangeKeyBinding; + $keybindingx = $this.$this$0134.$mc23; + $ptr = 15; continue main; case 4: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } - $keybindingx = nmu_EnumChatFormatting_WHITE; - var$12 = nmu_EnumChatFormatting_YELLOW; - var$17 = var$9.$displayString; - var$18 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$18); + var$11 = nmu_EnumChatFormatting_WHITE; $ptr = 5; case 5: - jl_AbstractStringBuilder_append(var$18, $keybindingx); + $tmp = jl_String_valueOf(var$11); if ($rt_suspending()) { break main; } - var$19 = $rt_s(7827); + var$11 = $tmp; + var$9 = nmu_EnumChatFormatting_YELLOW; $ptr = 6; case 6: - jl_AbstractStringBuilder_append(var$18, var$19); + $tmp = jl_String_valueOf(var$9); if ($rt_suspending()) { break main; } + var$9 = $tmp; + var$17 = $this.$btnChangeKeyBinding.$displayString; + var$18 = nmu_EnumChatFormatting_WHITE; $ptr = 7; case 7: - jl_AbstractStringBuilder_append(var$18, var$12); + $tmp = jl_String_valueOf(var$18); if ($rt_suspending()) { break main; } + var$18 = $tmp; + var$19 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$19); $ptr = 8; case 8: - jl_AbstractStringBuilder_append(var$18, var$17); + jl_AbstractStringBuilder_append(var$19, var$11); if ($rt_suspending()) { break main; } + var$11 = $rt_s(7827); $ptr = 9; case 9: - jl_AbstractStringBuilder_append(var$18, $keybindingx); + jl_AbstractStringBuilder_append(var$19, var$11); if ($rt_suspending()) { break main; } - $keybindingx = $rt_s(7828); $ptr = 10; case 10: - jl_AbstractStringBuilder_append(var$18, $keybindingx); + jl_AbstractStringBuilder_append(var$19, var$9); if ($rt_suspending()) { break main; } $ptr = 11; case 11: - $tmp = jl_AbstractStringBuilder_toString(var$18); + jl_AbstractStringBuilder_append(var$19, var$17); if ($rt_suspending()) { break main; } - $keybindingx = $tmp; - var$9.$displayString = $keybindingx; - var$9 = $this.$btnChangeKeyBinding; - $keybindingx = $this.$this$0207.$mc23; $ptr = 12; case 12: - nmcg_GuiButton_drawButton(var$9, $keybindingx, $l, $i1); + jl_AbstractStringBuilder_append(var$19, var$18); + if ($rt_suspending()) { + break main; + } + var$11 = $rt_s(7828); + $ptr = 13; + case 13: + jl_AbstractStringBuilder_append(var$19, var$11); + if ($rt_suspending()) { + break main; + } + $ptr = 14; + case 14: + $tmp = jl_AbstractStringBuilder_toString(var$19); + if ($rt_suspending()) { + break main; + } + var$11 = $tmp; + $keybindingx.$displayString = var$11; + var$11 = $this.$btnChangeKeyBinding; + $keybindingx = $this.$this$0134.$mc23; + $ptr = 15; + case 15: + nmcg_GuiButton_drawButton(var$11, $keybindingx, $l, $i1); if ($rt_suspending()) { break main; } return; - case 13: + case 16: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } $keybindingx = nmu_EnumChatFormatting_RED; - var$12 = var$9.$displayString; + $ptr = 17; + case 17: + $tmp = jl_String_valueOf($keybindingx); + if ($rt_suspending()) { + break main; + } + $keybindingx = $tmp; + var$9 = $this.$btnChangeKeyBinding.$displayString; var$17 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$17); - $ptr = 14; - case 14: + $ptr = 18; + case 18: jl_AbstractStringBuilder_append(var$17, $keybindingx); if ($rt_suspending()) { break main; } - $ptr = 15; - case 15: - jl_AbstractStringBuilder_append(var$17, var$12); + $ptr = 19; + case 19: + jl_AbstractStringBuilder_append(var$17, var$9); if ($rt_suspending()) { break main; } - $ptr = 16; - case 16: + $ptr = 20; + case 20: $tmp = jl_AbstractStringBuilder_toString(var$17); if ($rt_suspending()) { break main; } $keybindingx = $tmp; - var$9.$displayString = $keybindingx; - var$9 = $this.$btnChangeKeyBinding; - $keybindingx = $this.$this$0207.$mc23; - $ptr = 12; + var$11.$displayString = $keybindingx; + var$11 = $this.$btnChangeKeyBinding; + $keybindingx = $this.$this$0134.$mc23; + $ptr = 15; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $var1, $i, $j, $var4, $k, $l, $i1, $var8, var$9, $flag, $keybindingx, var$12, $flag1, $kb, $m, var$16, var$17, var$18, var$19, $ptr); + $rt_nativeThread().push($this, $var1, $i, $j, $var4, $k, $l, $i1, $var8, var$9, $flag, var$11, $keybindingx, $flag1, $kb, $m, var$16, var$17, var$18, var$19, $ptr); } function nmcg_GuiKeyBindingList$KeyEntry_mousePressed($this, $var1, $i, $j, $var4, $var5, $var6) { var var$7, var$8, $ptr, $tmp; @@ -1275412,7 +1277906,7 @@ main: while (true) { switch ($ptr) { case 0: var$7 = $this.$btnChangeKeyBinding; - var$8 = $this.$this$0207.$mc23; + var$8 = $this.$this$0134.$mc23; $ptr = 1; case 1: $tmp = nmcg_GuiButton_mousePressed(var$7, var$8, $i, $j); @@ -1275421,11 +1277915,11 @@ } $var1 = $tmp; if ($var1) { - $this.$this$0207.$field_148191_k.$buttonId = $this.$keybinding; + $this.$this$0134.$field_148191_k.$buttonId = $this.$keybinding; return 1; } var$7 = $this.$btnReset; - var$8 = $this.$this$0207.$mc23; + var$8 = $this.$this$0134.$mc23; $ptr = 2; case 2: $tmp = nmcg_GuiButton_mousePressed(var$7, var$8, $i, $j); @@ -1275435,7 +1277929,7 @@ $var1 = $tmp; if (!$var1) return 0; - var$7 = $this.$this$0207.$mc23.$gameSettings; + var$7 = $this.$this$0134.$mc23.$gameSettings; var$8 = $this.$keybinding; $var1 = var$8.$keyCodeDefault; $ptr = 3; @@ -1275636,7 +1278130,7 @@ $totalHeight = ($this.$width7 / 2 | 0) + 3 | 0; $i = 100; $wasNull = 20; - var$3 = $rt_s(5637); + var$3 = $rt_s(5636); var$4 = $rt_createArray(jl_Object, 0); $ptr = 17; continue main; @@ -1275711,7 +1278205,7 @@ $i = ($this.$width7 / 2 | 0) - 103 | 0; $wasNull = 100; var$9 = 20; - var$3 = $rt_s(5636); + var$3 = $rt_s(5635); var$4 = $rt_createArray(jl_Object, 0); $ptr = 20; case 20: @@ -1276635,19 +1279129,19 @@ $uri.binaryType = $accept; $accept = $this.$sock; $uri = new nlevit_TeaVMServerQuery$1; - $uri.$this$0268 = $this; + $uri.$this$0175 = $this; $accept.addEventListener("open", $uri); $uri = $this.$sock; var$3 = new nlevit_TeaVMServerQuery$2; - var$3.$this$0269 = $this; + var$3.$this$0176 = $this; $uri.addEventListener("close", var$3); $uri = $this.$sock; var$3 = new nlevit_TeaVMServerQuery$3; - var$3.$this$0270 = $this; + var$3.$this$0177 = $this; $uri.addEventListener("message", var$3); $uri = $this.$sock; var$3 = new nlevit_TeaVMServerQuery$4; - var$3.$this$0271 = $this; + var$3.$this$0178 = $this; $uri.addEventListener("error", var$3); return; default: $rt_invalidPointer(); @@ -1279962,7 +1282456,7 @@ if ($rt_suspending()) { break main; } - var$2 = $rt_s(8571); + var$2 = $rt_s(8568); var$3 = nmwgs_StructureBoundingBox_toNBTTagIntArray($this.$boundingBox2); $ptr = 4; case 4: @@ -1280007,7 +1282501,7 @@ } main: while (true) { switch ($ptr) { case 0: - $worldIn = $rt_s(8571); + $worldIn = $rt_s(8568); $ptr = 1; case 1: $tmp = nmn_NBTTagCompound_hasKey($tagCompound, $worldIn); @@ -1280021,7 +1282515,7 @@ continue main; } var$4 = new nmwgs_StructureBoundingBox; - $worldIn = $rt_s(8571); + $worldIn = $rt_s(8568); $ptr = 3; continue main; case 2: @@ -1307636,199 +1310130,201 @@ $rt_nativeThread().push($this, $nbttagcompound, var$2, $ptr); } function nmwgs_StructureStrongholdPieces$Stronghold_placeDoor($this, $worldIn, $parRandom, $parStructureBoundingBox, $parDoor, $parInt1, $parInt2, $parInt3) { - var var$8, var$9, var$10, $ptr, $tmp; + var var$8, var$9, var$10, var$11, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();$parInt3 = $thread.pop();$parInt2 = $thread.pop();$parInt1 = $thread.pop();$parDoor = $thread.pop();$parStructureBoundingBox = $thread.pop();$parRandom = $thread.pop();$worldIn = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();$parInt3 = $thread.pop();$parInt2 = $thread.pop();$parInt1 = $thread.pop();$parDoor = $thread.pop();$parStructureBoundingBox = $thread.pop();$parRandom = $thread.pop();$worldIn = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: - $ptr = 1; - case 1: a: { - nmwgs_StructureStrongholdPieces$3_$callClinit(); - if ($rt_suspending()) { - break main; - } - switch (nmwgs_StructureStrongholdPieces$3_$SwitchMap$net$minecraft$world$gen$structure$StructureStrongholdPieces$Stronghold$Door.data[$parDoor.$ordinal]) { - case 1: + switch ($parDoor.$ordinal) { + case 0: break a; - case 2: + case 1: break; - case 3: + case 2: $parRandom = nmi_Blocks_air.$defaultBlockState; var$8 = $parInt1 + 1 | 0; - $ptr = 13; + $ptr = 12; continue main; - case 4: + case 3: $parRandom = nmi_Blocks_stonebrick.$defaultBlockState; - $ptr = 22; + $ptr = 21; continue main; default: break a; } $parRandom = nmi_Blocks_stonebrick.$defaultBlockState; - $ptr = 3; + $ptr = 2; continue main; } var$9 = ($parInt1 + 3 | 0) - 1 | 0; - var$8 = ($parInt2 + 3 | 0) - 1 | 0; + var$10 = ($parInt2 + 3 | 0) - 1 | 0; $parRandom = nmi_Blocks_air.$defaultBlockState; - var$10 = 0; - $ptr = 2; - case 2: - nmwgs_StructureComponent_fillWithBlocks($this, $worldIn, $parStructureBoundingBox, $parInt1, $parInt2, $parInt3, var$9, var$8, $parInt3, $parRandom, $parRandom, var$10); + var$8 = 0; + $ptr = 1; + case 1: + nmwgs_StructureComponent_fillWithBlocks($this, $worldIn, $parStructureBoundingBox, $parInt1, $parInt2, $parInt3, var$9, var$10, $parInt3, $parRandom, $parRandom, var$8); if ($rt_suspending()) { break main; } return; - case 3: + case 2: nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, $parInt2, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } $parRandom = nmi_Blocks_stonebrick.$defaultBlockState; var$8 = $parInt2 + 1 | 0; - $ptr = 4; - case 4: + $ptr = 3; + case 3: nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$8, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } $parRandom = nmi_Blocks_stonebrick.$defaultBlockState; - var$9 = $parInt2 + 2 | 0; - $ptr = 5; - case 5: - nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$9, $parInt3, $parStructureBoundingBox); + var$10 = $parInt2 + 2 | 0; + $ptr = 4; + case 4: + nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$10, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } $parRandom = nmi_Blocks_stonebrick.$defaultBlockState; - var$10 = $parInt1 + 1 | 0; - $ptr = 6; - case 6: - nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, var$10, var$9, $parInt3, $parStructureBoundingBox); + var$9 = $parInt1 + 1 | 0; + $ptr = 5; + case 5: + nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, var$9, var$10, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } $parRandom = nmi_Blocks_stonebrick.$defaultBlockState; $parInt1 = $parInt1 + 2 | 0; + $ptr = 6; + case 6: + nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$10, $parInt3, $parStructureBoundingBox); + if ($rt_suspending()) { + break main; + } + $parRandom = nmi_Blocks_stonebrick.$defaultBlockState; $ptr = 7; case 7: - nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$9, $parInt3, $parStructureBoundingBox); + nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$8, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } $parRandom = nmi_Blocks_stonebrick.$defaultBlockState; $ptr = 8; case 8: - nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$8, $parInt3, $parStructureBoundingBox); - if ($rt_suspending()) { - break main; - } - $parRandom = nmi_Blocks_stonebrick.$defaultBlockState; - $ptr = 9; - case 9: nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, $parInt2, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } $parRandom = nmi_Blocks_oak_door.$defaultBlockState; - $ptr = 10; - case 10: - nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, var$10, $parInt2, $parInt3, $parStructureBoundingBox); + $ptr = 9; + case 9: + nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, var$9, $parInt2, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } $parRandom = nmi_Blocks_oak_door; $parInt1 = 8; - $ptr = 11; - case 11: + $ptr = 10; + case 10: $tmp = $parRandom.$getStateFromMeta($parInt1); if ($rt_suspending()) { break main; } $parRandom = $tmp; - $ptr = 12; - case 12: - nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, var$10, var$8, $parInt3, $parStructureBoundingBox); + $ptr = 11; + case 11: + nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, var$9, var$8, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } return; - case 13: + case 12: nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, var$8, $parInt2, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } $parRandom = nmi_Blocks_air.$defaultBlockState; var$9 = $parInt2 + 1 | 0; + $ptr = 13; + case 13: + nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, var$8, var$9, $parInt3, $parStructureBoundingBox); + if ($rt_suspending()) { + break main; + } + $parRandom = nmi_Blocks_iron_bars.$defaultBlockState; $ptr = 14; case 14: - nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, var$8, var$9, $parInt3, $parStructureBoundingBox); + nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, $parInt2, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } $parRandom = nmi_Blocks_iron_bars.$defaultBlockState; $ptr = 15; case 15: - nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, $parInt2, $parInt3, $parStructureBoundingBox); - if ($rt_suspending()) { - break main; - } - $parRandom = nmi_Blocks_iron_bars.$defaultBlockState; - $ptr = 16; - case 16: nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$9, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } $parRandom = nmi_Blocks_iron_bars.$defaultBlockState; var$10 = $parInt2 + 2 | 0; - $ptr = 17; - case 17: + $ptr = 16; + case 16: nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$10, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } $parRandom = nmi_Blocks_iron_bars.$defaultBlockState; - $ptr = 18; - case 18: + $ptr = 17; + case 17: nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, var$8, var$10, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } $parRandom = nmi_Blocks_iron_bars.$defaultBlockState; $parInt1 = $parInt1 + 2 | 0; + $ptr = 18; + case 18: + nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$10, $parInt3, $parStructureBoundingBox); + if ($rt_suspending()) { + break main; + } + $parRandom = nmi_Blocks_iron_bars.$defaultBlockState; $ptr = 19; case 19: - nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$10, $parInt3, $parStructureBoundingBox); + nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$9, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } $parRandom = nmi_Blocks_iron_bars.$defaultBlockState; $ptr = 20; case 20: - nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$9, $parInt3, $parStructureBoundingBox); - if ($rt_suspending()) { - break main; - } - $parRandom = nmi_Blocks_iron_bars.$defaultBlockState; - $ptr = 21; - case 21: nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, $parInt2, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } return; - case 22: + case 21: nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, $parInt2, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } $parRandom = nmi_Blocks_stonebrick.$defaultBlockState; - var$8 = $parInt2 + 1 | 0; + var$11 = $parInt2 + 1 | 0; + $ptr = 22; + case 22: + nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$11, $parInt3, $parStructureBoundingBox); + if ($rt_suspending()) { + break main; + } + $parRandom = nmi_Blocks_stonebrick.$defaultBlockState; + var$8 = $parInt2 + 2 | 0; $ptr = 23; case 23: nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$8, $parInt3, $parStructureBoundingBox); @@ -1307836,115 +1310332,107 @@ break main; } $parRandom = nmi_Blocks_stonebrick.$defaultBlockState; - var$9 = $parInt2 + 2 | 0; + var$9 = $parInt1 + 1 | 0; $ptr = 24; case 24: - nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$9, $parInt3, $parStructureBoundingBox); - if ($rt_suspending()) { - break main; - } - $parRandom = nmi_Blocks_stonebrick.$defaultBlockState; - var$10 = $parInt1 + 1 | 0; - $ptr = 25; - case 25: - nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, var$10, var$9, $parInt3, $parStructureBoundingBox); + nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, var$9, var$8, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } $parRandom = nmi_Blocks_stonebrick.$defaultBlockState; $parInt1 = $parInt1 + 2 | 0; + $ptr = 25; + case 25: + nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$8, $parInt3, $parStructureBoundingBox); + if ($rt_suspending()) { + break main; + } + $parRandom = nmi_Blocks_stonebrick.$defaultBlockState; $ptr = 26; case 26: - nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$9, $parInt3, $parStructureBoundingBox); + nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$11, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } $parRandom = nmi_Blocks_stonebrick.$defaultBlockState; $ptr = 27; case 27: - nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$8, $parInt3, $parStructureBoundingBox); - if ($rt_suspending()) { - break main; - } - $parRandom = nmi_Blocks_stonebrick.$defaultBlockState; - $ptr = 28; - case 28: nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, $parInt2, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } $parRandom = nmi_Blocks_iron_door.$defaultBlockState; - $ptr = 29; - case 29: - nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, var$10, $parInt2, $parInt3, $parStructureBoundingBox); + $ptr = 28; + case 28: + nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, var$9, $parInt2, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } $parRandom = nmi_Blocks_iron_door; $parInt2 = 8; - $ptr = 30; - case 30: + $ptr = 29; + case 29: $tmp = $parRandom.$getStateFromMeta($parInt2); if ($rt_suspending()) { break main; } $parRandom = $tmp; - $ptr = 31; - case 31: - nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, var$10, var$8, $parInt3, $parStructureBoundingBox); + $ptr = 30; + case 30: + nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, var$9, var$11, $parInt3, $parStructureBoundingBox); if ($rt_suspending()) { break main; } $parRandom = nmi_Blocks_stone_button; $parInt2 = 4; - $ptr = 32; - case 32: + $ptr = 31; + case 31: $tmp = nmwgs_StructureComponent_getMetadataWithOffset($this, $parRandom, $parInt2); if ($rt_suspending()) { break main; } $parInt2 = $tmp; - $ptr = 33; - case 33: + $ptr = 32; + case 32: $tmp = $parRandom.$getStateFromMeta($parInt2); if ($rt_suspending()) { break main; } $parRandom = $tmp; $parInt2 = $parInt3 + 1 | 0; - $ptr = 34; - case 34: - nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$8, $parInt2, $parStructureBoundingBox); + $ptr = 33; + case 33: + nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$11, $parInt2, $parStructureBoundingBox); if ($rt_suspending()) { break main; } $parRandom = nmi_Blocks_stone_button; $parInt2 = 3; - $ptr = 35; - case 35: + $ptr = 34; + case 34: $tmp = nmwgs_StructureComponent_getMetadataWithOffset($this, $parRandom, $parInt2); if ($rt_suspending()) { break main; } $parInt2 = $tmp; - $ptr = 36; - case 36: + $ptr = 35; + case 35: $tmp = $parRandom.$getStateFromMeta($parInt2); if ($rt_suspending()) { break main; } $parRandom = $tmp; $parInt2 = $parInt3 - 1 | 0; - $ptr = 37; - case 37: - nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$8, $parInt2, $parStructureBoundingBox); + $ptr = 36; + case 36: + nmwgs_StructureComponent_setBlockState($this, $worldIn, $parRandom, $parInt1, var$11, $parInt2, $parStructureBoundingBox); if ($rt_suspending()) { break main; } return; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $worldIn, $parRandom, $parStructureBoundingBox, $parDoor, $parInt1, $parInt2, $parInt3, var$8, var$9, var$10, $ptr); + $rt_nativeThread().push($this, $worldIn, $parRandom, $parStructureBoundingBox, $parDoor, $parInt1, $parInt2, $parInt3, var$8, var$9, var$10, var$11, $ptr); } function nmwgs_StructureStrongholdPieces$Stronghold_getRandomDoor($this, $parRandom) { switch (nlev_EaglercraftRandom_nextInt($parRandom, 5)) { @@ -1336005,10 +1338493,8 @@ $rt_nativeThread().push($this, $random, $var2, $var3, $var4, $flag, $f, var$7, $ptr); } var otjde_Event = $rt_classWithoutFields(0); - var otjc_JSError = $rt_classWithoutFields(); - var otjw_CloseEvent = $rt_classWithoutFields(0); - var otjde_MessageEvent = $rt_classWithoutFields(0); var juc_Executor = $rt_classWithoutFields(0); + var otjc_JSError = $rt_classWithoutFields(); function juc_TimeUnit() { jl_Enum.call(this); this.$nanoseconds = Long_ZERO; @@ -1336051,6 +1338537,8 @@ juc_TimeUnit_DAYS = var$1; juc_TimeUnit_$VALUES = $rt_createArrayFromData(juc_TimeUnit, [juc_TimeUnit_NANOSECONDS, juc_TimeUnit_MICROSECONDS, juc_TimeUnit_MILLISECONDS, juc_TimeUnit_SECONDS, juc_TimeUnit_MINUTES, juc_TimeUnit_HOURS, var$1]); } + var otjw_CloseEvent = $rt_classWithoutFields(0); + var otjde_MessageEvent = $rt_classWithoutFields(0); function ju_AbstractMap$Values$1() { var a = this; jl_Object.call(a); a.$val$it0 = null; @@ -1336422,9 +1338910,9 @@ var$1 = $this.$index18; if (var$1 >= $this.$maxIndex) break; - var$2 = $this.$this$19.$this$0218.$getValue4(var$1); + var$2 = $this.$this$19.$this$0140.$getValue4(var$1); if (var$2 !== null) { - var$3 = $this.$this$19.$this$0218; + var$3 = $this.$this$19.$this$0140; var$1 = $this.$index18; $ptr = 1; continue main; @@ -1336473,13 +1338961,12 @@ } function cgcc_HashBiMap$KeySet() { cgcc_Maps$KeySet.call(this); - this.$this$0108 = null; + this.$this$078 = null; } function cgcc_HashBiMap$KeySet_iterator($this) { var var$1; var$1 = new cgcc_HashBiMap$KeySet$1; - var$1.$this$110 = $this; - cgcc_HashBiMap$Itr__init_(var$1, $this.$this$0108); + cgcc_HashBiMap$Itr__init_(var$1, $this.$this$078); return var$1; } var ju_IdentityHashMap$KeyIterator = $rt_classWithoutFields(ju_IdentityHashMap$AbstractMapIterator); @@ -1336691,9 +1339178,8 @@ $rt_nativeThread().push($this, $apathpoint, $entity, $pathpoint, $pathpoint1, $f, $i, $facings, $j, var$9, $enumfacing, var$11, var$12, var$13, var$14, $pathpoint2, var$16, var$17, $ptr); } function nmn_NetHandlerPlayServer$1() { - var a = this; jl_Object.call(a); - a.$val$packetIn = null; - a.$this$0186 = null; + jl_Object.call(this); + this.$val$packetIn = null; } function nmn_NetHandlerPlayServer$1_call($this) { var var$1, $ptr, $tmp; @@ -1337448,12 +1339934,12 @@ } var$4 = $tmp; if (!$this.$parentGui.$addNewPrimary) { - var$5 = $rt_s(5637); + var$5 = $rt_s(5636); var$11 = $rt_createArray(jl_Object, 0); $ptr = 20; continue main; } - var$5 = $rt_s(5636); + var$5 = $rt_s(5635); var$11 = $rt_createArray(jl_Object, 0); $ptr = 21; continue main; @@ -1337653,12 +1340139,12 @@ } var$4 = $tmp; if (!$this.$parentGui.$addNewPrimary) { - var$6 = $rt_s(5637); + var$6 = $rt_s(5636); var$5 = $rt_createArray(jl_Object, 0); $ptr = 5; continue main; } - var$6 = $rt_s(5636); + var$6 = $rt_s(5635); var$5 = $rt_createArray(jl_Object, 0); $ptr = 6; continue main; @@ -1338072,7 +1340558,6 @@ var$4 = 20; var$11 = ($this.$mc15.$gameSettings.$relayTimeout - 1 | 0) / 14.0; var$12 = 1.0; - var$1.$this$0272 = $this; $ptr = 8; case 8: nlevsg_GuiSlider2__init_(var$1, var$5, var$6, var$9, var$10, var$4, var$11, var$12); @@ -1338317,11 +1340802,11 @@ } function cgcb_Splitter$2$1() { cgcb_Splitter$SplittingIterator.call(this); - this.$this$0259 = null; + this.$this$0166 = null; } function cgcb_Splitter$2$1_separatorStart($this, $start) { var $separatorLength, $last, $i; - $separatorLength = jl_String_length($this.$this$0259.$val$separator); + $separatorLength = jl_String_length($this.$this$0166.$val$separator); $last = jl_String_length($this.$toSplit) - $separatorLength | 0; a: while (true) { if ($start > $last) @@ -1338330,7 +1340815,7 @@ while (true) { if ($i >= $separatorLength) break a; - if (jl_String_charAt($this.$toSplit, $i + $start | 0) != jl_String_charAt($this.$this$0259.$val$separator, $i)) + if (jl_String_charAt($this.$toSplit, $i + $start | 0) != jl_String_charAt($this.$this$0166.$val$separator, $i)) break; $i = $i + 1 | 0; } @@ -1338339,74 +1340824,27 @@ return $start; } function cgcb_Splitter$2$1_separatorEnd($this, $separatorPosition) { - return $separatorPosition + jl_String_length($this.$this$0259.$val$separator) | 0; + return $separatorPosition + jl_String_length($this.$this$0166.$val$separator) | 0; } var nmep_EntityRabbit$AIEvilAttack = $rt_classWithoutFields(nmea_EntityAIAttackOnCollide); function nmep_EntityRabbit$AIEvilAttack_func_179512_a($this, $entitylivingbase) { return 4.0 + $entitylivingbase.$width1; } var nmei_EntityMinecart$1 = $rt_classWithoutFields(); - var nmei_EntityMinecart$1_$SwitchMap$net$minecraft$entity$item$EntityMinecart$EnumMinecartType = null; var nmei_EntityMinecart$1_$SwitchMap$net$minecraft$block$BlockRailBase$EnumRailDirection = null; - var nmei_EntityMinecart$1_$clinitCalled = false; function nmei_EntityMinecart$1_$callClinit() { - var $ptr = 0; - if ($rt_resuming()) { - $ptr = $rt_nativeThread().pop(); - } else if (nmei_EntityMinecart$1_$clinitCalled) { - return; - } - main: while (true) { switch ($ptr) { - case 0: - nmei_EntityMinecart$1_$clinitCalled = true; - $ptr = 1; - case 1: - nmei_EntityMinecart$1__clinit_(); - if ($rt_suspending()) { - break main; - } - nmei_EntityMinecart$1_$callClinit = $rt_eraseClinit(nmei_EntityMinecart$1); - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($ptr); + nmei_EntityMinecart$1_$callClinit = $rt_eraseClinit(nmei_EntityMinecart$1); + nmei_EntityMinecart$1__clinit_(); } function nmei_EntityMinecart$1__clinit_() { - var var$1, var$2, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - var$1 = $rt_createIntArray((nmb_BlockRailBase$EnumRailDirection_values()).data.length); - var$2 = var$1.data; - nmei_EntityMinecart$1_$SwitchMap$net$minecraft$block$BlockRailBase$EnumRailDirection = var$1; - var$2[nmb_BlockRailBase$EnumRailDirection_ASCENDING_EAST.$ordinal] = 1; - var$2[nmb_BlockRailBase$EnumRailDirection_ASCENDING_WEST.$ordinal] = 2; - var$2[nmb_BlockRailBase$EnumRailDirection_ASCENDING_NORTH.$ordinal] = 3; - var$2[nmb_BlockRailBase$EnumRailDirection_ASCENDING_SOUTH.$ordinal] = 4; - $ptr = 1; - case 1: - $tmp = nmei_EntityMinecart$EnumMinecartType_values(); - if ($rt_suspending()) { - break main; - } - var$2 = $tmp; - var$2 = $rt_createIntArray(var$2.data.length); - var$1 = var$2.data; - nmei_EntityMinecart$1_$SwitchMap$net$minecraft$entity$item$EntityMinecart$EnumMinecartType = var$2; - var$1[nmei_EntityMinecart$EnumMinecartType_CHEST.$ordinal] = 1; - var$1[nmei_EntityMinecart$EnumMinecartType_FURNACE.$ordinal] = 2; - var$1[nmei_EntityMinecart$EnumMinecartType_TNT.$ordinal] = 3; - var$1[nmei_EntityMinecart$EnumMinecartType_SPAWNER.$ordinal] = 4; - var$1[nmei_EntityMinecart$EnumMinecartType_HOPPER.$ordinal] = 5; - var$1[nmei_EntityMinecart$EnumMinecartType_COMMAND_BLOCK.$ordinal] = 6; - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push(var$1, var$2, $ptr); + var var$1, var$2; + var$1 = $rt_createIntArray((nmb_BlockRailBase$EnumRailDirection_values()).data.length); + var$2 = var$1.data; + nmei_EntityMinecart$1_$SwitchMap$net$minecraft$block$BlockRailBase$EnumRailDirection = var$1; + var$2[nmb_BlockRailBase$EnumRailDirection_ASCENDING_EAST.$ordinal] = 1; + var$2[nmb_BlockRailBase$EnumRailDirection_ASCENDING_WEST.$ordinal] = 2; + var$2[nmb_BlockRailBase$EnumRailDirection_ASCENDING_NORTH.$ordinal] = 3; + var$2[nmb_BlockRailBase$EnumRailDirection_ASCENDING_SOUTH.$ordinal] = 4; } var nmb_BlockPistonBase$1 = $rt_classWithoutFields(); var nmb_BlockPistonBase$1_$SwitchMap$net$minecraft$util$EnumFacing = null; @@ -1338569,93 +1341007,6 @@ }} $rt_nativeThread().push(var$1, var$2, $ptr); } - var nmb_BlockLever$1 = $rt_classWithoutFields(); - var nmb_BlockLever$1_$SwitchMap$net$minecraft$util$EnumFacing = null; - var nmb_BlockLever$1_$SwitchMap$net$minecraft$block$BlockLever$EnumOrientation = null; - var nmb_BlockLever$1_$SwitchMap$net$minecraft$util$EnumFacing$Axis = null; - var nmb_BlockLever$1_$clinitCalled = false; - function nmb_BlockLever$1_$callClinit() { - var $ptr = 0; - if ($rt_resuming()) { - $ptr = $rt_nativeThread().pop(); - } else if (nmb_BlockLever$1_$clinitCalled) { - return; - } - main: while (true) { switch ($ptr) { - case 0: - nmb_BlockLever$1_$clinitCalled = true; - $ptr = 1; - case 1: - nmb_BlockLever$1__clinit_(); - if ($rt_suspending()) { - break main; - } - nmb_BlockLever$1_$callClinit = $rt_eraseClinit(nmb_BlockLever$1); - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($ptr); - } - function nmb_BlockLever$1__clinit_() { - var var$1, var$2, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - $tmp = nmu_EnumFacing$Axis_values(); - if ($rt_suspending()) { - break main; - } - var$1 = $tmp; - var$2 = $rt_createIntArray(var$1.data.length); - var$1 = var$2.data; - nmb_BlockLever$1_$SwitchMap$net$minecraft$util$EnumFacing$Axis = var$2; - var$1[nmu_EnumFacing$Axis_X.$ordinal] = 1; - var$1[nmu_EnumFacing$Axis_Z.$ordinal] = 2; - $ptr = 2; - case 2: - $tmp = nmb_BlockLever$EnumOrientation_values(); - if ($rt_suspending()) { - break main; - } - var$1 = $tmp; - var$1 = $rt_createIntArray(var$1.data.length); - var$2 = var$1.data; - nmb_BlockLever$1_$SwitchMap$net$minecraft$block$BlockLever$EnumOrientation = var$1; - var$2[nmb_BlockLever$EnumOrientation_EAST.$ordinal] = 1; - var$2[nmb_BlockLever$EnumOrientation_WEST.$ordinal] = 2; - var$2[nmb_BlockLever$EnumOrientation_SOUTH.$ordinal] = 3; - var$2[nmb_BlockLever$EnumOrientation_NORTH.$ordinal] = 4; - var$2[nmb_BlockLever$EnumOrientation_UP_Z.$ordinal] = 5; - var$2[nmb_BlockLever$EnumOrientation_UP_X.$ordinal] = 6; - var$2[nmb_BlockLever$EnumOrientation_DOWN_X.$ordinal] = 7; - var$2[nmb_BlockLever$EnumOrientation_DOWN_Z.$ordinal] = 8; - $ptr = 3; - case 3: - $tmp = nmu_EnumFacing_values(); - if ($rt_suspending()) { - break main; - } - var$1 = $tmp; - var$1 = $rt_createIntArray(var$1.data.length); - var$2 = var$1.data; - nmb_BlockLever$1_$SwitchMap$net$minecraft$util$EnumFacing = var$1; - var$2[nmu_EnumFacing_DOWN.$ordinal] = 1; - var$2[nmu_EnumFacing_UP.$ordinal] = 2; - var$2[nmu_EnumFacing_NORTH.$ordinal] = 3; - var$2[nmu_EnumFacing_SOUTH.$ordinal] = 4; - var$2[nmu_EnumFacing_WEST.$ordinal] = 5; - var$2[nmu_EnumFacing_EAST.$ordinal] = 6; - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push(var$1, var$2, $ptr); - } var nmb_BlockCocoa$1 = $rt_classWithoutFields(); var nmb_BlockCocoa$1_$SwitchMap$net$minecraft$util$EnumFacing = null; var nmb_BlockCocoa$1_$clinitCalled = false; @@ -1338869,28 +1341220,13 @@ }} $rt_nativeThread().push(var$1, var$2, $ptr); } - var nmwgl_GenLayerEdge$1 = $rt_classWithoutFields(); - var nmwgl_GenLayerEdge$1_$SwitchMap$net$minecraft$world$gen$layer$GenLayerEdge$Mode = null; - function nmwgl_GenLayerEdge$1_$callClinit() { - nmwgl_GenLayerEdge$1_$callClinit = $rt_eraseClinit(nmwgl_GenLayerEdge$1); - nmwgl_GenLayerEdge$1__clinit_(); - } - function nmwgl_GenLayerEdge$1__clinit_() { - var var$1, var$2; - var$1 = $rt_createIntArray((nmwgl_GenLayerEdge$Mode_values()).data.length); - var$2 = var$1.data; - nmwgl_GenLayerEdge$1_$SwitchMap$net$minecraft$world$gen$layer$GenLayerEdge$Mode = var$1; - var$2[nmwgl_GenLayerEdge$Mode_COOL_WARM.$ordinal] = 1; - var$2[nmwgl_GenLayerEdge$Mode_HEAT_ICE.$ordinal] = 2; - var$2[nmwgl_GenLayerEdge$Mode_SPECIAL.$ordinal] = 3; - } function ju_AbstractList$TListIteratorImpl() { var a = this; jl_Object.call(a); a.$i = 0; a.$j = 0; a.$lastModCount = 0; a.$sz = 0; - a.$this$013 = null; + a.$this$09 = null; } function ju_AbstractList$TListIteratorImpl_hasNext($this) { return $this.$i >= $this.$sz ? 0 : 1; @@ -1338898,7 +1341234,7 @@ function ju_AbstractList$TListIteratorImpl_next($this) { var var$1, var$2, var$3; var$1 = $this.$lastModCount; - var$2 = $this.$this$013; + var$2 = $this.$this$09; if (var$1 < var$2.$modCount0) { var$2 = new ju_ConcurrentModificationException; jl_Throwable__init_0(var$2); @@ -1338916,7 +1341252,7 @@ } function nmt_TileEntity$1() { jl_Object.call(this); - this.$this$0198 = null; + this.$this$0125 = null; } function nmt_TileEntity$1_call($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1338934,7 +1341270,7 @@ break main; } var$1 = nmt_TileEntity_classToNameMap; - var$2 = jl_Object_getClass($this.$this$0198); + var$2 = jl_Object_getClass($this.$this$0125); $ptr = 2; case 2: $tmp = ju_HashMap_get(var$1, var$2); @@ -1338943,7 +1341279,7 @@ } var$1 = $tmp; var$1 = var$1; - var$2 = jl_Class_getName(jl_Object_getClass($this.$this$0198)); + var$2 = jl_Class_getName(jl_Object_getClass($this.$this$0125)); var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); $ptr = 3; @@ -1338979,7 +1341315,7 @@ } function nmt_TileEntity$2() { jl_Object.call(this); - this.$this$0199 = null; + this.$this$0126 = null; } function nmt_TileEntity$2_call($this) { var var$1, var$2, var$3, var$4, var$5, var$6, $$je, $ptr, $tmp; @@ -1338990,7 +1341326,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0199; + var$1 = $this.$this$0126; var$2 = var$1.$worldObj4; var$1 = var$1.$pos11; $ptr = 1; @@ -1339136,7 +1341472,7 @@ } function nmt_TileEntity$3() { jl_Object.call(this); - this.$this$0200 = null; + this.$this$0127 = null; } function nmt_TileEntity$3_call($this) { var var$1, var$2, var$3, var$4, var$5, $ptr, $tmp; @@ -1339147,7 +1341483,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0200; + var$1 = $this.$this$0127; var$2 = var$1.$worldObj4; var$1 = var$1.$pos11; $ptr = 1; @@ -1339266,7 +1341602,6 @@ a.$field_151412_b = null; a.$field_151413_c = 0.0; a.$field_151411_d = null; - a.$this$0273 = null; } function nmnps_S20PacketEntityProperties$Snapshot__init_0(var_0, var_1, var_2, var_3) { var var_4 = new nmnps_S20PacketEntityProperties$Snapshot(); @@ -1339274,28 +1341609,10 @@ return var_4; } function nmnps_S20PacketEntityProperties$Snapshot__init_($this, $this$0, $parString1, $parDouble1, $parCollection) { - $this.$this$0273 = $this$0; $this.$field_151412_b = $parString1; $this.$field_151413_c = $parDouble1; $this.$field_151411_d = $parCollection; } - var nmnps_S38PacketPlayerListItem$1 = $rt_classWithoutFields(); - var nmnps_S38PacketPlayerListItem$1_$SwitchMap$net$minecraft$network$play$server$S38PacketPlayerListItem$Action = null; - function nmnps_S38PacketPlayerListItem$1_$callClinit() { - nmnps_S38PacketPlayerListItem$1_$callClinit = $rt_eraseClinit(nmnps_S38PacketPlayerListItem$1); - nmnps_S38PacketPlayerListItem$1__clinit_(); - } - function nmnps_S38PacketPlayerListItem$1__clinit_() { - var var$1, var$2; - var$1 = $rt_createIntArray((nmnps_S38PacketPlayerListItem$Action_values()).data.length); - var$2 = var$1.data; - nmnps_S38PacketPlayerListItem$1_$SwitchMap$net$minecraft$network$play$server$S38PacketPlayerListItem$Action = var$1; - var$2[nmnps_S38PacketPlayerListItem$Action_ADD_PLAYER.$ordinal] = 1; - var$2[nmnps_S38PacketPlayerListItem$Action_UPDATE_GAME_MODE.$ordinal] = 2; - var$2[nmnps_S38PacketPlayerListItem$Action_UPDATE_LATENCY.$ordinal] = 3; - var$2[nmnps_S38PacketPlayerListItem$Action_UPDATE_DISPLAY_NAME.$ordinal] = 4; - var$2[nmnps_S38PacketPlayerListItem$Action_REMOVE_PLAYER.$ordinal] = 5; - } var nmnps_S3CPacketUpdateScore$Action = $rt_classWithoutFields(jl_Enum); var nmnps_S3CPacketUpdateScore$Action_CHANGE = null; var nmnps_S3CPacketUpdateScore$Action_REMOVE = null; @@ -1339354,24 +1341671,6 @@ nmnps_S42PacketCombatEvent$Event_ENTITY_DIED = var$1; nmnps_S42PacketCombatEvent$Event_$VALUES = $rt_createArrayFromData(nmnps_S42PacketCombatEvent$Event, [nmnps_S42PacketCombatEvent$Event_ENTER_COMBAT, nmnps_S42PacketCombatEvent$Event_END_COMBAT, var$1]); } - var nmnps_S44PacketWorldBorder$1 = $rt_classWithoutFields(); - var nmnps_S44PacketWorldBorder$1_$SwitchMap$net$minecraft$network$play$server$S44PacketWorldBorder$Action = null; - function nmnps_S44PacketWorldBorder$1_$callClinit() { - nmnps_S44PacketWorldBorder$1_$callClinit = $rt_eraseClinit(nmnps_S44PacketWorldBorder$1); - nmnps_S44PacketWorldBorder$1__clinit_(); - } - function nmnps_S44PacketWorldBorder$1__clinit_() { - var var$1, var$2; - var$1 = $rt_createIntArray((nmnps_S44PacketWorldBorder$Action_values()).data.length); - var$2 = var$1.data; - nmnps_S44PacketWorldBorder$1_$SwitchMap$net$minecraft$network$play$server$S44PacketWorldBorder$Action = var$1; - var$2[nmnps_S44PacketWorldBorder$Action_SET_SIZE.$ordinal] = 1; - var$2[nmnps_S44PacketWorldBorder$Action_LERP_SIZE.$ordinal] = 2; - var$2[nmnps_S44PacketWorldBorder$Action_SET_CENTER.$ordinal] = 3; - var$2[nmnps_S44PacketWorldBorder$Action_SET_WARNING_BLOCKS.$ordinal] = 4; - var$2[nmnps_S44PacketWorldBorder$Action_SET_WARNING_TIME.$ordinal] = 5; - var$2[nmnps_S44PacketWorldBorder$Action_INITIALIZE.$ordinal] = 6; - } var nmnps_S45PacketTitle$Type = $rt_classWithoutFields(jl_Enum); var nmnps_S45PacketTitle$Type_TITLE = null; var nmnps_S45PacketTitle$Type_SUBTITLE = null; @@ -1339955,7 +1342254,7 @@ function nmu_ClassInheritanceMultiMap$1() { var a = this; jl_Object.call(a); a.$val$clazz11 = null; - a.$this$0274 = null; + a.$this$0179 = null; } function nmb_BlockPortal$Size() { var a = this; jl_Object.call(a); @@ -1341265,9 +1343564,8 @@ $rt_nativeThread().push($this, $parWorld, $parRandom, $parBlockPos, $parPropertyBool, var$5, var$6, $ptr); } function nmw_World$2() { - var a = this; jl_Object.call(a); - a.$val$blockIn0 = null; - a.$this$0103 = null; + jl_Object.call(this); + this.$val$blockIn0 = null; } function nmw_World$2_call($this) { var var$1, var$2, var$3, var$4, var$5, var$6, $$je, $ptr, $tmp; @@ -1341408,89 +1343706,6 @@ }} $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, var$5, var$6, $ptr); } - var nmb_BlockPressurePlate$1 = $rt_classWithoutFields(); - var nmb_BlockPressurePlate$1_$SwitchMap$net$minecraft$block$BlockPressurePlate$Sensitivity = null; - function nmb_BlockPressurePlate$1_$callClinit() { - nmb_BlockPressurePlate$1_$callClinit = $rt_eraseClinit(nmb_BlockPressurePlate$1); - nmb_BlockPressurePlate$1__clinit_(); - } - function nmb_BlockPressurePlate$1__clinit_() { - var var$1, var$2; - var$1 = $rt_createIntArray((nmb_BlockPressurePlate$Sensitivity_values()).data.length); - var$2 = var$1.data; - nmb_BlockPressurePlate$1_$SwitchMap$net$minecraft$block$BlockPressurePlate$Sensitivity = var$1; - var$2[nmb_BlockPressurePlate$Sensitivity_EVERYTHING.$ordinal] = 1; - var$2[nmb_BlockPressurePlate$Sensitivity_MOBS.$ordinal] = 2; - } - var nmcs_GameSettings$1 = $rt_classWithoutFields(); - var nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options = null; - function nmcs_GameSettings$1_$callClinit() { - nmcs_GameSettings$1_$callClinit = $rt_eraseClinit(nmcs_GameSettings$1); - nmcs_GameSettings$1__clinit_(); - } - function nmcs_GameSettings$1__clinit_() { - var var$1, var$2; - var$1 = $rt_createIntArray((nmcs_GameSettings$Options_values()).data.length); - var$2 = var$1.data; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options = var$1; - var$2[jl_Enum_ordinal(nmcs_GameSettings$Options_INVERT_MOUSE)] = 1; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_VIEW_BOBBING)] = 2; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_ANAGLYPH)] = 3; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_FBO_ENABLE)] = 4; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_CHAT_COLOR)] = 5; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_CHAT_LINKS)] = 6; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_CHAT_LINKS_PROMPT)] = 7; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_SNOOPER_ENABLED)] = 8; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_TOUCHSCREEN)] = 9; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_FORCE_UNICODE_FONT)] = 10; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_BLOCK_ALTERNATIVES)] = 11; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_REDUCED_DEBUG_INFO)] = 12; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_ENTITY_SHADOWS)] = 13; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_HUD_COORDS)] = 14; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_HUD_FPS)] = 15; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_HUD_PLAYER)] = 16; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_HUD_STATS)] = 17; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_HUD_WORLD)] = 18; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_HUD_24H)] = 19; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_CHUNK_FIX)] = 20; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_FULLSCREEN)] = 21; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_USE_VBO)] = 22; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_FAST_MATH)] = 23; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_SMOOTH_FPS)] = 24; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_SMOOTH_WORLD)] = 25; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_LAGOMETER)] = 26; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_WEATHER)] = 27; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_PROFILER)] = 28; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_SKY)] = 29; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_STARS)] = 30; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_SUN_MOON)] = 31; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_HELD_ITEM_TOOLTIPS)] = 32; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_DYNAMIC_FOV)] = 33; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_SHOW_CAPES)] = 34; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_CLEAR_WATER)] = 35; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_RANDOM_MOBS)] = 36; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_BETTER_SNOW)] = 37; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_CUSTOM_FONTS)] = 38; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_CUSTOM_SKY)] = 39; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_TOGGLE_SPRINT)] = 40; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_CHUNK_BORDERS)] = 41; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_VIS_GRAPH)] = 42; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_BUFFER_QUEUE)] = 43; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_CUSTOM_ITEMS)] = 44; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_SWAMP_COLORS)] = 45; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_SMOOTH_BIOMES)] = 46; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_CUSTOM_COLORS)] = 47; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_FNAW_SKINS)] = 48; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_EAGLER_VSYNC)] = 49; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_FULLBRIGHT)] = 50; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_LEFT_HAND)] = 51; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_ENTITY_CULLING)] = 52; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_PARTICLE_CULLING)] = 53; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_ARMOR_GUI)] = 54; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_CPS)] = 55; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_POTION_GUI)] = 56; - nmcs_GameSettings$1_$SwitchMap$net$minecraft$client$settings$GameSettings$Options.data[jl_Enum_ordinal(nmcs_GameSettings$Options_KEYSTROKES)] = 57; - } function nmwgf_WorldGenDesertWells() { var a = this; nmwgf_WorldGenerator.call(a); a.$field_175911_b = null; @@ -1342148,7 +1344363,7 @@ a.$val$f3 = 0.0; a.$val$f4 = 0.0; a.$val$f5 = 0.0; - a.$this$0144 = null; + a.$this$0101 = null; } function nmcre_RendererLivingEntity$1_draw($this, $pass) { var var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, $ptr, $tmp; @@ -1342240,7 +1344455,7 @@ if ($rt_suspending()) { break main; } - $pass = $this.$this$0144; + $pass = $this.$this$0101; var$7 = $this.$val$entitylivingbase; $ptr = 10; case 10: @@ -1342248,7 +1344463,7 @@ if ($rt_suspending()) { break main; } - $pass = $this.$this$0144.$mainModel; + $pass = $this.$this$0101.$mainModel; var$7 = $this.$val$entitylivingbase; var$2 = $this.$val$f1; $ptr = 11; @@ -1342259,8 +1344474,8 @@ } var$2 = $tmp; $pass.$swingProgress0 = var$2; - $this.$this$0144.$mainModel.$isRiding0 = nme_Entity_isRiding($this.$val$entitylivingbase); - $pass = $this.$this$0144.$mainModel; + $this.$this$0101.$mainModel.$isRiding0 = nme_Entity_isRiding($this.$val$entitylivingbase); + $pass = $this.$this$0101.$mainModel; var$7 = $this.$val$entitylivingbase; $ptr = 12; case 12: @@ -1342270,16 +1344485,16 @@ } var$6 = $tmp; $pass.$isChild1 = var$6; - if ($this.$this$0144.$mainModel instanceof nmcm_ModelBiped) { + if ($this.$this$0101.$mainModel instanceof nmcm_ModelBiped) { $pass = $this.$val$entitylivingbase; if ($pass instanceof nmep_EntityPlayer) { $pass = $pass; $ptr = 21; continue main; } - $this.$this$0144.$mainModel.$setInvisible(1); + $this.$this$0101.$mainModel.$setInvisible(1); } - $pass = $this.$this$0144.$mainModel; + $pass = $this.$this$0101.$mainModel; var$7 = $this.$val$entitylivingbase; var$2 = $this.$val$f2; var$3 = $this.$val$f1; @@ -1342297,7 +1344512,7 @@ if ($rt_suspending()) { break main; } - $pass = $this.$this$0144.$mainModel; + $pass = $this.$this$0101.$mainModel; var$2 = $this.$val$f2; var$3 = $this.$val$f1; var$4 = $this.$val$f20; @@ -1342311,7 +1344526,7 @@ if ($rt_suspending()) { break main; } - $pass = $this.$this$0144.$mainModel; + $pass = $this.$this$0101.$mainModel; var$7 = $this.$val$entitylivingbase; var$2 = $this.$val$f2; var$3 = $this.$val$f1; @@ -1342325,7 +1344540,7 @@ if ($rt_suspending()) { break main; } - if ($this.$this$0144.$mainModel instanceof nmcm_ModelBiped) { + if ($this.$this$0101.$mainModel instanceof nmcm_ModelBiped) { $pass = $this.$val$entitylivingbase; if ($pass instanceof nmep_EntityPlayer) { $pass = $pass; @@ -1342367,14 +1344582,14 @@ } var$6 = $tmp; if (!var$6) - $this.$this$0144.$mainModel.$setInvisible(1); + $this.$this$0101.$mainModel.$setInvisible(1); else { - $this.$this$0144.$mainModel.$setInvisible(0); - $pass = $this.$this$0144.$mainModel; + $this.$this$0101.$mainModel.$setInvisible(0); + $pass = $this.$this$0101.$mainModel; $pass.$bipedHead.$showModel = 1; $pass.$bipedHeadwear.$showModel = 1; } - $pass = $this.$this$0144.$mainModel; + $pass = $this.$this$0101.$mainModel; var$7 = $this.$val$entitylivingbase; var$2 = $this.$val$f2; var$3 = $this.$val$f1; @@ -1342387,7 +1344602,7 @@ } var$6 = $tmp; if (var$6) - $this.$this$0144.$mainModel.$setInvisible(1); + $this.$this$0101.$mainModel.$setInvisible(1); var$6 = 516; var$2 = 0.10000000149011612; $ptr = 17; @@ -1342447,10 +1344662,7 @@ return $this.$forwardList.$size0(); } var jl_Object$NotifyListener = $rt_classWithoutFields(0); - function nme_EntityLivingBase$1() { - jl_Object.call(this); - this.$this$029 = null; - } + var nme_EntityLivingBase$1 = $rt_classWithoutFields(); function nme_EntityLivingBase$1_apply($this, var$1) { var var$2, $ptr, $tmp; $ptr = 0; @@ -1342475,17 +1344687,17 @@ } function nmt_TileEntitySign$1() { jl_Object.call(this); - this.$this$0201 = null; + this.$this$0128 = null; } function nmt_TileEntitySign$1_addChatMessage($this, $var1) {} function nmt_TileEntitySign$1_canCommandSenderUseCommand($this, $var1, $var2) { return 1; } function nmt_TileEntitySign$1_getPosition($this) { - return $this.$this$0201.$pos11; + return $this.$this$0128.$pos11; } function nmt_TileEntitySign$1_getEntityWorld($this) { - return $this.$this$0201.$worldObj4; + return $this.$this$0128.$worldObj4; } function nmt_TileEntitySign$1_getCommandSenderEntity($this) { return null; @@ -1342775,7 +1344987,6 @@ a.$val$d00 = 0.0; a.$val$d10 = 0.0; a.$val$d20 = 0.0; - a.$this$0137 = null; } function nmcr_RenderGlobal$1_call($this) { var var$1, var$2, var$3, var$4, $ptr, $tmp; @@ -1343154,7 +1345365,7 @@ } function nlevit_TeaVMServerQuery$1() { jl_Object.call(this); - this.$this$0268 = null; + this.$this$0175 = null; } function nlevit_TeaVMServerQuery$1_handleEvent$exported$0(var$0, var$1) { var var$2, var$3, var$4, $ptr, $tmp; @@ -1343165,7 +1345376,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = var$0.$this$0268; + var$1 = var$0.$this$0175; var$2 = var$1.$sock; var$1 = var$1.$accept1; var$3 = new jl_StringBuilder; @@ -1343198,14 +1345409,14 @@ } function nlevit_TeaVMServerQuery$2() { jl_Object.call(this); - this.$this$0269 = null; + this.$this$0176 = null; } function nlevit_TeaVMServerQuery$2_handleEvent$exported$0(var$0, var$1) { - var$0.$this$0269.$open0 = 0; + var$0.$this$0176.$open0 = 0; } function nlevit_TeaVMServerQuery$3() { jl_Object.call(this); - this.$this$0270 = null; + this.$this$0177 = null; } function nlevit_TeaVMServerQuery$3_handleEvent($this, $evt) { var $obj, var$3, $response, $str, var$6, $t, $$je, $ptr, $tmp; @@ -1343216,11 +1345427,11 @@ } main: while (true) { switch ($ptr) { case 0: - $obj = $this.$this$0270; + $obj = $this.$this$0177; $obj.$alive0 = 1; if (Long_eq($obj.$pingTimer, Long_fromInt(-1))) { var$3 = jl_System_currentTimeMillis(); - $response = $this.$this$0270; + $response = $this.$this$0177; $obj.$pingTimer = Long_sub(var$3, $response.$pingStart); if (Long_lt($response.$pingTimer, Long_fromInt(1))) $response.$pingTimer = Long_fromInt(1); @@ -1343234,7 +1345445,7 @@ } $obj = $tmp; if (!($obj ? 1 : 0)) { - $obj = $this.$this$0270.$queryResponsesBytes; + $obj = $this.$this$0177.$queryResponsesBytes; $ptr = 2; continue main; } @@ -1343243,7 +1345454,7 @@ $evt = nlevit_TeaVMServerQuery_logger; $obj = $rt_s(9361); var$6 = $rt_createArray(jl_Object, 1); - var$6.data[0] = $this.$this$0270.$uri3; + var$6.data[0] = $this.$this$0177.$uri3; $ptr = 4; continue main; } @@ -1343251,7 +1345462,7 @@ $evt = nlevit_TeaVMServerQuery_logger; $obj = $rt_s(9362); var$6 = $rt_createArray(jl_Object, 1); - var$6.data[0] = $this.$this$0270.$uri3; + var$6.data[0] = $this.$this$0177.$uri3; $ptr = 7; continue main; } @@ -1343268,7 +1345479,7 @@ } } $evt = nlevit_TeaVMServerQuery_logger; - $obj = $this.$this$0270.$uri3; + $obj = $this.$this$0177.$uri3; $response = new jl_StringBuilder; jl_AbstractStringBuilder__init_($response); $str = $rt_s(9363); @@ -1343313,7 +1345524,7 @@ if ($rt_suspending()) { break main; } - $evt = $this.$this$0270; + $evt = $this.$this$0177; nlevi_EnumServerRateLimit_$callClinit(); $evt.$rateLimit = nlevi_EnumServerRateLimit_BLOCKED; return; @@ -1343337,7 +1345548,7 @@ } } $evt = nlevit_TeaVMServerQuery_logger; - $obj = $this.$this$0270.$uri3; + $obj = $this.$this$0177.$uri3; $response = new jl_StringBuilder; jl_AbstractStringBuilder__init_($response); $str = $rt_s(9363); @@ -1343360,7 +1345571,7 @@ $evt = nlevit_TeaVMServerQuery_logger; $obj = $rt_s(9365); var$6 = $rt_createArray(jl_Object, 1); - var$6.data[0] = $this.$this$0270.$uri3; + var$6.data[0] = $this.$this$0177.$uri3; $ptr = 15; continue main; } catch ($$e) { @@ -1343372,7 +1345583,7 @@ } } $evt = nlevit_TeaVMServerQuery_logger; - $obj = $this.$this$0270.$uri3; + $obj = $this.$this$0177.$uri3; $response = new jl_StringBuilder; jl_AbstractStringBuilder__init_($response); $str = $rt_s(9363); @@ -1343383,7 +1345594,7 @@ if ($rt_suspending()) { break main; } - $evt = $this.$this$0270; + $evt = $this.$this$0177; nlevi_EnumServerRateLimit_$callClinit(); $evt.$rateLimit = nlevi_EnumServerRateLimit_LOCKED_OUT; return; @@ -1343435,14 +1345646,14 @@ $response = $tmp; if (!jl_String_equalsIgnoreCase($evt, $response)) { $response = new nlevi_QueryResponse; - var$3 = $this.$this$0270.$pingTimer; + var$3 = $this.$this$0177.$pingTimer; $ptr = 16; continue main; } $evt = nlevit_TeaVMServerQuery_logger; $obj = $rt_s(9367); var$6 = $rt_createArray(jl_Object, 1); - var$6.data[0] = $this.$this$0270.$uri3; + var$6.data[0] = $this.$this$0177.$uri3; $ptr = 18; continue main; } catch ($$e) { @@ -1343454,7 +1345665,7 @@ } } $evt = nlevit_TeaVMServerQuery_logger; - $obj = $this.$this$0270.$uri3; + $obj = $this.$this$0177.$uri3; $response = new jl_StringBuilder; jl_AbstractStringBuilder__init_($response); $str = $rt_s(9363); @@ -1343467,7 +1345678,7 @@ if ($rt_suspending()) { break main; } - $evt = $this.$this$0270; + $evt = $this.$this$0177; nlevi_EnumServerRateLimit_$callClinit(); $evt.$rateLimit = nlevi_EnumServerRateLimit_BLOCKED; } catch ($$e) { @@ -1343482,7 +1345693,7 @@ return; } $evt = nlevit_TeaVMServerQuery_logger; - $obj = $this.$this$0270.$uri3; + $obj = $this.$this$0177.$uri3; $response = new jl_StringBuilder; jl_AbstractStringBuilder__init_($response); $str = $rt_s(9363); @@ -1343494,7 +1345705,7 @@ if ($rt_suspending()) { break main; } - $evt = $this.$this$0270.$queryResponses; + $evt = $this.$this$0177.$queryResponses; $ptr = 17; continue main; } catch ($$e) { @@ -1343506,7 +1345717,7 @@ } } $evt = nlevit_TeaVMServerQuery_logger; - $obj = $this.$this$0270.$uri3; + $obj = $this.$this$0177.$uri3; $response = new jl_StringBuilder; jl_AbstractStringBuilder__init_($response); $str = $rt_s(9363); @@ -1343537,7 +1345748,7 @@ } } $evt = nlevit_TeaVMServerQuery_logger; - $obj = $this.$this$0270.$uri3; + $obj = $this.$this$0177.$uri3; $response = new jl_StringBuilder; jl_AbstractStringBuilder__init_($response); $str = $rt_s(9363); @@ -1343550,7 +1345761,7 @@ if ($rt_suspending()) { break main; } - $evt = $this.$this$0270; + $evt = $this.$this$0177; nlevi_EnumServerRateLimit_$callClinit(); $evt.$rateLimit = nlevi_EnumServerRateLimit_LOCKED_OUT; } catch ($$e) { @@ -1343565,7 +1345776,7 @@ return; } $evt = nlevit_TeaVMServerQuery_logger; - $obj = $this.$this$0270.$uri3; + $obj = $this.$this$0177.$uri3; $response = new jl_StringBuilder; jl_AbstractStringBuilder__init_($response); $str = $rt_s(9363); @@ -1343602,7 +1345813,7 @@ return; } $evt = nlevit_TeaVMServerQuery_logger; - $obj = $this.$this$0270.$uri3; + $obj = $this.$this$0177.$uri3; $response = new jl_StringBuilder; jl_AbstractStringBuilder__init_($response); $str = $rt_s(9363); @@ -1343634,16 +1345845,16 @@ } function nlevit_TeaVMServerQuery$4() { jl_Object.call(this); - this.$this$0271 = null; + this.$this$0178 = null; } function nlevit_TeaVMServerQuery$4_handleEvent$exported$0(var$0, var$1) { - var$0.$this$0271.$sock.close(); - var$0.$this$0271.$open0 = 0; + var$0.$this$0178.$sock.close(); + var$0.$this$0178.$open0 = 0; } var cgcc_Multimaps$Entries = $rt_classWithoutFields(ju_AbstractCollection); function cgcc_AbstractMultimap$Entries() { cgcc_Multimaps$Entries.call(this); - this.$this$0275 = null; + this.$this$0180 = null; } function cgcc_AbstractMultimap$Entries__init_(var_0) { var var_1 = new cgcc_AbstractMultimap$Entries(); @@ -1343651,20 +1345862,16 @@ return var_1; } function cgcc_AbstractMultimap$Entries__init_0($this, var$1) { - $this.$this$0275 = var$1; + $this.$this$0180 = var$1; } function cgcc_AbstractMultimap$Entries_iterator($this) { var var$1, var$2; - var$1 = $this.$this$0275; + var$1 = $this.$this$0180; var$2 = new cgcc_AbstractMapBasedMultimap$2; - var$2.$this$0276 = var$1; cgcc_AbstractMapBasedMultimap$Itr__init_(var$2, var$1); return var$2; } - function cgcc_AbstractMultimap$EntrySet() { - cgcc_AbstractMultimap$Entries.call(this); - this.$this$0254 = null; - } + var cgcc_AbstractMultimap$EntrySet = $rt_classWithoutFields(cgcc_AbstractMultimap$Entries); var nlevi_PlatformWebRTC$EmptyHandler = $rt_classWithoutFields(0); function nlevi_PlatformWebRTC$LANPeer$setRemoteDescription$lambda$_2_0() { var a = this; jl_Object.call(a); @@ -1343793,7 +1346000,7 @@ function nmcr_ResourcePackListEntry$2() { var a = this; jl_Object.call(a); a.$val$l0 = 0; - a.$this$0266 = null; + a.$this$0173 = null; } function nmcr_ResourcePackListEntry$2_confirmClicked($this, $flag, $var2) { var var$3, $ptr, $tmp; @@ -1343804,7 +1346011,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$3 = $this.$this$0266; + var$3 = $this.$this$0173; $var2 = $this.$val$l0; $ptr = 1; case 1: @@ -1343820,7 +1346027,7 @@ function nPs_GuiShaders$List() { var a = this; nmcg_GuiSlot.call(a); a.$languageMap1 = null; - a.$this$0267 = null; + a.$this$0174 = null; } function nPs_GuiShaders$List_getListWidth($this) { return $this.$width13 - 20 | 0; @@ -1343897,7 +1346104,7 @@ } var$5 = $this.$mc21; var$6 = new nlevoedg_GuiShadersNotSupported; - var$7 = $this.$this$0267.$screen2; + var$7 = $this.$this$0174.$screen2; $ptr = 13; continue main; case 4: @@ -1343922,7 +1346129,7 @@ } var$5 = $this.$mc21; var$6 = new nlevoedg_GuiShadersNotSupported; - var$8 = $this.$this$0267.$screen2; + var$8 = $this.$this$0174.$screen2; $ptr = 24; continue main; case 6: @@ -1343973,7 +1346180,7 @@ if ($rt_suspending()) { break main; } - $this.$this$0267.$shaderOptions.$enabled = 1; + $this.$this$0174.$shaderOptions.$enabled = 1; return; case 13: $tmp = nlevoed_EaglerDeferredPipeline_getReasonUnsupported(); @@ -1344050,7 +1346257,7 @@ if ($rt_suspending()) { break main; } - $this.$this$0267.$shaderOptions.$enabled = 0; + $this.$this$0174.$shaderOptions.$enabled = 0; return; case 24: $tmp = nlevoed_EaglerDeferredPipeline_getReasonUnsupported(); @@ -1344171,7 +1346378,7 @@ } $s = $tmp; $s = $s; - var$8 = $this.$this$0267; + var$8 = $this.$this$0174; var$9 = var$8.$fontRendererObj0; $var2 = $this.$width13 / 2 | 0; $i = $j + 1 | 0; @@ -1344189,7 +1346396,7 @@ } function nlevsg_GuiScreenLANConnecting$drawScreen$lambda$_4_0() { jl_Object.call(this); - this.$_0212 = null; + this.$_0210 = null; } function nlevsg_GuiScreenLANConnecting$drawScreen$lambda$_4_0_accept(var$0, var$1) { var var$2, var$3, var$4, $ptr, $tmp; @@ -1344200,7 +1346407,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$2 = var$0.$_0212; + var$2 = var$0.$_0210; var$3 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$3); var$4 = $rt_s(9009); @@ -1344463,12 +1346670,12 @@ var$7 = $rt_createArray(jl_Object, 1); var$3 = 0; if (!$this.$loadSpawnChunks) { - var$10 = $rt_s(5637); + var$10 = $rt_s(5636); var$11 = $rt_createArray(jl_Object, 0); $ptr = 9; continue main; } - var$10 = $rt_s(5636); + var$10 = $rt_s(5635); var$11 = $rt_createArray(jl_Object, 0); $ptr = 10; continue main; @@ -1344517,12 +1346724,12 @@ var$7 = $rt_createArray(jl_Object, 1); var$5 = 0; if (!$this.$enhancedGameRules) { - var$10 = $rt_s(5637); + var$10 = $rt_s(5636); var$11 = $rt_createArray(jl_Object, 0); $ptr = 14; continue main; } - var$10 = $rt_s(5636); + var$10 = $rt_s(5635); var$11 = $rt_createArray(jl_Object, 0); $ptr = 15; continue main; @@ -1344597,12 +1346804,12 @@ var$5 = $rt_createArray(jl_Object, 1); var$2 = 0; if (!var$3) { - var$6 = $rt_s(5637); + var$6 = $rt_s(5636); var$7 = $rt_createArray(jl_Object, 0); $ptr = 4; continue main; } - var$6 = $rt_s(5636); + var$6 = $rt_s(5635); var$7 = $rt_createArray(jl_Object, 0); $ptr = 5; continue main; @@ -1344615,12 +1346822,12 @@ var$5 = $rt_createArray(jl_Object, 1); var$2 = 0; if (!var$3) { - var$6 = $rt_s(5637); + var$6 = $rt_s(5636); var$7 = $rt_createArray(jl_Object, 0); $ptr = 6; continue main; } - var$6 = $rt_s(5636); + var$6 = $rt_s(5635); var$7 = $rt_createArray(jl_Object, 0); $ptr = 7; continue main; @@ -1346680,7 +1348887,7 @@ } if (!$this.$field_146344_y) { var$4 = $this.$fontRendererObj0; - var$5 = $rt_s(9055); + var$5 = $rt_s(9061); var$6 = $rt_createArray(jl_Object, 0); $ptr = 4; continue main; @@ -1346959,6 +1349166,120 @@ function nmcg_GuiCreateWorld__clinit_() { nmcg_GuiCreateWorld_disallowedFilenames = $rt_createArrayFromData(jl_String, [$rt_s(9393), $rt_s(9394), $rt_s(9395), $rt_s(9396), $rt_s(9397), $rt_s(9398), $rt_s(9399), $rt_s(9400), $rt_s(9401), $rt_s(9402), $rt_s(9403), $rt_s(9404), $rt_s(9405), $rt_s(9406), $rt_s(9407), $rt_s(9408), $rt_s(9409), $rt_s(9410), $rt_s(9411), $rt_s(9412), $rt_s(9413), $rt_s(9414), $rt_s(9415), $rt_s(9416)]); } + function nlevsg_GuiScreenBackupWorldSelection$actionPerformed$lambda$_3_0() { + jl_Object.call(this); + this.$_0211 = null; + } + function nlevsg_GuiScreenBackupWorldSelection$actionPerformed$lambda$_3_0_getAsBoolean(var$0) { + var var$1, var$2, var$3, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();var$0 = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + var$1 = var$0.$_0211; + $ptr = 1; + case 1: + $tmp = nlevs_SingleplayerServerController_getExportResponse(); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; + if (var$2 === null) + return 0; + var$1 = var$1.$worldName9; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + $ptr = 2; + case 2: + jl_AbstractStringBuilder_append(var$3, var$1); + if ($rt_suspending()) { + break main; + } + var$1 = $rt_s(2741); + $ptr = 3; + case 3: + jl_AbstractStringBuilder_append(var$3, var$1); + if ($rt_suspending()) { + break main; + } + $ptr = 4; + case 4: + $tmp = jl_AbstractStringBuilder_toString(var$3); + if ($rt_suspending()) { + break main; + } + var$1 = $tmp; + $ptr = 5; + case 5: + nlev_EagRuntime_downloadFileWithName(var$1, var$2); + if ($rt_suspending()) { + break main; + } + return 1; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push(var$0, var$1, var$2, var$3, $ptr); + } + function nlevsg_GuiScreenBackupWorldSelection$actionPerformed$lambda$_3_1() { + jl_Object.call(this); + this.$_0212 = null; + } + function nlevsg_GuiScreenBackupWorldSelection$actionPerformed$lambda$_3_1_getAsBoolean(var$0) { + var var$1, var$2, var$3, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();var$0 = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + var$1 = var$0.$_0212; + $ptr = 1; + case 1: + $tmp = nlevs_SingleplayerServerController_getExportResponse(); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; + if (var$2 === null) + return 0; + var$1 = var$1.$worldName9; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + $ptr = 2; + case 2: + jl_AbstractStringBuilder_append(var$3, var$1); + if ($rt_suspending()) { + break main; + } + var$1 = $rt_s(9048); + $ptr = 3; + case 3: + jl_AbstractStringBuilder_append(var$3, var$1); + if ($rt_suspending()) { + break main; + } + $ptr = 4; + case 4: + $tmp = jl_AbstractStringBuilder_toString(var$3); + if ($rt_suspending()) { + break main; + } + var$1 = $tmp; + $ptr = 5; + case 5: + nlev_EagRuntime_downloadFileWithName(var$1, var$2); + if ($rt_suspending()) { + break main; + } + return 1; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push(var$0, var$1, var$2, var$3, $ptr); + } var nmcg_GuiRenameWorld$actionPerformed$lambda$_5_0 = $rt_classWithoutFields(); function nmcg_GuiRenameWorld$actionPerformed$lambda$_5_0__init_0() { var var_0 = new nmcg_GuiRenameWorld$actionPerformed$lambda$_5_0(); @@ -1347015,120 +1349336,6 @@ }} $rt_nativeThread().push(var$0, var$1, $ptr); } - function nlevsg_GuiScreenBackupWorldSelection$actionPerformed$lambda$_3_0() { - jl_Object.call(this); - this.$_0210 = null; - } - function nlevsg_GuiScreenBackupWorldSelection$actionPerformed$lambda$_3_0_getAsBoolean(var$0) { - var var$1, var$2, var$3, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();var$0 = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - var$1 = var$0.$_0210; - $ptr = 1; - case 1: - $tmp = nlevs_SingleplayerServerController_getExportResponse(); - if ($rt_suspending()) { - break main; - } - var$2 = $tmp; - if (var$2 === null) - return 0; - var$1 = var$1.$worldName9; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - $ptr = 2; - case 2: - jl_AbstractStringBuilder_append(var$3, var$1); - if ($rt_suspending()) { - break main; - } - var$1 = $rt_s(2741); - $ptr = 3; - case 3: - jl_AbstractStringBuilder_append(var$3, var$1); - if ($rt_suspending()) { - break main; - } - $ptr = 4; - case 4: - $tmp = jl_AbstractStringBuilder_toString(var$3); - if ($rt_suspending()) { - break main; - } - var$1 = $tmp; - $ptr = 5; - case 5: - nlev_EagRuntime_downloadFileWithName(var$1, var$2); - if ($rt_suspending()) { - break main; - } - return 1; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push(var$0, var$1, var$2, var$3, $ptr); - } - function nlevsg_GuiScreenBackupWorldSelection$actionPerformed$lambda$_3_1() { - jl_Object.call(this); - this.$_0211 = null; - } - function nlevsg_GuiScreenBackupWorldSelection$actionPerformed$lambda$_3_1_getAsBoolean(var$0) { - var var$1, var$2, var$3, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();var$0 = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - var$1 = var$0.$_0211; - $ptr = 1; - case 1: - $tmp = nlevs_SingleplayerServerController_getExportResponse(); - if ($rt_suspending()) { - break main; - } - var$2 = $tmp; - if (var$2 === null) - return 0; - var$1 = var$1.$worldName9; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); - $ptr = 2; - case 2: - jl_AbstractStringBuilder_append(var$3, var$1); - if ($rt_suspending()) { - break main; - } - var$1 = $rt_s(9042); - $ptr = 3; - case 3: - jl_AbstractStringBuilder_append(var$3, var$1); - if ($rt_suspending()) { - break main; - } - $ptr = 4; - case 4: - $tmp = jl_AbstractStringBuilder_toString(var$3); - if ($rt_suspending()) { - break main; - } - var$1 = $tmp; - $ptr = 5; - case 5: - nlev_EagRuntime_downloadFileWithName(var$1, var$2); - if ($rt_suspending()) { - break main; - } - return 1; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push(var$0, var$1, var$2, var$3, $ptr); - } function nmcr_RegionRenderCache() { var a = this; nmw_ChunkCache.call(a); a.$DEFAULT_STATE = null; @@ -1347543,7 +1349750,6 @@ var a = this; nmu_WeightedRandom$Item.call(a); a.$nbtData = null; a.$entityType = null; - a.$this$0277 = null; } function nmt_MobSpawnerBaseLogic$WeightedRandomMinecart__init_0(var_0, var_1, var_2, var_3) { var var_4 = new nmt_MobSpawnerBaseLogic$WeightedRandomMinecart(); @@ -1347559,7 +1349765,6 @@ } main: while (true) { switch ($ptr) { case 0: - $this.$this$0277 = $this$0; nmu_WeightedRandom$Item__init_($this, $weight); $this$0 = $rt_s(2589); $ptr = 1; @@ -1347896,7 +1350101,7 @@ function nmu_BlockPos$1_iterator($this) { var var$1; var$1 = new nmu_BlockPos$1$1; - var$1.$this$0278 = $this; + var$1.$this$0181 = $this; cgcc_AbstractIterator__init_(var$1); var$1.$lastReturned = null; return var$1; @@ -1348063,6 +1350268,26 @@ }} $rt_nativeThread().push($parEnumFacing, $ptr); } + function nmcr_BlockModelRenderer$EnumNeighborInfo_$values() { + var $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + nmcr_BlockModelRenderer$EnumNeighborInfo_$callClinit(); + if ($rt_suspending()) { + break main; + } + return $rt_createArrayFromData(nmcr_BlockModelRenderer$EnumNeighborInfo, [nmcr_BlockModelRenderer$EnumNeighborInfo_DOWN, nmcr_BlockModelRenderer$EnumNeighborInfo_UP, nmcr_BlockModelRenderer$EnumNeighborInfo_NORTH, nmcr_BlockModelRenderer$EnumNeighborInfo_SOUTH, nmcr_BlockModelRenderer$EnumNeighborInfo_WEST, nmcr_BlockModelRenderer$EnumNeighborInfo_EAST]); + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($ptr); + } function nmcr_BlockModelRenderer$EnumNeighborInfo__clinit_() { var var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16, var$17, $ptr, $tmp; $ptr = 0; @@ -1348333,13 +1350558,20 @@ break main; } nmcr_BlockModelRenderer$EnumNeighborInfo_EAST = var$1; - nmcr_BlockModelRenderer$EnumNeighborInfo_$VALUES = $rt_createArrayFromData(nmcr_BlockModelRenderer$EnumNeighborInfo, [nmcr_BlockModelRenderer$EnumNeighborInfo_DOWN, nmcr_BlockModelRenderer$EnumNeighborInfo_UP, nmcr_BlockModelRenderer$EnumNeighborInfo_NORTH, nmcr_BlockModelRenderer$EnumNeighborInfo_SOUTH, nmcr_BlockModelRenderer$EnumNeighborInfo_WEST, var$1]); + $ptr = 9; + case 9: + $tmp = nmcr_BlockModelRenderer$EnumNeighborInfo_$values(); + if ($rt_suspending()) { + break main; + } + var$4 = $tmp; + nmcr_BlockModelRenderer$EnumNeighborInfo_$VALUES = var$4; var$4 = $rt_createArray(nmcr_BlockModelRenderer$EnumNeighborInfo, 6); var$5 = var$4.data; nmcr_BlockModelRenderer$EnumNeighborInfo_field_178282_n = var$4; var$1 = nmu_EnumFacing_DOWN; - $ptr = 9; - case 9: + $ptr = 10; + case 10: $tmp = nmu_EnumFacing_getIndex(var$1); if ($rt_suspending()) { break main; @@ -1348348,8 +1350580,8 @@ var$5[var$3] = nmcr_BlockModelRenderer$EnumNeighborInfo_DOWN; var$4 = nmcr_BlockModelRenderer$EnumNeighborInfo_field_178282_n.data; var$1 = nmu_EnumFacing_UP; - $ptr = 10; - case 10: + $ptr = 11; + case 11: $tmp = nmu_EnumFacing_getIndex(var$1); if ($rt_suspending()) { break main; @@ -1348358,8 +1350590,8 @@ var$4[var$3] = nmcr_BlockModelRenderer$EnumNeighborInfo_UP; var$4 = nmcr_BlockModelRenderer$EnumNeighborInfo_field_178282_n.data; var$1 = nmu_EnumFacing_NORTH; - $ptr = 11; - case 11: + $ptr = 12; + case 12: $tmp = nmu_EnumFacing_getIndex(var$1); if ($rt_suspending()) { break main; @@ -1348368,8 +1350600,8 @@ var$4[var$3] = nmcr_BlockModelRenderer$EnumNeighborInfo_NORTH; var$4 = nmcr_BlockModelRenderer$EnumNeighborInfo_field_178282_n.data; var$1 = nmu_EnumFacing_SOUTH; - $ptr = 12; - case 12: + $ptr = 13; + case 13: $tmp = nmu_EnumFacing_getIndex(var$1); if ($rt_suspending()) { break main; @@ -1348378,8 +1350610,8 @@ var$4[var$3] = nmcr_BlockModelRenderer$EnumNeighborInfo_SOUTH; var$4 = nmcr_BlockModelRenderer$EnumNeighborInfo_field_178282_n.data; var$1 = nmu_EnumFacing_WEST; - $ptr = 13; - case 13: + $ptr = 14; + case 14: $tmp = nmu_EnumFacing_getIndex(var$1); if ($rt_suspending()) { break main; @@ -1348388,8 +1350620,8 @@ var$4[var$3] = nmcr_BlockModelRenderer$EnumNeighborInfo_WEST; var$4 = nmcr_BlockModelRenderer$EnumNeighborInfo_field_178282_n.data; var$1 = nmu_EnumFacing_EAST; - $ptr = 14; - case 14: + $ptr = 15; + case 15: $tmp = nmu_EnumFacing_getIndex(var$1); if ($rt_suspending()) { break main; @@ -1348510,11 +1350742,11 @@ $rt_nativeThread().push($parEnumFacing, $ptr); } function nmcr_BlockModelRenderer$VertexTranslations__clinit_() { - var var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, $ptr, $tmp; + var var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$13 = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop(); + $ptr = $thread.pop();var$14 = $thread.pop();var$13 = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -1348604,16 +1350836,16 @@ nmcr_BlockModelRenderer$VertexTranslations_EAST = var$1; var$8 = $rt_createArray(nmcr_BlockModelRenderer$VertexTranslations, 6); var$9 = var$8.data; - var$2 = nmcr_BlockModelRenderer$VertexTranslations_DOWN; - var$9[0] = var$2; - var$10 = nmcr_BlockModelRenderer$VertexTranslations_UP; - var$9[1] = var$10; - var$11 = nmcr_BlockModelRenderer$VertexTranslations_NORTH; - var$9[2] = var$11; - var$12 = nmcr_BlockModelRenderer$VertexTranslations_SOUTH; - var$9[3] = var$12; - var$13 = nmcr_BlockModelRenderer$VertexTranslations_WEST; - var$9[4] = var$13; + var$10 = nmcr_BlockModelRenderer$VertexTranslations_DOWN; + var$9[0] = var$10; + var$11 = nmcr_BlockModelRenderer$VertexTranslations_UP; + var$9[1] = var$11; + var$12 = nmcr_BlockModelRenderer$VertexTranslations_NORTH; + var$9[2] = var$12; + var$13 = nmcr_BlockModelRenderer$VertexTranslations_SOUTH; + var$9[3] = var$13; + var$14 = nmcr_BlockModelRenderer$VertexTranslations_WEST; + var$9[4] = var$14; var$9[5] = var$1; nmcr_BlockModelRenderer$VertexTranslations_$VALUES = var$8; var$8 = $rt_createArray(nmcr_BlockModelRenderer$VertexTranslations, 6); @@ -1348625,16 +1350857,16 @@ if ($rt_suspending()) { break main; } - var$9[nmu_EnumFacing_DOWN.$index0] = var$2; - var$9[nmu_EnumFacing_UP.$index0] = var$10; - var$9[nmu_EnumFacing_NORTH.$index0] = var$11; - var$9[nmu_EnumFacing_SOUTH.$index0] = var$12; - var$9[nmu_EnumFacing_WEST.$index0] = var$13; + var$9[nmu_EnumFacing_DOWN.$index0] = var$10; + var$9[nmu_EnumFacing_UP.$index0] = var$11; + var$9[nmu_EnumFacing_NORTH.$index0] = var$12; + var$9[nmu_EnumFacing_SOUTH.$index0] = var$13; + var$9[nmu_EnumFacing_WEST.$index0] = var$14; var$9[nmu_EnumFacing_EAST.$index0] = var$1; return; default: $rt_invalidPointer(); }} - $rt_nativeThread().push(var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, $ptr); + $rt_nativeThread().push(var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, $ptr); } function nmcr_BlockModelRenderer$Orientation() { jl_Enum.call(this); @@ -1351264,7 +1353496,7 @@ } function nmcr_ResourcePackListEntry$1() { jl_Object.call(this); - this.$this$0265 = null; + this.$this$0172 = null; } function nmcr_ResourcePackListEntry$1_confirmClicked($this, $flag, $var2) { var $list2, var$4, var$5, $ptr, $tmp; @@ -1351275,7 +1353507,7 @@ } main: while (true) { switch ($ptr) { case 0: - $list2 = $this.$this$0265; + $list2 = $this.$this$0172; var$4 = $list2.$resourcePacksGUI; $ptr = 1; case 1: @@ -1351284,7 +1353516,7 @@ break main; } $list2 = $tmp; - var$4 = $this.$this$0265; + var$4 = $this.$this$0172; var$5 = var$4.$mc26; var$4 = var$4.$resourcePacksGUI; $ptr = 2; @@ -1351295,14 +1353527,14 @@ } if (!$flag) return; - var$4 = $this.$this$0265; + var$4 = $this.$this$0172; $ptr = 3; case 3: ju_ArrayList_remove0($list2, var$4); if ($rt_suspending()) { break main; } - $list2 = $this.$this$0265; + $list2 = $this.$this$0172; ju_ArrayList_add0($list2.$resourcePacksGUI.$selectedResourcePacks, 0, $list2); return; default: $rt_invalidPointer(); @@ -1351578,7 +1353810,6 @@ $localWorld = $tmp; $i = ($localWorld - 1 | 0) - $k | 0; $localWorld = 8 + ($k * 18 | 0) | 0; - $player.$this$0279 = $this; $player.$val$k2 = $k; nmi_Slot__init_0($player, $playerInventory, $i, 8, $localWorld); nmi_Container_addSlotToContainer($this, $player); @@ -1352338,7 +1354569,6 @@ } var nmwgs_StructureStrongholdPieces$3 = $rt_classWithoutFields(); var nmwgs_StructureStrongholdPieces$3_$SwitchMap$net$minecraft$util$EnumFacing = null; - var nmwgs_StructureStrongholdPieces$3_$SwitchMap$net$minecraft$world$gen$structure$StructureStrongholdPieces$Stronghold$Door = null; var nmwgs_StructureStrongholdPieces$3_$clinitCalled = false; function nmwgs_StructureStrongholdPieces$3_$callClinit() { var $ptr = 0; @@ -1352371,21 +1354601,14 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $rt_createIntArray((nmwgs_StructureStrongholdPieces$Stronghold$Door_values()).data.length); - var$2 = var$1.data; - nmwgs_StructureStrongholdPieces$3_$SwitchMap$net$minecraft$world$gen$structure$StructureStrongholdPieces$Stronghold$Door = var$1; - var$2[nmwgs_StructureStrongholdPieces$Stronghold$Door_OPENING.$ordinal] = 1; - var$2[nmwgs_StructureStrongholdPieces$Stronghold$Door_WOOD_DOOR.$ordinal] = 2; - var$2[nmwgs_StructureStrongholdPieces$Stronghold$Door_GRATES.$ordinal] = 3; - var$2[nmwgs_StructureStrongholdPieces$Stronghold$Door_IRON_DOOR.$ordinal] = 4; $ptr = 1; case 1: $tmp = nmu_EnumFacing_values(); if ($rt_suspending()) { break main; } - var$2 = $tmp; - var$2 = $rt_createIntArray(var$2.data.length); + var$1 = $tmp; + var$2 = $rt_createIntArray(var$1.data.length); var$1 = var$2.data; nmwgs_StructureStrongholdPieces$3_$SwitchMap$net$minecraft$util$EnumFacing = var$2; var$1[nmu_EnumFacing_SOUTH.$ordinal] = 1; @@ -1354524,9 +1356747,8 @@ $rt_nativeThread().push($this, $entityplayer, $itemstack, $itemstack2, var$4, var$5, $itemstack1, $aitemstack, var$8, $i, $ptr); } function nmi_ContainerPlayer$1() { - var a = this; nmi_Slot.call(a); - a.$val$k2 = 0; - a.$this$0279 = null; + nmi_Slot.call(this); + this.$val$k2 = 0; } function nmi_ContainerPlayer$1_getSlotStackLimit($this) { return 1; @@ -1355012,81 +1357234,10 @@ nmep_EntityPlayer$EnumStatus_NOT_SAFE = var$1; nmep_EntityPlayer$EnumStatus_$VALUES = $rt_createArrayFromData(nmep_EntityPlayer$EnumStatus, [nmep_EntityPlayer$EnumStatus_OK, nmep_EntityPlayer$EnumStatus_NOT_POSSIBLE_HERE, nmep_EntityPlayer$EnumStatus_NOT_POSSIBLE_NOW, nmep_EntityPlayer$EnumStatus_TOO_FAR_AWAY, nmep_EntityPlayer$EnumStatus_OTHER_PROBLEM, var$1]); } - function cgcc_HashBiMap$KeySet$1() { - cgcc_HashBiMap$Itr.call(this); - this.$this$110 = null; - } + var cgcc_HashBiMap$KeySet$1 = $rt_classWithoutFields(cgcc_HashBiMap$Itr); function cgcc_HashBiMap$KeySet$1_output($this, $entry) { return $entry.$key5; } - var nmb_BlockFlowerPot$1 = $rt_classWithoutFields(); - var nmb_BlockFlowerPot$1_$SwitchMap$net$minecraft$block$BlockPlanks$EnumType = null; - var nmb_BlockFlowerPot$1_$SwitchMap$net$minecraft$block$BlockFlower$EnumFlowerType = null; - var nmb_BlockFlowerPot$1_$clinitCalled = false; - function nmb_BlockFlowerPot$1_$callClinit() { - var $ptr = 0; - if ($rt_resuming()) { - $ptr = $rt_nativeThread().pop(); - } else if (nmb_BlockFlowerPot$1_$clinitCalled) { - return; - } - main: while (true) { switch ($ptr) { - case 0: - nmb_BlockFlowerPot$1_$clinitCalled = true; - $ptr = 1; - case 1: - nmb_BlockFlowerPot$1__clinit_(); - if ($rt_suspending()) { - break main; - } - nmb_BlockFlowerPot$1_$callClinit = $rt_eraseClinit(nmb_BlockFlowerPot$1); - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($ptr); - } - function nmb_BlockFlowerPot$1__clinit_() { - var var$1, var$2, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - $tmp = nmb_BlockFlower$EnumFlowerType_values(); - if ($rt_suspending()) { - break main; - } - var$1 = $tmp; - var$2 = $rt_createIntArray(var$1.data.length); - var$1 = var$2.data; - nmb_BlockFlowerPot$1_$SwitchMap$net$minecraft$block$BlockFlower$EnumFlowerType = var$2; - var$1[nmb_BlockFlower$EnumFlowerType_POPPY.$ordinal] = 1; - var$1[nmb_BlockFlower$EnumFlowerType_BLUE_ORCHID.$ordinal] = 2; - var$1[nmb_BlockFlower$EnumFlowerType_ALLIUM.$ordinal] = 3; - var$1[nmb_BlockFlower$EnumFlowerType_HOUSTONIA.$ordinal] = 4; - var$1[nmb_BlockFlower$EnumFlowerType_RED_TULIP.$ordinal] = 5; - var$1[nmb_BlockFlower$EnumFlowerType_ORANGE_TULIP.$ordinal] = 6; - var$1[nmb_BlockFlower$EnumFlowerType_WHITE_TULIP.$ordinal] = 7; - var$1[nmb_BlockFlower$EnumFlowerType_PINK_TULIP.$ordinal] = 8; - var$1[nmb_BlockFlower$EnumFlowerType_OXEYE_DAISY.$ordinal] = 9; - var$1 = $rt_createIntArray((nmb_BlockPlanks$EnumType_values()).data.length); - var$2 = var$1.data; - nmb_BlockFlowerPot$1_$SwitchMap$net$minecraft$block$BlockPlanks$EnumType = var$1; - var$2[nmb_BlockPlanks$EnumType_OAK.$ordinal] = 1; - var$2[nmb_BlockPlanks$EnumType_SPRUCE.$ordinal] = 2; - var$2[nmb_BlockPlanks$EnumType_BIRCH.$ordinal] = 3; - var$2[nmb_BlockPlanks$EnumType_JUNGLE.$ordinal] = 4; - var$2[nmb_BlockPlanks$EnumType_ACACIA.$ordinal] = 5; - var$2[nmb_BlockPlanks$EnumType_DARK_OAK.$ordinal] = 6; - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push(var$1, var$2, $ptr); - } var nmb_BlockFarmland$1 = $rt_classWithoutFields(); var nmb_BlockFarmland$1_$SwitchMap$net$minecraft$util$EnumFacing = null; var nmb_BlockFarmland$1_$clinitCalled = false; @@ -1355238,6 +1357389,74 @@ nmwb_BiomeColorHelper_field_180289_b = new nmwb_BiomeColorHelper$2; nmwb_BiomeColorHelper_field_180290_c = new nmwb_BiomeColorHelper$3; } + var nmb_BlockFlowerPot$1 = $rt_classWithoutFields(); + var nmb_BlockFlowerPot$1_$SwitchMap$net$minecraft$block$BlockPlanks$EnumType = null; + var nmb_BlockFlowerPot$1_$SwitchMap$net$minecraft$block$BlockFlower$EnumFlowerType = null; + var nmb_BlockFlowerPot$1_$clinitCalled = false; + function nmb_BlockFlowerPot$1_$callClinit() { + var $ptr = 0; + if ($rt_resuming()) { + $ptr = $rt_nativeThread().pop(); + } else if (nmb_BlockFlowerPot$1_$clinitCalled) { + return; + } + main: while (true) { switch ($ptr) { + case 0: + nmb_BlockFlowerPot$1_$clinitCalled = true; + $ptr = 1; + case 1: + nmb_BlockFlowerPot$1__clinit_(); + if ($rt_suspending()) { + break main; + } + nmb_BlockFlowerPot$1_$callClinit = $rt_eraseClinit(nmb_BlockFlowerPot$1); + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($ptr); + } + function nmb_BlockFlowerPot$1__clinit_() { + var var$1, var$2, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + $tmp = nmb_BlockFlower$EnumFlowerType_values(); + if ($rt_suspending()) { + break main; + } + var$1 = $tmp; + var$2 = $rt_createIntArray(var$1.data.length); + var$1 = var$2.data; + nmb_BlockFlowerPot$1_$SwitchMap$net$minecraft$block$BlockFlower$EnumFlowerType = var$2; + var$1[nmb_BlockFlower$EnumFlowerType_POPPY.$ordinal] = 1; + var$1[nmb_BlockFlower$EnumFlowerType_BLUE_ORCHID.$ordinal] = 2; + var$1[nmb_BlockFlower$EnumFlowerType_ALLIUM.$ordinal] = 3; + var$1[nmb_BlockFlower$EnumFlowerType_HOUSTONIA.$ordinal] = 4; + var$1[nmb_BlockFlower$EnumFlowerType_RED_TULIP.$ordinal] = 5; + var$1[nmb_BlockFlower$EnumFlowerType_ORANGE_TULIP.$ordinal] = 6; + var$1[nmb_BlockFlower$EnumFlowerType_WHITE_TULIP.$ordinal] = 7; + var$1[nmb_BlockFlower$EnumFlowerType_PINK_TULIP.$ordinal] = 8; + var$1[nmb_BlockFlower$EnumFlowerType_OXEYE_DAISY.$ordinal] = 9; + var$1 = $rt_createIntArray((nmb_BlockPlanks$EnumType_values()).data.length); + var$2 = var$1.data; + nmb_BlockFlowerPot$1_$SwitchMap$net$minecraft$block$BlockPlanks$EnumType = var$1; + var$2[nmb_BlockPlanks$EnumType_OAK.$ordinal] = 1; + var$2[nmb_BlockPlanks$EnumType_SPRUCE.$ordinal] = 2; + var$2[nmb_BlockPlanks$EnumType_BIRCH.$ordinal] = 3; + var$2[nmb_BlockPlanks$EnumType_JUNGLE.$ordinal] = 4; + var$2[nmb_BlockPlanks$EnumType_ACACIA.$ordinal] = 5; + var$2[nmb_BlockPlanks$EnumType_DARK_OAK.$ordinal] = 6; + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push(var$1, var$2, $ptr); + } var nlevsg_GuiScreenBackupWorldSelection$confirmClicked$lambda$_4_0 = $rt_classWithoutFields(); function nlevsg_GuiScreenBackupWorldSelection$confirmClicked$lambda$_4_0__init_0() { var var_0 = new nlevsg_GuiScreenBackupWorldSelection$confirmClicked$lambda$_4_0(); @@ -1355269,22 +1357488,22 @@ function nmu_BlockPos$1$1() { var a = this; cgcc_AbstractIterator.call(a); a.$lastReturned = null; - a.$this$0278 = null; + a.$this$0181 = null; } function nmu_BlockPos$1$1_computeNext($this) { var var$1, var$2, var$3, var$4, var$5; var$1 = $this.$lastReturned; if (var$1 === null) { - var$1 = $this.$this$0278.$val$blockpos1; + var$1 = $this.$this$0181.$val$blockpos1; $this.$lastReturned = var$1; - } else if (nmu_Vec3i_equals(var$1, $this.$this$0278.$val$blockpos10)) + } else if (nmu_Vec3i_equals(var$1, $this.$this$0181.$val$blockpos10)) var$1 = cgcc_AbstractIterator_endOfData($this); else { var$1 = $this.$lastReturned; var$2 = var$1.$x; var$3 = var$1.$y; var$4 = var$1.$z; - var$1 = $this.$this$0278; + var$1 = $this.$this$0181; var$5 = var$1.$val$blockpos10; if (var$2 < var$5.$x) var$2 = var$2 + 1 | 0; @@ -1355303,9 +1357522,8 @@ return var$1; } function nmep_InventoryPlayer$1() { - var a = this; jl_Object.call(a); - a.$val$itemStackIn = null; - a.$this$0183 = null; + jl_Object.call(this); + this.$val$itemStackIn = null; } function nmep_InventoryPlayer$1_call($this) { var var$1, $ptr, $tmp; @@ -1355544,91 +1357762,6 @@ }} $rt_nativeThread().push($this, $entityplayer, var$2, $ptr); } - var nmi_SlotFurnaceFuel = $rt_classWithoutFields(nmi_Slot); - function nmi_SlotFurnaceFuel_isItemValid($this, $itemstack) { - var var$2, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$2 = $thread.pop();$itemstack = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - $tmp = nmt_TileEntityFurnace_isItemFuel($itemstack); - if ($rt_suspending()) { - break main; - } - var$2 = $tmp; - if (var$2) - return 1; - $ptr = 2; - case 2: - $tmp = nmi_SlotFurnaceFuel_isBucket($itemstack); - if ($rt_suspending()) { - break main; - } - var$2 = $tmp; - return var$2 ? 1 : 0; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $itemstack, var$2, $ptr); - } - function nmi_SlotFurnaceFuel_getItemStackLimit($this, $itemstack) { - var var$2, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$2 = $thread.pop();$itemstack = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - $tmp = nmi_SlotFurnaceFuel_isBucket($itemstack); - if ($rt_suspending()) { - break main; - } - var$2 = $tmp; - if (var$2) - return 1; - $ptr = 2; - case 2: - $tmp = $this.$getSlotStackLimit(); - if ($rt_suspending()) { - break main; - } - var$2 = $tmp; - return var$2; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $itemstack, var$2, $ptr); - } - function nmi_SlotFurnaceFuel_isBucket($parItemStack) { - var var$2, var$3, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();$parItemStack = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - a: { - if ($parItemStack !== null) { - var$2 = $parItemStack.$item; - if (var$2 !== null && var$2 === nmi_Items_bucket) { - var$3 = 1; - break a; - } - } - var$3 = 0; - } - return var$3; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($parItemStack, var$2, var$3, $ptr); - } function oaclb_ToStringBuilder() { var a = this; jl_Object.call(a); a.$buffer8 = null; @@ -1355726,6 +1357859,91 @@ }} $rt_nativeThread().push($ptr); } + var nmi_SlotFurnaceFuel = $rt_classWithoutFields(nmi_Slot); + function nmi_SlotFurnaceFuel_isItemValid($this, $itemstack) { + var var$2, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$2 = $thread.pop();$itemstack = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + $tmp = nmt_TileEntityFurnace_isItemFuel($itemstack); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; + if (var$2) + return 1; + $ptr = 2; + case 2: + $tmp = nmi_SlotFurnaceFuel_isBucket($itemstack); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; + return var$2 ? 1 : 0; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $itemstack, var$2, $ptr); + } + function nmi_SlotFurnaceFuel_getItemStackLimit($this, $itemstack) { + var var$2, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$2 = $thread.pop();$itemstack = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + $tmp = nmi_SlotFurnaceFuel_isBucket($itemstack); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; + if (var$2) + return 1; + $ptr = 2; + case 2: + $tmp = $this.$getSlotStackLimit(); + if ($rt_suspending()) { + break main; + } + var$2 = $tmp; + return var$2; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $itemstack, var$2, $ptr); + } + function nmi_SlotFurnaceFuel_isBucket($parItemStack) { + var var$2, var$3, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();$parItemStack = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + a: { + if ($parItemStack !== null) { + var$2 = $parItemStack.$item; + if (var$2 !== null && var$2 === nmi_Items_bucket) { + var$3 = 1; + break a; + } + } + var$3 = 0; + } + return var$3; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($parItemStack, var$2, var$3, $ptr); + } function nmu_CombatEntry() { var a = this; jl_Object.call(a); a.$damageSrc = null; @@ -1355766,9 +1357984,8 @@ return var$1 !== nmu_DamageSource_outOfWorld ? $this.$fallDistance0 : 3.4028234663852886E38; } function nlevo_WorldRenderer$1() { - var a = this; jl_Object.call(a); - a.$val$afloat = null; - a.$this$0152 = null; + jl_Object.call(this); + this.$val$afloat = null; } function nlevo_WorldRenderer$1_compare($this, var$1, var$2) { var var$3; @@ -1355790,7 +1358007,7 @@ } function cgcc_AbstractMapBasedMultimap$KeySet() { cgcc_Maps$KeySet.call(this); - this.$this$0280 = null; + this.$this$0182 = null; } function cgcc_AbstractMapBasedMultimap$KeySet__init_(var_0, var_1) { var var_2 = new cgcc_AbstractMapBasedMultimap$KeySet(); @@ -1355798,7 +1358015,7 @@ return var_2; } function cgcc_AbstractMapBasedMultimap$KeySet__init_0($this, var$1, $subMap) { - $this.$this$0280 = var$1; + $this.$this$0182 = var$1; cgcc_Maps$KeySet__init_($this, $subMap); } function cgcc_AbstractMapBasedMultimap$KeySet_iterator($this) { @@ -1355826,7 +1358043,7 @@ } $entryIterator = $tmp; var$2 = new cgcc_AbstractMapBasedMultimap$KeySet$1; - var$2.$this$111 = $this; + var$2.$this$110 = $this; var$2.$val$entryIterator = $entryIterator; return var$2; default: $rt_invalidPointer(); @@ -1355835,7 +1358052,7 @@ } function cgcc_AbstractMapBasedMultimap$SortedKeySet() { cgcc_AbstractMapBasedMultimap$KeySet.call(this); - this.$this$0252 = null; + this.$this$0164 = null; } var nlevsg_GuiSlotRelay$1 = $rt_classWithoutFields(); var nlevsg_GuiSlotRelay$1_$SwitchMap$net$lax1dude$eaglercraft$v1_8$sp$relay$RelayQuery$VersionMismatch = null; @@ -1355855,13 +1358072,13 @@ function cgcc_DenseImmutableTable$Row() { var a = this; cgcc_DenseImmutableTable$ImmutableArrayMap.call(a); a.$rowIndex = 0; - a.$this$0219 = null; + a.$this$0141 = null; } function cgcc_DenseImmutableTable$Row_keyToIndex($this) { - return $this.$this$0219.$columnKeyToIndex; + return $this.$this$0141.$columnKeyToIndex; } function cgcc_DenseImmutableTable$Row_getValue($this, $keyIndex) { - return $this.$this$0219.$values57.data[$this.$rowIndex].data[$keyIndex]; + return $this.$this$0141.$values56.data[$this.$rowIndex].data[$keyIndex]; } function cgcc_DenseImmutableTable$Row_isPartialView($this) { return 1; @@ -1356879,7 +1359096,7 @@ a.$state = null; a.$isPowered1 = 0; a.$field_150657_g = null; - a.$this$0281 = null; + a.$this$0183 = null; } function nmb_BlockRailBase$Rail__init_0(var_0, var_1, var_2, var_3) { var var_4 = new nmb_BlockRailBase$Rail(); @@ -1356895,7 +1359112,7 @@ } main: while (true) { switch ($ptr) { case 0: - $this.$this$0281 = $this$0; + $this.$this$0183 = $this$0; $this.$field_150657_g = cgcc_Lists_newArrayList(); $this.$world0 = $worldIn; $this.$pos3 = $pos; @@ -1356938,54 +1359155,53 @@ main: while (true) { switch ($ptr) { case 0: ju_ArrayList_clear($this.$field_150657_g); - nmb_BlockRailBase$1_$callClinit(); - switch (nmb_BlockRailBase$1_$SwitchMap$net$minecraft$block$BlockRailBase$EnumRailDirection.data[$parEnumRailDirection.$ordinal]) { - case 1: + switch ($parEnumRailDirection.$ordinal) { + case 0: $parEnumRailDirection = $this.$field_150657_g; var$2 = $this.$pos3; $ptr = 1; continue main; - case 2: + case 1: $parEnumRailDirection = $this.$field_150657_g; var$2 = $this.$pos3; $ptr = 5; continue main; - case 3: + case 2: $parEnumRailDirection = $this.$field_150657_g; var$2 = $this.$pos3; $ptr = 9; continue main; - case 4: + case 3: $parEnumRailDirection = $this.$field_150657_g; var$2 = $this.$pos3; $ptr = 14; continue main; - case 5: + case 4: $parEnumRailDirection = $this.$field_150657_g; var$2 = $this.$pos3; $ptr = 19; continue main; - case 6: + case 5: $parEnumRailDirection = $this.$field_150657_g; var$2 = $this.$pos3; $ptr = 24; continue main; - case 7: + case 6: $parEnumRailDirection = $this.$field_150657_g; var$2 = $this.$pos3; $ptr = 29; continue main; - case 8: + case 7: $parEnumRailDirection = $this.$field_150657_g; var$2 = $this.$pos3; $ptr = 33; continue main; - case 9: + case 8: $parEnumRailDirection = $this.$field_150657_g; var$2 = $this.$pos3; $ptr = 37; continue main; - case 10: + case 9: $parEnumRailDirection = $this.$field_150657_g; var$2 = $this.$pos3; $ptr = 41; @@ -1357383,7 +1359599,7 @@ continue main; } $blockpos = new nmb_BlockRailBase$Rail; - var$4 = $this.$this$0281; + var$4 = $this.$this$0183; ju_Objects_requireNonNull(var$4); var$5 = $this.$world0; $ptr = 4; @@ -1357407,7 +1359623,7 @@ continue main; } $pos = new nmb_BlockRailBase$Rail; - var$4 = $this.$this$0281; + var$4 = $this.$this$0183; ju_Objects_requireNonNull(var$4); var$5 = $this.$world0; $ptr = 7; @@ -1357437,7 +1359653,7 @@ return $blockpos; } $blockpos = new nmb_BlockRailBase$Rail; - var$4 = $this.$this$0281; + var$4 = $this.$this$0183; ju_Objects_requireNonNull(var$4); var$5 = $this.$world0; $ptr = 8; @@ -1358065,11 +1360281,11 @@ } function nmem_EntityGuardian$1() { jl_Object.call(this); - this.$this$055 = null; + this.$this$031 = null; } function nmem_EntityGuardian$1_apply($this, var$1) { var$1 = var$1; - return nme_Entity_getDistanceSqToEntity($this.$this$055, var$1) < 2500.0 && nmsm_ItemInWorldManager_survivalOrAdventure(var$1.$theItemInWorldManager) ? 1 : 0; + return nme_Entity_getDistanceSqToEntity($this.$this$031, var$1) < 2500.0 && nmsm_ItemInWorldManager_survivalOrAdventure(var$1.$theItemInWorldManager) ? 1 : 0; } function nlevoedg_GuiShadersNotSupported() { var a = this; nmcg_GuiScreen.call(a); @@ -1359157,6 +1361373,40 @@ return var_0; } function nPs_Matches__init_($this) {} + var nlevsg_GuiScreenChangeRelayTimeout$1 = $rt_classWithoutFields(nlevsg_GuiSlider2); + function nlevsg_GuiScreenChangeRelayTimeout$1_mouseDragged($this, $par1Minecraft, $par2, $par3) { + var $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();$par3 = $thread.pop();$par2 = $thread.pop();$par1Minecraft = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + nlevsg_GuiSlider2_mouseDragged($this, $par1Minecraft, $par2, $par3); + if ($rt_suspending()) { + break main; + } + $par2 = $this.$sliderValue * 14.0 + 1.0 | 0; + $par1Minecraft = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($par1Minecraft); + jl_AbstractStringBuilder_append1($par1Minecraft, $par2); + jl_AbstractStringBuilder_append0($par1Minecraft, 115); + $ptr = 2; + case 2: + $tmp = jl_AbstractStringBuilder_toString($par1Minecraft); + if ($rt_suspending()) { + break main; + } + $par1Minecraft = $tmp; + $this.$displayString = $par1Minecraft; + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $par1Minecraft, $par2, $par3, $ptr); + } function nlevoedg_GuiShaderConfigList() { var a = this; nmcg_GuiListExtended.call(a); a.$screen0 = null; @@ -1359294,20 +1361544,20 @@ if ($rt_suspending()) { break main; } - var$3 = $tmp; + var$4 = $tmp; $key = ju_ArrayList__init_0(); - var$4 = 0; - var$5 = 46; + var$5 = 0; + var$6 = 46; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); $ptr = 6; case 6: - jl_AbstractStringBuilder_append(var$2, var$3); + jl_AbstractStringBuilder_append(var$2, var$4); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append0(var$2, var$5); - jl_AbstractStringBuilder_append1(var$2, var$4); + jl_AbstractStringBuilder_append0(var$2, var$6); + jl_AbstractStringBuilder_append1(var$2, var$5); $ptr = 7; case 7: $tmp = jl_AbstractStringBuilder_toString(var$2); @@ -1359315,34 +1361565,34 @@ break main; } var$2 = $tmp; - var$6 = $rt_createArray(jl_Object, 0); + var$7 = $rt_createArray(jl_Object, 0); $ptr = 8; case 8: - $tmp = nmcr_I18n_format(var$2, var$6); + $tmp = nmcr_I18n_format(var$2, var$7); if ($rt_suspending()) { break main; } var$2 = $tmp; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); $ptr = 9; case 9: - jl_AbstractStringBuilder_append(var$7, var$3); + jl_AbstractStringBuilder_append(var$3, var$4); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append0(var$7, var$5); - jl_AbstractStringBuilder_append1(var$7, var$4); + jl_AbstractStringBuilder_append0(var$3, var$6); + jl_AbstractStringBuilder_append1(var$3, var$5); $ptr = 10; case 10: - $tmp = jl_AbstractStringBuilder_toString(var$7); + $tmp = jl_AbstractStringBuilder_toString(var$3); if ($rt_suspending()) { break main; } - var$7 = $tmp; + var$3 = $tmp; $ptr = 11; case 11: - $tmp = jl_String_equals(var$2, var$7); + $tmp = jl_String_equals(var$2, var$3); if ($rt_suspending()) { break main; } @@ -1359351,16 +1361601,16 @@ $ptr = 18; continue main; } - var$8 = var$4 + 1 | 0; + var$8 = var$5 + 1 | 0; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); $ptr = 12; case 12: - jl_AbstractStringBuilder_append(var$2, var$3); + jl_AbstractStringBuilder_append(var$2, var$4); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append0(var$2, var$5); + jl_AbstractStringBuilder_append0(var$2, var$6); jl_AbstractStringBuilder_append1(var$2, var$8); $ptr = 13; case 13: @@ -1359369,34 +1361619,34 @@ break main; } var$2 = $tmp; - var$6 = $rt_createArray(jl_Object, 0); + var$7 = $rt_createArray(jl_Object, 0); $ptr = 14; case 14: - $tmp = nmcr_I18n_format(var$2, var$6); + $tmp = nmcr_I18n_format(var$2, var$7); if ($rt_suspending()) { break main; } var$2 = $tmp; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); $ptr = 15; case 15: - jl_AbstractStringBuilder_append(var$7, var$3); + jl_AbstractStringBuilder_append(var$3, var$4); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append0(var$7, var$5); - jl_AbstractStringBuilder_append1(var$7, var$8); + jl_AbstractStringBuilder_append0(var$3, var$6); + jl_AbstractStringBuilder_append1(var$3, var$8); $ptr = 16; case 16: - $tmp = jl_AbstractStringBuilder_toString(var$7); + $tmp = jl_AbstractStringBuilder_toString(var$3); if ($rt_suspending()) { break main; } - var$7 = $tmp; + var$3 = $tmp; $ptr = 17; case 17: - $tmp = jl_String_equals(var$2, var$7); + $tmp = jl_String_equals(var$2, var$3); if ($rt_suspending()) { break main; } @@ -1359415,7 +1361665,7 @@ if ($rt_suspending()) { break main; } - var$4 = var$4 + 1 | 0; + var$5 = var$5 + 1 | 0; var$2 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$2); $ptr = 6; @@ -1359426,37 +1361676,51 @@ break main; } var$2 = nmu_EnumChatFormatting_GRAY; - var$3 = nmu_EnumChatFormatting_ITALIC; - var$7 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$7); $ptr = 20; case 20: - jl_AbstractStringBuilder_append(var$7, var$2); + $tmp = jl_String_valueOf(var$2); if ($rt_suspending()) { break main; } + var$2 = $tmp; + var$3 = nmu_EnumChatFormatting_ITALIC; $ptr = 21; case 21: - jl_AbstractStringBuilder_append(var$7, var$3); + $tmp = jl_String_valueOf(var$3); if ($rt_suspending()) { break main; } - var$2 = $rt_s(9468); + var$3 = $tmp; + var$4 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$4); $ptr = 22; case 22: - jl_AbstractStringBuilder_append(var$7, var$2); + jl_AbstractStringBuilder_append(var$4, var$2); if ($rt_suspending()) { break main; } $ptr = 23; case 23: - $tmp = jl_AbstractStringBuilder_toString(var$7); + jl_AbstractStringBuilder_append(var$4, var$3); + if ($rt_suspending()) { + break main; + } + var$2 = $rt_s(9468); + $ptr = 24; + case 24: + jl_AbstractStringBuilder_append(var$4, var$2); + if ($rt_suspending()) { + break main; + } + $ptr = 25; + case 25: + $tmp = jl_AbstractStringBuilder_toString(var$4); if ($rt_suspending()) { break main; } var$2 = $tmp; - $ptr = 24; - case 24: + $ptr = 26; + case 26: ju_ArrayList_add($key, var$2); if ($rt_suspending()) { break main; @@ -1359482,16 +1361746,21 @@ break main; } if (!$state) { - $on = $rt_s(4636); - var$4 = $rt_createArray(jl_Object, 0); $ptr = 2; continue main; } - $off = $rt_s(4637); - var$4 = $rt_createArray(jl_Object, 0); - $ptr = 6; + $ptr = 7; continue main; case 2: + $tmp = jl_String_valueOf($off); + if ($rt_suspending()) { + break main; + } + $off = $tmp; + $on = $rt_s(4636); + var$4 = $rt_createArray(jl_Object, 0); + $ptr = 3; + case 3: $tmp = nmcr_I18n_format($on, var$4); if ($rt_suspending()) { break main; @@ -1359499,27 +1361768,36 @@ $on = $tmp; var$5 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$5); - $ptr = 3; - case 3: - jl_AbstractStringBuilder_append(var$5, $off); - if ($rt_suspending()) { - break main; - } $ptr = 4; case 4: - jl_AbstractStringBuilder_append(var$5, $on); + jl_AbstractStringBuilder_append(var$5, $off); if ($rt_suspending()) { break main; } $ptr = 5; case 5: + jl_AbstractStringBuilder_append(var$5, $on); + if ($rt_suspending()) { + break main; + } + $ptr = 6; + case 6: $tmp = jl_AbstractStringBuilder_toString(var$5); if ($rt_suspending()) { break main; } $on = $tmp; return $on; - case 6: + case 7: + $tmp = jl_String_valueOf($on); + if ($rt_suspending()) { + break main; + } + $on = $tmp; + $off = $rt_s(4637); + var$4 = $rt_createArray(jl_Object, 0); + $ptr = 8; + case 8: $tmp = nmcr_I18n_format($off, var$4); if ($rt_suspending()) { break main; @@ -1359527,20 +1361805,20 @@ $off = $tmp; var$5 = new jl_StringBuilder; jl_AbstractStringBuilder__init_(var$5); - $ptr = 7; - case 7: + $ptr = 9; + case 9: jl_AbstractStringBuilder_append(var$5, $on); if ($rt_suspending()) { break main; } - $ptr = 8; - case 8: + $ptr = 10; + case 10: jl_AbstractStringBuilder_append(var$5, $off); if ($rt_suspending()) { break main; } - $ptr = 9; - case 9: + $ptr = 11; + case 11: $tmp = jl_AbstractStringBuilder_toString(var$5); if ($rt_suspending()) { break main; @@ -1359695,7 +1361973,7 @@ } $screen = $this.$list0; $opts = new nlevoedg_GuiShaderConfigList$ListEntryPackInfo; - $opts.$this$0282 = $this; + $opts.$this$0184 = $this; $ptr = 4; case 4: ju_ArrayList_add($screen, $opts); @@ -1359703,7 +1361981,7 @@ break main; } $screen = $this.$list0; - $opts = nlevoedg_GuiShaderConfigList$ListEntrySpacing__init_($this); + $opts = new nlevoedg_GuiShaderConfigList$ListEntrySpacing; $ptr = 5; case 5: ju_ArrayList_add($screen, $opts); @@ -1359711,7 +1361989,7 @@ break main; } $screen = $this.$list0; - $opts = nlevoedg_GuiShaderConfigList$ListEntrySpacing__init_($this); + $opts = new nlevoedg_GuiShaderConfigList$ListEntrySpacing; $ptr = 6; case 6: ju_ArrayList_add($screen, $opts); @@ -1359802,7 +1362080,6 @@ break main; } var$12 = $tmp; - var$11.$this$0283 = $this; var$11.$val$conf = $conf; nlevoedg_GuiShaderConfigList$ShaderOption__init_(var$11, $screen, var$12); var$11.$originalValue = var$11.$val$conf.$wavingBlocks; @@ -1359870,7 +1362147,6 @@ break main; } var$12 = $tmp; - $screen.$this$0284 = $this; $screen.$val$conf0 = $conf; nlevoedg_GuiShaderConfigList$ShaderOption__init_($screen, var$11, var$12); $screen.$originalValue0 = $screen.$val$conf0.$dynamicLights; @@ -1359932,7 +1362208,6 @@ break main; } var$12 = $tmp; - $screen.$this$0285 = $this; $screen.$val$conf1 = $conf; nlevoedg_GuiShaderConfigList$ShaderOption__init_($screen, var$11, var$12); $screen.$originalValue1 = $screen.$val$conf1.$ssao; @@ -1359988,7 +1362263,6 @@ break main; } var$12 = $tmp; - $screen.$this$0286 = $this; $screen.$val$conf2 = $conf; nlevoedg_GuiShaderConfigList$ShaderOption__init_($screen, var$11, var$12); $screen.$originalValue2 = $screen.$val$conf2.$shadowsSun; @@ -1360038,7 +1362312,6 @@ break main; } var$12 = $tmp; - $screen.$this$0287 = $this; $screen.$val$conf3 = $conf; nlevoedg_GuiShaderConfigList$ShaderOption__init_($screen, var$11, var$12); $screen.$originalValue3 = $screen.$val$conf3.$useEnvMap; @@ -1360082,7 +1362355,6 @@ break main; } var$12 = $tmp; - $screen.$this$0288 = $this; $screen.$val$conf4 = $conf; nlevoedg_GuiShaderConfigList$ShaderOption__init_($screen, var$11, var$12); $screen.$originalValue4 = $screen.$val$conf4.$lensDistortion; @@ -1360120,7 +1362392,6 @@ break main; } var$12 = $tmp; - $screen.$this$0289 = $this; $screen.$val$conf5 = $conf; nlevoedg_GuiShaderConfigList$ShaderOption__init_($screen, var$11, var$12); $screen.$originalValue5 = $screen.$val$conf5.$lensFlares; @@ -1360214,7 +1362485,6 @@ break main; } var$12 = $tmp; - $screen.$this$0290 = $this; $screen.$val$conf6 = $conf; nlevoedg_GuiShaderConfigList$ShaderOption__init_($screen, var$11, var$12); $screen.$originalValue6 = $screen.$val$conf6.$fxaa0; @@ -1360240,7 +1362510,6 @@ break main; } var$12 = $tmp; - $screen.$this$0291 = $this; $screen.$val$conf7 = $conf; nlevoedg_GuiShaderConfigList$ShaderOption__init_($screen, var$11, var$12); $screen.$originalValue7 = $screen.$val$conf7.$shadowsColored; @@ -1360296,7 +1362565,6 @@ break main; } var$12 = $tmp; - $screen.$this$0292 = $this; $screen.$val$conf8 = $conf; nlevoedg_GuiShaderConfigList$ShaderOption__init_($screen, var$11, var$12); $screen.$originalValue8 = $screen.$val$conf8.$shadowsSmoothed; @@ -1360346,7 +1362614,6 @@ break main; } var$12 = $tmp; - $screen.$this$0293 = $this; $screen.$val$conf9 = $conf; nlevoedg_GuiShaderConfigList$ShaderOption__init_($screen, var$11, var$12); $screen.$originalValue9 = $screen.$val$conf9.$realisticWater; @@ -1360390,7 +1362657,6 @@ break main; } var$12 = $tmp; - $screen.$this$0294 = $this; $screen.$val$conf10 = $conf; nlevoedg_GuiShaderConfigList$ShaderOption__init_($screen, var$11, var$12); $screen.$originalValue10 = $screen.$val$conf10.$bloom; @@ -1360428,7 +1362694,9 @@ break main; } var$12 = $tmp; - nlevoedg_GuiShaderConfigList$13__init_($screen, $this, var$11, var$12, $conf); + $screen.$val$conf11 = $conf; + nlevoedg_GuiShaderConfigList$ShaderOption__init_($screen, var$11, var$12); + $screen.$originalValue11 = $screen.$val$conf11.$lightShafts; $ptr = 50; case 50: ju_ArrayList_add($opts, $screen); @@ -1360465,7 +1362733,9 @@ break main; } var$12 = $tmp; - nlevoedg_GuiShaderConfigList$14__init_($screen, $this, var$11, var$12, $conf); + $screen.$val$conf12 = $conf; + nlevoedg_GuiShaderConfigList$ShaderOption__init_($screen, var$11, var$12); + $screen.$originalValue12 = $screen.$val$conf12.$raytracing; $ptr = 54; case 54: ju_ArrayList_add($opts, $screen); @@ -1360674,43 +1362944,6 @@ }} $rt_nativeThread().push(var$1, var$2, $ptr); } - function nlevsg_GuiScreenChangeRelayTimeout$1() { - nlevsg_GuiSlider2.call(this); - this.$this$0272 = null; - } - function nlevsg_GuiScreenChangeRelayTimeout$1_mouseDragged($this, $par1Minecraft, $par2, $par3) { - var $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$par3 = $thread.pop();$par2 = $thread.pop();$par1Minecraft = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - nlevsg_GuiSlider2_mouseDragged($this, $par1Minecraft, $par2, $par3); - if ($rt_suspending()) { - break main; - } - $par2 = $this.$sliderValue * 14.0 + 1.0 | 0; - $par1Minecraft = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($par1Minecraft); - jl_AbstractStringBuilder_append1($par1Minecraft, $par2); - jl_AbstractStringBuilder_append0($par1Minecraft, 115); - $ptr = 2; - case 2: - $tmp = jl_AbstractStringBuilder_toString($par1Minecraft); - if ($rt_suspending()) { - break main; - } - $par1Minecraft = $tmp; - $this.$displayString = $par1Minecraft; - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $par1Minecraft, $par2, $par3, $ptr); - } var nlevsg_GuiScreenNameWorldImport$updateScreen$lambda$_1_0 = $rt_classWithoutFields(); function nlevsg_GuiScreenNameWorldImport$updateScreen$lambda$_1_0__init_0() { var var_0 = new nlevsg_GuiScreenNameWorldImport$updateScreen$lambda$_1_0(); @@ -1360824,11 +1363057,11 @@ return var_2; } function nmcg_GuiCustomizeWorldScreen__init_($this, $parGuiScreen, $parString1) { - var var$3, $ptr, $tmp; + var $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$3 = $thread.pop();$parString1 = $thread.pop();$parGuiScreen = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();$parString1 = $thread.pop();$parGuiScreen = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -1360845,9 +1363078,7 @@ $this.$field_175338_A = 0; $this.$field_175339_B = 0; $this.$field_175340_C = 0; - var$3 = new nmcg_GuiCustomizeWorldScreen$1; - var$3.$this$0295 = $this; - $this.$field_175332_D = var$3; + $this.$field_175332_D = new nmcg_GuiCustomizeWorldScreen$1; $this.$field_175334_E = nmwg_ChunkProviderSettings$Factory__init_0(); $this.$random7 = new ju_Random; $this.$field_175343_i = $parGuiScreen; @@ -1360860,7 +1363091,7 @@ return; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $parGuiScreen, $parString1, var$3, $ptr); + $rt_nativeThread().push($this, $parGuiScreen, $parString1, $ptr); } function nmcg_GuiCustomizeWorldScreen_initGui($this) { var $i, $j, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, $ptr, $tmp; @@ -1361081,7 +1363312,7 @@ var$8 = 160; var$9 = 50; var$10 = 20; - var$5 = $rt_s(5636); + var$5 = $rt_s(5635); var$4 = $rt_createArray(jl_Object, 0); $ptr = 21; case 21: @@ -1361111,7 +1363342,7 @@ var$8 = 160; var$9 = 50; var$10 = 20; - var$5 = $rt_s(5637); + var$5 = $rt_s(5636); var$4 = $rt_createArray(jl_Object, 0); $ptr = 24; case 24: @@ -1365160,7 +1367391,7 @@ var$1 = $tmp; $this.$field_146391_r = var$1; var$1 = new nmcg_GuiCreateFlatWorld$Details; - var$1.$this$0296 = $this; + var$1.$this$0185 = $this; var$3 = $this.$mc15; var$4 = $this.$width7; var$5 = $this.$height7; @@ -1365604,25 +1367835,10 @@ }} $rt_nativeThread().push($this, $i, $j, $f, var$4, var$5, $k, var$7, var$8, $ptr); } - var nmnps_S42PacketCombatEvent$1 = $rt_classWithoutFields(); - var nmnps_S42PacketCombatEvent$1_$SwitchMap$net$minecraft$network$play$server$S42PacketCombatEvent$Event = null; - function nmnps_S42PacketCombatEvent$1_$callClinit() { - nmnps_S42PacketCombatEvent$1_$callClinit = $rt_eraseClinit(nmnps_S42PacketCombatEvent$1); - nmnps_S42PacketCombatEvent$1__clinit_(); - } - function nmnps_S42PacketCombatEvent$1__clinit_() { - var var$1, var$2; - var$1 = $rt_createIntArray((nmnps_S42PacketCombatEvent$Event_values()).data.length); - var$2 = var$1.data; - nmnps_S42PacketCombatEvent$1_$SwitchMap$net$minecraft$network$play$server$S42PacketCombatEvent$Event = var$1; - var$2[nmnps_S42PacketCombatEvent$Event_END_COMBAT.$ordinal] = 1; - var$2[nmnps_S42PacketCombatEvent$Event_ENTITY_DIED.$ordinal] = 2; - } function nlevo_WorldRenderer$State() { var a = this; jl_Object.call(a); a.$stateRawBuffer = null; a.$stateVertexFormat = null; - a.$this$0297 = null; } function nlevo_WorldRenderer$State__init_(var_0, var_1, var_2) { var var_3 = new nlevo_WorldRenderer$State(); @@ -1365630,7 +1367846,6 @@ return var_3; } function nlevo_WorldRenderer$State__init_0($this, $this$0, $parArrayOfInt, $parVertexFormat) { - $this.$this$0297 = $this$0; $this.$stateRawBuffer = $parArrayOfInt; $this.$stateVertexFormat = $parVertexFormat; } @@ -1365744,7 +1367959,7 @@ a.$val$parFloat5 = 0.0; a.$val$parFloat6 = 0.0; a.$val$parFloat7 = 0.0; - a.$this$0163 = null; + a.$this$0107 = null; } function nmcrel_LayerArmorBase$1_draw($this, $pass) { var var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, $ptr, $tmp; @@ -1365821,7 +1368036,7 @@ break main; } $pass = $this.$val$modelbase; - var$9 = $this.$this$0163.$renderer0; + var$9 = $this.$this$0107.$renderer0; $ptr = 8; case 8: $tmp = var$9.$getMainModel1(); @@ -1365841,8 +1368056,8 @@ if ($rt_suspending()) { break main; } - nmcrel_LayerBipedArmor_func_177179_a($this.$this$0163, $this.$val$modelbase, $this.$val$parInt1); - $pass = $this.$this$0163; + nmcrel_LayerBipedArmor_func_177179_a($this.$this$0107, $this.$val$modelbase, $this.$val$parInt1); + $pass = $this.$this$0107; var$9 = $this.$val$entitylivingbaseIn; var$10 = $this.$val$modelbase; var$2 = $this.$val$armorSlot; @@ -1366253,7 +1368468,7 @@ function nlevoedg_GuiShaderConfigList$ListEntryHeader() { var a = this; jl_Object.call(a); a.$text4 = null; - a.$this$0298 = null; + a.$this$0186 = null; } function nlevoedg_GuiShaderConfigList$ListEntryHeader__init_(var_0, var_1) { var var_2 = new nlevoedg_GuiShaderConfigList$ListEntryHeader(); @@ -1366261,7 +1368476,7 @@ return var_2; } function nlevoedg_GuiShaderConfigList$ListEntryHeader__init_0($this, var$1, $text) { - $this.$this$0298 = var$1; + $this.$this$0186 = var$1; $this.$text4 = $text; } function nlevoedg_GuiShaderConfigList$ListEntryHeader_setSelected($this, $var1, $var2, $var3) {} @@ -1366274,7 +1368489,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$9 = $this.$this$0298.$screen0; + var$9 = $this.$this$0186.$screen0; var$10 = var$9.$fontRendererObj0; var$11 = $this.$text4; $entryID = $y + 10 | 0; @@ -1366296,7 +1368511,7 @@ function nlevoedg_GuiShaderConfigList$ListEntryHeader_mouseReleased($this, $var1, $var2, $var3, $var4, $var5, $var6) {} function nlevoedg_GuiShaderConfigList$ListEntryPackInfo() { jl_Object.call(this); - this.$this$0282 = null; + this.$this$0184 = null; } function nlevoedg_GuiShaderConfigList$ListEntryPackInfo_drawEntry($this, $entryID, $x2, $y, $getListWidth, $var5, $var6, $var7, $var8) { var $mc, $info, $packNameString, $strWidth, $descLines, var$14, var$15, var$16, $i, $l, var$19, var$20, var$21, var$22, $ptr, $tmp; @@ -1366322,7 +1368537,7 @@ $strWidth = 210; if ($strWidth <= ($getListWidth * 2 | 0)) $x2 = $x2 + (($getListWidth - $strWidth | 0) / 2 | 0) | 0; - $descLines = $this.$this$0282.$screen0; + $descLines = $this.$this$0184.$screen0; var$14 = $mc.$fontRendererObj; $entryID = $x2 + 38 | 0; $getListWidth = $y + 3 | 0; @@ -1366333,7 +1368548,7 @@ if ($rt_suspending()) { break main; } - $descLines = $this.$this$0282.$screen0; + $descLines = $this.$this$0184.$screen0; var$14 = $mc.$fontRendererObj; $packNameString = $info.$author; var$15 = new jl_StringBuilder; @@ -1366366,7 +1368581,7 @@ if ($rt_suspending()) { break main; } - $descLines = $this.$this$0282.$screen0; + $descLines = $this.$this$0184.$screen0; var$16 = $mc.$fontRendererObj; var$14 = $info.$vers0; $packNameString = new jl_StringBuilder; @@ -1366422,7 +1368637,7 @@ $ptr = 13; continue main; } - var$14 = $this.$this$0282.$screen0; + var$14 = $this.$this$0184.$screen0; $packNameString = $mc.$fontRendererObj; $ptr = 17; continue main; @@ -1366483,7 +1368698,7 @@ $ptr = 13; continue main; } - var$14 = $this.$this$0282.$screen0; + var$14 = $this.$this$0184.$screen0; $packNameString = $mc.$fontRendererObj; $ptr = 17; continue main; @@ -1366496,18 +1368711,7 @@ return 0; } function nlevoedg_GuiShaderConfigList$ListEntryPackInfo_mouseReleased($this, $var1, $var2, $var3, $var4, $var5, $var6) {} - function nlevoedg_GuiShaderConfigList$ListEntrySpacing() { - jl_Object.call(this); - this.$this$0299 = null; - } - function nlevoedg_GuiShaderConfigList$ListEntrySpacing__init_(var_0) { - var var_1 = new nlevoedg_GuiShaderConfigList$ListEntrySpacing(); - nlevoedg_GuiShaderConfigList$ListEntrySpacing__init_0(var_1, var_0); - return var_1; - } - function nlevoedg_GuiShaderConfigList$ListEntrySpacing__init_0($this, var$1) { - $this.$this$0299 = var$1; - } + var nlevoedg_GuiShaderConfigList$ListEntrySpacing = $rt_classWithoutFields(); function nlevoedg_GuiShaderConfigList$ListEntrySpacing_setSelected($this, $var1, $var2, $var3) {} function nlevoedg_GuiShaderConfigList$ListEntrySpacing_drawEntry($this, $var1, $var2, $var3, $var4, $var5, $var6, $var7, $var8) {} function nlevoedg_GuiShaderConfigList$ListEntrySpacing_mousePressed($this, $var1, $var2, $var3, $var4, $var5, $var6) { @@ -1366527,7 +1368731,6 @@ var a = this; nlevoedg_GuiShaderConfigList$ShaderOption.call(a); a.$originalValue = 0; a.$val$conf = null; - a.$this$0283 = null; } function nlevoedg_GuiShaderConfigList$1_getDisplayValue($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1366570,7 +1368773,6 @@ var a = this; nlevoedg_GuiShaderConfigList$ShaderOption.call(a); a.$originalValue0 = 0; a.$val$conf0 = null; - a.$this$0284 = null; } function nlevoedg_GuiShaderConfigList$2_getDisplayValue($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1366613,7 +1368815,6 @@ var a = this; nlevoedg_GuiShaderConfigList$ShaderOption.call(a); a.$originalValue1 = 0; a.$val$conf1 = null; - a.$this$0285 = null; } function nlevoedg_GuiShaderConfigList$3_getDisplayValue($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1366656,74 +1368857,86 @@ var a = this; nlevoedg_GuiShaderConfigList$ShaderOption.call(a); a.$originalValue2 = 0; a.$val$conf2 = null; - a.$this$0286 = null; } function nlevoedg_GuiShaderConfigList$4_getDisplayValue($this) { - var var$1, var$2, var$3, var$4, $ptr, $tmp; + var var$1, var$2, var$3, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$val$conf2.$shadowsSun; - if (var$1) { + if ($this.$val$conf2.$shadowsSun) { $ptr = 1; continue main; } - $ptr = 4; + $ptr = 5; continue main; case 1: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } - var$2 = nmu_EnumChatFormatting_YELLOW; - var$3 = 1 << (var$1 + 3 | 0); - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); + var$1 = nmu_EnumChatFormatting_YELLOW; $ptr = 2; case 2: - jl_AbstractStringBuilder_append(var$4, var$2); + $tmp = jl_String_valueOf(var$1); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append1(var$4, var$3); + var$1 = $tmp; + var$2 = 1 << ($this.$val$conf2.$shadowsSun + 3 | 0); + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); $ptr = 3; case 3: - $tmp = jl_AbstractStringBuilder_toString(var$4); + jl_AbstractStringBuilder_append(var$3, var$1); if ($rt_suspending()) { break main; } - var$2 = $tmp; - return var$2; + jl_AbstractStringBuilder_append1(var$3, var$2); + $ptr = 4; case 4: + $tmp = jl_AbstractStringBuilder_toString(var$3); + if ($rt_suspending()) { + break main; + } + var$1 = $tmp; + return var$1; + case 5: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } - var$2 = nmu_EnumChatFormatting_RED; - var$4 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$4); - $ptr = 5; - case 5: - jl_AbstractStringBuilder_append(var$4, var$2); - if ($rt_suspending()) { - break main; - } - jl_AbstractStringBuilder_append0(var$4, 48); + var$1 = nmu_EnumChatFormatting_RED; $ptr = 6; case 6: - $tmp = jl_AbstractStringBuilder_toString(var$4); + $tmp = jl_String_valueOf(var$1); if ($rt_suspending()) { break main; } - var$2 = $tmp; - return var$2; + var$1 = $tmp; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + $ptr = 7; + case 7: + jl_AbstractStringBuilder_append(var$3, var$1); + if ($rt_suspending()) { + break main; + } + jl_AbstractStringBuilder_append0(var$3, 48); + $ptr = 8; + case 8: + $tmp = jl_AbstractStringBuilder_toString(var$3); + if ($rt_suspending()) { + break main; + } + var$1 = $tmp; + return var$1; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, $ptr); + $rt_nativeThread().push($this, var$1, var$2, var$3, $ptr); } function nlevoedg_GuiShaderConfigList$4_toggleOption($this, $button, $dir) { $button = $this.$val$conf2; @@ -1366736,7 +1368949,6 @@ var a = this; nlevoedg_GuiShaderConfigList$ShaderOption.call(a); a.$originalValue3 = 0; a.$val$conf3 = null; - a.$this$0287 = null; } function nlevoedg_GuiShaderConfigList$5_getDisplayValue($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1366779,7 +1368991,6 @@ var a = this; nlevoedg_GuiShaderConfigList$ShaderOption.call(a); a.$originalValue4 = 0; a.$val$conf4 = null; - a.$this$0288 = null; } function nlevoedg_GuiShaderConfigList$6_getDisplayValue($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1366822,7 +1369033,6 @@ var a = this; nlevoedg_GuiShaderConfigList$ShaderOption.call(a); a.$originalValue5 = 0; a.$val$conf5 = null; - a.$this$0289 = null; } function nlevoedg_GuiShaderConfigList$7_getDisplayValue($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1366865,7 +1369075,6 @@ var a = this; nlevoedg_GuiShaderConfigList$ShaderOption.call(a); a.$originalValue6 = 0; a.$val$conf6 = null; - a.$this$0290 = null; } function nlevoedg_GuiShaderConfigList$8_getDisplayValue($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1366908,7 +1369117,6 @@ var a = this; nlevoedg_GuiShaderConfigList$ShaderOption.call(a); a.$originalValue7 = 0; a.$val$conf7 = null; - a.$this$0291 = null; } function nlevoedg_GuiShaderConfigList$9_getDisplayValue($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1366951,7 +1369159,6 @@ var a = this; nlevoedg_GuiShaderConfigList$ShaderOption.call(a); a.$originalValue8 = 0; a.$val$conf8 = null; - a.$this$0292 = null; } function nlevoedg_GuiShaderConfigList$10_getDisplayValue($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1366994,7 +1369201,6 @@ var a = this; nlevoedg_GuiShaderConfigList$ShaderOption.call(a); a.$originalValue9 = 0; a.$val$conf9 = null; - a.$this$0293 = null; } function nlevoedg_GuiShaderConfigList$11_getDisplayValue($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1367037,7 +1369243,6 @@ var a = this; nlevoedg_GuiShaderConfigList$ShaderOption.call(a); a.$originalValue10 = 0; a.$val$conf10 = null; - a.$this$0294 = null; } function nlevoedg_GuiShaderConfigList$12_getDisplayValue($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1367080,18 +1369285,6 @@ var a = this; nlevoedg_GuiShaderConfigList$ShaderOption.call(a); a.$originalValue11 = 0; a.$val$conf11 = null; - a.$this$0300 = null; - } - function nlevoedg_GuiShaderConfigList$13__init_0(var_0, var_1, var_2, var_3) { - var var_4 = new nlevoedg_GuiShaderConfigList$13(); - nlevoedg_GuiShaderConfigList$13__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; - } - function nlevoedg_GuiShaderConfigList$13__init_($this, $this$0, $label, $desc, var$4) { - $this.$this$0300 = $this$0; - $this.$val$conf11 = var$4; - nlevoedg_GuiShaderConfigList$ShaderOption__init_($this, $label, $desc); - $this.$originalValue11 = $this.$val$conf11.$lightShafts; } function nlevoedg_GuiShaderConfigList$13_getDisplayValue($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1367134,18 +1369327,6 @@ var a = this; nlevoedg_GuiShaderConfigList$ShaderOption.call(a); a.$originalValue12 = 0; a.$val$conf12 = null; - a.$this$0301 = null; - } - function nlevoedg_GuiShaderConfigList$14__init_0(var_0, var_1, var_2, var_3) { - var var_4 = new nlevoedg_GuiShaderConfigList$14(); - nlevoedg_GuiShaderConfigList$14__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; - } - function nlevoedg_GuiShaderConfigList$14__init_($this, $this$0, $label, $desc, var$4) { - $this.$this$0301 = $this$0; - $this.$val$conf12 = var$4; - nlevoedg_GuiShaderConfigList$ShaderOption__init_($this, $label, $desc); - $this.$originalValue12 = $this.$val$conf12.$raytracing; } function nlevoedg_GuiShaderConfigList$14_getDisplayValue($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1367184,10 +1369365,7 @@ function nlevoedg_GuiShaderConfigList$14_getDirty($this) { return $this.$val$conf12.$raytracing == $this.$originalValue12 ? 0 : 1; } - function nmcg_GuiCustomizeWorldScreen$1() { - jl_Object.call(this); - this.$this$0295 = null; - } + var nmcg_GuiCustomizeWorldScreen$1 = $rt_classWithoutFields(); function nmcg_GuiCustomizeWorldScreen$1_apply($this, var$1) { var var$2, var$3, $ptr, $tmp; $ptr = 0; @@ -1368934,28 +1371112,6 @@ }} $rt_nativeThread().push(var$1, $ptr); } - var nmb_BlockRailBase$1 = $rt_classWithoutFields(); - var nmb_BlockRailBase$1_$SwitchMap$net$minecraft$block$BlockRailBase$EnumRailDirection = null; - function nmb_BlockRailBase$1_$callClinit() { - nmb_BlockRailBase$1_$callClinit = $rt_eraseClinit(nmb_BlockRailBase$1); - nmb_BlockRailBase$1__clinit_(); - } - function nmb_BlockRailBase$1__clinit_() { - var var$1, var$2; - var$1 = $rt_createIntArray((nmb_BlockRailBase$EnumRailDirection_values()).data.length); - var$2 = var$1.data; - nmb_BlockRailBase$1_$SwitchMap$net$minecraft$block$BlockRailBase$EnumRailDirection = var$1; - var$2[nmb_BlockRailBase$EnumRailDirection_NORTH_SOUTH.$ordinal] = 1; - var$2[nmb_BlockRailBase$EnumRailDirection_EAST_WEST.$ordinal] = 2; - var$2[nmb_BlockRailBase$EnumRailDirection_ASCENDING_EAST.$ordinal] = 3; - var$2[nmb_BlockRailBase$EnumRailDirection_ASCENDING_WEST.$ordinal] = 4; - var$2[nmb_BlockRailBase$EnumRailDirection_ASCENDING_NORTH.$ordinal] = 5; - var$2[nmb_BlockRailBase$EnumRailDirection_ASCENDING_SOUTH.$ordinal] = 6; - var$2[nmb_BlockRailBase$EnumRailDirection_SOUTH_EAST.$ordinal] = 7; - var$2[nmb_BlockRailBase$EnumRailDirection_SOUTH_WEST.$ordinal] = 8; - var$2[nmb_BlockRailBase$EnumRailDirection_NORTH_WEST.$ordinal] = 9; - var$2[nmb_BlockRailBase$EnumRailDirection_NORTH_EAST.$ordinal] = 10; - } function nlevoedg_GuiShaderConfigList$ListEntryButtonRow() { var a = this; jl_Object.call(a); a.$opt1 = null; @@ -1368964,7 +1371120,7 @@ a.$button1 = null; a.$button2 = null; a.$button3 = null; - a.$this$0302 = null; + a.$this$0187 = null; } function nlevoedg_GuiShaderConfigList$ListEntryButtonRow__init_0(var_0, var_1, var_2, var_3) { var var_4 = new nlevoedg_GuiShaderConfigList$ListEntryButtonRow(); @@ -1368980,7 +1371136,7 @@ } main: while (true) { switch ($ptr) { case 0: - $this.$this$0302 = var$1; + $this.$this$0187 = var$1; $this.$opt1 = $opt1; $this.$opt2 = $opt2; $this.$opt3 = $opt3; @@ -1369199,7 +1371355,7 @@ if (var$9 !== null) { var$9.$xPosition0 = $x; var$9.$yPosition = $y; - var$10 = $this.$this$0302; + var$10 = $this.$this$0187; $ptr = 1; continue main; } @@ -1369207,7 +1371363,7 @@ if (var$9 !== null) { var$9.$xPosition0 = $x + 75 | 0; var$9.$yPosition = $y; - var$10 = $this.$this$0302; + var$10 = $this.$this$0187; $ptr = 3; continue main; } @@ -1369216,7 +1371372,7 @@ return; var$9.$xPosition0 = $x + 150 | 0; var$9.$yPosition = $y; - var$10 = $this.$this$0302; + var$10 = $this.$this$0187; $ptr = 5; continue main; case 1: @@ -1369234,7 +1371390,7 @@ var$10 = $this.$button1; if (var$10.$hovered) { $entryID = var$10.$yPosition + 10 | 0; - var$10 = $this.$this$0302; + var$10 = $this.$this$0187; if ($entryID < var$10.$bottom && $entryID > var$10.$top) { $entryID = $var7 + 15 | 0; var$9 = $this.$opt1.$desc2; @@ -1369246,7 +1371402,7 @@ if (var$9 !== null) { var$9.$xPosition0 = $x + 75 | 0; var$9.$yPosition = $y; - var$10 = $this.$this$0302; + var$10 = $this.$this$0187; $ptr = 3; continue main; } @@ -1369255,7 +1371411,7 @@ return; var$9.$xPosition0 = $x + 150 | 0; var$9.$yPosition = $y; - var$10 = $this.$this$0302; + var$10 = $this.$this$0187; $ptr = 5; continue main; case 3: @@ -1369273,7 +1371429,7 @@ var$10 = $this.$button2; if (var$10.$hovered) { $getListWidth = var$10.$yPosition + 10 | 0; - var$9 = $this.$this$0302; + var$9 = $this.$this$0187; if ($getListWidth < var$9.$bottom && $getListWidth > var$9.$top) { $entryID = $var7 + 15 | 0; var$10 = $this.$opt2.$desc2; @@ -1369286,7 +1371442,7 @@ return; var$9.$xPosition0 = $x + 150 | 0; var$9.$yPosition = $y; - var$10 = $this.$this$0302; + var$10 = $this.$this$0187; $ptr = 5; case 5: nlevoedg_GuiShaderConfigList_$callClinit(); @@ -1369303,7 +1371459,7 @@ var$10 = $this.$button3; if (var$10.$hovered) { $x = var$10.$yPosition + 10 | 0; - var$10 = $this.$this$0302; + var$10 = $this.$this$0187; if ($x < var$10.$bottom && $x > var$10.$top) { $entryID = $var7 + 15 | 0; var$9 = $this.$opt3.$desc2; @@ -1369321,7 +1371477,7 @@ if (var$9 !== null) { var$9.$xPosition0 = $x + 75 | 0; var$9.$yPosition = $y; - var$10 = $this.$this$0302; + var$10 = $this.$this$0187; $ptr = 3; continue main; } @@ -1369330,7 +1371486,7 @@ return; var$9.$xPosition0 = $x + 150 | 0; var$9.$yPosition = $y; - var$10 = $this.$this$0302; + var$10 = $this.$this$0187; $ptr = 5; continue main; case 8: @@ -1369343,7 +1371499,7 @@ return; var$9.$xPosition0 = $x + 150 | 0; var$9.$yPosition = $y; - var$10 = $this.$this$0302; + var$10 = $this.$this$0187; $ptr = 5; continue main; case 9: @@ -1369369,7 +1371525,7 @@ if (var$7 !== null) { $var1 = var$7.$yPosition; $var5 = $var1 + 15 | 0; - var$8 = $this.$this$0302; + var$8 = $this.$this$0187; $ptr = 1; continue main; } @@ -1369377,7 +1371533,7 @@ if (var$7 !== null) { $var5 = var$7.$yPosition; $var6 = $var5 + 15 | 0; - var$8 = $this.$this$0302; + var$8 = $this.$this$0187; $ptr = 2; continue main; } @@ -1369386,7 +1371542,7 @@ return 0; $var5 = var$7.$yPosition; $var6 = $var5 + 15 | 0; - var$8 = $this.$this$0302; + var$8 = $this.$this$0187; $ptr = 3; continue main; case 1: @@ -1369403,7 +1371559,7 @@ if (var$7 !== null) { $var5 = var$7.$yPosition; $var6 = $var5 + 15 | 0; - var$8 = $this.$this$0302; + var$8 = $this.$this$0187; $ptr = 2; continue main; } @@ -1369412,7 +1371568,7 @@ return 0; $var5 = var$7.$yPosition; $var6 = $var5 + 15 | 0; - var$8 = $this.$this$0302; + var$8 = $this.$this$0187; $ptr = 3; continue main; case 2: @@ -1369430,7 +1371586,7 @@ return 0; $var5 = var$7.$yPosition; $var6 = $var5 + 15 | 0; - var$8 = $this.$this$0302; + var$8 = $this.$this$0187; $ptr = 3; case 3: nlevoedg_GuiShaderConfigList_$callClinit(); @@ -1369454,7 +1371610,7 @@ if (var$7 !== null) { $var5 = var$7.$yPosition; $var6 = $var5 + 15 | 0; - var$8 = $this.$this$0302; + var$8 = $this.$this$0187; $ptr = 2; continue main; } @@ -1369463,7 +1371619,7 @@ return 0; $var5 = var$7.$yPosition; $var6 = $var5 + 15 | 0; - var$8 = $this.$this$0302; + var$8 = $this.$this$0187; $ptr = 3; continue main; } @@ -1369486,7 +1371642,7 @@ return 0; $var5 = var$7.$yPosition; $var6 = $var5 + 15 | 0; - var$8 = $this.$this$0302; + var$8 = $this.$this$0187; $ptr = 3; continue main; } @@ -1369554,7 +1371710,7 @@ var$7 = $tmp; var$8.$displayString = var$7; var$8 = $this.$button1; - var$7 = $this.$this$0302.$mc21.$mcSoundHandler; + var$7 = $this.$this$0187.$mc21.$mcSoundHandler; $ptr = 13; case 13: nmcg_GuiButton_playPressSound(var$8, var$7); @@ -1369565,7 +1371721,7 @@ if (var$7 !== null) { $var5 = var$7.$yPosition; $var6 = $var5 + 15 | 0; - var$8 = $this.$this$0302; + var$8 = $this.$this$0187; $ptr = 2; continue main; } @@ -1369574,7 +1371730,7 @@ return 0; $var5 = var$7.$yPosition; $var6 = $var5 + 15 | 0; - var$8 = $this.$this$0302; + var$8 = $this.$this$0187; $ptr = 3; continue main; case 14: @@ -1369619,7 +1371775,7 @@ var$8 = $tmp; var$11.$displayString = var$8; var$8 = $this.$button2; - var$7 = $this.$this$0302.$mc21.$mcSoundHandler; + var$7 = $this.$this$0187.$mc21.$mcSoundHandler; $ptr = 20; case 20: nmcg_GuiButton_playPressSound(var$8, var$7); @@ -1369631,7 +1371787,7 @@ return 0; $var5 = var$7.$yPosition; $var6 = $var5 + 15 | 0; - var$8 = $this.$this$0302; + var$8 = $this.$this$0187; $ptr = 3; continue main; case 21: @@ -1369676,7 +1371832,7 @@ var$7 = $tmp; var$8.$displayString = var$7; var$8 = $this.$button3; - var$7 = $this.$this$0302.$mc21.$mcSoundHandler; + var$7 = $this.$this$0187.$mc21.$mcSoundHandler; $ptr = 27; case 27: nmcg_GuiButton_playPressSound(var$8, var$7); @@ -1370055,17 +1372211,17 @@ } function nlevit_TeaVMUpdateThread$1() { jl_Object.call(this); - this.$this$0247 = null; + this.$this$0162 = null; } function nlevit_TeaVMUpdateThread$1_handleEvent$exported$0(var$0, var$1) { - var$0.$this$0247.$updateProg.$progressBar = jl_Math_min1(var$1.loaded / var$0.$this$0247.$updateCert.$bundleDataLength, 1.0); + var$0.$this$0162.$updateProg.$progressBar = jl_Math_min1(var$1.loaded / var$0.$this$0162.$updateCert.$bundleDataLength, 1.0); } function nlevit_TeaVMUpdateThread$2() { var a = this; jl_Object.call(a); a.$val$xhr = null; a.$val$cb20 = null; a.$val$url = null; - a.$this$0248 = null; + a.$this$0163 = null; } function nlevit_TeaVMUpdateThread$2_handleEvent$exported$0(var$0, var$1) { var var$2, var$3, var$4, $ptr, $tmp; @@ -1370083,7 +1372239,7 @@ continue main; } var$2 = var$0.$val$xhr.response; - if (var$2.byteLength != var$0.$this$0248.$updateCert.$bundleDataLength) { + if (var$2.byteLength != var$0.$this$0163.$updateCert.$bundleDataLength) { $ptr = 4; continue main; } @@ -1370148,9 +1372304,8 @@ $rt_nativeThread().push(var$0, var$1, var$2, var$3, var$4, $ptr); } function nlevit_TeaVMUpdateThread$3() { - var a = this; jl_Object.call(a); - a.$val$url0 = null; - a.$this$0249 = null; + jl_Object.call(this); + this.$val$url0 = null; } function nlevit_TeaVMUpdateThread$3_handleEvent$exported$0(var$0, var$1) { var var$2, var$3, $ptr, $tmp; @@ -1371400,7 +1373555,7 @@ } function nmcs_CommandBlockLogic$1() { jl_Object.call(this); - this.$this$0241 = null; + this.$this$0157 = null; } function nmcs_CommandBlockLogic$1_call($this) { var $ptr, $tmp; @@ -1371411,14 +1373566,14 @@ } main: while (true) { switch ($ptr) { case 0: - return $this.$this$0241.$commandStored; + return $this.$this$0157.$commandStored; default: $rt_invalidPointer(); }} $rt_nativeThread().push($this, $ptr); } function nmcs_CommandBlockLogic$2() { jl_Object.call(this); - this.$this$0242 = null; + this.$this$0158 = null; } function nmcs_CommandBlockLogic$2_call($this) { var $ptr, $tmp; @@ -1371429,7 +1373584,7 @@ } main: while (true) { switch ($ptr) { case 0: - return $this.$this$0242.$customName3; + return $this.$this$0158.$customName3; default: $rt_invalidPointer(); }} $rt_nativeThread().push($this, $ptr); @@ -1371438,7 +1373593,7 @@ var a = this; jl_Object.call(a); a.$entry1 = null; a.$val$entryIterator = null; - a.$this$111 = null; + a.$this$110 = null; } function nmu_EntitySelectors$ArmoredMob() { jl_Object.call(this); @@ -1371485,9 +1373640,8 @@ $rt_nativeThread().push($this, var$1, var$2, var$3, $ptr); } function nmi_Bootstrap$5$1() { - var a = this; nmd_BehaviorProjectileDispense.call(a); - a.$val$itemstack = null; - a.$this$039 = null; + nmd_BehaviorProjectileDispense.call(this); + this.$val$itemstack = null; } function nmi_Bootstrap$5$1_getProjectileEntity($this, $world, $iposition) { var var$3, var$4, var$5, var$6, $ptr, $tmp; @@ -1371546,10 +1373700,10 @@ a.$key10 = null; a.$collection0 = null; a.$valueIterator = null; - a.$this$0303 = null; + a.$this$0188 = null; } function cgcc_AbstractMapBasedMultimap$Itr__init_($this, var$1) { - $this.$this$0303 = var$1; + $this.$this$0188 = var$1; $this.$keyIterator = ju_HashMap$HashMapEntrySet_iterator(ju_HashMap_entrySet(var$1.$map8)); $this.$key10 = null; $this.$collection0 = null; @@ -1371636,10 +1373790,7 @@ }} $rt_nativeThread().push($this, $mapEntry, var$2, var$3, $ptr); } - function cgcc_AbstractMapBasedMultimap$2() { - cgcc_AbstractMapBasedMultimap$Itr.call(this); - this.$this$0276 = null; - } + var cgcc_AbstractMapBasedMultimap$2 = $rt_classWithoutFields(cgcc_AbstractMapBasedMultimap$Itr); function cgcc_AbstractMapBasedMultimap$2_output($this, var$1, var$2) { return cgcc_Maps_immutableEntry(var$1, var$2); } @@ -1372146,11 +1374297,11 @@ $rt_nativeThread().push($this, $ptr); } function nmcg_GuiWinGame_initGui($this) { - var $exception, $s3, $s2, $inputstream, var$5, $s1, $short1, var$8, $bufferedreader, $random, $j, $i, var$13, var$14, $$je, $ptr, $tmp; + var $exception, $s2, $inputstream, $s3, var$5, $s1, $short1, var$8, $bufferedreader, $random, $j, $i, var$13, var$14, $$je, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$14 = $thread.pop();var$13 = $thread.pop();$i = $thread.pop();$j = $thread.pop();$random = $thread.pop();$bufferedreader = $thread.pop();var$8 = $thread.pop();$short1 = $thread.pop();$s1 = $thread.pop();var$5 = $thread.pop();$inputstream = $thread.pop();$s2 = $thread.pop();$s3 = $thread.pop();$exception = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$14 = $thread.pop();var$13 = $thread.pop();$i = $thread.pop();$j = $thread.pop();$random = $thread.pop();$bufferedreader = $thread.pop();var$8 = $thread.pop();$short1 = $thread.pop();$s1 = $thread.pop();var$5 = $thread.pop();$s3 = $thread.pop();$inputstream = $thread.pop();$s2 = $thread.pop();$exception = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: @@ -1372168,7 +1374319,7 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; case 1: try { @@ -1372176,11 +1374327,7 @@ if ($rt_suspending()) { break main; } - $s3 = nmu_EnumChatFormatting_WHITE; - $exception = nmu_EnumChatFormatting_OBFUSCATED; - $s2 = nmu_EnumChatFormatting_GREEN; - $inputstream = nmu_EnumChatFormatting_AQUA; - var$5 = jl_StringBuilder__init_(); + $s2 = nmu_EnumChatFormatting_WHITE; $ptr = 2; continue main; } catch ($$e) { @@ -1372191,15 +1374338,16 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; case 2: try { - $tmp = jl_StringBuilder_append(var$5, $s3); + $tmp = jl_String_valueOf($s2); if ($rt_suspending()) { break main; } - $s3 = $tmp; + $inputstream = $tmp; + $s2 = nmu_EnumChatFormatting_OBFUSCATED; $ptr = 3; continue main; } catch ($$e) { @@ -1372210,15 +1374358,16 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; case 3: try { - $tmp = jl_StringBuilder_append($s3, $exception); + $tmp = jl_String_valueOf($s2); if ($rt_suspending()) { break main; } $s3 = $tmp; + $s2 = nmu_EnumChatFormatting_GREEN; $ptr = 4; continue main; } catch ($$e) { @@ -1372229,15 +1374378,16 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; case 4: try { - $tmp = jl_StringBuilder_append($s3, $s2); + $tmp = jl_String_valueOf($s2); if ($rt_suspending()) { break main; } - $s2 = $tmp; + $exception = $tmp; + $s2 = nmu_EnumChatFormatting_AQUA; $ptr = 5; continue main; } catch ($$e) { @@ -1372248,14 +1374398,16 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; case 5: try { - jl_StringBuilder_append($s2, $inputstream); + $tmp = jl_String_valueOf($s2); if ($rt_suspending()) { break main; } + $s2 = $tmp; + var$5 = jl_StringBuilder__init_(); $ptr = 6; continue main; } catch ($$e) { @@ -1372266,17 +1374418,53 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; case 6: try { - $tmp = jl_StringBuilder_toString(var$5); + $tmp = jl_StringBuilder_append(var$5, $inputstream); if ($rt_suspending()) { break main; } - $s1 = $tmp; - $short1 = 274; - $s2 = $this.$mc15; + $inputstream = $tmp; + $ptr = 7; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Exception) { + $exception = $$je; + } else { + throw $$e; + } + } + $ptr = 11; + continue main; + case 7: + try { + $tmp = jl_StringBuilder_append($inputstream, $s3); + if ($rt_suspending()) { + break main; + } + $inputstream = $tmp; + $ptr = 8; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Exception) { + $exception = $$je; + } else { + throw $$e; + } + } + $ptr = 11; + continue main; + case 8: + try { + $tmp = jl_StringBuilder_append($inputstream, $exception); + if ($rt_suspending()) { + break main; + } + $inputstream = $tmp; $ptr = 9; continue main; } catch ($$e) { @@ -1372287,32 +1374475,14 @@ throw $$e; } } - $ptr = 7; - case 7: - nmcg_GuiWinGame_$callClinit(); - if ($rt_suspending()) { - break main; - } - $s2 = nmcg_GuiWinGame_logger; - $inputstream = $rt_s(9582); - var$8 = $rt_createArray(jl_Object, 1); - var$8.data[0] = $exception; - $ptr = 8; - case 8: - nlevl_Logger_error($s2, $inputstream, var$8); - if ($rt_suspending()) { - break main; - } - return; + $ptr = 11; + continue main; case 9: try { - $tmp = nmc_Minecraft_getResourceManager($s2); + jl_StringBuilder_append($inputstream, $s2); if ($rt_suspending()) { break main; } - $s2 = $tmp; - $inputstream = new nmu_ResourceLocation; - $s3 = $rt_s(9583); $ptr = 10; continue main; } catch ($$e) { @@ -1372323,55 +1374493,17 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; case 10: try { - nmu_ResourceLocation__init_($inputstream, $s3); + $tmp = jl_StringBuilder_toString(var$5); if ($rt_suspending()) { break main; } - $ptr = 11; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Exception) { - $exception = $$je; - } else { - throw $$e; - } - } - $ptr = 7; - continue main; - case 11: - try { - $tmp = nmcr_SimpleReloadableResourceManager_getResource($s2, $inputstream); - if ($rt_suspending()) { - break main; - } - $s2 = $tmp; - $inputstream = nmcr_SimpleResource_getInputStream($s2); - $bufferedreader = new ji_BufferedReader; - $s3 = new ji_InputStreamReader; - $ptr = 12; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Exception) { - $exception = $$je; - } else { - throw $$e; - } - } - $ptr = 7; - continue main; - case 12: - try { - cgcb_Charsets_$callClinit(); - if ($rt_suspending()) { - break main; - } - $s2 = cgcb_Charsets_UTF_8; + $s1 = $tmp; + $short1 = 274; + $s2 = $this.$mc15; $ptr = 13; continue main; } catch ($$e) { @@ -1372382,16 +1374514,32 @@ throw $$e; } } - $ptr = 7; - continue main; + $ptr = 11; + case 11: + nmcg_GuiWinGame_$callClinit(); + if ($rt_suspending()) { + break main; + } + $s2 = nmcg_GuiWinGame_logger; + $inputstream = $rt_s(9582); + var$8 = $rt_createArray(jl_Object, 1); + var$8.data[0] = $exception; + $ptr = 12; + case 12: + nlevl_Logger_error($s2, $inputstream, var$8); + if ($rt_suspending()) { + break main; + } + return; case 13: try { - ji_InputStreamReader__init_($s3, $inputstream, $s2); + $tmp = nmc_Minecraft_getResourceManager($s2); if ($rt_suspending()) { break main; } - ji_BufferedReader__init_0($bufferedreader, $s3); - $random = nlev_EaglercraftRandom__init_1(Long_fromInt(8124371)); + $s2 = $tmp; + $inputstream = new nmu_ResourceLocation; + $s3 = $rt_s(9583); $ptr = 14; continue main; } catch ($$e) { @@ -1372402,20 +1374550,36 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; case 14: try { - $tmp = ji_BufferedReader_readLine($bufferedreader); + nmu_ResourceLocation__init_($inputstream, $s3); + if ($rt_suspending()) { + break main; + } + $ptr = 15; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Exception) { + $exception = $$je; + } else { + throw $$e; + } + } + $ptr = 11; + continue main; + case 15: + try { + $tmp = nmcr_SimpleReloadableResourceManager_getResource($s2, $inputstream); if ($rt_suspending()) { break main; } $s2 = $tmp; - if ($s2 === null) { - $ptr = 15; - continue main; - } - $s3 = $rt_s(9584); + $inputstream = nmcr_SimpleResource_getInputStream($s2); + $bufferedreader = new ji_BufferedReader; + $s3 = new ji_InputStreamReader; $ptr = 16; continue main; } catch ($$e) { @@ -1372426,41 +1374590,15 @@ throw $$e; } } - $ptr = 7; - continue main; - case 15: - try { - $inputstream.$close(); - if ($rt_suspending()) { - break main; - } - $j = 0; - if ($j >= 8) { - $s2 = $this.$mc15; - $ptr = 18; - continue main; - } - $s2 = $this.$field_146582_i; - $inputstream = $rt_s(14); - $ptr = 22; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Exception) { - $exception = $$je; - } else { - throw $$e; - } - } - $ptr = 7; + $ptr = 11; continue main; case 16: try { - $tmp = nlevp_EaglerProfile_getName(); + cgcb_Charsets_$callClinit(); if ($rt_suspending()) { break main; } - $exception = $tmp; + $s2 = cgcb_Charsets_UTF_8; $ptr = 17; continue main; } catch ($$e) { @@ -1372471,29 +1374609,17 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; case 17: try { - $tmp = jl_String_replaceAll($s2, $s3, $exception); + ji_InputStreamReader__init_($s3, $inputstream, $s2); if ($rt_suspending()) { break main; } - $exception = $tmp; - if (!jl_String_contains($exception, $s1)) { - $s2 = $this.$field_146582_i; - $s3 = $this.$mc15.$fontRendererObj; - $ptr = 23; - continue main; - } - $i = jl_String_indexOf2($exception, $s1); - $s2 = jl_String_substring0($exception, 0, $i); - $s3 = jl_String_substring($exception, $i + jl_String_length($s1) | 0); - $exception = nmu_EnumChatFormatting_WHITE; - var$5 = nmu_EnumChatFormatting_OBFUSCATED; - var$13 = jl_String_substring0($rt_s(9585), 0, nlev_EaglercraftRandom_nextInt($random, 4) + 3 | 0); - var$14 = jl_StringBuilder__init_(); - $ptr = 26; + ji_BufferedReader__init_0($bufferedreader, $s3); + $random = nlev_EaglercraftRandom__init_1(Long_fromInt(8124371)); + $ptr = 18; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1372503,35 +1374629,20 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; case 18: try { - $tmp = nmc_Minecraft_getResourceManager($s2); + $tmp = ji_BufferedReader_readLine($bufferedreader); if ($rt_suspending()) { break main; } $s2 = $tmp; - $inputstream = new nmu_ResourceLocation; - $s3 = $rt_s(9586); - $ptr = 19; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Exception) { - $exception = $$je; - } else { - throw $$e; - } - } - $ptr = 7; - continue main; - case 19: - try { - nmu_ResourceLocation__init_($inputstream, $s3); - if ($rt_suspending()) { - break main; + if ($s2 === null) { + $ptr = 19; + continue main; } + $s3 = $rt_s(9584); $ptr = 20; continue main; } catch ($$e) { @@ -1372542,19 +1374653,41 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; - case 20: + case 19: try { - $tmp = nmcr_SimpleReloadableResourceManager_getResource($s2, $inputstream); + $inputstream.$close(); if ($rt_suspending()) { break main; } - $s2 = $tmp; - $s2 = nmcr_SimpleResource_getInputStream($s2); - $inputstream = new ji_BufferedReader; - $s3 = new ji_InputStreamReader; - $exception = cgcb_Charsets_UTF_8; + $j = 0; + if ($j >= 8) { + $s2 = $this.$mc15; + $ptr = 22; + continue main; + } + $s2 = $this.$field_146582_i; + $inputstream = $rt_s(14); + $ptr = 26; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Exception) { + $exception = $$je; + } else { + throw $$e; + } + } + $ptr = 11; + continue main; + case 20: + try { + $tmp = nlevp_EaglerProfile_getName(); + if ($rt_suspending()) { + break main; + } + $exception = $tmp; $ptr = 21; continue main; } catch ($$e) { @@ -1372565,16 +1374698,26 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; case 21: try { - ji_InputStreamReader__init_($s3, $s2, $exception); + $tmp = jl_String_replaceAll($s2, $s3, $exception); if ($rt_suspending()) { break main; } - ji_BufferedReader__init_0($inputstream, $s3); - $ptr = 32; + $s3 = $tmp; + if (!jl_String_contains($s3, $s1)) { + $exception = $this.$field_146582_i; + $s2 = $this.$mc15.$fontRendererObj; + $ptr = 27; + continue main; + } + $i = jl_String_indexOf2($s3, $s1); + $s2 = jl_String_substring0($s3, 0, $i); + $s3 = jl_String_substring($s3, $i + jl_String_length($s1) | 0); + $exception = nmu_EnumChatFormatting_WHITE; + $ptr = 30; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1372584,9 +1374727,90 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; case 22: + try { + $tmp = nmc_Minecraft_getResourceManager($s2); + if ($rt_suspending()) { + break main; + } + $s2 = $tmp; + $inputstream = new nmu_ResourceLocation; + $s3 = $rt_s(9585); + $ptr = 23; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Exception) { + $exception = $$je; + } else { + throw $$e; + } + } + $ptr = 11; + continue main; + case 23: + try { + nmu_ResourceLocation__init_($inputstream, $s3); + if ($rt_suspending()) { + break main; + } + $ptr = 24; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Exception) { + $exception = $$je; + } else { + throw $$e; + } + } + $ptr = 11; + continue main; + case 24: + try { + $tmp = nmcr_SimpleReloadableResourceManager_getResource($s2, $inputstream); + if ($rt_suspending()) { + break main; + } + $s2 = $tmp; + $s2 = nmcr_SimpleResource_getInputStream($s2); + $inputstream = new ji_BufferedReader; + $s3 = new ji_InputStreamReader; + $exception = cgcb_Charsets_UTF_8; + $ptr = 25; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Exception) { + $exception = $$je; + } else { + throw $$e; + } + } + $ptr = 11; + continue main; + case 25: + try { + ji_InputStreamReader__init_($s3, $s2, $exception); + if ($rt_suspending()) { + break main; + } + ji_BufferedReader__init_0($inputstream, $s3); + $ptr = 38; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Exception) { + $exception = $$je; + } else { + throw $$e; + } + } + $ptr = 11; + continue main; + case 26: try { ju_ArrayList_add($s2, $inputstream); if ($rt_suspending()) { @@ -1372595,7 +1374819,7 @@ $j = $j + 1 | 0; if ($j >= 8) { $s2 = $this.$mc15; - $ptr = 18; + $ptr = 22; continue main; } $s2 = $this.$field_146582_i; @@ -1372609,87 +1374833,11 @@ throw $$e; } } - $ptr = 7; - continue main; - case 23: - try { - $tmp = nmcg_FontRenderer_listFormattedStringToWidth($s3, $exception, $short1); - if ($rt_suspending()) { - break main; - } - $s3 = $tmp; - $ptr = 24; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Exception) { - $exception = $$je; - } else { - throw $$e; - } - } - $ptr = 7; - continue main; - case 24: - try { - ju_AbstractCollection_addAll($s2, $s3); - if ($rt_suspending()) { - break main; - } - $s2 = $this.$field_146582_i; - $s3 = $rt_s(14); - $ptr = 25; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Exception) { - $exception = $$je; - } else { - throw $$e; - } - } - $ptr = 7; - continue main; - case 25: - try { - ju_ArrayList_add($s2, $s3); - if ($rt_suspending()) { - break main; - } - $ptr = 14; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Exception) { - $exception = $$je; - } else { - throw $$e; - } - } - $ptr = 7; - continue main; - case 26: - try { - $tmp = jl_StringBuilder_append(var$14, $s2); - if ($rt_suspending()) { - break main; - } - $s2 = $tmp; - $ptr = 27; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Exception) { - $exception = $$je; - } else { - throw $$e; - } - } - $ptr = 7; + $ptr = 11; continue main; case 27: try { - $tmp = jl_StringBuilder_append($s2, $exception); + $tmp = nmcg_FontRenderer_listFormattedStringToWidth($s2, $s3, $short1); if ($rt_suspending()) { break main; } @@ -1372704,15 +1374852,16 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; case 28: try { - $tmp = jl_StringBuilder_append($s2, var$5); + ju_AbstractCollection_addAll($exception, $s2); if ($rt_suspending()) { break main; } - $s2 = $tmp; + $s2 = $this.$field_146582_i; + $s3 = $rt_s(14); $ptr = 29; continue main; } catch ($$e) { @@ -1372723,16 +1374872,15 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; case 29: try { - $tmp = jl_StringBuilder_append($s2, var$13); + ju_ArrayList_add($s2, $s3); if ($rt_suspending()) { break main; } - $s2 = $tmp; - $ptr = 30; + $ptr = 18; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1372742,14 +1374890,16 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; case 30: try { - jl_StringBuilder_append($s2, $s3); + $tmp = jl_String_valueOf($exception); if ($rt_suspending()) { break main; } + $exception = $tmp; + var$5 = nmu_EnumChatFormatting_OBFUSCATED; $ptr = 31; continue main; } catch ($$e) { @@ -1372760,29 +1374910,18 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; case 31: try { - $tmp = jl_StringBuilder_toString(var$14); + $tmp = jl_String_valueOf(var$5); if ($rt_suspending()) { break main; } - $exception = $tmp; - if (!jl_String_contains($exception, $s1)) { - $s2 = $this.$field_146582_i; - $s3 = $this.$mc15.$fontRendererObj; - $ptr = 23; - continue main; - } - $i = jl_String_indexOf2($exception, $s1); - $s2 = jl_String_substring0($exception, 0, $i); - $s3 = jl_String_substring($exception, $i + jl_String_length($s1) | 0); - $exception = nmu_EnumChatFormatting_WHITE; - var$5 = nmu_EnumChatFormatting_OBFUSCATED; - var$13 = jl_String_substring0($rt_s(9585), 0, nlev_EaglercraftRandom_nextInt($random, 4) + 3 | 0); + var$5 = $tmp; + var$13 = jl_String_substring0($rt_s(9586), 0, nlev_EaglercraftRandom_nextInt($random, 4) + 3 | 0); var$14 = jl_StringBuilder__init_(); - $ptr = 26; + $ptr = 32; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1372792,21 +1374931,16 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; case 32: try { - $tmp = ji_BufferedReader_readLine($inputstream); + $tmp = jl_StringBuilder_append(var$14, $s2); if ($rt_suspending()) { break main; } - $s3 = $tmp; - if ($s3 === null) { - $ptr = 33; - continue main; - } - $exception = $rt_s(9584); - $ptr = 35; + $s2 = $tmp; + $ptr = 33; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1372816,15 +1374950,15 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; case 33: try { - $s2.$close(); + $tmp = jl_StringBuilder_append($s2, $exception); if ($rt_suspending()) { break main; } - $s2 = $this.$field_146582_i; + $s2 = $tmp; $ptr = 34; continue main; } catch ($$e) { @@ -1372835,9 +1374969,137 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; case 34: + try { + $tmp = jl_StringBuilder_append($s2, var$5); + if ($rt_suspending()) { + break main; + } + $s2 = $tmp; + $ptr = 35; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Exception) { + $exception = $$je; + } else { + throw $$e; + } + } + $ptr = 11; + continue main; + case 35: + try { + $tmp = jl_StringBuilder_append($s2, var$13); + if ($rt_suspending()) { + break main; + } + $s2 = $tmp; + $ptr = 36; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Exception) { + $exception = $$je; + } else { + throw $$e; + } + } + $ptr = 11; + continue main; + case 36: + try { + jl_StringBuilder_append($s2, $s3); + if ($rt_suspending()) { + break main; + } + $ptr = 37; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Exception) { + $exception = $$je; + } else { + throw $$e; + } + } + $ptr = 11; + continue main; + case 37: + try { + $tmp = jl_StringBuilder_toString(var$14); + if ($rt_suspending()) { + break main; + } + $s3 = $tmp; + if (!jl_String_contains($s3, $s1)) { + $exception = $this.$field_146582_i; + $s2 = $this.$mc15.$fontRendererObj; + $ptr = 27; + continue main; + } + $i = jl_String_indexOf2($s3, $s1); + $s2 = jl_String_substring0($s3, 0, $i); + $s3 = jl_String_substring($s3, $i + jl_String_length($s1) | 0); + $exception = nmu_EnumChatFormatting_WHITE; + $ptr = 30; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Exception) { + $exception = $$je; + } else { + throw $$e; + } + } + $ptr = 11; + continue main; + case 38: + try { + $tmp = ji_BufferedReader_readLine($inputstream); + if ($rt_suspending()) { + break main; + } + $s3 = $tmp; + if ($s3 === null) { + $ptr = 39; + continue main; + } + $exception = $rt_s(9584); + $ptr = 41; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Exception) { + $exception = $$je; + } else { + throw $$e; + } + } + $ptr = 11; + continue main; + case 39: + try { + $s2.$close(); + if ($rt_suspending()) { + break main; + } + $s2 = $this.$field_146582_i; + $ptr = 40; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Exception) { + $exception = $$je; + } else { + throw $$e; + } + } + $ptr = 11; + continue main; + case 40: a: { try { $tmp = ju_ArrayList_size($s2); @@ -1372857,16 +1375119,16 @@ } return; } - $ptr = 7; + $ptr = 11; continue main; - case 35: + case 41: try { $tmp = nlevp_EaglerProfile_getName(); if ($rt_suspending()) { break main; } var$5 = $tmp; - $ptr = 36; + $ptr = 42; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1372876,9 +1375138,9 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; - case 36: + case 42: try { $tmp = jl_String_replaceAll($s3, $exception, var$5); if ($rt_suspending()) { @@ -1372887,7 +1375149,7 @@ $s3 = $tmp; $exception = $rt_s(612); var$5 = $rt_s(9587); - $ptr = 37; + $ptr = 43; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1372897,9 +1375159,9 @@ throw $$e; } } - $ptr = 7; + $ptr = 11; continue main; - case 37: + case 43: try { $tmp = jl_String_replaceAll($s3, $exception, var$5); if ($rt_suspending()) { @@ -1372908,6 +1375170,63 @@ $s3 = $tmp; $exception = $this.$field_146582_i; var$5 = $this.$mc15.$fontRendererObj; + $ptr = 44; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Exception) { + $exception = $$je; + } else { + throw $$e; + } + } + $ptr = 11; + continue main; + case 44: + try { + $tmp = nmcg_FontRenderer_listFormattedStringToWidth(var$5, $s3, $short1); + if ($rt_suspending()) { + break main; + } + $s3 = $tmp; + $ptr = 45; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Exception) { + $exception = $$je; + } else { + throw $$e; + } + } + $ptr = 11; + continue main; + case 45: + try { + ju_AbstractCollection_addAll($exception, $s3); + if ($rt_suspending()) { + break main; + } + $s3 = $this.$field_146582_i; + $exception = $rt_s(14); + $ptr = 46; + continue main; + } catch ($$e) { + $$je = $rt_wrapException($$e); + if ($$je instanceof jl_Exception) { + $exception = $$je; + } else { + throw $$e; + } + } + $ptr = 11; + continue main; + case 46: + try { + ju_ArrayList_add($s3, $exception); + if ($rt_suspending()) { + break main; + } $ptr = 38; continue main; } catch ($$e) { @@ -1372918,68 +1375237,11 @@ throw $$e; } } - $ptr = 7; - continue main; - case 38: - try { - $tmp = nmcg_FontRenderer_listFormattedStringToWidth(var$5, $s3, $short1); - if ($rt_suspending()) { - break main; - } - $s3 = $tmp; - $ptr = 39; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Exception) { - $exception = $$je; - } else { - throw $$e; - } - } - $ptr = 7; - continue main; - case 39: - try { - ju_AbstractCollection_addAll($exception, $s3); - if ($rt_suspending()) { - break main; - } - $s3 = $this.$field_146582_i; - $exception = $rt_s(14); - $ptr = 40; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Exception) { - $exception = $$je; - } else { - throw $$e; - } - } - $ptr = 7; - continue main; - case 40: - try { - ju_ArrayList_add($s3, $exception); - if ($rt_suspending()) { - break main; - } - $ptr = 32; - continue main; - } catch ($$e) { - $$je = $rt_wrapException($$e); - if ($$je instanceof jl_Exception) { - $exception = $$je; - } else { - throw $$e; - } - } - $ptr = 7; + $ptr = 11; continue main; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $exception, $s3, $s2, $inputstream, var$5, $s1, $short1, var$8, $bufferedreader, $random, $j, $i, var$13, var$14, $ptr); + $rt_nativeThread().push($this, $exception, $s2, $inputstream, $s3, var$5, $s1, $short1, var$8, $bufferedreader, $random, $j, $i, var$13, var$14, $ptr); } function nmcg_GuiWinGame_drawWinGameScreen($this, $parInt1, $parInt2, $parFloat1) { var $tessellator, $worldrenderer, var$6, var$7, $i, $f1, $f5, $f, $f2, $f3, var$14, var$15, var$16, var$17, $ptr, $tmp; @@ -1375661,42 +1377923,49 @@ break main; } $parString1 = nmu_EnumChatFormatting_BLACK; - var$3 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_(var$3); $ptr = 6; case 6: + $tmp = jl_String_valueOf($parString1); + if ($rt_suspending()) { + break main; + } + $parString1 = $tmp; + var$3 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_(var$3); + $ptr = 7; + case 7: jl_AbstractStringBuilder_append(var$3, var$4); if ($rt_suspending()) { break main; } - $ptr = 7; - case 7: + $ptr = 8; + case 8: jl_AbstractStringBuilder_append(var$3, $parString1); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append0(var$3, 95); - $ptr = 8; - case 8: + $ptr = 9; + case 9: $tmp = jl_AbstractStringBuilder_toString(var$3); if ($rt_suspending()) { break main; } $parString1 = $tmp; $i = 118; - $ptr = 9; - case 9: + $ptr = 10; + case 10: $tmp = nmcg_FontRenderer_splitStringWidth($s, $parString1, $i); if ($rt_suspending()) { break main; } $i = $tmp; if ($i <= 128 && jl_String_length(var$4) < 256) { - $ptr = 10; + $ptr = 11; continue main; } return; - case 10: + case 11: nmcg_GuiScreenBook_pageSetCurrent($this, var$4); if ($rt_suspending()) { break main; @@ -1375767,10 +1378036,10 @@ continue main; } if (($this.$updateCount / 6 | 0) % 2 | 0) { - $ptr = 19; + $ptr = 20; continue main; } - $ptr = 23; + $ptr = 25; continue main; case 5: $tmp = nmcr_I18n_format($s4, var$16); @@ -1375790,27 +1378059,27 @@ if ($this.$bookIsUnsigned) { if (nmcg_FontRenderer_getBidiFlag($this.$fontRendererObj0)) { $ichatcomponent = jl_StringBuilder__init_(); - $ptr = 31; + $ptr = 34; continue main; } if (($this.$updateCount / 6 | 0) % 2 | 0) { - $ptr = 41; + $ptr = 44; continue main; } - $ptr = 45; + $ptr = 49; continue main; } if ($this.$field_175387_B != $this.$currPage) { $ichatcomponent = $this.$bookObj; - $ptr = 29; + $ptr = 32; continue main; } $k1 = nmcg_FontRenderer_getStringWidth($this.$fontRendererObj0, $s4); $ichatcomponent = $this.$fontRendererObj0; - $l1 = (($k - $k1 | 0) + $this.$bookImageWidth | 0) - 44 | 0; - $b0 = 18; - $k1 = 0; - $ptr = 33; + $b0 = (($k - $k1 | 0) + $this.$bookImageWidth | 0) - 44 | 0; + $k1 = 18; + $l1 = 0; + $ptr = 36; continue main; case 6: $tmp = nmn_NBTTagList_tagCount($ichatcomponent); @@ -1375821,33 +1378090,33 @@ if ($k1 < $l1) { $ichatcomponent = $this.$bookPages; $k1 = $this.$currPage; - $ptr = 27; + $ptr = 30; continue main; } if ($this.$bookIsUnsigned) { if (nmcg_FontRenderer_getBidiFlag($this.$fontRendererObj0)) { $ichatcomponent = jl_StringBuilder__init_(); - $ptr = 31; + $ptr = 34; continue main; } if (($this.$updateCount / 6 | 0) % 2 | 0) { - $ptr = 41; + $ptr = 44; continue main; } - $ptr = 45; + $ptr = 49; continue main; } if ($this.$field_175387_B != $this.$currPage) { $ichatcomponent = $this.$bookObj; - $ptr = 29; + $ptr = 32; continue main; } $k1 = nmcg_FontRenderer_getStringWidth($this.$fontRendererObj0, $s4); $ichatcomponent = $this.$fontRendererObj0; - $l1 = (($k - $k1 | 0) + $this.$bookImageWidth | 0) - 44 | 0; - $b0 = 18; - $k1 = 0; - $ptr = 33; + $b0 = (($k - $k1 | 0) + $this.$bookImageWidth | 0) - 44 | 0; + $k1 = 18; + $l1 = 0; + $ptr = 36; continue main; case 7: $tmp = nmcr_I18n_format($s4, var$16); @@ -1375907,22 +1378176,29 @@ break main; } $ichatcomponent = nmu_EnumChatFormatting_DARK_GRAY; - $ichatcomponent1 = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($ichatcomponent1); $ptr = 13; case 13: - jl_AbstractStringBuilder_append($ichatcomponent1, $ichatcomponent); + $tmp = jl_String_valueOf($ichatcomponent); if ($rt_suspending()) { break main; } + $ichatcomponent = $tmp; + $ichatcomponent1 = new jl_StringBuilder; + jl_AbstractStringBuilder__init_($ichatcomponent1); $ptr = 14; case 14: - jl_AbstractStringBuilder_append($ichatcomponent1, $s2); + jl_AbstractStringBuilder_append($ichatcomponent1, $ichatcomponent); if ($rt_suspending()) { break main; } $ptr = 15; case 15: + jl_AbstractStringBuilder_append($ichatcomponent1, $s2); + if ($rt_suspending()) { + break main; + } + $ptr = 16; + case 16: $tmp = jl_AbstractStringBuilder_toString($ichatcomponent1); if ($rt_suspending()) { break main; @@ -1375931,16 +1378207,16 @@ $l1 = $k1 + ((116 - $j1 | 0) / 2 | 0) | 0; $k = 60; $b0 = 0; - $ptr = 16; - case 16: + $ptr = 17; + case 17: nmcg_FontRenderer_drawString($s4, $ichatcomponent, $l1, $k, $b0); if ($rt_suspending()) { break main; } $s4 = $rt_s(9595); var$16 = $rt_createArray(jl_Object, 0); - $ptr = 17; - case 17: + $ptr = 18; + case 18: $tmp = nmcr_I18n_format($s4, var$16); if ($rt_suspending()) { break main; @@ -1375950,69 +1378226,44 @@ $l1 = 82; $k = 116; $b0 = 0; - $ptr = 18; - case 18: + $ptr = 19; + case 19: nmcg_FontRenderer_drawSplitString($s4, $s3, $k1, $l1, $k, $b0); if ($rt_suspending()) { break main; } - $ptr = 28; + $ptr = 31; continue main; - case 19: + case 20: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } $s4 = nmu_EnumChatFormatting_GRAY; - $ichatcomponent = new jl_StringBuilder; - jl_AbstractStringBuilder__init_($ichatcomponent); - $ptr = 20; - case 20: - jl_AbstractStringBuilder_append($ichatcomponent, $s); - if ($rt_suspending()) { - break main; - } $ptr = 21; case 21: - jl_AbstractStringBuilder_append($ichatcomponent, $s4); + $tmp = jl_String_valueOf($s4); if ($rt_suspending()) { break main; } - jl_AbstractStringBuilder_append0($ichatcomponent, 95); - $ptr = 22; - case 22: - $tmp = jl_AbstractStringBuilder_toString($ichatcomponent); - if ($rt_suspending()) { - break main; - } - $s = $tmp; - $s4 = $rt_s(9594); - var$16 = $rt_createArray(jl_Object, 0); - $ptr = 7; - continue main; - case 23: - nmu_EnumChatFormatting_$callClinit(); - if ($rt_suspending()) { - break main; - } - $s4 = nmu_EnumChatFormatting_BLACK; + $s4 = $tmp; $ichatcomponent = new jl_StringBuilder; jl_AbstractStringBuilder__init_($ichatcomponent); - $ptr = 24; - case 24: + $ptr = 22; + case 22: jl_AbstractStringBuilder_append($ichatcomponent, $s); if ($rt_suspending()) { break main; } - $ptr = 25; - case 25: + $ptr = 23; + case 23: jl_AbstractStringBuilder_append($ichatcomponent, $s4); if ($rt_suspending()) { break main; } jl_AbstractStringBuilder_append0($ichatcomponent, 95); - $ptr = 26; - case 26: + $ptr = 24; + case 24: $tmp = jl_StringBuilder_toString($ichatcomponent); if ($rt_suspending()) { break main; @@ -1376022,7 +1378273,47 @@ var$16 = $rt_createArray(jl_Object, 0); $ptr = 7; continue main; + case 25: + nmu_EnumChatFormatting_$callClinit(); + if ($rt_suspending()) { + break main; + } + $s4 = nmu_EnumChatFormatting_BLACK; + $ptr = 26; + case 26: + $tmp = jl_String_valueOf($s4); + if ($rt_suspending()) { + break main; + } + $s4 = $tmp; + $ichatcomponent = jl_StringBuilder__init_(); + $ptr = 27; case 27: + $tmp = jl_StringBuilder_append($ichatcomponent, $s); + if ($rt_suspending()) { + break main; + } + $ichatcomponent1 = $tmp; + $ptr = 28; + case 28: + $tmp = jl_StringBuilder_append($ichatcomponent1, $s4); + if ($rt_suspending()) { + break main; + } + $s4 = $tmp; + jl_StringBuilder_append5($s4, 95); + $ptr = 29; + case 29: + $tmp = jl_StringBuilder_toString($ichatcomponent); + if ($rt_suspending()) { + break main; + } + $s = $tmp; + $s4 = $rt_s(9594); + var$16 = $rt_createArray(jl_Object, 0); + $ptr = 7; + continue main; + case 30: $tmp = nmn_NBTTagList_getStringTagAt($ichatcomponent, $k1); if ($rt_suspending()) { break main; @@ -1376031,42 +1378322,42 @@ if ($this.$bookIsUnsigned) { if (nmcg_FontRenderer_getBidiFlag($this.$fontRendererObj0)) { $ichatcomponent = jl_StringBuilder__init_(); - $ptr = 31; + $ptr = 34; continue main; } if (($this.$updateCount / 6 | 0) % 2 | 0) { - $ptr = 41; + $ptr = 44; continue main; } - $ptr = 45; + $ptr = 49; continue main; } if ($this.$field_175387_B != $this.$currPage) { $ichatcomponent = $this.$bookObj; - $ptr = 29; + $ptr = 32; continue main; } $k1 = nmcg_FontRenderer_getStringWidth($this.$fontRendererObj0, $s4); $ichatcomponent = $this.$fontRendererObj0; - $l1 = (($k - $k1 | 0) + $this.$bookImageWidth | 0) - 44 | 0; - $b0 = 18; - $k1 = 0; - $ptr = 33; + $b0 = (($k - $k1 | 0) + $this.$bookImageWidth | 0) - 44 | 0; + $k1 = 18; + $l1 = 0; + $ptr = 36; continue main; - case 28: + case 31: nmcg_GuiScreen_drawScreen($this, $i, $j, $f); if ($rt_suspending()) { break main; } return; - case 29: + case 32: $tmp = nmi_ItemStack_getTagCompound($ichatcomponent); if ($rt_suspending()) { break main; } $ichatcomponent = $tmp; - $ptr = 30; - case 30: + $ptr = 33; + case 33: $tmp = nmi_ItemEditableBook_validBookTagContents($ichatcomponent); if ($rt_suspending()) { break main; @@ -1376074,11 +1378365,11 @@ $k1 = $tmp; if (!$k1) { $chatcomponenttext = new nmu_ChatComponentText; - $ptr = 34; + $ptr = 37; continue main; } try { - $ptr = 40; + $ptr = 43; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1376091,20 +1378382,20 @@ $this.$field_175387_B = $this.$currPage; $k1 = nmcg_FontRenderer_getStringWidth($this.$fontRendererObj0, $s4); $ichatcomponent = $this.$fontRendererObj0; - $l1 = (($k - $k1 | 0) + $this.$bookImageWidth | 0) - 44 | 0; - $b0 = 18; - $k1 = 0; - $ptr = 33; + $b0 = (($k - $k1 | 0) + $this.$bookImageWidth | 0) - 44 | 0; + $k1 = 18; + $l1 = 0; + $ptr = 36; continue main; - case 31: + case 34: $tmp = jl_StringBuilder_append($ichatcomponent, $s5); if ($rt_suspending()) { break main; } $ichatcomponent1 = $tmp; jl_StringBuilder_append5($ichatcomponent1, 95); - $ptr = 32; - case 32: + $ptr = 35; + case 35: $tmp = jl_StringBuilder_toString($ichatcomponent); if ($rt_suspending()) { break main; @@ -1376112,19 +1378403,19 @@ $s5 = $tmp; $k1 = nmcg_FontRenderer_getStringWidth($this.$fontRendererObj0, $s4); $ichatcomponent = $this.$fontRendererObj0; - $l1 = (($k - $k1 | 0) + $this.$bookImageWidth | 0) - 44 | 0; - $b0 = 18; - $k1 = 0; - $ptr = 33; - case 33: - nmcg_FontRenderer_drawString($ichatcomponent, $s4, $l1, $b0, $k1); + $b0 = (($k - $k1 | 0) + $this.$bookImageWidth | 0) - 44 | 0; + $k1 = 18; + $l1 = 0; + $ptr = 36; + case 36: + nmcg_FontRenderer_drawString($ichatcomponent, $s4, $b0, $k1, $l1); if ($rt_suspending()) { break main; } $s4 = $this.$field_175386_A; if ($s4 !== null) { $k1 = 128 / $this.$fontRendererObj0.$FONT_HEIGHT | 0; - $ptr = 49; + $ptr = 54; continue main; } $s4 = $this.$fontRendererObj0; @@ -1376132,46 +1378423,46 @@ $l1 = 34; $k = 116; $b0 = 0; - $ptr = 50; + $ptr = 55; continue main; - case 34: + case 37: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } $ichatcomponent = nmu_EnumChatFormatting_DARK_RED; - $ptr = 35; - case 35: + $ptr = 38; + case 38: $tmp = nmu_EnumChatFormatting_toString($ichatcomponent); if ($rt_suspending()) { break main; } $ichatcomponent1 = $tmp; $ichatcomponent = jl_StringBuilder__init_(); - $ptr = 36; - case 36: + $ptr = 39; + case 39: $tmp = jl_StringBuilder_append($ichatcomponent, $ichatcomponent1); if ($rt_suspending()) { break main; } $ichatcomponent1 = $tmp; $ichatcomponent2 = $rt_s(9596); - $ptr = 37; - case 37: + $ptr = 40; + case 40: jl_StringBuilder_append($ichatcomponent1, $ichatcomponent2); if ($rt_suspending()) { break main; } - $ptr = 38; - case 38: + $ptr = 41; + case 41: $tmp = jl_StringBuilder_toString($ichatcomponent); if ($rt_suspending()) { break main; } $ichatcomponent = $tmp; nmu_ChatComponentText__init_0($chatcomponenttext, $ichatcomponent); - $ptr = 39; - case 39: + $ptr = 42; + case 42: $tmp = cgcc_Lists_newArrayList0($chatcomponenttext); if ($rt_suspending()) { break main; @@ -1376181,12 +1378472,12 @@ $this.$field_175387_B = $this.$currPage; $k1 = nmcg_FontRenderer_getStringWidth($this.$fontRendererObj0, $s4); $ichatcomponent = $this.$fontRendererObj0; - $l1 = (($k - $k1 | 0) + $this.$bookImageWidth | 0) - 44 | 0; - $b0 = 18; - $k1 = 0; - $ptr = 33; + $b0 = (($k - $k1 | 0) + $this.$bookImageWidth | 0) - 44 | 0; + $k1 = 18; + $l1 = 0; + $ptr = 36; continue main; - case 40: + case 43: a: { try { $tmp = nmu_IChatComponent$Serializer_jsonToComponent($s5); @@ -1376202,7 +1378493,7 @@ $ichatcomponent1 = $this.$fontRendererObj0; $l1 = 1; $b0 = 1; - $ptr = 51; + $ptr = 56; continue main; } catch ($$e) { $$je = $rt_wrapException($$e); @@ -1376216,53 +1378507,24 @@ $this.$field_175387_B = $this.$currPage; $k1 = nmcg_FontRenderer_getStringWidth($this.$fontRendererObj0, $s4); $ichatcomponent = $this.$fontRendererObj0; - $l1 = (($k - $k1 | 0) + $this.$bookImageWidth | 0) - 44 | 0; - $b0 = 18; - $k1 = 0; - $ptr = 33; + $b0 = (($k - $k1 | 0) + $this.$bookImageWidth | 0) - 44 | 0; + $k1 = 18; + $l1 = 0; + $ptr = 36; continue main; - case 41: - nmu_EnumChatFormatting_$callClinit(); - if ($rt_suspending()) { - break main; - } - $ichatcomponent2 = nmu_EnumChatFormatting_GRAY; - $ichatcomponent = jl_StringBuilder__init_(); - $ptr = 42; - case 42: - $tmp = jl_StringBuilder_append($ichatcomponent, $s5); - if ($rt_suspending()) { - break main; - } - $ichatcomponent1 = $tmp; - $ptr = 43; - case 43: - $tmp = jl_StringBuilder_append($ichatcomponent1, $ichatcomponent2); - if ($rt_suspending()) { - break main; - } - $ichatcomponent1 = $tmp; - jl_StringBuilder_append5($ichatcomponent1, 95); - $ptr = 44; case 44: - $tmp = jl_StringBuilder_toString($ichatcomponent); - if ($rt_suspending()) { - break main; - } - $s5 = $tmp; - $k1 = nmcg_FontRenderer_getStringWidth($this.$fontRendererObj0, $s4); - $ichatcomponent = $this.$fontRendererObj0; - $l1 = (($k - $k1 | 0) + $this.$bookImageWidth | 0) - 44 | 0; - $b0 = 18; - $k1 = 0; - $ptr = 33; - continue main; - case 45: nmu_EnumChatFormatting_$callClinit(); if ($rt_suspending()) { break main; } - $ichatcomponent2 = nmu_EnumChatFormatting_BLACK; + $ichatcomponent = nmu_EnumChatFormatting_GRAY; + $ptr = 45; + case 45: + $tmp = jl_String_valueOf($ichatcomponent); + if ($rt_suspending()) { + break main; + } + $ichatcomponent2 = $tmp; $ichatcomponent = jl_StringBuilder__init_(); $ptr = 46; case 46: @@ -1376288,12 +1378550,55 @@ $s5 = $tmp; $k1 = nmcg_FontRenderer_getStringWidth($this.$fontRendererObj0, $s4); $ichatcomponent = $this.$fontRendererObj0; - $l1 = (($k - $k1 | 0) + $this.$bookImageWidth | 0) - 44 | 0; - $b0 = 18; - $k1 = 0; - $ptr = 33; + $b0 = (($k - $k1 | 0) + $this.$bookImageWidth | 0) - 44 | 0; + $k1 = 18; + $l1 = 0; + $ptr = 36; continue main; case 49: + nmu_EnumChatFormatting_$callClinit(); + if ($rt_suspending()) { + break main; + } + $ichatcomponent = nmu_EnumChatFormatting_BLACK; + $ptr = 50; + case 50: + $tmp = jl_String_valueOf($ichatcomponent); + if ($rt_suspending()) { + break main; + } + $ichatcomponent2 = $tmp; + $ichatcomponent = jl_StringBuilder__init_(); + $ptr = 51; + case 51: + $tmp = jl_StringBuilder_append($ichatcomponent, $s5); + if ($rt_suspending()) { + break main; + } + $ichatcomponent1 = $tmp; + $ptr = 52; + case 52: + $tmp = jl_StringBuilder_append($ichatcomponent1, $ichatcomponent2); + if ($rt_suspending()) { + break main; + } + $ichatcomponent1 = $tmp; + jl_StringBuilder_append5($ichatcomponent1, 95); + $ptr = 53; + case 53: + $tmp = jl_StringBuilder_toString($ichatcomponent); + if ($rt_suspending()) { + break main; + } + $s5 = $tmp; + $k1 = nmcg_FontRenderer_getStringWidth($this.$fontRendererObj0, $s4); + $ichatcomponent = $this.$fontRendererObj0; + $b0 = (($k - $k1 | 0) + $this.$bookImageWidth | 0) - 44 | 0; + $k1 = 18; + $l1 = 0; + $ptr = 36; + continue main; + case 54: $tmp = ju_ArrayList_size($s4); if ($rt_suspending()) { break main; @@ -1376303,20 +1378608,20 @@ $i2 = 0; $k = $k + 36 | 0; if ($i2 >= $l1) { - $ptr = 52; + $ptr = 57; continue main; } $s4 = $this.$field_175386_A; - $ptr = 53; + $ptr = 58; continue main; - case 50: + case 55: nmcg_FontRenderer_drawSplitString($s4, $s5, $k1, $l1, $k, $b0); if ($rt_suspending()) { break main; } - $ptr = 28; + $ptr = 31; continue main; - case 51: + case 56: a: { try { $tmp = nmcg_GuiUtilRenderComponents_func_178908_a($ichatcomponent, $k1, $ichatcomponent1, $l1, $b0); @@ -1376338,24 +1378643,24 @@ $this.$field_175387_B = $this.$currPage; $k1 = nmcg_FontRenderer_getStringWidth($this.$fontRendererObj0, $s4); $ichatcomponent = $this.$fontRendererObj0; - $l1 = (($k - $k1 | 0) + $this.$bookImageWidth | 0) - 44 | 0; - $b0 = 18; - $k1 = 0; - $ptr = 33; + $b0 = (($k - $k1 | 0) + $this.$bookImageWidth | 0) - 44 | 0; + $k1 = 18; + $l1 = 0; + $ptr = 36; continue main; - case 52: + case 57: $tmp = nmcg_GuiScreenBook_func_175385_b($this, $i, $j); if ($rt_suspending()) { break main; } $ichatcomponent1 = $tmp; if ($ichatcomponent1 === null) { - $ptr = 28; + $ptr = 31; continue main; } - $ptr = 56; + $ptr = 61; continue main; - case 53: + case 58: $tmp = ju_ArrayList_get($s4, $i2); if ($rt_suspending()) { break main; @@ -1376363,8 +1378668,8 @@ $s4 = $tmp; $ichatcomponent2 = $s4; $s4 = $this.$fontRendererObj0; - $ptr = 54; - case 54: + $ptr = 59; + case 59: $tmp = nmu_ChatComponentStyle_getUnformattedText($ichatcomponent2); if ($rt_suspending()) { break main; @@ -1376372,26 +1378677,26 @@ $ichatcomponent = $tmp; $k1 = 34 + $rt_imul($i2, $this.$fontRendererObj0.$FONT_HEIGHT) | 0; $b0 = 0; - $ptr = 55; - case 55: + $ptr = 60; + case 60: nmcg_FontRenderer_drawString($s4, $ichatcomponent, $k, $k1, $b0); if ($rt_suspending()) { break main; } $i2 = $i2 + 1 | 0; if ($i2 >= $l1) { - $ptr = 52; + $ptr = 57; continue main; } $s4 = $this.$field_175386_A; - $ptr = 53; + $ptr = 58; continue main; - case 56: + case 61: nmcg_GuiScreen_handleComponentHover($this, $ichatcomponent1, $i, $j); if ($rt_suspending()) { break main; } - $ptr = 28; + $ptr = 31; continue main; default: $rt_invalidPointer(); }} @@ -1376709,7 +1379014,7 @@ var a = this; jl_Object.call(a); a.$val$s1 = null; a.$val$s0 = null; - a.$this$083 = null; + a.$this$055 = null; } function nmcn_NetHandlerPlayClient$1_confirmClicked($this, $flag, $var2) { var var$3, var$4, var$5, var$6, var$7, $ptr, $tmp; @@ -1376720,7 +1379025,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$3 = $this.$this$083; + var$3 = $this.$this$055; $ptr = 1; case 1: $tmp = nmc_Minecraft_getMinecraft(); @@ -1376730,11 +1379035,11 @@ var$4 = $tmp; var$3.$gameController = var$4; if (!$flag) { - var$4 = $this.$this$083.$gameController; + var$4 = $this.$this$055.$gameController; $ptr = 2; continue main; } - var$4 = $this.$this$083.$gameController; + var$4 = $this.$this$055.$gameController; $ptr = 3; continue main; case 2: @@ -1376744,11 +1379049,11 @@ } var$4 = $tmp; if (var$4 !== null) { - var$4 = $this.$this$083.$gameController; + var$4 = $this.$this$055.$gameController; $ptr = 5; continue main; } - var$3 = $this.$this$083.$netManager0; + var$3 = $this.$this$055.$netManager0; var$5 = new nmnpc_C19PacketResourcePackStatus; var$6 = $this.$val$s1; nmnpc_C19PacketResourcePackStatus$Action_$callClinit(); @@ -1376762,11 +1379067,11 @@ } var$4 = $tmp; if (var$4 !== null) { - var$4 = $this.$this$083.$gameController; + var$4 = $this.$this$055.$gameController; $ptr = 9; continue main; } - var$4 = $this.$this$083.$netManager0; + var$4 = $this.$this$055.$netManager0; var$3 = new nmnpc_C19PacketResourcePackStatus; var$5 = $this.$val$s1; nmnpc_C19PacketResourcePackStatus$Action_$callClinit(); @@ -1376778,7 +1379083,7 @@ if ($rt_suspending()) { break main; } - var$4 = $this.$this$083.$gameController; + var$4 = $this.$this$055.$gameController; $ptr = 11; continue main; case 5: @@ -1376794,7 +1379099,7 @@ break main; } var$4.$resourceMode = nmcm_ServerData$ServerResourceMode_DISABLED; - var$3 = $this.$this$083.$netManager0; + var$3 = $this.$this$055.$netManager0; var$5 = new nmnpc_C19PacketResourcePackStatus; var$6 = $this.$val$s1; nmnpc_C19PacketResourcePackStatus$Action_$callClinit(); @@ -1376806,7 +1379111,7 @@ if ($rt_suspending()) { break main; } - var$6 = $this.$this$083.$gameController.$mcResourcePackRepository; + var$6 = $this.$this$055.$gameController.$mcResourcePackRepository; var$4 = $this.$val$s0; var$3 = $this.$val$s1; var$5 = new nmcn_NetHandlerPlayClient$1$confirmClicked$lambda$_1_0; @@ -1376818,7 +1379123,7 @@ if ($rt_suspending()) { break main; } - var$4 = $this.$this$083.$gameController; + var$4 = $this.$this$055.$gameController; $ptr = 11; continue main; case 9: @@ -1376834,7 +1379139,7 @@ break main; } var$4.$resourceMode = nmcm_ServerData$ServerResourceMode_ENABLED; - var$4 = $this.$this$083.$netManager0; + var$4 = $this.$this$055.$netManager0; var$3 = new nmnpc_C19PacketResourcePackStatus; var$5 = $this.$val$s1; nmnpc_C19PacketResourcePackStatus$Action_$callClinit(); @@ -1376892,7 +1379197,7 @@ if ($rt_suspending()) { break main; } - var$4 = $this.$this$083.$gameController; + var$4 = $this.$this$055.$gameController; var$3 = null; $ptr = 18; case 18: @@ -1377334,7 +1379639,6 @@ nmi_Container__init_($this); $this.$tileBeacon0 = $tileBeaconIn; var$3 = new nmi_ContainerBeacon$BeaconSlot; - var$3.$this$0304 = $this; nmi_Slot__init_0(var$3, $tileBeaconIn, 0, 136, 110); $this.$beaconSlot = var$3; nmi_Container_addSlotToContainer($this, var$3); @@ -1377752,7 +1380056,7 @@ nmi_Container__init_($this); $this.$outputSlot = nmi_InventoryCraftResult__init_0(); var$5 = new nmi_ContainerRepair$1; - var$5.$this$0305 = $this; + var$5.$this$0189 = $this; nmi_InventoryBasic__init_0(var$5, $rt_s(9598), 1, 2); $this.$inputSlots = var$5; $this.$selfPosition = $blockPosIn; @@ -1377762,7 +1380066,7 @@ nmi_Container_addSlotToContainer($this, nmi_Slot__init_($this.$inputSlots, 1, 76, 47)); $player = new nmi_ContainerRepair$2; var$5 = $this.$outputSlot; - $player.$this$0306 = $this; + $player.$this$0190 = $this; $player.$val$worldIn0 = $worldIn; $player.$val$blockPosIn = $blockPosIn; nmi_Slot__init_0($player, var$5, 2, 134, 47); @@ -1379370,7 +1381674,7 @@ a.$val$d21 = 0.0; a.$val$var80 = 0.0; a.$val$var9 = 0; - a.$this$0220 = null; + a.$this$0142 = null; } function nmcrt_TileEntityEndPortalRenderer$1_draw($this, $pass) { var var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, $ptr, $tmp; @@ -1379393,7 +1381697,7 @@ nlevoed_DeferredStateManager_setRoughnessConstant(0.30000001192092896); nlevoed_DeferredStateManager_setMetalnessConstant(0.30000001192092896); nlevoed_DeferredStateManager_setEmissionConstant(0.8999999761581421); - $pass = $this.$this$0220; + $pass = $this.$this$0142; var$5 = $this.$val$var1; var$6 = $this.$val$d01; var$7 = $this.$val$d11; @@ -1379423,7 +1381727,7 @@ nlevoed_DeferredStateManager_setRoughnessConstant(0.30000001192092896); nlevoed_DeferredStateManager_setMetalnessConstant(0.30000001192092896); nlevoed_DeferredStateManager_setEmissionConstant(0.8999999761581421); - $pass = $this.$this$0220; + $pass = $this.$this$0142; var$5 = $this.$val$var1; var$6 = $this.$val$d01; var$7 = $this.$val$d11; @@ -1379449,7 +1381753,7 @@ a.$val$d12 = 0.0; a.$val$d22 = 0.0; a.$val$tessellator = null; - a.$this$0307 = null; + a.$this$0191 = null; } function nmcrt_TileEntityBeaconRenderer$1__init_(var_0, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8, var_9, var_10, var_11, var_12, var_13, var_14, var_15) { var var_16 = new nmcrt_TileEntityBeaconRenderer$1(); @@ -1379457,7 +1381761,7 @@ return var_16; } function nmcrt_TileEntityBeaconRenderer$1__init_0($this, $this$0, $x, $y, $z, $partialTicks, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16) { - $this.$this$0307 = $this$0; + $this.$this$0191 = $this$0; $this.$val$mat10 = var$6; $this.$val$lx4 = var$7; $this.$val$ly5 = var$8; @@ -1379482,7 +1381786,7 @@ case 0: nlevoed_ShadersRenderPassFuture$PassType_$callClinit(); if ($pass !== nlevoed_ShadersRenderPassFuture$PassType_MAIN) { - $pass = $this.$this$0307; + $pass = $this.$this$0191; $ptr = 1; continue main; } @@ -1379587,7 +1381891,7 @@ if ($rt_suspending()) { break main; } - $pass = $this.$this$0307; + $pass = $this.$this$0191; $ptr = 1; continue main; case 13: @@ -1380247,7 +1382551,7 @@ a.$val$f40 = 0.0; a.$val$f50 = 0.0; a.$val$f60 = 0.0; - a.$this$0159 = null; + a.$this$0103 = null; } function nmcrel_LayerSpiderEyes$1_draw($this, $pass) { var var$2, var$3, var$4, $eee, var$6, var$7, var$8, var$9, var$10, var$11, var$12, $ptr, $tmp; @@ -1380260,7 +1382564,7 @@ case 0: nlevoed_ShadersRenderPassFuture$PassType_$callClinit(); if ($pass !== nlevoed_ShadersRenderPassFuture$PassType_MAIN) { - $pass = $this.$this$0159.$spiderRenderer; + $pass = $this.$this$0103.$spiderRenderer; $ptr = 1; continue main; } @@ -1380337,7 +1382641,7 @@ if ($rt_suspending()) { break main; } - $eee = $this.$this$0159.$spiderRenderer.$mainModel; + $eee = $this.$this$0103.$spiderRenderer.$mainModel; $pass = $this.$val$entityspider; var$2 = $this.$val$f6; var$3 = $this.$val$f10; @@ -1380393,7 +1382697,7 @@ if ($rt_suspending()) { break main; } - $pass = $this.$this$0159.$spiderRenderer; + $pass = $this.$this$0103.$spiderRenderer; $ptr = 1; continue main; default: $rt_invalidPointer(); @@ -1380411,7 +1382715,7 @@ a.$val$f41 = 0.0; a.$val$f51 = 0.0; a.$val$f61 = 0.0; - a.$this$0160 = null; + a.$this$0104 = null; } function nmcrel_LayerCreeperCharge$1_draw($this, $pass) { var $f7, var$3, var$4, $flag, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, $ptr, $tmp; @@ -1380536,7 +1382840,7 @@ if ($rt_suspending()) { break main; } - $pass = $this.$this$0160.$creeperRenderer; + $pass = $this.$this$0104.$creeperRenderer; $ptr = 14; case 14: nmcrel_LayerCreeperCharge_$callClinit(); @@ -1380550,9 +1382854,9 @@ if ($rt_suspending()) { break main; } - $pass = $this.$this$0160; + $pass = $this.$this$0104; nmcm_ModelBase_setModelAttributes($pass.$creeperModel, $pass.$creeperRenderer.$mainModel); - $pass = $this.$this$0160.$creeperModel; + $pass = $this.$this$0104.$creeperModel; var$11 = $this.$val$entitycreeper; $f7 = $this.$val$f7; var$3 = $this.$val$f11; @@ -1380650,7 +1382954,7 @@ a.$val$f42 = 0.0; a.$val$f52 = 0.0; a.$val$f62 = 0.0; - a.$this$0161 = null; + a.$this$0105 = null; } function nmcrel_LayerEndermanEyes$1_draw($this, $pass) { var var$2, var$3, var$4, $eee, var$6, var$7, var$8, var$9, var$10, var$11, var$12, $ptr, $tmp; @@ -1380663,7 +1382967,7 @@ case 0: nlevoed_ShadersRenderPassFuture$PassType_$callClinit(); if ($pass !== nlevoed_ShadersRenderPassFuture$PassType_MAIN) { - $pass = $this.$this$0161.$endermanRenderer; + $pass = $this.$this$0105.$endermanRenderer; $ptr = 1; continue main; } @@ -1380740,7 +1383044,7 @@ if ($rt_suspending()) { break main; } - $eee = $this.$this$0161.$endermanRenderer.$mainModel; + $eee = $this.$this$0105.$endermanRenderer.$mainModel; $pass = $this.$val$entityenderman; $ptr = 10; case 10: @@ -1380805,7 +1383109,7 @@ if ($rt_suspending()) { break main; } - $pass = $this.$this$0161.$endermanRenderer; + $pass = $this.$this$0105.$endermanRenderer; $ptr = 1; continue main; default: $rt_invalidPointer(); @@ -1380819,7 +1383123,7 @@ a.$val$ly2 = 0.0; a.$val$blockrendererdispatcher = null; a.$val$iblockstate = null; - a.$this$0162 = null; + a.$this$0106 = null; } function nmcrel_LayerHeldBlock$1_draw($this, $pass) { var var$2, var$3, var$4, var$5, var$6, var$7, $ptr, $tmp; @@ -1380867,7 +1383171,7 @@ if ($rt_suspending()) { break main; } - $pass = $this.$this$0162.$endermanRenderer0; + $pass = $this.$this$0106.$endermanRenderer0; $ptr = 5; case 5: nmcrt_TextureMap_$callClinit(); @@ -1380944,7 +1383248,7 @@ a.$val$f33 = 0.0; a.$val$f43 = 0.0; a.$val$f53 = 0.0; - a.$this$0164 = null; + a.$this$0108 = null; } function nmcrel_LayerSlimeGel$1_draw($this, $pass) { var var$2, var$3, var$4, var$5, $flag, var$7, var$8, var$9, var$10, var$11, var$12, $ptr, $tmp; @@ -1380966,7 +1383270,7 @@ nlevoed_DeferredStateManager_setDefaultMaterialConstants(); nlevoed_DeferredStateManager_setRoughnessConstant(0.30000001192092896); nlevoed_DeferredStateManager_setMetalnessConstant(0.10000000149011612); - $pass = $this.$this$0164.$slimeRenderer; + $pass = $this.$this$0108.$slimeRenderer; var$5 = $this.$val$entityslime; var$2 = $this.$partialTicks2; $flag = 1; @@ -1381041,7 +1383345,7 @@ nlevoed_DeferredStateManager_setDefaultMaterialConstants(); nlevoed_DeferredStateManager_setRoughnessConstant(0.30000001192092896); nlevoed_DeferredStateManager_setMetalnessConstant(0.10000000149011612); - $pass = $this.$this$0164.$slimeRenderer; + $pass = $this.$this$0108.$slimeRenderer; var$5 = $this.$val$entityslime; var$2 = $this.$partialTicks2; $flag = 1; @@ -1381052,9 +1383356,9 @@ if ($rt_suspending()) { break main; } - $pass = $this.$this$0164; + $pass = $this.$this$0108; nmcm_ModelBase_setModelAttributes($pass.$slimeModel, $pass.$slimeRenderer.$mainModel); - $pass = $this.$this$0164.$slimeRenderer; + $pass = $this.$this$0108.$slimeRenderer; $ptr = 10; case 10: nmcre_RenderSlime_$callClinit(); @@ -1381068,7 +1383372,7 @@ if ($rt_suspending()) { break main; } - $pass = $this.$this$0164.$slimeModel; + $pass = $this.$this$0108.$slimeModel; var$5 = $this.$val$entityslime; var$2 = $this.$val$f9; var$3 = $this.$val$f13; @@ -1381119,7 +1383423,7 @@ a.$val$var6 = 0.0; a.$val$var7 = 0.0; a.$val$var8 = 0.0; - a.$this$0165 = null; + a.$this$0109 = null; } function nmcrel_LayerEnderDragonDeath$1_draw($this, $pass) { var var$2, $bright, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, $ptr, $tmp; @@ -1381193,7 +1383497,7 @@ if ($rt_suspending()) { break main; } - $pass = $this.$this$0165; + $pass = $this.$this$0109; var$9 = $this.$val$entitydragon; var$2 = $this.$val$var2; $bright = $this.$val$var3; @@ -1381263,7 +1383567,7 @@ a.$val$f44 = 0.0; a.$val$f54 = 0.0; a.$val$f63 = 0.0; - a.$this$0166 = null; + a.$this$0110 = null; } function nmcrel_LayerWitherAura$1_draw($this, $pass) { var $f7, $f8, $f9, $flag, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, $ptr, $tmp; @@ -1381326,7 +1383630,7 @@ $ptr = 22; continue main; } - $pass = $this.$this$0166.$witherRenderer; + $pass = $this.$this$0110.$witherRenderer; $ptr = 6; continue main; case 5: @@ -1381398,7 +1383702,7 @@ if ($rt_suspending()) { break main; } - $pass = $this.$this$0166.$witherModel; + $pass = $this.$this$0110.$witherModel; var$11 = $this.$val$entitywither; $f7 = $this.$val$f15; $f8 = $this.$val$f16; @@ -1381409,7 +1383713,7 @@ if ($rt_suspending()) { break main; } - $pass = $this.$this$0166.$witherModel; + $pass = $this.$this$0110.$witherModel; $f7 = $this.$val$f15; $f8 = $this.$val$f16; $f9 = $this.$val$f23; @@ -1381423,9 +1383727,9 @@ if ($rt_suspending()) { break main; } - $pass = $this.$this$0166; + $pass = $this.$this$0110; nmcm_ModelBase_setModelAttributes($pass.$witherModel, $pass.$witherRenderer.$mainModel); - $pass = $this.$this$0166.$witherModel; + $pass = $this.$this$0110.$witherModel; var$11 = $this.$val$entitywither; var$10 = $this.$val$f15; var$12 = $this.$val$f16; @@ -1381481,7 +1383785,7 @@ if ($rt_suspending()) { break main; } - $pass = $this.$this$0166.$witherRenderer; + $pass = $this.$this$0110.$witherRenderer; $ptr = 6; continue main; case 23: @@ -1381707,9 +1384011,8 @@ nmea_RandomPositionGenerator_staticVector = nmu_Vec3__init_0(0.0, 0.0, 0.0); } function nme_EntityTracker$1() { - var a = this; jl_Object.call(a); - a.$val$updateFrequency = 0; - a.$this$0187 = null; + jl_Object.call(this); + this.$val$updateFrequency = 0; } function nme_EntityTracker$1_call($this) { var var$1, var$2, var$3, var$4, $ptr, $tmp; @@ -1382000,7 +1384303,7 @@ a.$delegate5 = null; a.$ancestor = null; a.$ancestorDelegate = null; - a.$this$0308 = null; + a.$this$0192 = null; } function cgcc_AbstractMapBasedMultimap$WrappedCollection__init_0(var_0, var_1, var_2, var_3) { var var_4 = new cgcc_AbstractMapBasedMultimap$WrappedCollection(); @@ -1382008,7 +1384311,7 @@ return var_4; } function cgcc_AbstractMapBasedMultimap$WrappedCollection__init_($this, var$1, $key, $delegate, $ancestor) { - $this.$this$0308 = var$1; + $this.$this$0192 = var$1; $this.$key11 = $key; $this.$delegate5 = $delegate; $this.$ancestor = $ancestor; @@ -1382038,7 +1384341,7 @@ var$2 = $tmp; if (!var$2) return; - $newDelegate = $this.$this$0308.$map8; + $newDelegate = $this.$this$0192.$map8; var$3 = $this.$key11; $ptr = 3; continue main; @@ -1382113,7 +1384416,7 @@ break main; } var$1 = new cgcc_AbstractMapBasedMultimap$WrappedCollection$WrappedIterator; - var$1.$this$112 = $this; + var$1.$this$111 = $this; var$2 = $this.$delegate5; var$1.$originalDelegate = var$2; if (!$rt_isInstance(var$2, ju_List)) { @@ -1382145,23 +1384448,23 @@ } function cgcc_AbstractMapBasedMultimap$WrappedSortedSet() { cgcc_AbstractMapBasedMultimap$WrappedCollection.call(this); - this.$this$0244 = null; + this.$this$0160 = null; } function cgcc_AbstractMapBasedMultimap$WrappedSet() { cgcc_AbstractMapBasedMultimap$WrappedCollection.call(this); - this.$this$0245 = null; + this.$this$0161 = null; } function nmcg_GuiCreateFlatWorld$Details() { var a = this; nmcg_GuiSlot.call(a); a.$field_148228_k = 0; - a.$this$0296 = null; + a.$this$0185 = null; } function nmcg_GuiCreateFlatWorld$Details_getSize($this) { - return $this.$this$0296.$theFlatGeneratorInfo.$flatLayers.$size; + return $this.$this$0185.$theFlatGeneratorInfo.$flatLayers.$size; } function nmcg_GuiCreateFlatWorld$Details_elementClicked($this, $i, $var2, $var3, $var4) { $this.$field_148228_k = $i; - nmcg_GuiCreateFlatWorld_func_146375_g($this.$this$0296); + nmcg_GuiCreateFlatWorld_func_146375_g($this.$this$0185); } function nmcg_GuiCreateFlatWorld$Details_isSelected($this, $i) { return $i != $this.$field_148228_k ? 0 : 1; @@ -1382177,7 +1384480,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$7 = $this.$this$0296.$theFlatGeneratorInfo.$flatLayers; + var$7 = $this.$this$0185.$theFlatGeneratorInfo.$flatLayers; $var4 = (var$7.$size - $i | 0) - 1 | 0; $ptr = 1; case 1: @@ -1382328,7 +1384631,7 @@ } var$19 = $var5 + 0 | 0; var$20 = $var4 + 18 | 0; - var$21 = $this.$this$0296.$zLevel0; + var$21 = $this.$this$0185.$zLevel0; $ptr = 11; case 11: $tmp = nlevo_WorldRenderer_pos($s1, var$19, var$20, var$21); @@ -1382352,7 +1384655,7 @@ break main; } var$24 = $var5 + 18 | 0; - var$21 = $this.$this$0296.$zLevel0; + var$21 = $this.$this$0185.$zLevel0; $ptr = 14; case 14: $tmp = nlevo_WorldRenderer_pos($s1, var$24, var$20, var$21); @@ -1382374,7 +1384677,7 @@ break main; } var$21 = $var4 + 0 | 0; - var$20 = $this.$this$0296.$zLevel0; + var$20 = $this.$this$0185.$zLevel0; $ptr = 17; case 17: $tmp = nlevo_WorldRenderer_pos($s1, var$24, var$21, var$20); @@ -1382395,7 +1384698,7 @@ if ($rt_suspending()) { break main; } - var$20 = $this.$this$0296.$zLevel0; + var$20 = $this.$this$0185.$zLevel0; $ptr = 20; case 20: $tmp = nlevo_WorldRenderer_pos($s1, var$19, var$21, var$20); @@ -1382426,7 +1384729,7 @@ $ptr = 26; continue main; } - var$7 = $this.$this$0296.$fontRendererObj0; + var$7 = $this.$this$0185.$fontRendererObj0; $var4 = ($j + 18 | 0) + 5 | 0; $var5 = $k + 3 | 0; $k = 16777215; @@ -1382443,7 +1384746,7 @@ $ptr = 25; continue main; } - if ($i != ($this.$this$0296.$theFlatGeneratorInfo.$flatLayers.$size - 1 | 0)) { + if ($i != ($this.$this$0185.$theFlatGeneratorInfo.$flatLayers.$size - 1 | 0)) { var$7 = $rt_s(9603); var$25 = $rt_createArray(jl_Object, 1); var$25.data[0] = jl_Integer_valueOf0($flatlayerinfo.$layerCount); @@ -1382461,7 +1384764,7 @@ break main; } $s1 = $tmp; - var$7 = $this.$this$0296.$fontRendererObj0; + var$7 = $this.$this$0185.$fontRendererObj0; $i = (($j + 2 | 0) + 213 | 0) - nmcg_FontRenderer_getStringWidth(var$7, $s1) | 0; $j = 16777215; $ptr = 34; @@ -1382471,7 +1384774,7 @@ if ($rt_suspending()) { break main; } - var$7 = $this.$this$0296.$itemRender; + var$7 = $this.$this$0185.$itemRender; $var5 = $j + 2 | 0; $var4 = $k + 2 | 0; $ptr = 27; @@ -1382486,7 +1384789,7 @@ if ($rt_suspending()) { break main; } - var$7 = $this.$this$0296.$fontRendererObj0; + var$7 = $this.$this$0185.$fontRendererObj0; $var4 = ($j + 18 | 0) + 5 | 0; $var5 = $k + 3 | 0; $k = 16777215; @@ -1382525,7 +1384828,7 @@ break main; } $s1 = $tmp; - var$7 = $this.$this$0296.$fontRendererObj0; + var$7 = $this.$this$0185.$fontRendererObj0; $i = (($j + 2 | 0) + 213 | 0) - nmcg_FontRenderer_getStringWidth(var$7, $s1) | 0; $j = 16777215; $ptr = 34; @@ -1382536,7 +1384839,7 @@ break main; } $s1 = $tmp; - var$7 = $this.$this$0296.$fontRendererObj0; + var$7 = $this.$this$0185.$fontRendererObj0; $i = (($j + 2 | 0) + 213 | 0) - nmcg_FontRenderer_getStringWidth(var$7, $s1) | 0; $j = 16777215; $ptr = 34; @@ -1382643,7 +1384946,7 @@ } $this.$field_175317_i = var$1; var$1 = new nmcg_GuiScreenCustomizePresets$ListPreset; - var$1.$this$0309 = $this; + var$1.$this$0193 = $this; var$4 = $this.$mc15; var$6 = $this.$width7; var$7 = $this.$height7; @@ -1383571,12 +1385874,12 @@ } var$1 = $tmp; if (!$this.$field_175216_o) { - var$3 = $rt_s(5637); + var$3 = $rt_s(5636); var$2 = $rt_createArray(jl_Object, 0); $ptr = 2; continue main; } - var$3 = $rt_s(5636); + var$3 = $rt_s(5635); var$2 = $rt_createArray(jl_Object, 0); $ptr = 3; continue main; @@ -1383776,7 +1386079,7 @@ } $this.$field_146433_u = var$1; var$1 = new nmcg_GuiFlatPresets$ListSlot; - var$1.$this$0310 = $this; + var$1.$this$0194 = $this; var$4 = $this.$mc15; var$6 = $this.$width7; var$7 = $this.$height7; @@ -1385721,6 +1388024,74 @@ }} $rt_nativeThread().push($this, var$1, $itemstack, $itemstack1, var$4, $merchantrecipelist, var$6, $merchantrecipe, $ptr); } + var nmb_BlockLever$1 = $rt_classWithoutFields(); + var nmb_BlockLever$1_$SwitchMap$net$minecraft$util$EnumFacing = null; + var nmb_BlockLever$1_$SwitchMap$net$minecraft$util$EnumFacing$Axis = null; + var nmb_BlockLever$1_$clinitCalled = false; + function nmb_BlockLever$1_$callClinit() { + var $ptr = 0; + if ($rt_resuming()) { + $ptr = $rt_nativeThread().pop(); + } else if (nmb_BlockLever$1_$clinitCalled) { + return; + } + main: while (true) { switch ($ptr) { + case 0: + nmb_BlockLever$1_$clinitCalled = true; + $ptr = 1; + case 1: + nmb_BlockLever$1__clinit_(); + if ($rt_suspending()) { + break main; + } + nmb_BlockLever$1_$callClinit = $rt_eraseClinit(nmb_BlockLever$1); + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($ptr); + } + function nmb_BlockLever$1__clinit_() { + var var$1, var$2, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + $tmp = nmu_EnumFacing$Axis_values(); + if ($rt_suspending()) { + break main; + } + var$1 = $tmp; + var$2 = $rt_createIntArray(var$1.data.length); + var$1 = var$2.data; + nmb_BlockLever$1_$SwitchMap$net$minecraft$util$EnumFacing$Axis = var$2; + var$1[nmu_EnumFacing$Axis_X.$ordinal] = 1; + var$1[nmu_EnumFacing$Axis_Z.$ordinal] = 2; + $ptr = 2; + case 2: + $tmp = nmu_EnumFacing_values(); + if ($rt_suspending()) { + break main; + } + var$1 = $tmp; + var$1 = $rt_createIntArray(var$1.data.length); + var$2 = var$1.data; + nmb_BlockLever$1_$SwitchMap$net$minecraft$util$EnumFacing = var$1; + var$2[nmu_EnumFacing_DOWN.$ordinal] = 1; + var$2[nmu_EnumFacing_UP.$ordinal] = 2; + var$2[nmu_EnumFacing_NORTH.$ordinal] = 3; + var$2[nmu_EnumFacing_SOUTH.$ordinal] = 4; + var$2[nmu_EnumFacing_WEST.$ordinal] = 5; + var$2[nmu_EnumFacing_EAST.$ordinal] = 6; + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push(var$1, var$2, $ptr); + } function nmcrt_TileEntityBannerRenderer$TimedBannerTexture() { var a = this; jl_Object.call(a); a.$systemTime1 = Long_ZERO; @@ -1386041,7 +1388412,7 @@ } function cgcc_AbstractMapBasedMultimap$WrappedList() { cgcc_AbstractMapBasedMultimap$WrappedCollection.call(this); - this.$this$0311 = null; + this.$this$0195 = null; } function cgcc_AbstractMapBasedMultimap$WrappedList__init_(var_0, var_1, var_2, var_3) { var var_4 = new cgcc_AbstractMapBasedMultimap$WrappedList(); @@ -1386049,7 +1388420,7 @@ return var_4; } function cgcc_AbstractMapBasedMultimap$WrappedList__init_0($this, var$1, $key, $delegate, $ancestor) { - $this.$this$0311 = var$1; + $this.$this$0195 = var$1; cgcc_AbstractMapBasedMultimap$WrappedCollection__init_($this, var$1, $key, $delegate, $ancestor); } function cgcc_AbstractMapBasedMultimap$WrappedList_getListDelegate($this) { @@ -1386083,10 +1388454,7 @@ }} $rt_nativeThread().push($this, $index, var$2, $ptr); } - function cgcc_AbstractMapBasedMultimap$RandomAccessWrappedList() { - cgcc_AbstractMapBasedMultimap$WrappedList.call(this); - this.$this$0246 = null; - } + var cgcc_AbstractMapBasedMultimap$RandomAccessWrappedList = $rt_classWithoutFields(cgcc_AbstractMapBasedMultimap$WrappedList); function nlevi_PlatformWebRTC$LANClient$lambda$signalRemoteConnect$1$lambda$_16_0() { var a = this; jl_Object.call(a); a.$_0220 = null; @@ -1388012,14 +1390380,14 @@ var$2 = var$0.$_0226; var$3 = var$0.$_154; if (!var$1.$value1) { - var$4 = var$2.$this$083.$netManager0; + var$4 = var$2.$this$055.$netManager0; var$1 = new nmnpc_C19PacketResourcePackStatus; nmnpc_C19PacketResourcePackStatus$Action_$callClinit(); nmnpc_C19PacketResourcePackStatus__init_0(var$1, var$3, nmnpc_C19PacketResourcePackStatus$Action_FAILED_DOWNLOAD); $ptr = 1; continue main; } - var$1 = var$2.$this$083.$netManager0; + var$1 = var$2.$this$055.$netManager0; var$2 = new nmnpc_C19PacketResourcePackStatus; nmnpc_C19PacketResourcePackStatus$Action_$callClinit(); nmnpc_C19PacketResourcePackStatus__init_0(var$2, var$3, nmnpc_C19PacketResourcePackStatus$Action_SUCCESSFULLY_LOADED); @@ -1388054,7 +1390422,7 @@ var a = this; jl_Object.call(a); a.$delegateIterator = null; a.$originalDelegate = null; - a.$this$112 = null; + a.$this$111 = null; } function cgcc_AbstractMapBasedMultimap$WrappedCollection$WrappedIterator_validateIterator($this) { var var$1, $ptr, $tmp; @@ -1388065,14 +1390433,14 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$112; + var$1 = $this.$this$111; $ptr = 1; case 1: cgcc_AbstractMapBasedMultimap$WrappedCollection_refreshIfEmpty(var$1); if ($rt_suspending()) { break main; } - if ($this.$this$112.$delegate5 === $this.$originalDelegate) + if ($this.$this$111.$delegate5 === $this.$originalDelegate) return; var$1 = new ju_ConcurrentModificationException; jl_Throwable__init_0(var$1); @@ -1388427,7 +1390795,7 @@ } function nmcm_WorldClient$1() { jl_Object.call(this); - this.$this$0176 = null; + this.$this$0113 = null; } function nmcm_WorldClient$1_call($this) { var var$1, var$2, var$3, var$4, $ptr, $tmp; @@ -1388438,7 +1390806,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0176.$entityList; + var$1 = $this.$this$0113.$entityList; $ptr = 1; case 1: $tmp = ju_HashSet_size(var$1); @@ -1388446,7 +1390814,7 @@ break main; } var$2 = $tmp; - var$1 = $this.$this$0176.$entityList; + var$1 = $this.$this$0113.$entityList; $ptr = 2; case 2: $tmp = ju_AbstractCollection_toString(var$1); @@ -1388484,7 +1390852,7 @@ } function nmcm_WorldClient$2() { jl_Object.call(this); - this.$this$0177 = null; + this.$this$0114 = null; } function nmcm_WorldClient$2_call($this) { var var$1, var$2, var$3, var$4, $ptr, $tmp; @@ -1388495,7 +1390863,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0177.$entitySpawnQueue; + var$1 = $this.$this$0114.$entitySpawnQueue; $ptr = 1; case 1: $tmp = ju_HashSet_size(var$1); @@ -1388503,7 +1390871,7 @@ break main; } var$2 = $tmp; - var$1 = $this.$this$0177.$entitySpawnQueue; + var$1 = $this.$this$0114.$entitySpawnQueue; $ptr = 2; case 2: $tmp = ju_AbstractCollection_toString(var$1); @@ -1388541,15 +1390909,12 @@ } function nmcm_WorldClient$3() { jl_Object.call(this); - this.$this$0178 = null; + this.$this$0115 = null; } function nmcm_WorldClient$3_call($this) { - return $this.$this$0178.$mc18.$thePlayer.$clientBrand; - } - function nmcm_WorldClient$4() { - jl_Object.call(this); - this.$this$0179 = null; + return $this.$this$0115.$mc18.$thePlayer.$clientBrand; } + var nmcm_WorldClient$4 = $rt_classWithoutFields(); function nmcm_WorldClient$4_call($this) { return $rt_s(9644); } @@ -1389309,390 +1391674,135 @@ $this.$timeout = $timeout; $this.$model6 = $model; } - function nmcg_GuiScreenBook$NextPageButton() { - nmcg_GuiButton.call(this); - this.$field_146151_o = 0; + function nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_0() { + var a = this; jl_Object.call(a); + a.$_0230 = null; + a.$_156 = null; } - function nmcg_GuiScreenBook$NextPageButton__init_0(var_0, var_1, var_2, var_3) { - var var_4 = new nmcg_GuiScreenBook$NextPageButton(); - nmcg_GuiScreenBook$NextPageButton__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; + function nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_0__init_(var_0, var_1) { + var var_2 = new nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_0(); + nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_0__init_0(var_2, var_0, var_1); + return var_2; } - function nmcg_GuiScreenBook$NextPageButton__init_($this, $parInt1, $parInt2, $parInt3, $parFlag) { - var var$5, var$6, var$7, $ptr, $tmp; + function nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_0__init_0(var$0, var$1, var$2) { + var$0.$_0230 = var$1; + var$0.$_156 = var$2; + } + function nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_0_call$exported$0(var$0) { + var var$1, var$2, var$3, var$4, var$5, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();$parFlag = $thread.pop();$parInt3 = $thread.pop();$parInt2 = $thread.pop();$parInt1 = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();var$0 = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: - var$5 = 23; - var$6 = 13; - var$7 = $rt_s(14); + var$1 = var$0.$_0230; + var$2 = var$0.$_156; + var$3 = $rt_s(1338); $ptr = 1; case 1: - nmcg_GuiButton__init_0($this, $parInt1, $parInt2, $parInt3, var$5, var$6, var$7); + $tmp = oj_JSONObject_has(var$2, var$3); if ($rt_suspending()) { break main; } - $this.$field_146151_o = $parFlag; - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $parInt1, $parInt2, $parInt3, $parFlag, var$5, var$6, var$7, $ptr); - } - function nmcg_GuiScreenBook$NextPageButton_drawButton($this, $minecraft, $i, $j) { - var $k, $flag, var$6, var$7, var$8, var$9, var$10, $l, var$12, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$12 = $thread.pop();$l = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();$flag = $thread.pop();$k = $thread.pop();$j = $thread.pop();$i = $thread.pop();$minecraft = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - if (!$this.$visible) + var$4 = $tmp; + if (!var$4) return; - a: { - $k = $this.$xPosition0; - if ($i >= $k) { - $flag = $this.$yPosition; - if ($j >= $flag && $i < ($k + $this.$width14 | 0) && $j < ($flag + $this.$height16 | 0)) { - $flag = 1; - break a; - } - } - $flag = 0; - } - var$6 = 1.0; - var$7 = 1.0; - var$8 = 1.0; - var$9 = 1.0; - $ptr = 1; - case 1: - nlevo_GlStateManager_color(var$6, var$7, var$8, var$9); - if ($rt_suspending()) { - break main; - } - var$10 = $minecraft.$renderEngine; + var$5 = $rt_s(9368); + var$3 = $rt_s(1338); $ptr = 2; case 2: - nmcg_GuiScreenBook_$callClinit(); + $tmp = oj_JSONObject_getString(var$2, var$3); if ($rt_suspending()) { break main; } - $minecraft = nmcg_GuiScreenBook_bookGuiTextures; + var$2 = $tmp; $ptr = 3; case 3: - nmcrt_TextureManager_bindTexture(var$10, $minecraft); + $tmp = jl_String_equals(var$5, var$2); if ($rt_suspending()) { break main; } - $k = 0; - $l = 192; - if ($flag) - $k = 23; - if (!$this.$field_146151_o) - $l = 205; - $flag = $this.$xPosition0; - var$12 = $this.$yPosition; - $i = 23; - $j = 13; + var$4 = $tmp; + if (!var$4) + return; + var$2 = var$1.$peerConnection; + var$3 = new nlevi_PlatformVoiceClient$VoicePeer$lambda$setRemoteDescription$12$lambda$_6_0; + var$3.$_0231 = var$1; + var$5 = new nlevi_PlatformVoiceClient$VoicePeer$lambda$setRemoteDescription$12$lambda$_6_1; + var$5.$_0232 = var$1; + var$1 = otji_JS_function(var$3, "call"); + var$3 = otji_JS_function(var$5, "call"); $ptr = 4; case 4: - nmcg_Gui_drawTexturedModalRect($this, $flag, var$12, $k, $l, $i, $j); + nlevi_PlatformWebRTC_createAnswer$js_body$_20(var$2, var$1, var$3); if ($rt_suspending()) { break main; } return; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $minecraft, $i, $j, $k, $flag, var$6, var$7, var$8, var$9, var$10, $l, var$12, $ptr); + $rt_nativeThread().push(var$0, var$1, var$2, var$3, var$4, var$5, $ptr); } - function nmcg_GuiFlatPresets$ListSlot() { - var a = this; nmcg_GuiSlot.call(a); - a.$field_148175_k = 0; - a.$this$0310 = null; + function nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_1() { + jl_Object.call(this); + this.$_0233 = null; } - function nmcg_GuiFlatPresets$ListSlot_getSize($this) { - var $ptr, $tmp; + function nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_1__init_(var_0) { + var var_1 = new nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_1(); + nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_1__init_0(var_1, var_0); + return var_1; + } + function nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_1__init_0(var$0, var$1) { + var$0.$_0233 = var$1; + } + function nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_1_call$exported$0(var$0, var$1) { + var var$2, var$3, var$4, var$5, var$6, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();$this = $thread.pop(); + $ptr = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();var$0 = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: + var$2 = var$0.$_0233; $ptr = 1; case 1: - nmcg_GuiFlatPresets_$callClinit(); + nlevi_PlatformVoiceClient_$callClinit(); if ($rt_suspending()) { break main; } - return nmcg_GuiFlatPresets_FLAT_WORLD_PRESETS.$size; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $ptr); - } - function nmcg_GuiFlatPresets$ListSlot_elementClicked($this, $i, $var2, $var3, $var4) { - var var$5, var$6, var$7, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();$var4 = $thread.pop();$var3 = $thread.pop();$var2 = $thread.pop();$i = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $this.$field_148175_k = $i; - var$5 = $this.$this$0310; - $ptr = 1; - case 1: - nmcg_GuiFlatPresets_func_146426_g(var$5); - if ($rt_suspending()) { - break main; - } - var$5 = $this.$this$0310; - var$6 = var$5.$field_146433_u; - var$7 = nmcg_GuiFlatPresets_FLAT_WORLD_PRESETS; - $i = var$5.$field_146435_s.$field_148175_k; + var$3 = nlevi_PlatformVoiceClient_logger; + var$4 = $rt_s(9369); + var$5 = $rt_createArrayFromData(jl_Object, [var$2.$peerId2, $rt_str(var$1.message)]); $ptr = 2; case 2: - $tmp = ju_ArrayList_get(var$7, $i); + nlevl_Logger_error(var$3, var$4, var$5); if ($rt_suspending()) { break main; } - var$5 = $tmp; - var$5 = var$5.$field_148233_c; + var$1 = nlevi_PlatformVoiceClient_peerStateDesc; + nlevv_EnumVoiceChannelPeerState_$callClinit(); + if (var$1 === nlevv_EnumVoiceChannelPeerState_LOADING) + nlevi_PlatformVoiceClient_peerStateDesc = nlevv_EnumVoiceChannelPeerState_FAILED; + var$1 = var$2.$peerId2; + var$6 = 0; $ptr = 3; case 3: - nmcg_GuiTextField_setText(var$6, var$5); + nlevi_PlatformVoiceClient_signalDisconnect(var$1, var$6); if ($rt_suspending()) { break main; } return; default: $rt_invalidPointer(); }} - $rt_nativeThread().push($this, $i, $var2, $var3, $var4, var$5, var$6, var$7, $ptr); - } - function nmcg_GuiFlatPresets$ListSlot_isSelected($this, $i) { - return $i != $this.$field_148175_k ? 0 : 1; - } - function nmcg_GuiFlatPresets$ListSlot_drawBackground($this) {} - function nmcg_GuiFlatPresets$ListSlot_drawSlot($this, $i, $j, $k, $var4, $var5, $var6) { - var var$7, $guiflatpresets$layeritem, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16, var$17, var$18, var$19, var$20, var$21, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$21 = $thread.pop();var$20 = $thread.pop();var$19 = $thread.pop();var$18 = $thread.pop();var$17 = $thread.pop();var$16 = $thread.pop();var$15 = $thread.pop();var$14 = $thread.pop();var$13 = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();$guiflatpresets$layeritem = $thread.pop();var$7 = $thread.pop();$var6 = $thread.pop();$var5 = $thread.pop();$var4 = $thread.pop();$k = $thread.pop();$j = $thread.pop();$i = $thread.pop();$this - = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - $ptr = 1; - case 1: - nmcg_GuiFlatPresets_$callClinit(); - if ($rt_suspending()) { - break main; - } - var$7 = nmcg_GuiFlatPresets_FLAT_WORLD_PRESETS; - $ptr = 2; - case 2: - $tmp = ju_ArrayList_get(var$7, $i); - if ($rt_suspending()) { - break main; - } - var$7 = $tmp; - $guiflatpresets$layeritem = var$7; - var$9 = $guiflatpresets$layeritem.$field_148234_a; - $var6 = $guiflatpresets$layeritem.$field_179037_b; - $var4 = $j + 1 | 0; - $i = $k + 1 | 0; - var$10 = 1.0; - var$11 = 1.0; - var$12 = 1.0; - var$13 = 1.0; - $ptr = 3; - case 3: - nlevo_GlStateManager_color(var$10, var$11, var$12, var$13); - if ($rt_suspending()) { - break main; - } - var$7 = $this.$mc21.$renderEngine; - $ptr = 4; - case 4: - nmcg_Gui_$callClinit(); - if ($rt_suspending()) { - break main; - } - var$14 = nmcg_Gui_statIcons; - $ptr = 5; - case 5: - nmcrt_TextureManager_bindTexture(var$7, var$14); - if ($rt_suspending()) { - break main; - } - $ptr = 6; - case 6: - $tmp = nmcr_Tessellator_getInstance(); - if ($rt_suspending()) { - break main; - } - var$7 = $tmp; - var$14 = var$7.$worldRenderer; - $var5 = 7; - nmcrv_DefaultVertexFormats_$callClinit(); - var$15 = nmcrv_DefaultVertexFormats_POSITION_TEX; - $ptr = 7; - case 7: - nlevo_WorldRenderer_begin(var$14, $var5, var$15); - if ($rt_suspending()) { - break main; - } - var$16 = $var4 + 0 | 0; - var$17 = $i + 18 | 0; - var$18 = $this.$this$0310.$zLevel0; - $ptr = 8; - case 8: - $tmp = nlevo_WorldRenderer_pos(var$14, var$16, var$17, var$18); - if ($rt_suspending()) { - break main; - } - var$15 = $tmp; - var$18 = 0.0; - var$19 = 0.140625; - $ptr = 9; - case 9: - $tmp = nlevo_WorldRenderer_tex(var$15, var$18, var$19); - if ($rt_suspending()) { - break main; - } - var$15 = $tmp; - $ptr = 10; - case 10: - nlevo_WorldRenderer_endVertex(var$15); - if ($rt_suspending()) { - break main; - } - var$20 = $var4 + 18 | 0; - var$21 = $this.$this$0310.$zLevel0; - $ptr = 11; - case 11: - $tmp = nlevo_WorldRenderer_pos(var$14, var$20, var$17, var$21); - if ($rt_suspending()) { - break main; - } - var$15 = $tmp; - $ptr = 12; - case 12: - $tmp = nlevo_WorldRenderer_tex(var$15, var$19, var$19); - if ($rt_suspending()) { - break main; - } - var$15 = $tmp; - $ptr = 13; - case 13: - nlevo_WorldRenderer_endVertex(var$15); - if ($rt_suspending()) { - break main; - } - var$21 = $i + 0 | 0; - var$17 = $this.$this$0310.$zLevel0; - $ptr = 14; - case 14: - $tmp = nlevo_WorldRenderer_pos(var$14, var$20, var$21, var$17); - if ($rt_suspending()) { - break main; - } - var$15 = $tmp; - $ptr = 15; - case 15: - $tmp = nlevo_WorldRenderer_tex(var$15, var$19, var$18); - if ($rt_suspending()) { - break main; - } - var$15 = $tmp; - $ptr = 16; - case 16: - nlevo_WorldRenderer_endVertex(var$15); - if ($rt_suspending()) { - break main; - } - var$19 = $this.$this$0310.$zLevel0; - $ptr = 17; - case 17: - $tmp = nlevo_WorldRenderer_pos(var$14, var$16, var$21, var$19); - if ($rt_suspending()) { - break main; - } - var$14 = $tmp; - $ptr = 18; - case 18: - $tmp = nlevo_WorldRenderer_tex(var$14, var$18, var$18); - if ($rt_suspending()) { - break main; - } - var$14 = $tmp; - $ptr = 19; - case 19: - nlevo_WorldRenderer_endVertex(var$14); - if ($rt_suspending()) { - break main; - } - $ptr = 20; - case 20: - nmcr_Tessellator_draw(var$7); - if ($rt_suspending()) { - break main; - } - $ptr = 21; - case 21: - nmcr_RenderHelper_enableGUIStandardItemLighting(); - if ($rt_suspending()) { - break main; - } - var$7 = $this.$this$0310.$itemRender; - var$14 = new nmi_ItemStack; - $i = 1; - $ptr = 22; - case 22: - nmi_ItemStack__init_0(var$14, var$9, $i, $var6); - if ($rt_suspending()) { - break main; - } - $i = $j + 2 | 0; - $var4 = $k + 2 | 0; - $ptr = 23; - case 23: - nmcre_RenderItem_renderItemIntoGUI(var$7, var$14, $i, $var4); - if ($rt_suspending()) { - break main; - } - $ptr = 24; - case 24: - nmcr_RenderHelper_disableStandardItemLighting(); - if ($rt_suspending()) { - break main; - } - var$7 = $this.$this$0310.$fontRendererObj0; - var$14 = $guiflatpresets$layeritem.$field_148232_b; - $i = ($j + 18 | 0) + 5 | 0; - $j = $k + 6 | 0; - $k = 16777215; - $ptr = 25; - case 25: - nmcg_FontRenderer_drawString(var$7, var$14, $i, $j, $k); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $i, $j, $k, $var4, $var5, $var6, var$7, $guiflatpresets$layeritem, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16, var$17, var$18, var$19, var$20, var$21, $ptr); + $rt_nativeThread().push(var$0, var$1, var$2, var$3, var$4, var$5, var$6, $ptr); } function nmcg_GuiScreenCustomizePresets$ListPreset() { var a = this; nmcg_GuiSlot.call(a); a.$field_178053_u = 0; - a.$this$0309 = null; + a.$this$0193 = null; } function nmcg_GuiScreenCustomizePresets$ListPreset_getSize($this) { var $ptr, $tmp; @@ -1389724,14 +1391834,14 @@ main: while (true) { switch ($ptr) { case 0: $this.$field_178053_u = $i; - var$5 = $this.$this$0309; + var$5 = $this.$this$0193; $ptr = 1; case 1: nmcg_GuiScreenCustomizePresets_func_175304_a(var$5); if ($rt_suspending()) { break main; } - var$5 = $this.$this$0309; + var$5 = $this.$this$0193; var$6 = var$5.$field_175317_i; var$7 = nmcg_GuiScreenCustomizePresets_field_175310_f; $i = var$5.$field_175311_g.$field_178053_u; @@ -1389791,7 +1391901,7 @@ $guiscreencustomizepresets$info = var$7; var$9 = $guiscreencustomizepresets$info.$field_178953_b; $var4 = $j + 5 | 0; - var$7 = $this.$this$0309; + var$7 = $this.$this$0193; $var5 = $var4 - 1 | 0; $var6 = $var4 + 32 | 0; $i = $k - 1 | 0; @@ -1389802,7 +1391912,7 @@ if ($rt_suspending()) { break main; } - var$7 = $this.$this$0309; + var$7 = $this.$this$0193; var$10 = $k + 32 | 0; var$11 = (-6250336); $ptr = 4; @@ -1389811,7 +1391921,7 @@ if ($rt_suspending()) { break main; } - var$7 = $this.$this$0309; + var$7 = $this.$this$0193; var$11 = (-2039584); $ptr = 5; case 5: @@ -1389819,7 +1391929,7 @@ if ($rt_suspending()) { break main; } - var$7 = $this.$this$0309; + var$7 = $this.$this$0193; $var5 = (-6250336); $ptr = 6; case 6: @@ -1389963,7 +1392073,7 @@ if ($rt_suspending()) { break main; } - var$7 = $this.$this$0309.$fontRendererObj0; + var$7 = $this.$this$0193.$fontRendererObj0; $guiscreencustomizepresets$info = $guiscreencustomizepresets$info.$field_178955_a; $j = ($j + 32 | 0) + 10 | 0; $i = $k + 14 | 0; @@ -1389979,130 +1392089,385 @@ }} $rt_nativeThread().push($this, $i, $j, $k, $var4, $var5, $var6, var$7, $guiscreencustomizepresets$info, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16, var$17, var$18, var$19, var$20, $ptr); } - function nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_0() { - var a = this; jl_Object.call(a); - a.$_0230 = null; - a.$_156 = null; + function nmcg_GuiFlatPresets$ListSlot() { + var a = this; nmcg_GuiSlot.call(a); + a.$field_148175_k = 0; + a.$this$0194 = null; } - function nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_0__init_(var_0, var_1) { - var var_2 = new nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_0(); - nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_0__init_0(var_2, var_0, var_1); - return var_2; - } - function nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_0__init_0(var$0, var$1, var$2) { - var$0.$_0230 = var$1; - var$0.$_156 = var$2; - } - function nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_0_call$exported$0(var$0) { - var var$1, var$2, var$3, var$4, var$5, $ptr, $tmp; + function nmcg_GuiFlatPresets$ListSlot_getSize($this) { + var $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();var$0 = $thread.pop(); + $ptr = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: - var$1 = var$0.$_0230; - var$2 = var$0.$_156; - var$3 = $rt_s(1338); $ptr = 1; case 1: - $tmp = oj_JSONObject_has(var$2, var$3); + nmcg_GuiFlatPresets_$callClinit(); if ($rt_suspending()) { break main; } - var$4 = $tmp; - if (!var$4) - return; - var$5 = $rt_s(9368); - var$3 = $rt_s(1338); + return nmcg_GuiFlatPresets_FLAT_WORLD_PRESETS.$size; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $ptr); + } + function nmcg_GuiFlatPresets$ListSlot_elementClicked($this, $i, $var2, $var3, $var4) { + var var$5, var$6, var$7, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();$var4 = $thread.pop();$var3 = $thread.pop();$var2 = $thread.pop();$i = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $this.$field_148175_k = $i; + var$5 = $this.$this$0194; + $ptr = 1; + case 1: + nmcg_GuiFlatPresets_func_146426_g(var$5); + if ($rt_suspending()) { + break main; + } + var$5 = $this.$this$0194; + var$6 = var$5.$field_146433_u; + var$7 = nmcg_GuiFlatPresets_FLAT_WORLD_PRESETS; + $i = var$5.$field_146435_s.$field_148175_k; $ptr = 2; case 2: - $tmp = oj_JSONObject_getString(var$2, var$3); + $tmp = ju_ArrayList_get(var$7, $i); if ($rt_suspending()) { break main; } - var$2 = $tmp; + var$5 = $tmp; + var$5 = var$5.$field_148233_c; $ptr = 3; case 3: - $tmp = jl_String_equals(var$5, var$2); + nmcg_GuiTextField_setText(var$6, var$5); if ($rt_suspending()) { break main; } - var$4 = $tmp; - if (!var$4) - return; - var$2 = var$1.$peerConnection; - var$3 = new nlevi_PlatformVoiceClient$VoicePeer$lambda$setRemoteDescription$12$lambda$_6_0; - var$3.$_0231 = var$1; - var$5 = new nlevi_PlatformVoiceClient$VoicePeer$lambda$setRemoteDescription$12$lambda$_6_1; - var$5.$_0232 = var$1; - var$1 = otji_JS_function(var$3, "call"); - var$3 = otji_JS_function(var$5, "call"); + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $i, $var2, $var3, $var4, var$5, var$6, var$7, $ptr); + } + function nmcg_GuiFlatPresets$ListSlot_isSelected($this, $i) { + return $i != $this.$field_148175_k ? 0 : 1; + } + function nmcg_GuiFlatPresets$ListSlot_drawBackground($this) {} + function nmcg_GuiFlatPresets$ListSlot_drawSlot($this, $i, $j, $k, $var4, $var5, $var6) { + var var$7, $guiflatpresets$layeritem, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16, var$17, var$18, var$19, var$20, var$21, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$21 = $thread.pop();var$20 = $thread.pop();var$19 = $thread.pop();var$18 = $thread.pop();var$17 = $thread.pop();var$16 = $thread.pop();var$15 = $thread.pop();var$14 = $thread.pop();var$13 = $thread.pop();var$12 = $thread.pop();var$11 = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();$guiflatpresets$layeritem = $thread.pop();var$7 = $thread.pop();$var6 = $thread.pop();$var5 = $thread.pop();$var4 = $thread.pop();$k = $thread.pop();$j = $thread.pop();$i = $thread.pop();$this + = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + $ptr = 1; + case 1: + nmcg_GuiFlatPresets_$callClinit(); + if ($rt_suspending()) { + break main; + } + var$7 = nmcg_GuiFlatPresets_FLAT_WORLD_PRESETS; + $ptr = 2; + case 2: + $tmp = ju_ArrayList_get(var$7, $i); + if ($rt_suspending()) { + break main; + } + var$7 = $tmp; + $guiflatpresets$layeritem = var$7; + var$9 = $guiflatpresets$layeritem.$field_148234_a; + $var6 = $guiflatpresets$layeritem.$field_179037_b; + $var4 = $j + 1 | 0; + $i = $k + 1 | 0; + var$10 = 1.0; + var$11 = 1.0; + var$12 = 1.0; + var$13 = 1.0; + $ptr = 3; + case 3: + nlevo_GlStateManager_color(var$10, var$11, var$12, var$13); + if ($rt_suspending()) { + break main; + } + var$7 = $this.$mc21.$renderEngine; $ptr = 4; case 4: - nlevi_PlatformWebRTC_createAnswer$js_body$_20(var$2, var$1, var$3); + nmcg_Gui_$callClinit(); + if ($rt_suspending()) { + break main; + } + var$14 = nmcg_Gui_statIcons; + $ptr = 5; + case 5: + nmcrt_TextureManager_bindTexture(var$7, var$14); + if ($rt_suspending()) { + break main; + } + $ptr = 6; + case 6: + $tmp = nmcr_Tessellator_getInstance(); + if ($rt_suspending()) { + break main; + } + var$7 = $tmp; + var$14 = var$7.$worldRenderer; + $var5 = 7; + nmcrv_DefaultVertexFormats_$callClinit(); + var$15 = nmcrv_DefaultVertexFormats_POSITION_TEX; + $ptr = 7; + case 7: + nlevo_WorldRenderer_begin(var$14, $var5, var$15); + if ($rt_suspending()) { + break main; + } + var$16 = $var4 + 0 | 0; + var$17 = $i + 18 | 0; + var$18 = $this.$this$0194.$zLevel0; + $ptr = 8; + case 8: + $tmp = nlevo_WorldRenderer_pos(var$14, var$16, var$17, var$18); + if ($rt_suspending()) { + break main; + } + var$15 = $tmp; + var$18 = 0.0; + var$19 = 0.140625; + $ptr = 9; + case 9: + $tmp = nlevo_WorldRenderer_tex(var$15, var$18, var$19); + if ($rt_suspending()) { + break main; + } + var$15 = $tmp; + $ptr = 10; + case 10: + nlevo_WorldRenderer_endVertex(var$15); + if ($rt_suspending()) { + break main; + } + var$20 = $var4 + 18 | 0; + var$21 = $this.$this$0194.$zLevel0; + $ptr = 11; + case 11: + $tmp = nlevo_WorldRenderer_pos(var$14, var$20, var$17, var$21); + if ($rt_suspending()) { + break main; + } + var$15 = $tmp; + $ptr = 12; + case 12: + $tmp = nlevo_WorldRenderer_tex(var$15, var$19, var$19); + if ($rt_suspending()) { + break main; + } + var$15 = $tmp; + $ptr = 13; + case 13: + nlevo_WorldRenderer_endVertex(var$15); + if ($rt_suspending()) { + break main; + } + var$21 = $i + 0 | 0; + var$17 = $this.$this$0194.$zLevel0; + $ptr = 14; + case 14: + $tmp = nlevo_WorldRenderer_pos(var$14, var$20, var$21, var$17); + if ($rt_suspending()) { + break main; + } + var$15 = $tmp; + $ptr = 15; + case 15: + $tmp = nlevo_WorldRenderer_tex(var$15, var$19, var$18); + if ($rt_suspending()) { + break main; + } + var$15 = $tmp; + $ptr = 16; + case 16: + nlevo_WorldRenderer_endVertex(var$15); + if ($rt_suspending()) { + break main; + } + var$19 = $this.$this$0194.$zLevel0; + $ptr = 17; + case 17: + $tmp = nlevo_WorldRenderer_pos(var$14, var$16, var$21, var$19); + if ($rt_suspending()) { + break main; + } + var$14 = $tmp; + $ptr = 18; + case 18: + $tmp = nlevo_WorldRenderer_tex(var$14, var$18, var$18); + if ($rt_suspending()) { + break main; + } + var$14 = $tmp; + $ptr = 19; + case 19: + nlevo_WorldRenderer_endVertex(var$14); + if ($rt_suspending()) { + break main; + } + $ptr = 20; + case 20: + nmcr_Tessellator_draw(var$7); + if ($rt_suspending()) { + break main; + } + $ptr = 21; + case 21: + nmcr_RenderHelper_enableGUIStandardItemLighting(); + if ($rt_suspending()) { + break main; + } + var$7 = $this.$this$0194.$itemRender; + var$14 = new nmi_ItemStack; + $i = 1; + $ptr = 22; + case 22: + nmi_ItemStack__init_0(var$14, var$9, $i, $var6); + if ($rt_suspending()) { + break main; + } + $i = $j + 2 | 0; + $var4 = $k + 2 | 0; + $ptr = 23; + case 23: + nmcre_RenderItem_renderItemIntoGUI(var$7, var$14, $i, $var4); + if ($rt_suspending()) { + break main; + } + $ptr = 24; + case 24: + nmcr_RenderHelper_disableStandardItemLighting(); + if ($rt_suspending()) { + break main; + } + var$7 = $this.$this$0194.$fontRendererObj0; + var$14 = $guiflatpresets$layeritem.$field_148232_b; + $i = ($j + 18 | 0) + 5 | 0; + $j = $k + 6 | 0; + $k = 16777215; + $ptr = 25; + case 25: + nmcg_FontRenderer_drawString(var$7, var$14, $i, $j, $k); if ($rt_suspending()) { break main; } return; default: $rt_invalidPointer(); }} - $rt_nativeThread().push(var$0, var$1, var$2, var$3, var$4, var$5, $ptr); + $rt_nativeThread().push($this, $i, $j, $k, $var4, $var5, $var6, var$7, $guiflatpresets$layeritem, var$9, var$10, var$11, var$12, var$13, var$14, var$15, var$16, var$17, var$18, var$19, var$20, var$21, $ptr); } - function nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_1() { - jl_Object.call(this); - this.$_0233 = null; + function nmcg_GuiScreenBook$NextPageButton() { + nmcg_GuiButton.call(this); + this.$field_146151_o = 0; } - function nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_1__init_(var_0) { - var var_1 = new nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_1(); - nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_1__init_0(var_1, var_0); - return var_1; + function nmcg_GuiScreenBook$NextPageButton__init_0(var_0, var_1, var_2, var_3) { + var var_4 = new nmcg_GuiScreenBook$NextPageButton(); + nmcg_GuiScreenBook$NextPageButton__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; } - function nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_1__init_0(var$0, var$1) { - var$0.$_0233 = var$1; - } - function nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_1_call$exported$0(var$0, var$1) { - var var$2, var$3, var$4, var$5, var$6, $ptr, $tmp; + function nmcg_GuiScreenBook$NextPageButton__init_($this, $parInt1, $parInt2, $parInt3, $parFlag) { + var var$5, var$6, var$7, $ptr, $tmp; $ptr = 0; if ($rt_resuming()) { var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();var$3 = $thread.pop();var$2 = $thread.pop();var$1 = $thread.pop();var$0 = $thread.pop(); + $ptr = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();$parFlag = $thread.pop();$parInt3 = $thread.pop();$parInt2 = $thread.pop();$parInt1 = $thread.pop();$this = $thread.pop(); } main: while (true) { switch ($ptr) { case 0: - var$2 = var$0.$_0233; + var$5 = 23; + var$6 = 13; + var$7 = $rt_s(14); $ptr = 1; case 1: - nlevi_PlatformVoiceClient_$callClinit(); + nmcg_GuiButton__init_0($this, $parInt1, $parInt2, $parInt3, var$5, var$6, var$7); if ($rt_suspending()) { break main; } - var$3 = nlevi_PlatformVoiceClient_logger; - var$4 = $rt_s(9369); - var$5 = $rt_createArrayFromData(jl_Object, [var$2.$peerId2, $rt_str(var$1.message)]); + $this.$field_146151_o = $parFlag; + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $parInt1, $parInt2, $parInt3, $parFlag, var$5, var$6, var$7, $ptr); + } + function nmcg_GuiScreenBook$NextPageButton_drawButton($this, $minecraft, $i, $j) { + var $k, $flag, var$6, var$7, var$8, var$9, var$10, $l, var$12, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$12 = $thread.pop();$l = $thread.pop();var$10 = $thread.pop();var$9 = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();$flag = $thread.pop();$k = $thread.pop();$j = $thread.pop();$i = $thread.pop();$minecraft = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + if (!$this.$visible) + return; + a: { + $k = $this.$xPosition0; + if ($i >= $k) { + $flag = $this.$yPosition; + if ($j >= $flag && $i < ($k + $this.$width14 | 0) && $j < ($flag + $this.$height16 | 0)) { + $flag = 1; + break a; + } + } + $flag = 0; + } + var$6 = 1.0; + var$7 = 1.0; + var$8 = 1.0; + var$9 = 1.0; + $ptr = 1; + case 1: + nlevo_GlStateManager_color(var$6, var$7, var$8, var$9); + if ($rt_suspending()) { + break main; + } + var$10 = $minecraft.$renderEngine; $ptr = 2; case 2: - nlevl_Logger_error(var$3, var$4, var$5); + nmcg_GuiScreenBook_$callClinit(); if ($rt_suspending()) { break main; } - var$1 = nlevi_PlatformVoiceClient_peerStateDesc; - nlevv_EnumVoiceChannelPeerState_$callClinit(); - if (var$1 === nlevv_EnumVoiceChannelPeerState_LOADING) - nlevi_PlatformVoiceClient_peerStateDesc = nlevv_EnumVoiceChannelPeerState_FAILED; - var$1 = var$2.$peerId2; - var$6 = 0; + $minecraft = nmcg_GuiScreenBook_bookGuiTextures; $ptr = 3; case 3: - nlevi_PlatformVoiceClient_signalDisconnect(var$1, var$6); + nmcrt_TextureManager_bindTexture(var$10, $minecraft); + if ($rt_suspending()) { + break main; + } + $k = 0; + $l = 192; + if ($flag) + $k = 23; + if (!$this.$field_146151_o) + $l = 205; + $flag = $this.$xPosition0; + var$12 = $this.$yPosition; + $i = 23; + $j = 13; + $ptr = 4; + case 4: + nmcg_Gui_drawTexturedModalRect($this, $flag, var$12, $k, $l, $i, $j); if ($rt_suspending()) { break main; } return; default: $rt_invalidPointer(); }} - $rt_nativeThread().push(var$0, var$1, var$2, var$3, var$4, var$5, var$6, $ptr); + $rt_nativeThread().push($this, $minecraft, $i, $j, $k, $flag, var$6, var$7, var$8, var$9, var$10, $l, var$12, $ptr); } var nmt_TileEntityChest$1 = $rt_classWithoutFields(); var nmt_TileEntityChest$1_$SwitchMap$net$minecraft$util$EnumFacing = null; @@ -1391336,7 +1393701,7 @@ var$3 = (-1); var$4 = $this.$guiLeft + 164 | 0; var$5 = $this.$guiTop + 107 | 0; - var$2.$this$0312 = $this; + var$2.$this$0196 = $this; $ptr = 2; case 2: nmcgi_GuiBeacon_$callClinit(); @@ -1391364,7 +1393729,7 @@ var$3 = (-2); var$5 = $this.$guiLeft + 190 | 0; var$4 = $this.$guiTop + 107 | 0; - var$1.$this$0313 = $this; + var$1.$this$0197 = $this; var$6 = nmcgi_GuiBeacon_beaconGuiTextures; var$7 = 112; var$8 = 220; @@ -1397066,7 +1399431,7 @@ } function nmcga_GuiStats$StatsGeneral() { nmcg_GuiSlot.call(this); - this.$this$0236 = null; + this.$this$0152 = null; } function nmcga_GuiStats$StatsGeneral_getSize($this) { var $ptr, $tmp; @@ -1397122,7 +1399487,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0236; + var$1 = $this.$this$0152; $ptr = 1; case 1: nmcg_GuiScreen_drawDefaultBackground(var$1); @@ -1397158,7 +1399523,7 @@ } $s = $tmp; $statbase = $s; - var$9 = $this.$this$0236; + var$9 = $this.$this$0152; $s = var$9.$fontRendererObj0; $ptr = 3; case 3: @@ -1397184,7 +1399549,7 @@ if ($rt_suspending()) { break main; } - $s = $this.$this$0236.$field_146546_t; + $s = $this.$this$0152.$field_146546_t; $ptr = 6; case 6: $tmp = nms_StatFileWriter_readStat($s, $statbase); @@ -1397199,7 +1399564,7 @@ break main; } $s = $tmp; - $statbase = $this.$this$0236; + $statbase = $this.$this$0152; var$9 = $statbase.$fontRendererObj0; $j = ($var4 + 213 | 0) - nmcg_FontRenderer_getStringWidth(var$9, $s) | 0; $i = $i ? 9474192 : 16777215; @@ -1397221,7 +1399586,7 @@ a.$statSorter = null; a.$field_148217_o = 0; a.$field_148215_p = 0; - a.$this$0314 = null; + a.$this$0198 = null; } function nmcga_GuiStats$Stats__init_($this, $this$0, $mcIn) { var var$3, var$4, var$5, var$6, var$7, $ptr, $tmp; @@ -1397232,7 +1399597,7 @@ } main: while (true) { switch ($ptr) { case 0: - $this.$this$0314 = $this$0; + $this.$this$0198 = $this$0; var$3 = $this$0.$width7; var$4 = $this$0.$height7; var$5 = 32; @@ -1397273,7 +1399638,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0314; + var$1 = $this.$this$0198; $ptr = 1; case 1: nmcg_GuiScreen_drawDefaultBackground(var$1); @@ -1397297,7 +1399662,7 @@ if (!nlev_Mouse_isButtonDown(0)) $this.$field_148218_l = (-1); if ($this.$field_148218_l) { - $var3 = $this.$this$0314; + $var3 = $this.$this$0198; $short1 = ($i + 115 | 0) - 18 | 0; $b0 = $j + 1 | 0; var$6 = 0; @@ -1397305,7 +1399670,7 @@ $ptr = 1; continue main; } - $var3 = $this.$this$0314; + $var3 = $this.$this$0198; var$7 = ($i + 115 | 0) - 18 | 0; $short1 = $j + 1 | 0; $b0 = 0; @@ -1397318,7 +1399683,7 @@ break main; } if ($this.$field_148218_l != 1) { - $var3 = $this.$this$0314; + $var3 = $this.$this$0198; var$7 = ($i + 165 | 0) - 18 | 0; $short1 = $j + 1 | 0; $b0 = 0; @@ -1397326,7 +1399691,7 @@ $ptr = 3; continue main; } - $var3 = $this.$this$0314; + $var3 = $this.$this$0198; var$7 = ($i + 165 | 0) - 18 | 0; $short1 = $j + 1 | 0; $b0 = 0; @@ -1397339,7 +1399704,7 @@ break main; } if ($this.$field_148218_l != 1) { - $var3 = $this.$this$0314; + $var3 = $this.$this$0198; var$7 = ($i + 165 | 0) - 18 | 0; $short1 = $j + 1 | 0; $b0 = 0; @@ -1397347,7 +1399712,7 @@ $ptr = 3; continue main; } - $var3 = $this.$this$0314; + $var3 = $this.$this$0198; var$7 = ($i + 165 | 0) - 18 | 0; $short1 = $j + 1 | 0; $b0 = 0; @@ -1397360,7 +1399725,7 @@ break main; } if ($this.$field_148218_l != 2) { - $var3 = $this.$this$0314; + $var3 = $this.$this$0198; var$7 = ($i + 215 | 0) - 18 | 0; $short1 = $j + 1 | 0; $b0 = 0; @@ -1397368,7 +1399733,7 @@ $ptr = 5; continue main; } - $var3 = $this.$this$0314; + $var3 = $this.$this$0198; var$7 = ($i + 215 | 0) - 18 | 0; $short1 = $j + 1 | 0; $b0 = 0; @@ -1397381,7 +1399746,7 @@ break main; } if ($this.$field_148218_l != 2) { - $var3 = $this.$this$0314; + $var3 = $this.$this$0198; var$7 = ($i + 215 | 0) - 18 | 0; $short1 = $j + 1 | 0; $b0 = 0; @@ -1397389,7 +1399754,7 @@ $ptr = 5; continue main; } - $var3 = $this.$this$0314; + $var3 = $this.$this$0198; var$7 = ($i + 215 | 0) - 18 | 0; $short1 = $j + 1 | 0; $b0 = 0; @@ -1397412,7 +1399777,7 @@ $short1 = 179; if ($this.$field_148215_p == 1) $b0 = 36; - $var3 = $this.$this$0314; + $var3 = $this.$this$0198; $i = $i + $short1 | 0; $j = $j + 1 | 0; var$7 = 0; @@ -1397434,7 +1399799,7 @@ $short1 = 179; if ($this.$field_148215_p == 1) $b0 = 36; - $var3 = $this.$this$0314; + $var3 = $this.$this$0198; $i = $i + $short1 | 0; $j = $j + 1 | 0; var$7 = 0; @@ -1397511,12 +1399876,12 @@ main: while (true) { switch ($ptr) { case 0: if ($parStatBase !== null) { - $s = $this.$this$0314.$field_146546_t; + $s = $this.$this$0198.$field_146546_t; $ptr = 1; continue main; } $s1 = $rt_s(609); - $s = $this.$this$0314; + $s = $this.$this$0198; $parStatBase = $s.$fontRendererObj0; $parInt1 = $parInt1 - nmcg_FontRenderer_getStringWidth($parStatBase, $s1) | 0; $parInt2 = $parInt2 + 5 | 0; @@ -1397536,7 +1399901,7 @@ break main; } $s = $tmp; - $parStatBase = $this.$this$0314; + $parStatBase = $this.$this$0198; $s1 = $parStatBase.$fontRendererObj0; $parInt1 = $parInt1 - nmcg_FontRenderer_getStringWidth($s1, $s) | 0; $parInt2 = $parInt2 + 5 | 0; @@ -1397639,8 +1400004,8 @@ return; $i1 = $i + 12 | 0; $j1 = $j - 12 | 0; - $k1 = nmcg_FontRenderer_getStringWidth($this.$this$0314.$fontRendererObj0, $statcrafting); - var$8 = $this.$this$0314; + $k1 = nmcg_FontRenderer_getStringWidth($this.$this$0198.$fontRendererObj0, $statcrafting); + var$8 = $this.$this$0198; $j = $i1 - 3 | 0; $k = $j1 - 3 | 0; $k1 = ($i1 + $k1 | 0) + 3 | 0; @@ -1397653,7 +1400018,7 @@ if ($rt_suspending()) { break main; } - var$8 = $this.$this$0314.$fontRendererObj0; + var$8 = $this.$this$0198.$fontRendererObj0; var$12 = $i1; var$13 = $j1; $i = (-1); @@ -1397744,8 +1400109,8 @@ return; $i = $parInt1 + 12 | 0; $j = $parInt2 - 12 | 0; - $k = nmcg_FontRenderer_getStringWidth($this.$this$0314.$fontRendererObj0, $s1); - $parStatCrafting = $this.$this$0314; + $k = nmcg_FontRenderer_getStringWidth($this.$this$0198.$fontRendererObj0, $s1); + $parStatCrafting = $this.$this$0198; $parInt2 = $i - 3 | 0; var$12 = $j - 3 | 0; $k = ($i + $k | 0) + 3 | 0; @@ -1397758,7 +1400123,7 @@ if ($rt_suspending()) { break main; } - $parStatCrafting = $this.$this$0314.$fontRendererObj0; + $parStatCrafting = $this.$this$0198.$fontRendererObj0; var$15 = $i; var$16 = $j; $parInt1 = (-1); @@ -1397806,7 +1400171,7 @@ } function nmcga_GuiStats$StatsItem() { nmcga_GuiStats$Stats.call(this); - this.$this$0237 = null; + this.$this$0153 = null; } function nmcga_GuiStats$StatsItem_drawListHeader($this, $i, $j, $tessellator) { var var$4, var$5, var$6, var$7, $ptr, $tmp; @@ -1397824,7 +1400189,7 @@ break main; } if ($this.$field_148218_l) { - $tessellator = $this.$this$0237; + $tessellator = $this.$this$0153; var$4 = ($i + 115 | 0) - 18 | 0; var$5 = $j + 1 | 0; var$6 = 72; @@ -1397832,7 +1400197,7 @@ $ptr = 2; continue main; } - $tessellator = $this.$this$0237; + $tessellator = $this.$this$0153; var$7 = (($i + 115 | 0) - 18 | 0) + 1 | 0; var$4 = ($j + 1 | 0) + 1 | 0; var$5 = 72; @@ -1397845,7 +1400210,7 @@ break main; } if ($this.$field_148218_l != 1) { - $tessellator = $this.$this$0237; + $tessellator = $this.$this$0153; var$7 = ($i + 165 | 0) - 18 | 0; var$4 = $j + 1 | 0; var$5 = 18; @@ -1397853,7 +1400218,7 @@ $ptr = 4; continue main; } - $tessellator = $this.$this$0237; + $tessellator = $this.$this$0153; var$6 = (($i + 165 | 0) - 18 | 0) + 1 | 0; var$7 = ($j + 1 | 0) + 1 | 0; var$4 = 18; @@ -1397866,7 +1400231,7 @@ break main; } if ($this.$field_148218_l != 1) { - $tessellator = $this.$this$0237; + $tessellator = $this.$this$0153; var$7 = ($i + 165 | 0) - 18 | 0; var$4 = $j + 1 | 0; var$5 = 18; @@ -1397874,7 +1400239,7 @@ $ptr = 4; continue main; } - $tessellator = $this.$this$0237; + $tessellator = $this.$this$0153; var$6 = (($i + 165 | 0) - 18 | 0) + 1 | 0; var$7 = ($j + 1 | 0) + 1 | 0; var$4 = 18; @@ -1397887,7 +1400252,7 @@ break main; } if ($this.$field_148218_l != 2) { - $tessellator = $this.$this$0237; + $tessellator = $this.$this$0153; $i = ($i + 215 | 0) - 18 | 0; $j = $j + 1 | 0; var$7 = 36; @@ -1397895,7 +1400260,7 @@ $ptr = 6; continue main; } - $tessellator = $this.$this$0237; + $tessellator = $this.$this$0153; $i = (($i + 215 | 0) - 18 | 0) + 1 | 0; $j = ($j + 1 | 0) + 1 | 0; var$7 = 36; @@ -1397908,7 +1400273,7 @@ break main; } if ($this.$field_148218_l != 2) { - $tessellator = $this.$this$0237; + $tessellator = $this.$this$0153; $i = ($i + 215 | 0) - 18 | 0; $j = $j + 1 | 0; var$7 = 36; @@ -1397916,7 +1400281,7 @@ $ptr = 6; continue main; } - $tessellator = $this.$this$0237; + $tessellator = $this.$this$0153; $i = (($i + 215 | 0) - 18 | 0) + 1 | 0; $j = ($j + 1 | 0) + 1 | 0; var$7 = 36; @@ -1397950,7 +1400315,7 @@ case 0: $statcrafting = nmcga_GuiStats$Stats_func_148211_c($this, $i); $item = $statcrafting.$field_150960_a; - var$9 = $this.$this$0237; + var$9 = $this.$this$0153; $var4 = $j + 40 | 0; $ptr = 1; case 1: @@ -1398008,7 +1400373,7 @@ } function nmcga_GuiStats$StatsBlock() { nmcga_GuiStats$Stats.call(this); - this.$this$0238 = null; + this.$this$0154 = null; } function nmcga_GuiStats$StatsBlock_drawListHeader($this, $i, $j, $tessellator) { var var$4, var$5, var$6, var$7, $ptr, $tmp; @@ -1398026,7 +1400391,7 @@ break main; } if ($this.$field_148218_l) { - $tessellator = $this.$this$0238; + $tessellator = $this.$this$0154; var$4 = ($i + 115 | 0) - 18 | 0; var$5 = $j + 1 | 0; var$6 = 18; @@ -1398034,7 +1400399,7 @@ $ptr = 2; continue main; } - $tessellator = $this.$this$0238; + $tessellator = $this.$this$0154; var$7 = (($i + 115 | 0) - 18 | 0) + 1 | 0; var$4 = ($j + 1 | 0) + 1 | 0; var$5 = 18; @@ -1398047,7 +1400412,7 @@ break main; } if ($this.$field_148218_l != 1) { - $tessellator = $this.$this$0238; + $tessellator = $this.$this$0154; var$7 = ($i + 165 | 0) - 18 | 0; var$4 = $j + 1 | 0; var$5 = 36; @@ -1398055,7 +1400420,7 @@ $ptr = 4; continue main; } - $tessellator = $this.$this$0238; + $tessellator = $this.$this$0154; var$6 = (($i + 165 | 0) - 18 | 0) + 1 | 0; var$7 = ($j + 1 | 0) + 1 | 0; var$4 = 36; @@ -1398068,7 +1400433,7 @@ break main; } if ($this.$field_148218_l != 1) { - $tessellator = $this.$this$0238; + $tessellator = $this.$this$0154; var$7 = ($i + 165 | 0) - 18 | 0; var$4 = $j + 1 | 0; var$5 = 36; @@ -1398076,7 +1400441,7 @@ $ptr = 4; continue main; } - $tessellator = $this.$this$0238; + $tessellator = $this.$this$0154; var$6 = (($i + 165 | 0) - 18 | 0) + 1 | 0; var$7 = ($j + 1 | 0) + 1 | 0; var$4 = 36; @@ -1398089,7 +1400454,7 @@ break main; } if ($this.$field_148218_l != 2) { - $tessellator = $this.$this$0238; + $tessellator = $this.$this$0154; $i = ($i + 215 | 0) - 18 | 0; $j = $j + 1 | 0; var$7 = 54; @@ -1398097,7 +1400462,7 @@ $ptr = 6; continue main; } - $tessellator = $this.$this$0238; + $tessellator = $this.$this$0154; $i = (($i + 215 | 0) - 18 | 0) + 1 | 0; $j = ($j + 1 | 0) + 1 | 0; var$7 = 54; @@ -1398110,7 +1400475,7 @@ break main; } if ($this.$field_148218_l != 2) { - $tessellator = $this.$this$0238; + $tessellator = $this.$this$0154; $i = ($i + 215 | 0) - 18 | 0; $j = $j + 1 | 0; var$7 = 54; @@ -1398118,7 +1400483,7 @@ $ptr = 6; continue main; } - $tessellator = $this.$this$0238; + $tessellator = $this.$this$0154; $i = (($i + 215 | 0) - 18 | 0) + 1 | 0; $j = ($j + 1 | 0) + 1 | 0; var$7 = 54; @@ -1398152,7 +1400517,7 @@ case 0: $statcrafting = nmcga_GuiStats$Stats_func_148211_c($this, $i); $item = $statcrafting.$field_150960_a; - var$9 = $this.$this$0238; + var$9 = $this.$this$0154; $var4 = $j + 40 | 0; $ptr = 1; case 1: @@ -1398211,7 +1400576,7 @@ function nmcga_GuiStats$StatsMobsList() { var a = this; nmcg_GuiSlot.call(a); a.$field_148222_l = null; - a.$this$0239 = null; + a.$this$0155 = null; } function nmcga_GuiStats$StatsMobsList_getSize($this) { return $this.$field_148222_l.$size; @@ -1398221,7 +1400586,7 @@ return 0; } function nmcga_GuiStats$StatsMobsList_getContentHeight($this) { - return $rt_imul(nmcga_GuiStats$StatsMobsList_getSize($this), $this.$this$0239.$fontRendererObj0.$FONT_HEIGHT) * 4 | 0; + return $rt_imul(nmcga_GuiStats$StatsMobsList_getSize($this), $this.$this$0155.$fontRendererObj0.$FONT_HEIGHT) * 4 | 0; } function nmcga_GuiStats$StatsMobsList_drawBackground($this) { var var$1, $ptr, $tmp; @@ -1398232,7 +1400597,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0239; + var$1 = $this.$this$0155; $ptr = 1; case 1: nmcg_GuiScreen_drawDefaultBackground(var$1); @@ -1398307,7 +1400672,7 @@ break main; } $s = $tmp; - $s1 = $this.$this$0239.$field_146546_t; + $s1 = $this.$this$0155.$field_146546_t; $s2 = $entitylist$entityegginfo.$field_151512_d; $ptr = 8; case 8: @@ -1398316,7 +1400681,7 @@ break main; } $l = $tmp; - $s1 = $this.$this$0239.$field_146546_t; + $s1 = $this.$this$0155.$field_146546_t; $s2 = $entitylist$entityegginfo.$field_151513_e; $ptr = 9; case 9: @@ -1398357,7 +1400722,7 @@ $ptr = 13; continue main; } - $entitylist$entityegginfo = $this.$this$0239; + $entitylist$entityegginfo = $this.$this$0155; var$10 = $entitylist$entityegginfo.$fontRendererObj0; $i = $j + 2 | 0; $var4 = $i - 10 | 0; @@ -1398378,7 +1400743,7 @@ $ptr = 13; continue main; } - $entitylist$entityegginfo = $this.$this$0239; + $entitylist$entityegginfo = $this.$this$0155; var$10 = $entitylist$entityegginfo.$fontRendererObj0; $i = $j + 2 | 0; $var4 = $i - 10 | 0; @@ -1398392,7 +1400757,7 @@ break main; } $s2 = $tmp; - $entitylist$entityegginfo = $this.$this$0239; + $entitylist$entityegginfo = $this.$this$0155; var$10 = $entitylist$entityegginfo.$fontRendererObj0; $i = $j + 2 | 0; $var4 = $i - 10 | 0; @@ -1398404,7 +1400769,7 @@ if ($rt_suspending()) { break main; } - var$10 = $this.$this$0239; + var$10 = $this.$this$0155; $entitylist$entityegginfo = var$10.$fontRendererObj0; $j = $k + $entitylist$entityegginfo.$FONT_HEIGHT | 0; $var4 = $l ? 9474192 : 6316128; @@ -1398414,7 +1400779,7 @@ if ($rt_suspending()) { break main; } - $entitylist$entityegginfo = $this.$this$0239; + $entitylist$entityegginfo = $this.$this$0155; $s1 = $entitylist$entityegginfo.$fontRendererObj0; $j = $k + ($s1.$FONT_HEIGHT * 2 | 0) | 0; $k = $i1 ? 9474192 : 6316128; @@ -1398454,11 +1400819,9 @@ $b0 = 3; $i = (-18); $player = new nmi_ContainerHorseInventory$1; - $player.$this$0315 = $this; nmi_Slot__init_0($player, $horseInventoryIn, 0, 8, 18); nmi_Container_addSlotToContainer($this, $player); $player = new nmi_ContainerHorseInventory$2; - $player.$this$0316 = $this; $player.$val$horse = $horse; nmi_Slot__init_0($player, $horseInventoryIn, 1, 8, 36); nmi_Container_addSlotToContainer($this, $player); @@ -1398727,7 +1401090,7 @@ } function cgcc_AbstractMultimap$Values() { ju_AbstractCollection.call(this); - this.$this$081 = null; + this.$this$054 = null; } function nmi_ContainerHopper() { nmi_Container.call(this); @@ -1399558,7 +1401921,6 @@ nmi_Container_addSlotToContainer($this, nmi_ContainerBrewingStand$Potion__init_($playerInventory.$player0, $tileBrewingStandIn, 1, 79, 53)); nmi_Container_addSlotToContainer($this, nmi_ContainerBrewingStand$Potion__init_($playerInventory.$player0, $tileBrewingStandIn, 2, 102, 46)); var$3 = new nmi_ContainerBrewingStand$Ingredient; - var$3.$this$0317 = $this; nmi_Slot__init_0(var$3, $tileBrewingStandIn, 3, 79, 17); $this.$theSlot0 = nmi_Container_addSlotToContainer($this, var$3); $i = 0; @@ -1402923,7 +1405285,7 @@ case 0: nmi_Container__init_($this); var$4 = new nmi_ContainerEnchantment$1; - var$4.$this$0318 = $this; + var$4.$this$0199 = $this; nmi_InventoryBasic__init_0(var$4, $rt_s(9675), 1, 2); $this.$tableInventory = var$4; var$4 = new nlev_EaglercraftRandom; @@ -1402940,14 +1405302,10 @@ $this.$position27 = $pos; $this.$xpSeed0 = $playerInv.$player0.$xpSeed; $worldIn = new nmi_ContainerEnchantment$2; - $pos = $this.$tableInventory; - $worldIn.$this$0319 = $this; - nmi_Slot__init_0($worldIn, $pos, 0, 15, 47); + nmi_Slot__init_0($worldIn, $this.$tableInventory, 0, 15, 47); nmi_Container_addSlotToContainer($this, $worldIn); $worldIn = new nmi_ContainerEnchantment$3; - $pos = $this.$tableInventory; - $worldIn.$this$0320 = $this; - nmi_Slot__init_0($worldIn, $pos, 1, 35, 47); + nmi_Slot__init_0($worldIn, $this.$tableInventory, 1, 35, 47); nmi_Container_addSlotToContainer($this, $worldIn); $i = 0; while ($i < 3) { @@ -1404239,7 +1406597,7 @@ var$7 = 1; else { if (var$5 !== null) { - var$1 = var$1.$this$0237.$field_146546_t; + var$1 = var$1.$this$0153.$field_146546_t; $ptr = 6; continue main; } @@ -1404260,7 +1406618,7 @@ var$7 = 1; else { if (var$5 !== null) { - var$1 = var$1.$this$0237.$field_146546_t; + var$1 = var$1.$this$0153.$field_146546_t; $ptr = 6; continue main; } @@ -1404281,7 +1406639,7 @@ var$7 = 1; else { if (var$5 !== null) { - var$1 = var$1.$this$0237.$field_146546_t; + var$1 = var$1.$this$0153.$field_146546_t; $ptr = 6; continue main; } @@ -1404302,7 +1406660,7 @@ var$7 = 1; else { if (var$5 !== null) { - var$1 = var$1.$this$0237.$field_146546_t; + var$1 = var$1.$this$0153.$field_146546_t; $ptr = 6; continue main; } @@ -1404315,7 +1406673,7 @@ break main; } var$7 = $tmp; - var$1 = $this.$this$15.$this$0237.$field_146546_t; + var$1 = $this.$this$15.$this$0153.$field_146546_t; $ptr = 7; case 7: $tmp = nms_StatFileWriter_readStat(var$1, var$5); @@ -1404382,7 +1406740,7 @@ var$7 = 1; else { if (var$5 !== null) { - var$1 = var$1.$this$0238.$field_146546_t; + var$1 = var$1.$this$0154.$field_146546_t; $ptr = 6; continue main; } @@ -1404403,7 +1406761,7 @@ var$7 = 1; else { if (var$5 !== null) { - var$1 = var$1.$this$0238.$field_146546_t; + var$1 = var$1.$this$0154.$field_146546_t; $ptr = 6; continue main; } @@ -1404424,7 +1406782,7 @@ var$7 = 1; else { if (var$5 !== null) { - var$1 = var$1.$this$0238.$field_146546_t; + var$1 = var$1.$this$0154.$field_146546_t; $ptr = 6; continue main; } @@ -1404445,7 +1406803,7 @@ var$7 = 1; else { if (var$5 !== null) { - var$1 = var$1.$this$0238.$field_146546_t; + var$1 = var$1.$this$0154.$field_146546_t; $ptr = 6; continue main; } @@ -1404458,7 +1406816,7 @@ break main; } var$7 = $tmp; - var$1 = $this.$this$16.$this$0238.$field_146546_t; + var$1 = $this.$this$16.$this$0154.$field_146546_t; $ptr = 7; case 7: $tmp = nms_StatFileWriter_readStat(var$1, var$5); @@ -1404471,10 +1406829,7 @@ }} $rt_nativeThread().push($this, var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, $ptr); } - function nmi_ContainerHorseInventory$1() { - nmi_Slot.call(this); - this.$this$0315 = null; - } + var nmi_ContainerHorseInventory$1 = $rt_classWithoutFields(nmi_Slot); function nmi_ContainerHorseInventory$1_isItemValid($this, $itemstack) { var var$2, $ptr, $tmp; $ptr = 0; @@ -1404499,9 +1406854,8 @@ $rt_nativeThread().push($this, $itemstack, var$2, $ptr); } function nmi_ContainerHorseInventory$2() { - var a = this; nmi_Slot.call(a); - a.$val$horse = null; - a.$this$0316 = null; + nmi_Slot.call(this); + this.$val$horse = null; } function nmi_ContainerHorseInventory$2_isItemValid($this, $itemstack) { var var$2, var$3, $ptr, $tmp; @@ -1405028,10 +1407382,7 @@ }} $rt_nativeThread().push($parItemStack, var$2, var$3, $ptr); } - function nmi_ContainerBrewingStand$Ingredient() { - nmi_Slot.call(this); - this.$this$0317 = null; - } + var nmi_ContainerBrewingStand$Ingredient = $rt_classWithoutFields(nmi_Slot); function nmi_ContainerBrewingStand$Ingredient_isItemValid($this, $itemstack) { var var$2, var$3, $ptr, $tmp; $ptr = 0; @@ -1405059,10 +1407410,7 @@ function nmi_ContainerBrewingStand$Ingredient_getSlotStackLimit($this) { return 64; } - function nmi_ContainerBeacon$BeaconSlot() { - nmi_Slot.call(this); - this.$this$0304 = null; - } + var nmi_ContainerBeacon$BeaconSlot = $rt_classWithoutFields(nmi_Slot); function nmi_ContainerBeacon$BeaconSlot_isItemValid($this, $itemstack) { var var$2, var$3, $ptr, $tmp; $ptr = 0; @@ -1408123,7 +1410471,7 @@ } function nmi_ContainerEnchantment$1() { nmi_InventoryBasic.call(this); - this.$this$0318 = null; + this.$this$0199 = null; } function nmi_ContainerEnchantment$1_getInventoryStackLimit($this) { return 64; @@ -1408143,7 +1410491,7 @@ if ($rt_suspending()) { break main; } - var$1 = $this.$this$0318; + var$1 = $this.$this$0199; $ptr = 2; case 2: nmi_ContainerEnchantment_onCraftMatrixChanged(var$1, $this); @@ -1408155,20 +1410503,14 @@ }} $rt_nativeThread().push($this, var$1, $ptr); } - function nmi_ContainerEnchantment$2() { - nmi_Slot.call(this); - this.$this$0319 = null; - } + var nmi_ContainerEnchantment$2 = $rt_classWithoutFields(nmi_Slot); function nmi_ContainerEnchantment$2_isItemValid($this, $var1) { return 1; } function nmi_ContainerEnchantment$2_getSlotStackLimit($this) { return 1; } - function nmi_ContainerEnchantment$3() { - nmi_Slot.call(this); - this.$this$0320 = null; - } + var nmi_ContainerEnchantment$3 = $rt_classWithoutFields(nmi_Slot); function nmi_ContainerEnchantment$3_isItemValid($this, $itemstack) { var var$2, $ptr, $tmp; $ptr = 0; @@ -1408195,7 +1410537,7 @@ } function nmi_ContainerRepair$1() { nmi_InventoryBasic.call(this); - this.$this$0305 = null; + this.$this$0189 = null; } function nmi_ContainerRepair$1_markDirty($this) { var var$1, $ptr, $tmp; @@ -1408212,7 +1410554,7 @@ if ($rt_suspending()) { break main; } - var$1 = $this.$this$0305; + var$1 = $this.$this$0189; $ptr = 2; case 2: nmi_Container_detectAndSendChanges(var$1); @@ -1408236,7 +1410578,7 @@ var a = this; nmi_Slot.call(a); a.$val$worldIn0 = null; a.$val$blockPosIn = null; - a.$this$0306 = null; + a.$this$0190 = null; } function nmi_ContainerRepair$2_isItemValid($this, $var1) { return 0; @@ -1408250,7 +1410592,7 @@ } main: while (true) { switch ($ptr) { case 0: - if (!(!$playerIn.$capabilities.$isCreativeMode && $playerIn.$experienceLevel < $this.$this$0306.$maximumCost) && $this.$this$0306.$maximumCost > 0) { + if (!(!$playerIn.$capabilities.$isCreativeMode && $playerIn.$experienceLevel < $this.$this$0190.$maximumCost) && $this.$this$0190.$maximumCost > 0) { $ptr = 1; continue main; } @@ -1408276,11 +1410618,11 @@ main: while (true) { switch ($ptr) { case 0: if (!$entityplayer.$capabilities.$isCreativeMode) { - var$3 = -$this.$this$0306.$maximumCost | 0; + var$3 = -$this.$this$0190.$maximumCost | 0; $ptr = 2; continue main; } - $itemstack = $this.$this$0306.$inputSlots; + $itemstack = $this.$this$0190.$inputSlots; var$3 = 0; $var2 = null; $ptr = 1; @@ -1408289,7 +1410631,7 @@ if ($rt_suspending()) { break main; } - $var2 = $this.$this$0306; + $var2 = $this.$this$0190; if ($var2.$materialCost > 0) { $var2 = $var2.$inputSlots; var$3 = 1; @@ -1408306,7 +1410648,7 @@ if ($rt_suspending()) { break main; } - $itemstack = $this.$this$0306.$inputSlots; + $itemstack = $this.$this$0190.$inputSlots; var$3 = 0; $var2 = null; $ptr = 1; @@ -1408316,7 +1410658,7 @@ if ($rt_suspending()) { break main; } - $this.$this$0306.$maximumCost = 0; + $this.$this$0190.$maximumCost = 0; $var2 = $this.$val$worldIn0; $itemstack = $this.$val$blockPosIn; $ptr = 5; @@ -1408329,7 +1410671,7 @@ $itemstack = $tmp; if ($itemstack !== null) { var$3 = $itemstack.$stackSize; - $var2 = $this.$this$0306; + $var2 = $this.$this$0190; $l = $var2.$materialCost; if (var$3 > $l) { $itemstack.$stackSize = var$3 - $l | 0; @@ -1408339,7 +1410681,7 @@ continue main; } } - $var2 = $this.$this$0306.$inputSlots; + $var2 = $this.$this$0190.$inputSlots; var$3 = 1; $itemstack = null; $ptr = 6; @@ -1408367,7 +1410709,7 @@ if ($rt_suspending()) { break main; } - $this.$this$0306.$maximumCost = 0; + $this.$this$0190.$maximumCost = 0; $var2 = $this.$val$worldIn0; $itemstack = $this.$val$blockPosIn; $ptr = 5; @@ -1408377,7 +1410719,7 @@ if ($rt_suspending()) { break main; } - $this.$this$0306.$maximumCost = 0; + $this.$this$0190.$maximumCost = 0; $var2 = $this.$val$worldIn0; $itemstack = $this.$val$blockPosIn; $ptr = 5; @@ -1408583,7 +1410925,7 @@ function nmt_TileEntitySign$2() { var a = this; jl_Object.call(a); a.$val$playerIn = null; - a.$this$034 = null; + a.$this$021 = null; } function nmt_TileEntitySign$2_getName($this) { var var$1, $ptr, $tmp; @@ -1408634,10 +1410976,10 @@ return $j > 2 ? 0 : 1; } function nmt_TileEntitySign$2_getPosition($this) { - return $this.$this$034.$pos11; + return $this.$this$021.$pos11; } function nmt_TileEntitySign$2_getPositionVector($this) { - return nmu_Vec3__init_0($this.$this$034.$pos11.$getX() + 0.5, $this.$this$034.$pos11.$getY() + 0.5, $this.$this$034.$pos11.$getZ() + 0.5); + return nmu_Vec3__init_0($this.$this$021.$pos11.$getX() + 0.5, $this.$this$021.$pos11.$getY() + 0.5, $this.$this$021.$pos11.$getZ() + 0.5); } function nmt_TileEntitySign$2_getEntityWorld($this) { return $this.$val$playerIn.$worldObj0; @@ -1408657,7 +1410999,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$3 = $this.$this$034.$stats; + var$3 = $this.$this$021.$stats; $ptr = 1; case 1: nmc_CommandResultStats_func_179672_a(var$3, $this, $commandresultstats$type, $j); @@ -1408683,23 +1411025,6 @@ var$2[nmb_BlockDirt$DirtType_DIRT.$ordinal] = 1; var$2[nmb_BlockDirt$DirtType_COARSE_DIRT.$ordinal] = 2; } - var nmb_BlockSilverfish$1 = $rt_classWithoutFields(); - var nmb_BlockSilverfish$1_$SwitchMap$net$minecraft$block$BlockSilverfish$EnumType = null; - function nmb_BlockSilverfish$1_$callClinit() { - nmb_BlockSilverfish$1_$callClinit = $rt_eraseClinit(nmb_BlockSilverfish$1); - nmb_BlockSilverfish$1__clinit_(); - } - function nmb_BlockSilverfish$1__clinit_() { - var var$1, var$2; - var$1 = $rt_createIntArray((nmb_BlockSilverfish$EnumType_values()).data.length); - var$2 = var$1.data; - nmb_BlockSilverfish$1_$SwitchMap$net$minecraft$block$BlockSilverfish$EnumType = var$1; - var$2[nmb_BlockSilverfish$EnumType_COBBLESTONE.$ordinal] = 1; - var$2[nmb_BlockSilverfish$EnumType_STONEBRICK.$ordinal] = 2; - var$2[nmb_BlockSilverfish$EnumType_MOSSY_STONEBRICK.$ordinal] = 3; - var$2[nmb_BlockSilverfish$EnumType_CRACKED_STONEBRICK.$ordinal] = 4; - var$2[nmb_BlockSilverfish$EnumType_CHISELED_STONEBRICK.$ordinal] = 5; - } function nmi_ItemStack$makeModData$lambda$_3_0() { jl_Object.call(this); this.$_0444 = null; @@ -1411364,6 +1413689,133 @@ function nmep_PlayerCapabilities$makeModData$lambda$_2_5_onCallback$exported$0(var$0, var$1) { var$0.$_0125.$walkSpeed0 = var$1["speed"]; } + function nmcg_GuiMerchant$MerchantButton() { + nmcg_GuiButton.call(this); + this.$field_146157_o = 0; + } + function nmcg_GuiMerchant$MerchantButton__init_0(var_0, var_1, var_2, var_3) { + var var_4 = new nmcg_GuiMerchant$MerchantButton(); + nmcg_GuiMerchant$MerchantButton__init_(var_4, var_0, var_1, var_2, var_3); + return var_4; + } + function nmcg_GuiMerchant$MerchantButton__init_($this, $buttonID, $x, $y, $parFlag) { + var var$5, var$6, var$7, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();$parFlag = $thread.pop();$y = $thread.pop();$x = $thread.pop();$buttonID = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + var$5 = 12; + var$6 = 19; + var$7 = $rt_s(14); + $ptr = 1; + case 1: + nmcg_GuiButton__init_0($this, $buttonID, $x, $y, var$5, var$6, var$7); + if ($rt_suspending()) { + break main; + } + $this.$field_146157_o = $parFlag; + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $buttonID, $x, $y, $parFlag, var$5, var$6, var$7, $ptr); + } + function nmcg_GuiMerchant$MerchantButton_drawButton($this, $minecraft, $i, $j) { + var var$4, var$5, var$6, var$7, var$8, $flag, $k, $l, var$12, $ptr, $tmp; + $ptr = 0; + if ($rt_resuming()) { + var $thread = $rt_nativeThread(); + $ptr = $thread.pop();var$12 = $thread.pop();$l = $thread.pop();$k = $thread.pop();$flag = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$j = $thread.pop();$i = $thread.pop();$minecraft = $thread.pop();$this = $thread.pop(); + } + main: while (true) { switch ($ptr) { + case 0: + if (!$this.$visible) + return; + var$4 = $minecraft.$renderEngine; + $ptr = 1; + case 1: + nmcg_GuiMerchant_$callClinit(); + if ($rt_suspending()) { + break main; + } + $minecraft = nmcg_GuiMerchant_MERCHANT_GUI_TEXTURE; + $ptr = 2; + case 2: + nmcrt_TextureManager_bindTexture(var$4, $minecraft); + if ($rt_suspending()) { + break main; + } + var$5 = 1.0; + var$6 = 1.0; + var$7 = 1.0; + var$8 = 1.0; + $ptr = 3; + case 3: + a: { + nlevo_GlStateManager_color(var$5, var$6, var$7, var$8); + if ($rt_suspending()) { + break main; + } + $flag = $this.$xPosition0; + if ($i >= $flag) { + $k = $this.$yPosition; + if ($j >= $k && $i < ($flag + $this.$width14 | 0) && $j < ($k + $this.$height16 | 0)) { + $flag = 1; + break a; + } + } + $flag = 0; + } + if ($flag && $this.$enabled) { + nlevi_EnumCursorType_$callClinit(); + $minecraft = nlevi_EnumCursorType_HAND; + $ptr = 4; + continue main; + } + $k = 0; + $l = 176; + if (!$this.$enabled) + $l = $l + ($this.$width14 * 2 | 0) | 0; + else if ($flag) + $l = $l + $this.$width14 | 0; + if (!$this.$field_146157_o) + $k = $k + $this.$height16 | 0; + $i = $this.$xPosition0; + $j = $this.$yPosition; + $flag = $this.$width14; + var$12 = $this.$height16; + $ptr = 5; + continue main; + case 4: + nlev_Mouse_showCursor($minecraft); + if ($rt_suspending()) { + break main; + } + $k = 0; + $l = 176; + if (!$this.$enabled) + $l = $l + ($this.$width14 * 2 | 0) | 0; + else if ($flag) + $l = $l + $this.$width14 | 0; + if (!$this.$field_146157_o) + $k = $k + $this.$height16 | 0; + $i = $this.$xPosition0; + $j = $this.$yPosition; + $flag = $this.$width14; + var$12 = $this.$height16; + $ptr = 5; + case 5: + nmcg_Gui_drawTexturedModalRect($this, $i, $j, $l, $k, $flag, var$12); + if ($rt_suspending()) { + break main; + } + return; + default: $rt_invalidPointer(); + }} + $rt_nativeThread().push($this, $minecraft, $i, $j, var$4, var$5, var$6, var$7, var$8, $flag, $k, $l, var$12, $ptr); + } function nmcgi_GuiBeacon$Button() { var a = this; nmcg_GuiButton.call(a); a.$field_146145_o = null; @@ -1411513,7 +1413965,7 @@ } function nmcgi_GuiBeacon$ConfirmButton() { nmcgi_GuiBeacon$Button.call(this); - this.$this$0312 = null; + this.$this$0196 = null; } function nmcgi_GuiBeacon$ConfirmButton_drawButtonForegroundLayer($this, $i, $j) { var var$3, var$4, var$5, $ptr, $tmp; @@ -1411530,7 +1413982,7 @@ $ptr = 4; continue main; } - var$4 = $this.$this$0312; + var$4 = $this.$this$0196; var$3 = $rt_s(5191); var$5 = $rt_createArray(jl_Object, 0); $ptr = 1; @@ -1411558,7 +1414010,7 @@ if ($rt_suspending()) { break main; } - var$4 = $this.$this$0312; + var$4 = $this.$this$0196; var$3 = $rt_s(5191); var$5 = $rt_createArray(jl_Object, 0); $ptr = 1; @@ -1411569,7 +1414021,7 @@ } function nmcgi_GuiBeacon$CancelButton() { nmcgi_GuiBeacon$Button.call(this); - this.$this$0313 = null; + this.$this$0197 = null; } function nmcgi_GuiBeacon$CancelButton_drawButtonForegroundLayer($this, $i, $j) { var var$3, var$4, var$5, $ptr, $tmp; @@ -1411586,7 +1414038,7 @@ $ptr = 4; continue main; } - var$4 = $this.$this$0313; + var$4 = $this.$this$0197; var$3 = $rt_s(5712); var$5 = $rt_createArray(jl_Object, 0); $ptr = 1; @@ -1411614,7 +1414066,7 @@ if ($rt_suspending()) { break main; } - var$4 = $this.$this$0313; + var$4 = $this.$this$0197; var$3 = $rt_s(5712); var$5 = $rt_createArray(jl_Object, 0); $ptr = 1; @@ -1411623,133 +1414075,6 @@ }} $rt_nativeThread().push($this, $i, $j, var$3, var$4, var$5, $ptr); } - function nmcg_GuiMerchant$MerchantButton() { - nmcg_GuiButton.call(this); - this.$field_146157_o = 0; - } - function nmcg_GuiMerchant$MerchantButton__init_0(var_0, var_1, var_2, var_3) { - var var_4 = new nmcg_GuiMerchant$MerchantButton(); - nmcg_GuiMerchant$MerchantButton__init_(var_4, var_0, var_1, var_2, var_3); - return var_4; - } - function nmcg_GuiMerchant$MerchantButton__init_($this, $buttonID, $x, $y, $parFlag) { - var var$5, var$6, var$7, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();$parFlag = $thread.pop();$y = $thread.pop();$x = $thread.pop();$buttonID = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - var$5 = 12; - var$6 = 19; - var$7 = $rt_s(14); - $ptr = 1; - case 1: - nmcg_GuiButton__init_0($this, $buttonID, $x, $y, var$5, var$6, var$7); - if ($rt_suspending()) { - break main; - } - $this.$field_146157_o = $parFlag; - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $buttonID, $x, $y, $parFlag, var$5, var$6, var$7, $ptr); - } - function nmcg_GuiMerchant$MerchantButton_drawButton($this, $minecraft, $i, $j) { - var var$4, var$5, var$6, var$7, var$8, $flag, $k, $l, var$12, $ptr, $tmp; - $ptr = 0; - if ($rt_resuming()) { - var $thread = $rt_nativeThread(); - $ptr = $thread.pop();var$12 = $thread.pop();$l = $thread.pop();$k = $thread.pop();$flag = $thread.pop();var$8 = $thread.pop();var$7 = $thread.pop();var$6 = $thread.pop();var$5 = $thread.pop();var$4 = $thread.pop();$j = $thread.pop();$i = $thread.pop();$minecraft = $thread.pop();$this = $thread.pop(); - } - main: while (true) { switch ($ptr) { - case 0: - if (!$this.$visible) - return; - var$4 = $minecraft.$renderEngine; - $ptr = 1; - case 1: - nmcg_GuiMerchant_$callClinit(); - if ($rt_suspending()) { - break main; - } - $minecraft = nmcg_GuiMerchant_MERCHANT_GUI_TEXTURE; - $ptr = 2; - case 2: - nmcrt_TextureManager_bindTexture(var$4, $minecraft); - if ($rt_suspending()) { - break main; - } - var$5 = 1.0; - var$6 = 1.0; - var$7 = 1.0; - var$8 = 1.0; - $ptr = 3; - case 3: - a: { - nlevo_GlStateManager_color(var$5, var$6, var$7, var$8); - if ($rt_suspending()) { - break main; - } - $flag = $this.$xPosition0; - if ($i >= $flag) { - $k = $this.$yPosition; - if ($j >= $k && $i < ($flag + $this.$width14 | 0) && $j < ($k + $this.$height16 | 0)) { - $flag = 1; - break a; - } - } - $flag = 0; - } - if ($flag && $this.$enabled) { - nlevi_EnumCursorType_$callClinit(); - $minecraft = nlevi_EnumCursorType_HAND; - $ptr = 4; - continue main; - } - $k = 0; - $l = 176; - if (!$this.$enabled) - $l = $l + ($this.$width14 * 2 | 0) | 0; - else if ($flag) - $l = $l + $this.$width14 | 0; - if (!$this.$field_146157_o) - $k = $k + $this.$height16 | 0; - $i = $this.$xPosition0; - $j = $this.$yPosition; - $flag = $this.$width14; - var$12 = $this.$height16; - $ptr = 5; - continue main; - case 4: - nlev_Mouse_showCursor($minecraft); - if ($rt_suspending()) { - break main; - } - $k = 0; - $l = 176; - if (!$this.$enabled) - $l = $l + ($this.$width14 * 2 | 0) | 0; - else if ($flag) - $l = $l + $this.$width14 | 0; - if (!$this.$field_146157_o) - $k = $k + $this.$height16 | 0; - $i = $this.$xPosition0; - $j = $this.$yPosition; - $flag = $this.$width14; - var$12 = $this.$height16; - $ptr = 5; - case 5: - nmcg_Gui_drawTexturedModalRect($this, $i, $j, $l, $k, $flag, var$12); - if ($rt_suspending()) { - break main; - } - return; - default: $rt_invalidPointer(); - }} - $rt_nativeThread().push($this, $minecraft, $i, $j, var$4, var$5, var$6, var$7, var$8, $flag, $k, $l, var$12, $ptr); - } function nmu_EnchantmentNameParts() { var a = this; jl_Object.call(a); a.$rand9 = null; @@ -1411965,7 +1414290,7 @@ var a = this; nmcgi_GuiBeacon$Button.call(a); a.$field_146149_p = 0; a.$field_146148_q = 0; - a.$this$0321 = null; + a.$this$0200 = null; } function nmcgi_GuiBeacon$PowerButton__init_0(var_0, var_1, var_2, var_3, var_4, var_5) { var var_6 = new nmcgi_GuiBeacon$PowerButton(); @@ -1411981,7 +1414306,7 @@ } main: while (true) { switch ($ptr) { case 0: - $this.$this$0321 = $this$0; + $this.$this$0200 = $this$0; $ptr = 1; case 1: nmcgi_GuiContainer_$callClinit(); @@ -1412049,7 +1414374,7 @@ $ptr = 6; continue main; } - var$5 = $this.$this$0321; + var$5 = $this.$this$0200; $ptr = 4; continue main; case 3: @@ -1412090,7 +1414415,7 @@ break main; } $s = $tmp; - var$5 = $this.$this$0321; + var$5 = $this.$this$0200; $ptr = 4; continue main; default: $rt_invalidPointer(); @@ -1412897,10 +1415222,7 @@ }} $rt_nativeThread().push(var$0, var$1, var$2, $ptr); } - function cgcc_AbstractMapBasedMultimap$1() { - cgcc_AbstractMapBasedMultimap$Itr.call(this); - this.$this$082 = null; - } + var cgcc_AbstractMapBasedMultimap$1 = $rt_classWithoutFields(cgcc_AbstractMapBasedMultimap$Itr); function cgcc_AbstractMapBasedMultimap$1_output($this, $key, $value) { return $value; } @@ -1413592,9 +1415914,8 @@ $rt_nativeThread().push(var$1, $ptr); } function nmc_CommandResultStats$1() { - var a = this; jl_Object.call(a); - a.$val$sender = null; - a.$this$0221 = null; + jl_Object.call(this); + this.$val$sender = null; } function nmc_CommandResultStats$1_addChatMessage($this, $ichatcomponent) { var var$2, $ptr, $tmp; @@ -1413710,7 +1416031,6 @@ a.$val$d0 = 0.0; a.$val$d1 = 0.0; a.$val$d2 = 0.0; - a.$this$077 = null; } function nmc_CommandExecuteAt$1_getName($this) { var var$1, $ptr, $tmp; @@ -1413868,7 +1416188,6 @@ var a = this; jl_Object.call(a); a.$val$entityplayermp = null; a.$val$statbase = null; - a.$this$078 = null; } function nmcs_CommandAchievement$1_apply($this, var$1) { var var$2, var$3, $ptr, $tmp; @@ -1414222,7 +1416541,7 @@ var$1 = $this.$entrySet4; if (var$1 === null) { var$1 = new cgcc_AbstractMultiset$EntrySet; - var$1.$this$0322 = $this; + var$1.$this$0201 = $this; jl_Object__init_0(var$1); $this.$entrySet4 = var$1; } @@ -1414678,27 +1416997,12 @@ }} $rt_nativeThread().push(var$0, var$1, var$2, var$3, var$4, var$5, var$6, var$7, var$8, var$9, var$10, var$11, var$12, var$13, $ptr); } - var nmb_BlockHugeMushroom$1 = $rt_classWithoutFields(); - var nmb_BlockHugeMushroom$1_$SwitchMap$net$minecraft$block$BlockHugeMushroom$EnumType = null; - function nmb_BlockHugeMushroom$1_$callClinit() { - nmb_BlockHugeMushroom$1_$callClinit = $rt_eraseClinit(nmb_BlockHugeMushroom$1); - nmb_BlockHugeMushroom$1__clinit_(); - } - function nmb_BlockHugeMushroom$1__clinit_() { - var var$1, var$2; - var$1 = $rt_createIntArray((nmb_BlockHugeMushroom$EnumType_values()).data.length); - var$2 = var$1.data; - nmb_BlockHugeMushroom$1_$SwitchMap$net$minecraft$block$BlockHugeMushroom$EnumType = var$1; - var$2[nmb_BlockHugeMushroom$EnumType_ALL_STEM.$ordinal] = 1; - var$2[nmb_BlockHugeMushroom$EnumType_ALL_INSIDE.$ordinal] = 2; - var$2[nmb_BlockHugeMushroom$EnumType_STEM.$ordinal] = 3; - } function nmwc_Chunk$1() { var a = this; jl_Object.call(a); a.$val$x = 0; a.$val$y = 0; a.$val$z = 0; - a.$this$0191 = null; + a.$this$0122 = null; } function nmwc_Chunk$1_call($this) { var var$1, var$2, $ptr, $tmp; @@ -1414710,7 +1417014,7 @@ main: while (true) { switch ($ptr) { case 0: var$1 = new nmu_BlockPos; - var$2 = $this.$this$0191; + var$2 = $this.$this$0122; nmu_BlockPos__init_2(var$1, (var$2.$xPosition * 16 | 0) + $this.$val$x | 0, $this.$val$y, (var$2.$zPosition * 16 | 0) + $this.$val$z | 0); $ptr = 1; case 1: @@ -1414761,12 +1417065,11 @@ a.$remaining0 = 0; a.$element1 = null; a.$val$entryIterator1 = null; - a.$this$0323 = null; } var cgcc_Multisets$EntrySet = $rt_classWithoutFields(cgcc_Sets$ImprovedAbstractSet); function cgcc_AbstractMultiset$EntrySet() { cgcc_Multisets$EntrySet.call(this); - this.$this$0322 = null; + this.$this$0201 = null; } function cgcc_AbstractMultiset$EntrySet_iterator($this) { var var$1, var$2, var$3, $ptr, $tmp; @@ -1414777,7 +1417080,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$1 = $this.$this$0322; + var$1 = $this.$this$0201; var$2 = var$1.$backingMap1; $ptr = 1; case 1: @@ -1414794,7 +1417097,7 @@ } var$2 = $tmp; var$3 = new cgcc_AbstractMapBasedMultiset$1; - var$3.$this$0324 = var$1; + var$3.$this$0202 = var$1; var$3.$val$backingEntries = var$2; return var$3; default: $rt_invalidPointer(); @@ -1414802,7 +1417105,7 @@ $rt_nativeThread().push($this, var$1, var$2, var$3, $ptr); } function cgcc_AbstractMultiset$EntrySet_size($this) { - return $this.$this$0322.$backingMap1.$size0(); + return $this.$this$0201.$backingMap1.$size0(); } var juf_ToLongFunction = $rt_classWithoutFields(0); var nlevm_EaglerFolderResourcePack$lambda$loadRemoteResourcePack$1$lambda$_15_0 = $rt_classWithoutFields(); @@ -1414835,10 +1417138,10 @@ } function cgcc_ImmutableMultiset$EntrySet() { cgcc_ImmutableSet.call(this); - this.$this$032 = null; + this.$this$019 = null; } function cgcc_ImmutableMultiset$EntrySet_isPartialView($this) { - return $this.$this$032.$map9.$isPartialView(); + return $this.$this$019.$map9.$isPartialView(); } function cgcc_ImmutableMultiset$EntrySet_iterator($this) { var var$1, $ptr, $tmp; @@ -1414871,12 +1417174,12 @@ function cgcc_ImmutableMultiset$EntrySet_createAsList($this) { var var$1; var$1 = new cgcc_ImmutableMultiset$EntrySet$1; - var$1.$this$113 = $this; + var$1.$this$112 = $this; cgcc_ImmutableList__init_(var$1); return var$1; } function cgcc_ImmutableMultiset$EntrySet_size($this) { - return ($this.$this$032.$map9.$keySet0()).$size0(); + return ($this.$this$019.$map9.$keySet0()).$size0(); } function cgcc_ImmutableMultiset$EntrySet_contains($this, $o) { var $entry, $count, var$4, var$5, $ptr, $tmp; @@ -1414899,7 +1417202,7 @@ $count = $tmp; if ($count <= 0) return 0; - $o = $this.$this$032; + $o = $this.$this$019; var$4 = $entry.$getElement(); $o = $o.$map9; $ptr = 2; @@ -1414960,7 +1417263,7 @@ var a = this; jl_Object.call(a); a.$toRemove0 = null; a.$val$backingEntries = null; - a.$this$0324 = null; + a.$this$0202 = null; } function cgcc_AbstractMapBasedMultiset$1_hasNext($this) { var var$1, var$2, $ptr, $tmp; @@ -1415004,7 +1417307,7 @@ var$1 = var$1; $this.$toRemove0 = var$1; var$2 = new cgcc_AbstractMapBasedMultiset$1$1; - var$2.$this$114 = $this; + var$2.$this$113 = $this; var$2.$val$mapEntry = var$1; return var$2; default: $rt_invalidPointer(); @@ -1415013,10 +1417316,10 @@ } function cgcc_ImmutableMultiset$EntrySet$1() { cgcc_ImmutableAsList.call(this); - this.$this$113 = null; + this.$this$112 = null; } function cgcc_ImmutableMultiset$EntrySet$1_delegateCollection($this) { - return $this.$this$113; + return $this.$this$112; } function cgcc_ImmutableMultiset$EntrySet$1_get($this, var$1) { var var$2, var$3, $ptr, $tmp; @@ -1415027,7 +1417330,7 @@ } main: while (true) { switch ($ptr) { case 0: - var$2 = $this.$this$113.$this$032.$map9; + var$2 = $this.$this$112.$this$019.$map9; $ptr = 1; case 1: $tmp = var$2.$entrySet2(); @@ -1415208,7 +1417511,7 @@ function cgcc_AbstractMapBasedMultiset$1$1() { var a = this; cgcc_Multisets$AbstractEntry.call(a); a.$val$mapEntry = null; - a.$this$114 = null; + a.$this$113 = null; } function cgcc_AbstractMapBasedMultiset$1$1_getElement($this) { return $this.$val$mapEntry.$getKey(); @@ -1415225,7 +1417528,7 @@ $count = $this.$val$mapEntry.$getValue(); if ($count !== null && $count.$value26) return $count === null ? 0 : $count.$value26; - $frequency = $this.$this$114.$this$0324.$backingMap1; + $frequency = $this.$this$113.$this$0202.$backingMap1; var$3 = cgcc_AbstractMapBasedMultiset$1$1_getElement($this); $ptr = 1; case 1: @@ -1417879,7 +1420182,6 @@ nmwb_BiomeGenForest$1, "BiomeGenForest$1", 80, nmwb_BiomeGenMutated, [], 0, 0, [nmwb_BiomeGenForest,0,0], 0, ["$decorate0", $rt_wrapFunction3(nmwb_BiomeGenForest$1_decorate)], nmwb_BiomeGenSavanna$Mutated, "BiomeGenSavanna$Mutated", 80, nmwb_BiomeGenMutated, [], 0, 3, [nmwb_BiomeGenSavanna,0,"Mutated"], 0, ["$genTerrainBlocks", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmwb_BiomeGenSavanna$Mutated_genTerrainBlocks(this, var_1, var_2, var_3, var_4, var_5, var_6); }, "$decorate0", $rt_wrapFunction3(nmwb_BiomeGenSavanna$Mutated_decorate)], jusi_AllMatchConsumer, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, ["$test", $rt_wrapFunction1(jusi_AllMatchConsumer_test)], - cgcc_AbstractIterator$1, 0, jl_Object, [], 32, 0, 0, cgcc_AbstractIterator$1_$callClinit, 0, nPs_Lagometer, 0, jl_Object, [], 0, 3, 0, nPs_Lagometer_$callClinit, 0, nmcr_EntityRenderer$2, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmcr_EntityRenderer$2_call)], nmcr_EntityRenderer$3, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmcr_EntityRenderer$3_call)], @@ -1417893,15 +1420195,15 @@ cgcc_HashBiMap$EntrySet, 0, cgcc_Maps$EntrySet, [], 4, 0, 0, 0, ["$map4", $rt_wrapFunction0(cgcc_HashBiMap$EntrySet_map), "$iterator", $rt_wrapFunction0(cgcc_HashBiMap$EntrySet_iterator)], otcic_Console, 0, jl_Object, [], 4, 3, 0, 0, 0, ju_LinkedHashMapEntrySet, 0, ju_AbstractSet, [ju_SequencedSet], 0, 0, 0, 0, ["$size0", $rt_wrapFunction0(ju_LinkedHashMapEntrySet_size), "$iterator", $rt_wrapFunction0(ju_LinkedHashMapEntrySet_iterator)], + jnci_UTF16Decoder, 0, jnci_BufferedDecoder, [], 0, 3, 0, 0, ["$arrayDecode", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7) { return jnci_UTF16Decoder_arrayDecode(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7); }], jnci_Iso8859Decoder, 0, jnci_BufferedDecoder, [], 0, 3, 0, 0, ["$arrayDecode", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7) { return jnci_Iso8859Decoder_arrayDecode(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7); }], jnci_AsciiDecoder, 0, jnci_BufferedDecoder, [], 0, 3, 0, 0, ["$arrayDecode", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7) { return jnci_AsciiDecoder_arrayDecode(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7); }], - jnci_UTF16Decoder, 0, jnci_BufferedDecoder, [], 0, 3, 0, 0, ["$arrayDecode", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7) { return jnci_UTF16Decoder_arrayDecode(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7); }], juz_DataFormatException, "DataFormatException", 9, jl_Exception, [], 0, 3, [0,0,0], 0, 0, ju_HashMap$1, "HashMap$1", 8, ju_AbstractSet, [], 0, 0, [ju_HashMap,0,0], 0, ["$contains0", $rt_wrapFunction1(ju_HashMap$1_contains), "$size0", $rt_wrapFunction0(ju_HashMap$1_size), "$remove", $rt_wrapFunction1(ju_HashMap$1_remove), "$iterator", $rt_wrapFunction0(ju_HashMap$1_iterator)], nmc_Minecraft$4, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmc_Minecraft$4_call)], - nmc_Minecraft$5, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmc_Minecraft$5_call)]]); - $rt_metadata([nmc_Minecraft$6, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmc_Minecraft$6_call)], - nmc_Minecraft$7, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmc_Minecraft$7_call)], + nmc_Minecraft$5, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmc_Minecraft$5_call)], + nmc_Minecraft$6, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmc_Minecraft$6_call)]]); + $rt_metadata([nmc_Minecraft$7, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmc_Minecraft$7_call)], nmc_Minecraft$8, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmc_Minecraft$8_call)], nmc_Minecraft$9, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmc_Minecraft$9_call)], nmc_Minecraft$10, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmc_Minecraft$10_call)], @@ -1417960,9 +1420262,10 @@ nmcg_GuiSleepMP, "GuiSleepMP", 105, nmcg_GuiChat, [], 0, 3, 0, 0, ["$initGui", $rt_wrapFunction0(nmcg_GuiSleepMP_initGui), "$keyTyped", $rt_wrapFunction2(nmcg_GuiSleepMP_keyTyped), "$actionPerformed", $rt_wrapFunction1(nmcg_GuiSleepMP_actionPerformed)], nmc_Minecraft$2, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmc_Minecraft$2_call)], nmc_Minecraft$3, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmc_Minecraft$3_call)], - nlevoed_DeferredStateManager, 0, jl_Object, [], 0, 3, 0, nlevoed_DeferredStateManager_$callClinit, 0]); - $rt_metadata([nmcrt_SimpleTexture, "SimpleTexture", 92, nmcrt_AbstractTexture, [], 0, 3, [0,0,0], nmcrt_SimpleTexture_$callClinit, ["$loadTexture0", $rt_wrapFunction1(nmcrt_SimpleTexture_loadTexture)], - nmcg_GuiGameOver, "GuiGameOver", 105, nmcg_GuiScreen, [nmcg_GuiYesNoCallback], 0, 3, 0, 0, ["$initGui", $rt_wrapFunction0(nmcg_GuiGameOver_initGui), "$keyTyped", $rt_wrapFunction2(nmcg_GuiGameOver_keyTyped), "$actionPerformed", $rt_wrapFunction1(nmcg_GuiGameOver_actionPerformed), "$confirmClicked", $rt_wrapFunction2(nmcg_GuiGameOver_confirmClicked), "$drawScreen", $rt_wrapFunction3(nmcg_GuiGameOver_drawScreen), "$doesGuiPauseGame", $rt_wrapFunction0(nmcg_GuiGameOver_doesGuiPauseGame), "$updateScreen", $rt_wrapFunction0(nmcg_GuiGameOver_updateScreen)], + nlevoed_DeferredStateManager, 0, jl_Object, [], 0, 3, 0, nlevoed_DeferredStateManager_$callClinit, 0, + nmcrt_SimpleTexture, "SimpleTexture", 92, nmcrt_AbstractTexture, [], 0, 3, [0,0,0], nmcrt_SimpleTexture_$callClinit, ["$loadTexture0", $rt_wrapFunction1(nmcrt_SimpleTexture_loadTexture)]]); + $rt_metadata([nmcg_GuiGameOver, "GuiGameOver", 105, nmcg_GuiScreen, [nmcg_GuiYesNoCallback], 0, 3, 0, 0, ["$initGui", $rt_wrapFunction0(nmcg_GuiGameOver_initGui), "$keyTyped", $rt_wrapFunction2(nmcg_GuiGameOver_keyTyped), "$actionPerformed", $rt_wrapFunction1(nmcg_GuiGameOver_actionPerformed), "$confirmClicked", $rt_wrapFunction2(nmcg_GuiGameOver_confirmClicked), "$drawScreen", $rt_wrapFunction3(nmcg_GuiGameOver_drawScreen), "$doesGuiPauseGame", $rt_wrapFunction0(nmcg_GuiGameOver_doesGuiPauseGame), "$updateScreen", + $rt_wrapFunction0(nmcg_GuiGameOver_updateScreen)], nmcs_GameSettings$makeModData$lambda$_2_0, 0, jl_Object, [nea_BaseData$VoidCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmcs_GameSettings$makeModData$lambda$_2_0_onCallback$exported$0)], nmcs_GameSettings$makeModData$lambda$_2_1, 0, jl_Object, [nea_BaseData$ObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmcs_GameSettings$makeModData$lambda$_2_1_onCallback$exported$0)], jt_DateFormatElement$Numeric, "DateFormatElement$Numeric", 20, jt_DateFormatElement, [], 0, 3, [jt_DateFormatElement,0,0], 0, ["$format3", $rt_wrapFunction2(jt_DateFormatElement$Numeric_format), "$processBeforeFormat", $rt_wrapFunction1(jt_DateFormatElement$Numeric_processBeforeFormat), "$equals0", $rt_wrapFunction1(jt_DateFormatElement$Numeric_equals), "$hashCode0", $rt_wrapFunction0(jt_DateFormatElement$Numeric_hashCode)], @@ -1417990,13 +1420293,13 @@ ju_ConcurrentModificationException, "ConcurrentModificationException", 8, jl_RuntimeException, [], 0, 3, [0,0,0], 0, 0, nmnp_INetHandlerPlayServer, 0, jl_Object, [nmn_INetHandler], 3, 3, 0, 0, 0, nmn_NetHandlerPlayServer, 0, jl_Object, [nmnp_INetHandlerPlayServer, nmu_ITickable], 0, 3, 0, nmn_NetHandlerPlayServer_$callClinit, ["$update1", $rt_wrapFunction0(nmn_NetHandlerPlayServer_update), "$onDisconnect", $rt_wrapFunction1(nmn_NetHandlerPlayServer_onDisconnect)], - nlevsi_IPCPacket0FListFiles, "IPCPacket0FListFiles", 170, jl_Object, [nlevsi_IPCPacketBase], 0, 3, [0,0,0], 0, ["$deserialize", $rt_wrapFunction1(nlevsi_IPCPacket0FListFiles_deserialize), "$id", $rt_wrapFunction0(nlevsi_IPCPacket0FListFiles_id)], - nlevsi_IPCPacket10FileRead, "IPCPacket10FileRead", 170, jl_Object, [nlevsi_IPCPacketBase], 0, 3, [0,0,0], 0, ["$deserialize", $rt_wrapFunction1(nlevsi_IPCPacket10FileRead_deserialize), "$id", $rt_wrapFunction0(nlevsi_IPCPacket10FileRead_id)], - nlevsi_IPCPacket12FileWrite, "IPCPacket12FileWrite", 170, jl_Object, [nlevsi_IPCPacketBase], 0, 3, [0,0,0], 0, ["$deserialize", $rt_wrapFunction1(nlevsi_IPCPacket12FileWrite_deserialize), "$id", $rt_wrapFunction0(nlevsi_IPCPacket12FileWrite_id)], - nlevsi_IPCPacket01StopServer, "IPCPacket01StopServer", 170, jl_Object, [nlevsi_IPCPacketBase], 0, 3, [0,0,0], 0, ["$deserialize", $rt_wrapFunction1(nlevsi_IPCPacket01StopServer_deserialize), "$serialize", $rt_wrapFunction1(nlevsi_IPCPacket01StopServer_serialize), "$id", $rt_wrapFunction0(nlevsi_IPCPacket01StopServer_id), "$size0", $rt_wrapFunction0(nlevsi_IPCPacket01StopServer_size)], nlevsi_IPCPacket19Autosave, "IPCPacket19Autosave", 170, jl_Object, [nlevsi_IPCPacketBase], 0, 3, [0,0,0], 0, ["$deserialize", $rt_wrapFunction1(nlevsi_IPCPacket19Autosave_deserialize), "$serialize", $rt_wrapFunction1(nlevsi_IPCPacket19Autosave_serialize), "$id", $rt_wrapFunction0(nlevsi_IPCPacket19Autosave_id), "$size0", $rt_wrapFunction0(nlevsi_IPCPacket19Autosave_size)], + nlevsi_IPCPacket0FListFiles, "IPCPacket0FListFiles", 170, jl_Object, [nlevsi_IPCPacketBase], 0, 3, [0,0,0], 0, ["$deserialize", $rt_wrapFunction1(nlevsi_IPCPacket0FListFiles_deserialize), "$id", $rt_wrapFunction0(nlevsi_IPCPacket0FListFiles_id)], + nlevsi_IPCPacket12FileWrite, "IPCPacket12FileWrite", 170, jl_Object, [nlevsi_IPCPacketBase], 0, 3, [0,0,0], 0, ["$deserialize", $rt_wrapFunction1(nlevsi_IPCPacket12FileWrite_deserialize), "$id", $rt_wrapFunction0(nlevsi_IPCPacket12FileWrite_id)], nlevsi_IPCPacket0EListWorlds, "IPCPacket0EListWorlds", 170, jl_Object, [nlevsi_IPCPacketBase], 0, 3, [0,0,0], 0, ["$deserialize", $rt_wrapFunction1(nlevsi_IPCPacket0EListWorlds_deserialize), "$serialize", $rt_wrapFunction1(nlevsi_IPCPacket0EListWorlds_serialize), "$id", $rt_wrapFunction0(nlevsi_IPCPacket0EListWorlds_id), "$size0", $rt_wrapFunction0(nlevsi_IPCPacket0EListWorlds_size)], + nlevsi_IPCPacket01StopServer, "IPCPacket01StopServer", 170, jl_Object, [nlevsi_IPCPacketBase], 0, 3, [0,0,0], 0, ["$deserialize", $rt_wrapFunction1(nlevsi_IPCPacket01StopServer_deserialize), "$serialize", $rt_wrapFunction1(nlevsi_IPCPacket01StopServer_serialize), "$id", $rt_wrapFunction0(nlevsi_IPCPacket01StopServer_id), "$size0", $rt_wrapFunction0(nlevsi_IPCPacket01StopServer_size)], nlevsi_IPCPacket13FileCopyMove, "IPCPacket13FileCopyMove", 170, jl_Object, [nlevsi_IPCPacketBase], 0, 3, [0,0,0], 0, ["$deserialize", $rt_wrapFunction1(nlevsi_IPCPacket13FileCopyMove_deserialize), "$id", $rt_wrapFunction0(nlevsi_IPCPacket13FileCopyMove_id)], + nlevsi_IPCPacket10FileRead, "IPCPacket10FileRead", 170, jl_Object, [nlevsi_IPCPacketBase], 0, 3, [0,0,0], 0, ["$deserialize", $rt_wrapFunction1(nlevsi_IPCPacket10FileRead_deserialize), "$id", $rt_wrapFunction0(nlevsi_IPCPacket10FileRead_id)], nPs_TextureUtils, 0, jl_Object, [], 0, 3, 0, 0, 0, nPs_Lagometer$TimerNano, 0, jl_Object, [], 0, 3, 0, 0, 0, cgcb_Objects, 0, jl_Object, [], 4, 3, 0, 0, 0, @@ -1418017,9 +1420320,9 @@ $rt_wrapFunction2(nmw_WorldProvider_calcSunriseSunsetColors), "$getFogColor", $rt_wrapFunction2(nmw_WorldProvider_getFogColor), "$canRespawnHere", $rt_wrapFunction0(nmw_WorldProvider_canRespawnHere), "$getCloudHeight", $rt_wrapFunction0(nmw_WorldProvider_getCloudHeight), "$isSkyColored", $rt_wrapFunction0(nmw_WorldProvider_isSkyColored), "$getSpawnCoordinate", $rt_wrapFunction0(nmw_WorldProvider_getSpawnCoordinate), "$getAverageGroundLevel", $rt_wrapFunction0(nmw_WorldProvider_getAverageGroundLevel), "$doesXZShowFog", $rt_wrapFunction2(nmw_WorldProvider_doesXZShowFog), "$getWorldBorder", $rt_wrapFunction0(nmw_WorldProvider_getWorldBorder)], ju_TreeSet, "TreeSet", 8, ju_AbstractSet, [ju_NavigableSet], 0, 3, [0,0,0], 0, ["$contains0", $rt_wrapFunction1(ju_TreeSet_contains), "$isEmpty", $rt_wrapFunction0(ju_TreeSet_isEmpty), "$size0", $rt_wrapFunction0(ju_TreeSet_size), "$iterator", $rt_wrapFunction0(ju_TreeSet_iterator), "$add", $rt_wrapFunction1(ju_TreeSet_add), "$remove", $rt_wrapFunction1(ju_TreeSet_remove)], - nmw_SpawnerAnimals, 0, jl_Object, [], 4, 3, 0, 0, 0]); - $rt_metadata([nmv_VillageSiege, 0, jl_Object, [], 0, 3, 0, 0, 0, - nmw_WorldServer$ServerBlockEventList, 0, ju_ArrayList, [], 0, 0, 0, 0, 0, + nmw_SpawnerAnimals, 0, jl_Object, [], 4, 3, 0, 0, 0, + nmv_VillageSiege, 0, jl_Object, [], 0, 3, 0, 0, 0]); + $rt_metadata([nmw_WorldServer$ServerBlockEventList, 0, ju_ArrayList, [], 0, 0, 0, 0, 0, nme_EntityTracker, "EntityTracker", 126, jl_Object, [], 0, 3, 0, nme_EntityTracker_$callClinit, 0, nmsm_PlayerManager, "PlayerManager", 53, jl_Object, [], 0, 3, 0, nmsm_PlayerManager_$callClinit, 0, nmw_Teleporter, "Teleporter", 74, jl_Object, [], 0, 3, 0, 0, 0, @@ -1418079,9 +1420382,9 @@ nlevsl_LANClientPeer, "LANClientPeer", 168, jl_Object, [], 0, 0, [0,0,0], nlevsl_LANClientPeer_$callClinit, 0, nlevsrp_IPacket04Description, "IPacket04Description", 167, nlevsrp_IPacket, [], 0, 3, [0,0,0], 0, ["$read11", $rt_wrapFunction1(nlevsrp_IPacket04Description_read), "$write11", $rt_wrapFunction1(nlevsrp_IPacket04Description_write), "$packetLength", $rt_wrapFunction0(nlevsrp_IPacket04Description_packetLength)], nlevsrp_IPacket05ClientSuccess, "IPacket05ClientSuccess", 167, nlevsrp_IPacket, [], 0, 3, [0,0,0], 0, ["$read11", $rt_wrapFunction1(nlevsrp_IPacket05ClientSuccess_read), "$write11", $rt_wrapFunction1(nlevsrp_IPacket05ClientSuccess_write), "$packetLength", $rt_wrapFunction0(nlevsrp_IPacket05ClientSuccess_packetLength)], - nlevsrp_IPacket06ClientFailure, "IPacket06ClientFailure", 167, nlevsrp_IPacket, [], 0, 3, [0,0,0], 0, ["$read11", $rt_wrapFunction1(nlevsrp_IPacket06ClientFailure_read), "$write11", $rt_wrapFunction1(nlevsrp_IPacket06ClientFailure_write), "$packetLength", $rt_wrapFunction0(nlevsrp_IPacket06ClientFailure_packetLength)]]); - $rt_metadata([nlevsrp_IPacketFFErrorCode, "IPacketFFErrorCode", 167, nlevsrp_IPacket, [], 0, 3, [0,0,0], nlevsrp_IPacketFFErrorCode_$callClinit, ["$read11", $rt_wrapFunction1(nlevsrp_IPacketFFErrorCode_read)], - nlevsrp_IPacket00Handshake, "IPacket00Handshake", 167, nlevsrp_IPacket, [], 0, 3, [0,0,0], 0, ["$read11", $rt_wrapFunction1(nlevsrp_IPacket00Handshake_read), "$write11", $rt_wrapFunction1(nlevsrp_IPacket00Handshake_write), "$packetLength", $rt_wrapFunction0(nlevsrp_IPacket00Handshake_packetLength)], + nlevsrp_IPacket06ClientFailure, "IPacket06ClientFailure", 167, nlevsrp_IPacket, [], 0, 3, [0,0,0], 0, ["$read11", $rt_wrapFunction1(nlevsrp_IPacket06ClientFailure_read), "$write11", $rt_wrapFunction1(nlevsrp_IPacket06ClientFailure_write), "$packetLength", $rt_wrapFunction0(nlevsrp_IPacket06ClientFailure_packetLength)], + nlevsrp_IPacketFFErrorCode, "IPacketFFErrorCode", 167, nlevsrp_IPacket, [], 0, 3, [0,0,0], nlevsrp_IPacketFFErrorCode_$callClinit, ["$read11", $rt_wrapFunction1(nlevsrp_IPacketFFErrorCode_read)]]); + $rt_metadata([nlevsrp_IPacket00Handshake, "IPacket00Handshake", 167, nlevsrp_IPacket, [], 0, 3, [0,0,0], 0, ["$read11", $rt_wrapFunction1(nlevsrp_IPacket00Handshake_read), "$write11", $rt_wrapFunction1(nlevsrp_IPacket00Handshake_write), "$packetLength", $rt_wrapFunction0(nlevsrp_IPacket00Handshake_packetLength)], nlevv_ExpiringSet, "ExpiringSet", 139, ju_HashSet, [], 0, 3, [0,0,0], 0, ["$add", $rt_wrapFunction1(nlevv_ExpiringSet_add), "$remove", $rt_wrapFunction1(nlevv_ExpiringSet_remove), "$contains0", $rt_wrapFunction1(nlevv_ExpiringSet_contains)], nlevv_ExpiringSet$ExpiringEvent, "ExpiringSet$ExpiringEvent", 139, jl_Object, [], 3, 3, 0, 0, 0, nlevv_VoiceClientController$_clinit_$lambda$_45_0, 0, jl_Object, [nlevv_ExpiringSet$ExpiringEvent], 0, 3, 0, 0, 0, @@ -1418129,9 +1420432,9 @@ nlevoed_DebugFramebufferView$_clinit_$lambda$_58_36, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(nlevoed_DebugFramebufferView$_clinit_$lambda$_58_36_accept)], nlevoed_DebugFramebufferView$_clinit_$lambda$_58_37, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(nlevoed_DebugFramebufferView$_clinit_$lambda$_58_37_accept)], nlevoed_DebugFramebufferView$_clinit_$lambda$_58_38, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(nlevoed_DebugFramebufferView$_clinit_$lambda$_58_38_accept)], - nlevoed_DebugFramebufferView$_clinit_$lambda$_58_39, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(nlevoed_DebugFramebufferView$_clinit_$lambda$_58_39_accept)]]); - $rt_metadata([nlevoed_DebugFramebufferView$_clinit_$lambda$_58_40, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(nlevoed_DebugFramebufferView$_clinit_$lambda$_58_40_accept)], - nlevoed_DebugFramebufferView$_clinit_$lambda$_58_41, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(nlevoed_DebugFramebufferView$_clinit_$lambda$_58_41_accept)], + nlevoed_DebugFramebufferView$_clinit_$lambda$_58_39, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(nlevoed_DebugFramebufferView$_clinit_$lambda$_58_39_accept)], + nlevoed_DebugFramebufferView$_clinit_$lambda$_58_40, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(nlevoed_DebugFramebufferView$_clinit_$lambda$_58_40_accept)]]); + $rt_metadata([nlevoed_DebugFramebufferView$_clinit_$lambda$_58_41, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(nlevoed_DebugFramebufferView$_clinit_$lambda$_58_41_accept)], nlevoed_DebugFramebufferView$_clinit_$lambda$_58_42, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(nlevoed_DebugFramebufferView$_clinit_$lambda$_58_42_accept)], nlevoed_DebugFramebufferView$_clinit_$lambda$_58_43, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(nlevoed_DebugFramebufferView$_clinit_$lambda$_58_43_accept)], nlevoed_DebugFramebufferView$_clinit_$lambda$_58_44, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(nlevoed_DebugFramebufferView$_clinit_$lambda$_58_44_accept)], @@ -1418183,9 +1420486,9 @@ otjw_WebSocket, 0, jl_Object, [otj_JSObject], 1, 3, 0, 0, 0, nlevi_PlatformWebRTC$RelayServerSocketImpl$_init_$lambda$_0_0, 0, jl_Object, [otjde_EventListener], 0, 3, 0, 0, ["$handleEvent$exported$0", $rt_wrapFunction1(nlevi_PlatformWebRTC$RelayServerSocketImpl$_init_$lambda$_0_0_handleEvent$exported$0)], nlevi_PlatformWebRTC$RelayServerSocketImpl$_init_$lambda$_0_1, 0, jl_Object, [otjde_EventListener], 0, 3, 0, 0, ["$handleEvent$exported$0", $rt_wrapFunction1(nlevi_PlatformWebRTC$RelayServerSocketImpl$_init_$lambda$_0_1_handleEvent$exported$0)], - nlevi_PlatformWebRTC$RelayServerSocketImpl$_init_$lambda$_0_2, 0, jl_Object, [otjde_EventListener], 0, 3, 0, 0, ["$handleEvent$exported$0", $rt_wrapFunction1(nlevi_PlatformWebRTC$RelayServerSocketImpl$_init_$lambda$_0_2_handleEvent$exported$0)]]); - $rt_metadata([nlevi_PlatformWebRTC$RelayServerSocketImpl$_init_$lambda$_0_3, 0, jl_Object, [otjb_TimerHandler], 0, 3, 0, 0, ["$onTimer$exported$0", $rt_wrapFunction0(nlevi_PlatformWebRTC$RelayServerSocketImpl$_init_$lambda$_0_3_onTimer$exported$0)], - jus_Collectors$toCollection$lambda$_1_0, 0, jl_Object, [juf_BiConsumer], 0, 3, 0, 0, 0, + nlevi_PlatformWebRTC$RelayServerSocketImpl$_init_$lambda$_0_2, 0, jl_Object, [otjde_EventListener], 0, 3, 0, 0, ["$handleEvent$exported$0", $rt_wrapFunction1(nlevi_PlatformWebRTC$RelayServerSocketImpl$_init_$lambda$_0_2_handleEvent$exported$0)], + nlevi_PlatformWebRTC$RelayServerSocketImpl$_init_$lambda$_0_3, 0, jl_Object, [otjb_TimerHandler], 0, 3, 0, 0, ["$onTimer$exported$0", $rt_wrapFunction0(nlevi_PlatformWebRTC$RelayServerSocketImpl$_init_$lambda$_0_3_onTimer$exported$0)]]); + $rt_metadata([jus_Collectors$toCollection$lambda$_1_0, 0, jl_Object, [juf_BiConsumer], 0, 3, 0, 0, 0, juf_BiFunction, "BiFunction", 12, jl_Object, [], 3, 3, 0, 0, 0, juf_BinaryOperator, 0, jl_Object, [juf_BiFunction], 3, 3, 0, 0, 0, jus_Collectors$toCollection$lambda$_1_1, 0, jl_Object, [juf_BinaryOperator], 0, 3, 0, 0, 0, @@ -1418253,12 +1420556,12 @@ ju_LinkedHashMapIterator$EntryIterator, 0, ju_LinkedHashMapIterator, [ju_Iterator], 0, 0, 0, 0, ["$next", $rt_wrapFunction0(ju_LinkedHashMapIterator$EntryIterator_next)], ju_HashMap$KeyIterator, "HashMap$KeyIterator", 8, ju_HashMap$AbstractMapIterator, [ju_Iterator], 0, 0, [ju_HashMap,0,0], 0, ["$next", $rt_wrapFunction0(ju_HashMap$KeyIterator_next)], nmcg_GuiSlot, 0, jl_Object, [], 1, 3, 0, nmcg_GuiSlot_$callClinit, ["$getContentHeight", $rt_wrapFunction0(nmcg_GuiSlot_getContentHeight), "$func_178040_a", $rt_wrapFunction3(nmcg_GuiSlot_func_178040_a), "$drawListHeader", $rt_wrapFunction3(nmcg_GuiSlot_drawListHeader), "$func_148132_a", $rt_wrapFunction2(nmcg_GuiSlot_func_148132_a), "$func_148142_b", $rt_wrapFunction2(nmcg_GuiSlot_func_148142_b), "$getListWidth", $rt_wrapFunction0(nmcg_GuiSlot_getListWidth), "$drawSelectionBox0", function(var_1, var_2, - var_3, var_4, var_5) { nmcg_GuiSlot_drawSelectionBox(this, var_1, var_2, var_3, var_4, var_5); }, "$getScrollBarX", $rt_wrapFunction0(nmcg_GuiSlot_getScrollBarX)]]); - $rt_metadata([nlevu_GuiUpdateVersionSlot, 0, nmcg_GuiSlot, [], 0, 3, 0, nlevu_GuiUpdateVersionSlot_$callClinit, ["$getSize0", $rt_wrapFunction0(nlevu_GuiUpdateVersionSlot_getSize), "$elementClicked", $rt_wrapFunction4(nlevu_GuiUpdateVersionSlot_elementClicked), "$isSelected", $rt_wrapFunction1(nlevu_GuiUpdateVersionSlot_isSelected), "$drawBackground0", $rt_wrapFunction0(nlevu_GuiUpdateVersionSlot_drawBackground), "$drawSlot0", function(var_1, var_2, var_3, var_4, var_5, var_6) { nlevu_GuiUpdateVersionSlot_drawSlot(this, - var_1, var_2, var_3, var_4, var_5, var_6); }, "$getListWidth", $rt_wrapFunction0(nlevu_GuiUpdateVersionSlot_getListWidth)], + var_3, var_4, var_5) { nmcg_GuiSlot_drawSelectionBox(this, var_1, var_2, var_3, var_4, var_5); }, "$getScrollBarX", $rt_wrapFunction0(nmcg_GuiSlot_getScrollBarX)], + nlevu_GuiUpdateVersionSlot, 0, nmcg_GuiSlot, [], 0, 3, 0, nlevu_GuiUpdateVersionSlot_$callClinit, ["$getSize0", $rt_wrapFunction0(nlevu_GuiUpdateVersionSlot_getSize), "$elementClicked", $rt_wrapFunction4(nlevu_GuiUpdateVersionSlot_elementClicked), "$isSelected", $rt_wrapFunction1(nlevu_GuiUpdateVersionSlot_isSelected), "$drawBackground0", $rt_wrapFunction0(nlevu_GuiUpdateVersionSlot_drawBackground), "$drawSlot0", function(var_1, var_2, var_3, var_4, var_5, var_6) { nlevu_GuiUpdateVersionSlot_drawSlot(this, + var_1, var_2, var_3, var_4, var_5, var_6); }, "$getListWidth", $rt_wrapFunction0(nlevu_GuiUpdateVersionSlot_getListWidth)]]); + $rt_metadata([nmcg_GuiButton, "GuiButton", 105, nmcg_Gui, [], 0, 3, [0,0,0], nmcg_GuiButton_$callClinit, ["$getHoverState", $rt_wrapFunction1(nmcg_GuiButton_getHoverState), "$drawButton", $rt_wrapFunction3(nmcg_GuiButton_drawButton), "$mouseDragged", $rt_wrapFunction3(nmcg_GuiButton_mouseDragged), "$mouseReleased", $rt_wrapFunction2(nmcg_GuiButton_mouseReleased), "$mousePressed", $rt_wrapFunction3(nmcg_GuiButton_mousePressed), "$drawButtonForegroundLayer", $rt_wrapFunction2(nmcg_GuiButton_drawButtonForegroundLayer), + "$playPressSound", $rt_wrapFunction1(nmcg_GuiButton_playPressSound)], nlevi_FileChooserResult, 0, jl_Object, [], 0, 3, 0, 0, 0, - nmcg_GuiButton, "GuiButton", 105, nmcg_Gui, [], 0, 3, [0,0,0], nmcg_GuiButton_$callClinit, ["$getHoverState", $rt_wrapFunction1(nmcg_GuiButton_getHoverState), "$drawButton", $rt_wrapFunction3(nmcg_GuiButton_drawButton), "$mouseDragged", $rt_wrapFunction3(nmcg_GuiButton_mouseDragged), "$mouseReleased", $rt_wrapFunction2(nmcg_GuiButton_mouseReleased), "$mousePressed", $rt_wrapFunction3(nmcg_GuiButton_mousePressed), "$drawButtonForegroundLayer", $rt_wrapFunction2(nmcg_GuiButton_drawButtonForegroundLayer), "$playPressSound", - $rt_wrapFunction1(nmcg_GuiButton_playPressSound)], nmcre_RenderItem$3, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmcre_RenderItem$3_call)], nmcre_RenderItem$4, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmcre_RenderItem$4_call)], nmcre_RenderItem$5, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmcre_RenderItem$5_call)], @@ -1418307,9 +1420610,9 @@ nmsm_ServerConfigurationManager$1, "ServerConfigurationManager$1", 53, jl_Object, [nmwb_IBorderListener], 0, 0, [nmsm_ServerConfigurationManager,0,0], 0, ["$onSizeChanged", $rt_wrapFunction2(nmsm_ServerConfigurationManager$1_onSizeChanged), "$onTransitionStarted", $rt_wrapFunction4(nmsm_ServerConfigurationManager$1_onTransitionStarted), "$onCenterChanged", $rt_wrapFunction3(nmsm_ServerConfigurationManager$1_onCenterChanged), "$onWarningTimeChanged", $rt_wrapFunction2(nmsm_ServerConfigurationManager$1_onWarningTimeChanged), "$onWarningDistanceChanged", $rt_wrapFunction2(nmsm_ServerConfigurationManager$1_onWarningDistanceChanged), "$onDamageAmountChanged", $rt_wrapFunction2(nmsm_ServerConfigurationManager$1_onDamageAmountChanged), "$onDamageBufferChanged", $rt_wrapFunction2(nmsm_ServerConfigurationManager$1_onDamageBufferChanged)], nmw_WorldSavedData, "WorldSavedData", 74, jl_Object, [], 1, 3, 0, 0, 0, - nmv_VillageCollection, "VillageCollection", 124, nmw_WorldSavedData, [], 0, 3, [0,0,0], 0, ["$readFromNBT", $rt_wrapFunction1(nmv_VillageCollection_readFromNBT), "$writeToNBT", $rt_wrapFunction1(nmv_VillageCollection_writeToNBT)]]); - $rt_metadata([nmws_MapStorage, "MapStorage", 83, jl_Object, [], 0, 3, 0, 0, ["$loadData", $rt_wrapFunction2(nmws_MapStorage_loadData), "$setData", $rt_wrapFunction2(nmws_MapStorage_setData), "$saveAllData", $rt_wrapFunction0(nmws_MapStorage_saveAllData), "$getUniqueDataId", $rt_wrapFunction1(nmws_MapStorage_getUniqueDataId)], - nms_ServerScoreboard, 0, nms_Scoreboard, [], 0, 3, 0, 0, ["$func_96536_a", $rt_wrapFunction1(nms_ServerScoreboard_func_96536_a), "$func_96516_a", $rt_wrapFunction1(nms_ServerScoreboard_func_96516_a), "$func_178820_a", $rt_wrapFunction2(nms_ServerScoreboard_func_178820_a), "$setObjectiveInDisplaySlot", $rt_wrapFunction2(nms_ServerScoreboard_setObjectiveInDisplaySlot), "$addPlayerToTeam", $rt_wrapFunction2(nms_ServerScoreboard_addPlayerToTeam), "$removePlayerFromTeam", $rt_wrapFunction2(nms_ServerScoreboard_removePlayerFromTeam), + nmv_VillageCollection, "VillageCollection", 124, nmw_WorldSavedData, [], 0, 3, [0,0,0], 0, ["$readFromNBT", $rt_wrapFunction1(nmv_VillageCollection_readFromNBT), "$writeToNBT", $rt_wrapFunction1(nmv_VillageCollection_writeToNBT)], + nmws_MapStorage, "MapStorage", 83, jl_Object, [], 0, 3, 0, 0, ["$loadData", $rt_wrapFunction2(nmws_MapStorage_loadData), "$setData", $rt_wrapFunction2(nmws_MapStorage_setData), "$saveAllData", $rt_wrapFunction0(nmws_MapStorage_saveAllData), "$getUniqueDataId", $rt_wrapFunction1(nmws_MapStorage_getUniqueDataId)]]); + $rt_metadata([nms_ServerScoreboard, 0, nms_Scoreboard, [], 0, 3, 0, 0, ["$func_96536_a", $rt_wrapFunction1(nms_ServerScoreboard_func_96536_a), "$func_96516_a", $rt_wrapFunction1(nms_ServerScoreboard_func_96516_a), "$func_178820_a", $rt_wrapFunction2(nms_ServerScoreboard_func_178820_a), "$setObjectiveInDisplaySlot", $rt_wrapFunction2(nms_ServerScoreboard_setObjectiveInDisplaySlot), "$addPlayerToTeam", $rt_wrapFunction2(nms_ServerScoreboard_addPlayerToTeam), "$removePlayerFromTeam", $rt_wrapFunction2(nms_ServerScoreboard_removePlayerFromTeam), "$onScoreObjectiveAdded", $rt_wrapFunction1(nms_ServerScoreboard_onScoreObjectiveAdded), "$func_96532_b", $rt_wrapFunction1(nms_ServerScoreboard_func_96532_b), "$func_96533_c", $rt_wrapFunction1(nms_ServerScoreboard_func_96533_c), "$broadcastTeamCreated", $rt_wrapFunction1(nms_ServerScoreboard_broadcastTeamCreated), "$sendTeamUpdate", $rt_wrapFunction1(nms_ServerScoreboard_sendTeamUpdate), "$func_96513_c", $rt_wrapFunction1(nms_ServerScoreboard_func_96513_c)], nms_ScoreboardSaveData, "ScoreboardSaveData", 123, nmw_WorldSavedData, [], 0, 3, [0,0,0], nms_ScoreboardSaveData_$callClinit, ["$readFromNBT", $rt_wrapFunction1(nms_ScoreboardSaveData_readFromNBT), "$writeToNBT", $rt_wrapFunction1(nms_ScoreboardSaveData_writeToNBT)], ju_IllegalFormatException, "IllegalFormatException", 8, jl_IllegalArgumentException, [], 0, 3, 0, 0, 0, @@ -1418362,10 +1420665,10 @@ otcit_DoubleAnalyzer$Result, 0, jl_Object, [], 0, 3, 0, 0, 0, nmcm_ServerData, "ServerData", 113, jl_Object, [], 0, 3, [0,0,0], nmcm_ServerData_$callClinit, 0, nmu_MovementInput, 0, jl_Object, [], 0, 3, 0, 0, 0, - nmu_MovementInputFromOptions, 0, nmu_MovementInput, [], 0, 3, 0, 0, 0]); - $rt_metadata([nms_StatFileWriter, "StatFileWriter", 86, jl_Object, [], 0, 3, 0, 0, 0, - nmcp_EntityDiggingFX, "EntityDiggingFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$getFXLayer", $rt_wrapFunction0(nmcp_EntityDiggingFX_getFXLayer), "$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityDiggingFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$renderAccelerated", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { return nmcp_EntityDiggingFX_renderAccelerated(this, var_1, var_2, var_3, var_4, var_5, - var_6, var_7, var_8); }, "$getBrightnessForRender", $rt_wrapFunction1(nmcp_EntityDiggingFX_getBrightnessForRender)], + nmu_MovementInputFromOptions, 0, nmu_MovementInput, [], 0, 3, 0, 0, 0, + nms_StatFileWriter, "StatFileWriter", 86, jl_Object, [], 0, 3, 0, 0, 0]); + $rt_metadata([nmcp_EntityDiggingFX, "EntityDiggingFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$getFXLayer", $rt_wrapFunction0(nmcp_EntityDiggingFX_getFXLayer), "$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityDiggingFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$renderAccelerated", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { return nmcp_EntityDiggingFX_renderAccelerated(this, var_1, var_2, var_3, + var_4, var_5, var_6, var_7, var_8); }, "$getBrightnessForRender", $rt_wrapFunction1(nmcp_EntityDiggingFX_getBrightnessForRender)], jn_ReadOnlyBufferException, "ReadOnlyBufferException", 14, jl_UnsupportedOperationException, [], 0, 3, [0,0,0], 0, 0, nea_server, "server", 176, nea_ModData, [], 0, 3, [0,0,0], 0, 0, nmw_GameRules$Value, "GameRules$Value", 74, jl_Object, [], 0, 0, [nmw_GameRules,0,"Value"], 0, 0, @@ -1418414,9 +1420717,9 @@ nmcrt_TileEntityRendererDispatcher, "TileEntityRendererDispatcher", 97, jl_Object, [], 0, 3, 0, nmcrt_TileEntityRendererDispatcher_$callClinit, 0, nmcr_EntityRenderer$eaglercraftShaders$lambda$_39_7, 0, jl_Object, [ju_Comparator], 0, 3, 0, 0, ["$compare", $rt_wrapFunction2(nmcr_EntityRenderer$eaglercraftShaders$lambda$_39_7_compare)], nlevo_OpenGlHelper, 0, jl_Object, [], 0, 3, 0, 0, 0, - nme_EnchantmentHelper, 0, jl_Object, [], 0, 3, 0, nme_EnchantmentHelper_$callClinit, 0]); - $rt_metadata([nms_Team, "Team", 123, jl_Object, [], 1, 3, 0, 0, 0, - nms_ScorePlayerTeam, "ScorePlayerTeam", 123, nms_Team, [], 0, 3, [0,0,0], 0, 0, + nme_EnchantmentHelper, 0, jl_Object, [], 0, 3, 0, nme_EnchantmentHelper_$callClinit, 0, + nms_Team, "Team", 123, jl_Object, [], 1, 3, 0, 0, 0]); + $rt_metadata([nms_ScorePlayerTeam, "ScorePlayerTeam", 123, nms_Team, [], 0, 3, [0,0,0], 0, 0, nmcg_GuiIngame$1, "GuiIngame$1", 105, jl_Object, [cgcb_Predicate], 0, 0, [nmcg_GuiIngame,0,0], 0, ["$apply0", $rt_wrapFunction1(nmcg_GuiIngame$1_apply)], nms_Score, "Score", 123, jl_Object, [], 0, 3, [0,0,0], 0, 0, cgcc_Iterators$12, "Iterators$12", 3, cgcc_UnmodifiableIterator, [], 0, 0, [cgcc_Iterators,0,0], 0, ["$hasNext", $rt_wrapFunction0(cgcc_Iterators$12_hasNext), "$next", $rt_wrapFunction0(cgcc_Iterators$12_next)], @@ -1418467,9 +1420770,9 @@ nmcrbm_ItemModelGenerator, "ItemModelGenerator", 96, jl_Object, [], 0, 3, 0, nmcrbm_ItemModelGenerator_$callClinit, 0, nmcm_ServerData$ServerResourceMode, "ServerData$ServerResourceMode", 113, jl_Enum, [], 12, 3, [nmcm_ServerData,0,"ServerResourceMode"], nmcm_ServerData$ServerResourceMode_$callClinit, 0, jl_AbstractStringBuilder$Constants, 0, jl_Object, [], 0, 0, 0, 0, 0, - otcit_FloatAnalyzer, 0, jl_Object, [], 4, 3, 0, 0, 0]); - $rt_metadata([otcit_FloatAnalyzer$Result, 0, jl_Object, [], 0, 3, 0, 0, 0, - cgcb_Objects$ToStringHelper, 0, jl_Object, [], 4, 3, 0, 0, 0, + otcit_FloatAnalyzer, 0, jl_Object, [], 4, 3, 0, 0, 0, + otcit_FloatAnalyzer$Result, 0, jl_Object, [], 0, 3, 0, 0, 0]); + $rt_metadata([cgcb_Objects$ToStringHelper, 0, jl_Object, [], 4, 3, 0, 0, 0, nea_server$makeModData$lambda$_1_0, 0, jl_Object, [nea_BaseData$StringCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nea_server$makeModData$lambda$_1_0_onCallback$exported$0)], nea_server$makeModData$lambda$_1_1, 0, jl_Object, [nea_BaseData$StringCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nea_server$makeModData$lambda$_1_1_onCallback$exported$0)], nea_server$makeModData$lambda$_1_2, 0, jl_Object, [nea_BaseData$StringCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nea_server$makeModData$lambda$_1_2_onCallback$exported$0)], @@ -1418517,9 +1420820,9 @@ nPs_CustomColors$3, 0, jl_Object, [nPs_CustomColors$IColorizer], 0, 0, 0, 0, ["$getColor2", $rt_wrapFunction3(nPs_CustomColors$3_getColor), "$isColorConstant", $rt_wrapFunction0(nPs_CustomColors$3_isColorConstant)], nPs_CustomColors$4, 0, jl_Object, [nPs_CustomColors$IColorizer], 0, 0, 0, 0, ["$getColor2", $rt_wrapFunction3(nPs_CustomColors$4_getColor), "$isColorConstant", $rt_wrapFunction0(nPs_CustomColors$4_isColorConstant)], nPs_CustomColors$5, 0, jl_Object, [nPs_CustomColors$IColorizer], 0, 0, 0, 0, ["$getColor2", $rt_wrapFunction3(nPs_CustomColors$5_getColor), "$isColorConstant", $rt_wrapFunction0(nPs_CustomColors$5_isColorConstant)], - nPs_PropertiesOrdered, 0, ju_Properties, [], 0, 3, 0, 0, ["$put", $rt_wrapFunction2(nPs_PropertiesOrdered_put)]]); - $rt_metadata([nPs_StrUtils, 0, jl_Object, [], 0, 3, 0, 0, 0, - nPs_ResUtils, 0, jl_Object, [], 0, 3, 0, 0, 0, + nPs_PropertiesOrdered, 0, ju_Properties, [], 0, 3, 0, 0, ["$put", $rt_wrapFunction2(nPs_PropertiesOrdered_put)], + nPs_StrUtils, 0, jl_Object, [], 0, 3, 0, 0, 0]); + $rt_metadata([nPs_ResUtils, 0, jl_Object, [], 0, 3, 0, 0, 0, nPsa_Pair, 0, jl_Object, [ju_Map$Entry, ji_Serializable], 1, 3, 0, 0, 0, nPsa_ImmutablePair, 0, nPsa_Pair, [], 0, 3, 0, 0, 0, nPs_LightMap, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -1418570,9 +1420873,9 @@ nmcrt_TileEntityMobSpawnerRenderer, "TileEntityMobSpawnerRenderer", 97, nmcrt_TileEntitySpecialRenderer, [], 0, 3, [0,0,0], 0, ["$renderTileEntityAt", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcrt_TileEntityMobSpawnerRenderer_renderTileEntityAt(this, var_1, var_2, var_3, var_4, var_5, var_6); }], nmcrt_TileEntityPistonRenderer, "TileEntityPistonRenderer", 97, nmcrt_TileEntitySpecialRenderer, [], 0, 3, [0,0,0], 0, ["$renderTileEntityAt", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcrt_TileEntityPistonRenderer_renderTileEntityAt0(this, var_1, var_2, var_3, var_4, var_5, var_6); }], nmcrt_TileEntityChestRenderer, "TileEntityChestRenderer", 97, nmcrt_TileEntitySpecialRenderer, [], 0, 3, [0,0,0], nmcrt_TileEntityChestRenderer_$callClinit, ["$renderTileEntityAt", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcrt_TileEntityChestRenderer_renderTileEntityAt0(this, var_1, var_2, var_3, var_4, var_5, var_6); }], - nmcrt_TileEntityEnderChestRenderer, "TileEntityEnderChestRenderer", 97, nmcrt_TileEntitySpecialRenderer, [], 0, 3, [0,0,0], nmcrt_TileEntityEnderChestRenderer_$callClinit, ["$renderTileEntityAt", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcrt_TileEntityEnderChestRenderer_renderTileEntityAt0(this, var_1, var_2, var_3, var_4, var_5, var_6); }]]); - $rt_metadata([nmcrt_TileEntityEnchantmentTableRenderer, "TileEntityEnchantmentTableRenderer", 97, nmcrt_TileEntitySpecialRenderer, [], 0, 3, [0,0,0], nmcrt_TileEntityEnchantmentTableRenderer_$callClinit, ["$renderTileEntityAt", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcrt_TileEntityEnchantmentTableRenderer_renderTileEntityAt0(this, var_1, var_2, var_3, var_4, var_5, var_6); }], - nmcrt_TileEntityEndPortalRenderer, "TileEntityEndPortalRenderer", 97, nmcrt_TileEntitySpecialRenderer, [], 0, 3, [0,0,0], nmcrt_TileEntityEndPortalRenderer_$callClinit, ["$renderTileEntityAt", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcrt_TileEntityEndPortalRenderer_renderTileEntityAt(this, var_1, var_2, var_3, var_4, var_5, var_6); }], + nmcrt_TileEntityEnderChestRenderer, "TileEntityEnderChestRenderer", 97, nmcrt_TileEntitySpecialRenderer, [], 0, 3, [0,0,0], nmcrt_TileEntityEnderChestRenderer_$callClinit, ["$renderTileEntityAt", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcrt_TileEntityEnderChestRenderer_renderTileEntityAt0(this, var_1, var_2, var_3, var_4, var_5, var_6); }], + nmcrt_TileEntityEnchantmentTableRenderer, "TileEntityEnchantmentTableRenderer", 97, nmcrt_TileEntitySpecialRenderer, [], 0, 3, [0,0,0], nmcrt_TileEntityEnchantmentTableRenderer_$callClinit, ["$renderTileEntityAt", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcrt_TileEntityEnchantmentTableRenderer_renderTileEntityAt0(this, var_1, var_2, var_3, var_4, var_5, var_6); }]]); + $rt_metadata([nmcrt_TileEntityEndPortalRenderer, "TileEntityEndPortalRenderer", 97, nmcrt_TileEntitySpecialRenderer, [], 0, 3, [0,0,0], nmcrt_TileEntityEndPortalRenderer_$callClinit, ["$renderTileEntityAt", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcrt_TileEntityEndPortalRenderer_renderTileEntityAt(this, var_1, var_2, var_3, var_4, var_5, var_6); }], nmcrt_TileEntityBeaconRenderer, "TileEntityBeaconRenderer", 97, nmcrt_TileEntitySpecialRenderer, [], 0, 3, [0,0,0], nmcrt_TileEntityBeaconRenderer_$callClinit, ["$func_181055_a", $rt_wrapFunction0(nmcrt_TileEntityBeaconRenderer_func_181055_a), "$renderTileEntityAt", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcrt_TileEntityBeaconRenderer_renderTileEntityAt0(this, var_1, var_2, var_3, var_4, var_5, var_6); }], nmcrt_TileEntitySkullRenderer, "TileEntitySkullRenderer", 97, nmcrt_TileEntitySpecialRenderer, [], 0, 3, [0,0,0], nmcrt_TileEntitySkullRenderer_$callClinit, ["$setRendererDispatcher", $rt_wrapFunction1(nmcrt_TileEntitySkullRenderer_setRendererDispatcher), "$renderTileEntityAt", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcrt_TileEntitySkullRenderer_renderTileEntityAt(this, var_1, var_2, var_3, var_4, var_5, var_6); }], nmcrt_TileEntityBannerRenderer, "TileEntityBannerRenderer", 97, nmcrt_TileEntitySpecialRenderer, [], 0, 3, [0,0,0], nmcrt_TileEntityBannerRenderer_$callClinit, ["$renderTileEntityAt", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcrt_TileEntityBannerRenderer_renderTileEntityAt0(this, var_1, var_2, var_3, var_4, var_5, var_6); }], @@ -1418620,9 +1420923,9 @@ nlevj_JSONDataParserImpl, 0, jl_Object, [], 3, 3, 0, 0, 0, nlevji_JSONDataParserString, "JSONDataParserString", 155, jl_Object, [nlevj_JSONDataParserImpl], 0, 3, [0,0,0], 0, ["$accepts0", $rt_wrapFunction1(nlevji_JSONDataParserString_accepts), "$parse", $rt_wrapFunction1(nlevji_JSONDataParserString_parse)], nlevji_JSONDataParserReader, "JSONDataParserReader", 155, jl_Object, [nlevj_JSONDataParserImpl], 0, 3, [0,0,0], 0, ["$accepts0", $rt_wrapFunction1(nlevji_JSONDataParserReader_accepts), "$parse", $rt_wrapFunction1(nlevji_JSONDataParserReader_parse)], - nlevji_JSONDataParserStream, "JSONDataParserStream", 155, jl_Object, [nlevj_JSONDataParserImpl], 0, 3, [0,0,0], 0, ["$accepts0", $rt_wrapFunction1(nlevji_JSONDataParserStream_accepts), "$parse", $rt_wrapFunction1(nlevji_JSONDataParserStream_parse)]]); - $rt_metadata([nmcrm_ModelRotation, "ModelRotation", 102, jl_Enum, [], 12, 3, [0,0,0], nmcrm_ModelRotation_$callClinit, 0, - oaclt_StrMatcher, 0, jl_Object, [], 1, 3, 0, oaclt_StrMatcher_$callClinit, 0, + nlevji_JSONDataParserStream, "JSONDataParserStream", 155, jl_Object, [nlevj_JSONDataParserImpl], 0, 3, [0,0,0], 0, ["$accepts0", $rt_wrapFunction1(nlevji_JSONDataParserStream_accepts), "$parse", $rt_wrapFunction1(nlevji_JSONDataParserStream_parse)], + nmcrm_ModelRotation, "ModelRotation", 102, jl_Enum, [], 12, 3, [0,0,0], nmcrm_ModelRotation_$callClinit, 0]); + $rt_metadata([oaclt_StrMatcher, 0, jl_Object, [], 1, 3, 0, oaclt_StrMatcher_$callClinit, 0, nmc_CommandResultStats$Type, "CommandResultStats$Type", 61, jl_Enum, [], 12, 3, [nmc_CommandResultStats,0,"Type"], nmc_CommandResultStats$Type_$callClinit, 0, nmu_Rotations, "Rotations", 85, jl_Object, [], 0, 3, 0, 0, ["$equals0", $rt_wrapFunction1(nmu_Rotations_equals)], oaclt_StrMatcher$CharMatcher, 0, oaclt_StrMatcher, [], 4, 0, 0, 0, ["$isMatch", $rt_wrapFunction4(oaclt_StrMatcher$CharMatcher_isMatch)], @@ -1418670,9 +1420973,9 @@ nlevoedp_PipelineShaderBloomBlurPass, 0, nlevoedp_ShaderProgram, [], 0, 3, 0, 0, 0, nlevoedp_PipelineShaderLightingPoint, 0, nlevoedp_ShaderProgram, [], 0, 3, 0, 0, 0, nlevoed_LightSourceMesh, 0, jl_Object, [], 0, 3, 0, 0, 0, - jusi_SimpleStreamImpl$collect$lambda$_26_0, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, 0]); - $rt_metadata([nlevo_GlStateManager$TexGen, "GlStateManager$TexGen", 148, jl_Enum, [], 12, 3, [nlevo_GlStateManager,0,"TexGen"], nlevo_GlStateManager$TexGen_$callClinit, 0, - ju_Hashtable$4, 0, ju_AbstractSet, [], 0, 0, 0, 0, ["$contains0", $rt_wrapFunction1(ju_Hashtable$4_contains)], + jusi_SimpleStreamImpl$collect$lambda$_26_0, 0, jl_Object, [juf_Predicate], 0, 3, 0, 0, 0, + nlevo_GlStateManager$TexGen, "GlStateManager$TexGen", 148, jl_Enum, [], 12, 3, [nlevo_GlStateManager,0,"TexGen"], nlevo_GlStateManager$TexGen_$callClinit, 0]); + $rt_metadata([ju_Hashtable$4, 0, ju_AbstractSet, [], 0, 0, 0, 0, ["$contains0", $rt_wrapFunction1(ju_Hashtable$4_contains)], nlevn_ByteBufUtil, 0, jl_Object, [], 4, 3, 0, 0, 0, cgcc_Iterables$10$1, "Iterables$10$1", 3, jl_Object, [ju_Iterator], 0, 0, [cgcc_Iterables$10,0,0], 0, ["$hasNext", $rt_wrapFunction0(cgcc_Iterables$10$1_hasNext), "$next", $rt_wrapFunction0(cgcc_Iterables$10$1_next)], nPs_MainButton, "MainButton", 174, nmcg_GuiButton, [], 0, 3, [0,0,0], 0, ["$drawButton", $rt_wrapFunction3(nPs_MainButton_drawButton)], @@ -1418729,9 +1421032,9 @@ nmu_BlockPos$MutableBlockPos, "BlockPos$MutableBlockPos", 85, nmu_BlockPos, [], 4, 3, [nmu_BlockPos,0,"MutableBlockPos"], 0, ["$getX", $rt_wrapFunction0(nmu_BlockPos$MutableBlockPos_getX), "$getY", $rt_wrapFunction0(nmu_BlockPos$MutableBlockPos_getY), "$getZ", $rt_wrapFunction0(nmu_BlockPos$MutableBlockPos_getZ), "$crossProduct1", $rt_wrapFunction1(nmu_BlockPos$MutableBlockPos_crossProduct)], nmcp_EffectRenderer$3, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmcp_EffectRenderer$3_call)], nmcp_EffectRenderer$4, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmcp_EffectRenderer$4_call)], - nlevoedp_PipelineShaderSkyboxAtmosphere$Uniforms, 0, jl_Object, [nlevoedp_IProgramUniforms], 0, 3, 0, 0, ["$loadUniforms0", $rt_wrapFunction1(nlevoedp_PipelineShaderSkyboxAtmosphere$Uniforms_loadUniforms)]]); - $rt_metadata([nlevoedp_PipelineShaderSkyboxRender$Uniforms, 0, jl_Object, [nlevoedp_IProgramUniforms], 0, 3, 0, 0, ["$loadUniforms0", $rt_wrapFunction1(nlevoedp_PipelineShaderSkyboxRender$Uniforms_loadUniforms)], - nlevoedp_PipelineShaderSSAOGenerate$Uniforms, 0, jl_Object, [nlevoedp_IProgramUniforms], 0, 3, 0, 0, ["$loadUniforms0", $rt_wrapFunction1(nlevoedp_PipelineShaderSSAOGenerate$Uniforms_loadUniforms)], + nlevoedp_PipelineShaderSkyboxAtmosphere$Uniforms, 0, jl_Object, [nlevoedp_IProgramUniforms], 0, 3, 0, 0, ["$loadUniforms0", $rt_wrapFunction1(nlevoedp_PipelineShaderSkyboxAtmosphere$Uniforms_loadUniforms)], + nlevoedp_PipelineShaderSkyboxRender$Uniforms, 0, jl_Object, [nlevoedp_IProgramUniforms], 0, 3, 0, 0, ["$loadUniforms0", $rt_wrapFunction1(nlevoedp_PipelineShaderSkyboxRender$Uniforms_loadUniforms)]]); + $rt_metadata([nlevoedp_PipelineShaderSSAOGenerate$Uniforms, 0, jl_Object, [nlevoedp_IProgramUniforms], 0, 3, 0, 0, ["$loadUniforms0", $rt_wrapFunction1(nlevoedp_PipelineShaderSSAOGenerate$Uniforms_loadUniforms)], nlevoedp_PipelineShaderReprojControl$Uniforms, 0, jl_Object, [nlevoedp_IProgramUniforms], 0, 3, 0, 0, ["$loadUniforms0", $rt_wrapFunction1(nlevoedp_PipelineShaderReprojControl$Uniforms_loadUniforms)], nlevoedp_PipelineShaderReprojSSR$Uniforms, 0, jl_Object, [nlevoedp_IProgramUniforms], 0, 3, 0, 0, ["$loadUniforms0", $rt_wrapFunction1(nlevoedp_PipelineShaderReprojSSR$Uniforms_loadUniforms)], nlevoedp_PipelineShaderShadowsSun$Uniforms, 0, jl_Object, [nlevoedp_IProgramUniforms], 0, 3, 0, 0, ["$loadUniforms0", $rt_wrapFunction1(nlevoedp_PipelineShaderShadowsSun$Uniforms_loadUniforms)], @@ -1418779,9 +1421082,9 @@ nmwgf_WorldGenGlowStone1, 0, nmwgf_WorldGenerator, [], 0, 3, 0, 0, 0, nmwgf_WorldGenGlowStone2, 0, nmwgf_WorldGenerator, [], 0, 3, 0, 0, 0, nmwgf_WorldGenHellLava, 0, nmwgf_WorldGenerator, [], 0, 3, 0, 0, 0, - nmwg_MapGenBase, "MapGenBase", 76, jl_Object, [], 0, 3, 0, 0, 0]); - $rt_metadata([nmwgs_MapGenStructure, "MapGenStructure", 79, nmwg_MapGenBase, [], 1, 3, 0, 0, ["$recursiveGenerate", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmwgs_MapGenStructure_recursiveGenerate(this, var_1, var_2, var_3, var_4, var_5, var_6); }, "$getCoordList", $rt_wrapFunction0(nmwgs_MapGenStructure_getCoordList)], - nmwgs_MapGenNetherBridge, "MapGenNetherBridge", 79, nmwgs_MapGenStructure, [], 0, 3, [0,0,0], 0, ["$getStructureName", $rt_wrapFunction0(nmwgs_MapGenNetherBridge_getStructureName), "$canSpawnStructureAtCoords", $rt_wrapFunction2(nmwgs_MapGenNetherBridge_canSpawnStructureAtCoords), "$getStructureStart", $rt_wrapFunction2(nmwgs_MapGenNetherBridge_getStructureStart)], + nmwg_MapGenBase, "MapGenBase", 76, jl_Object, [], 0, 3, 0, 0, 0, + nmwgs_MapGenStructure, "MapGenStructure", 79, nmwg_MapGenBase, [], 1, 3, 0, 0, ["$recursiveGenerate", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmwgs_MapGenStructure_recursiveGenerate(this, var_1, var_2, var_3, var_4, var_5, var_6); }, "$getCoordList", $rt_wrapFunction0(nmwgs_MapGenStructure_getCoordList)]]); + $rt_metadata([nmwgs_MapGenNetherBridge, "MapGenNetherBridge", 79, nmwgs_MapGenStructure, [], 0, 3, [0,0,0], 0, ["$getStructureName", $rt_wrapFunction0(nmwgs_MapGenNetherBridge_getStructureName), "$canSpawnStructureAtCoords", $rt_wrapFunction2(nmwgs_MapGenNetherBridge_canSpawnStructureAtCoords), "$getStructureStart", $rt_wrapFunction2(nmwgs_MapGenNetherBridge_getStructureStart)], nmwg_MapGenCavesHell, 0, nmwg_MapGenBase, [], 0, 3, 0, 0, ["$recursiveGenerate", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmwg_MapGenCavesHell_recursiveGenerate(this, var_1, var_2, var_3, var_4, var_5, var_6); }], nmwg_NoiseGeneratorOctaves, 0, nmwg_NoiseGenerator, [], 0, 3, 0, 0, 0, nmwg_FlatGeneratorInfo, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -1418834,9 +1421137,9 @@ nmcgsc_TeleportToPlayer, "TeleportToPlayer", 108, jl_Object, [nmcgs_ISpectatorMenuView, nmcgs_ISpectatorMenuObject], 0, 3, [0,0,0], 0, ["$func_178669_a", $rt_wrapFunction0(nmcgsc_TeleportToPlayer_func_178669_a), "$func_178670_b", $rt_wrapFunction0(nmcgsc_TeleportToPlayer_func_178670_b), "$func_178661_a", $rt_wrapFunction1(nmcgsc_TeleportToPlayer_func_178661_a), "$getSpectatorName", $rt_wrapFunction0(nmcgsc_TeleportToPlayer_getSpectatorName), "$func_178663_a", $rt_wrapFunction2(nmcgsc_TeleportToPlayer_func_178663_a), "$func_178662_A_", $rt_wrapFunction0(nmcgsc_TeleportToPlayer_func_178662_A_)], nmcgsc_TeleportToTeam, "TeleportToTeam", 108, jl_Object, [nmcgs_ISpectatorMenuView, nmcgs_ISpectatorMenuObject], 0, 3, [0,0,0], 0, ["$func_178669_a", $rt_wrapFunction0(nmcgsc_TeleportToTeam_func_178669_a), "$func_178670_b", $rt_wrapFunction0(nmcgsc_TeleportToTeam_func_178670_b), "$func_178661_a", $rt_wrapFunction1(nmcgsc_TeleportToTeam_func_178661_a), "$getSpectatorName", $rt_wrapFunction0(nmcgsc_TeleportToTeam_getSpectatorName), "$func_178663_a", $rt_wrapFunction2(nmcgsc_TeleportToTeam_func_178663_a), "$func_178662_A_", - $rt_wrapFunction0(nmcgsc_TeleportToTeam_func_178662_A_)]]); - $rt_metadata([nmcgs_SpectatorMenu$EndSpectatorObject, "SpectatorMenu$EndSpectatorObject", 107, jl_Object, [nmcgs_ISpectatorMenuObject], 0, 0, [nmcgs_SpectatorMenu,0,"EndSpectatorObject"], 0, ["$func_178661_a", $rt_wrapFunction1(nmcgs_SpectatorMenu$EndSpectatorObject_func_178661_a), "$getSpectatorName", $rt_wrapFunction0(nmcgs_SpectatorMenu$EndSpectatorObject_getSpectatorName), "$func_178663_a", $rt_wrapFunction2(nmcgs_SpectatorMenu$EndSpectatorObject_func_178663_a), "$func_178662_A_", $rt_wrapFunction0(nmcgs_SpectatorMenu$EndSpectatorObject_func_178662_A_)], - nmcgs_SpectatorMenu$MoveMenuObject, "SpectatorMenu$MoveMenuObject", 107, jl_Object, [nmcgs_ISpectatorMenuObject], 0, 0, [nmcgs_SpectatorMenu,0,"MoveMenuObject"], 0, ["$func_178661_a", $rt_wrapFunction1(nmcgs_SpectatorMenu$MoveMenuObject_func_178661_a), "$getSpectatorName", $rt_wrapFunction0(nmcgs_SpectatorMenu$MoveMenuObject_getSpectatorName), "$func_178663_a", $rt_wrapFunction2(nmcgs_SpectatorMenu$MoveMenuObject_func_178663_a), "$func_178662_A_", $rt_wrapFunction0(nmcgs_SpectatorMenu$MoveMenuObject_func_178662_A_)], + $rt_wrapFunction0(nmcgsc_TeleportToTeam_func_178662_A_)], + nmcgs_SpectatorMenu$EndSpectatorObject, "SpectatorMenu$EndSpectatorObject", 107, jl_Object, [nmcgs_ISpectatorMenuObject], 0, 0, [nmcgs_SpectatorMenu,0,"EndSpectatorObject"], 0, ["$func_178661_a", $rt_wrapFunction1(nmcgs_SpectatorMenu$EndSpectatorObject_func_178661_a), "$getSpectatorName", $rt_wrapFunction0(nmcgs_SpectatorMenu$EndSpectatorObject_getSpectatorName), "$func_178663_a", $rt_wrapFunction2(nmcgs_SpectatorMenu$EndSpectatorObject_func_178663_a), "$func_178662_A_", $rt_wrapFunction0(nmcgs_SpectatorMenu$EndSpectatorObject_func_178662_A_)]]); + $rt_metadata([nmcgs_SpectatorMenu$MoveMenuObject, "SpectatorMenu$MoveMenuObject", 107, jl_Object, [nmcgs_ISpectatorMenuObject], 0, 0, [nmcgs_SpectatorMenu,0,"MoveMenuObject"], 0, ["$func_178661_a", $rt_wrapFunction1(nmcgs_SpectatorMenu$MoveMenuObject_func_178661_a), "$getSpectatorName", $rt_wrapFunction0(nmcgs_SpectatorMenu$MoveMenuObject_getSpectatorName), "$func_178663_a", $rt_wrapFunction2(nmcgs_SpectatorMenu$MoveMenuObject_func_178663_a), "$func_178662_A_", $rt_wrapFunction0(nmcgs_SpectatorMenu$MoveMenuObject_func_178662_A_)], nmcgs_SpectatorMenu$1, "SpectatorMenu$1", 107, jl_Object, [nmcgs_ISpectatorMenuObject], 0, 0, [nmcgs_SpectatorMenu,0,0], 0, ["$func_178661_a", $rt_wrapFunction1(nmcgs_SpectatorMenu$1_func_178661_a), "$getSpectatorName", $rt_wrapFunction0(nmcgs_SpectatorMenu$1_getSpectatorName), "$func_178663_a", $rt_wrapFunction2(nmcgs_SpectatorMenu$1_func_178663_a), "$func_178662_A_", $rt_wrapFunction0(nmcgs_SpectatorMenu$1_func_178662_A_)], nlevoedp_ShaderLinkException, "ShaderLinkException", 153, nlevoedp_ShaderException, [], 0, 3, [0,0,0], 0, 0, nlevoedp_PipelineShaderHandDepthMask$Uniforms, 0, jl_Object, [nlevoedp_IProgramUniforms], 0, 3, 0, 0, ["$loadUniforms0", $rt_wrapFunction1(nlevoedp_PipelineShaderHandDepthMask$Uniforms_loadUniforms)], @@ -1418885,9 +1421188,9 @@ nmwgl_GenLayerIsland, 0, nmwgl_GenLayer, [], 0, 3, 0, 0, ["$getInts", $rt_wrapFunction4(nmwgl_GenLayerIsland_getInts)], nmwgl_GenLayerZoom, 0, nmwgl_GenLayer, [], 0, 3, 0, 0, ["$getInts", $rt_wrapFunction4(nmwgl_GenLayerZoom_getInts)], nmwgl_GenLayerFuzzyZoom, 0, nmwgl_GenLayerZoom, [], 0, 3, 0, 0, ["$selectModeOrRandom", $rt_wrapFunction4(nmwgl_GenLayerFuzzyZoom_selectModeOrRandom)], - nmwgl_GenLayerAddIsland, 0, nmwgl_GenLayer, [], 0, 3, 0, 0, ["$getInts", $rt_wrapFunction4(nmwgl_GenLayerAddIsland_getInts)]]); - $rt_metadata([nmwgl_GenLayerRemoveTooMuchOcean, 0, nmwgl_GenLayer, [], 0, 3, 0, 0, ["$getInts", $rt_wrapFunction4(nmwgl_GenLayerRemoveTooMuchOcean_getInts)], - nmwgl_GenLayerAddSnow, 0, nmwgl_GenLayer, [], 0, 3, 0, 0, ["$getInts", $rt_wrapFunction4(nmwgl_GenLayerAddSnow_getInts)], + nmwgl_GenLayerAddIsland, 0, nmwgl_GenLayer, [], 0, 3, 0, 0, ["$getInts", $rt_wrapFunction4(nmwgl_GenLayerAddIsland_getInts)], + nmwgl_GenLayerRemoveTooMuchOcean, 0, nmwgl_GenLayer, [], 0, 3, 0, 0, ["$getInts", $rt_wrapFunction4(nmwgl_GenLayerRemoveTooMuchOcean_getInts)]]); + $rt_metadata([nmwgl_GenLayerAddSnow, 0, nmwgl_GenLayer, [], 0, 3, 0, 0, ["$getInts", $rt_wrapFunction4(nmwgl_GenLayerAddSnow_getInts)], nmwgl_GenLayerEdge, 0, nmwgl_GenLayer, [], 0, 3, 0, 0, ["$getInts", $rt_wrapFunction4(nmwgl_GenLayerEdge_getInts)], nmwgl_GenLayerEdge$Mode, "GenLayerEdge$Mode", 78, jl_Enum, [], 12, 3, [nmwgl_GenLayerEdge,0,"Mode"], nmwgl_GenLayerEdge$Mode_$callClinit, 0, nmwgl_GenLayerAddMushroomIsland, 0, nmwgl_GenLayer, [], 0, 3, 0, 0, ["$getInts", $rt_wrapFunction4(nmwgl_GenLayerAddMushroomIsland_getInts)], @@ -1418935,9 +1421238,9 @@ nPs_CharSequenceTranslator, "CharSequenceTranslator", 174, jl_Object, [], 129, 3, 0, 0, 0, nPs_AggregateTranslator, 0, nPs_CharSequenceTranslator, [], 128, 3, 0, 0, 0, nPs_OctalUnescaper, "OctalUnescaper", 174, nPs_CharSequenceTranslator, [], 128, 3, [0,0,0], 0, ["$translate4", $rt_wrapFunction3(nPs_OctalUnescaper_translate)], - nPs_UnicodeUnescaper, "UnicodeUnescaper", 174, nPs_CharSequenceTranslator, [], 128, 3, [0,0,0], 0, ["$translate4", $rt_wrapFunction3(nPs_UnicodeUnescaper_translate)]]); - $rt_metadata([nPs_LookupTranslator, "LookupTranslator", 174, nPs_CharSequenceTranslator, [], 128, 3, [0,0,0], 0, ["$translate4", $rt_wrapFunction3(nPs_LookupTranslator_translate)], - nPs_EntityArrays, 0, jl_Object, [], 0, 3, 0, nPs_EntityArrays_$callClinit, 0, + nPs_UnicodeUnescaper, "UnicodeUnescaper", 174, nPs_CharSequenceTranslator, [], 128, 3, [0,0,0], 0, ["$translate4", $rt_wrapFunction3(nPs_UnicodeUnescaper_translate)], + nPs_LookupTranslator, "LookupTranslator", 174, nPs_CharSequenceTranslator, [], 128, 3, [0,0,0], 0, ["$translate4", $rt_wrapFunction3(nPs_LookupTranslator_translate)]]); + $rt_metadata([nPs_EntityArrays, 0, jl_Object, [], 0, 3, 0, nPs_EntityArrays_$callClinit, 0, nPs_ArrayUtils, 0, jl_Object, [], 0, 3, 0, 0, 0, otp_PlatformClass, "PlatformClass", 44, jl_Object, [otj_JSObject], 3, 3, 0, 0, 0, oti_Structure, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -1418985,11 +1421288,11 @@ jtt_TemporalAccessor, 0, jl_Object, [], 3, 3, 0, 0, 0, jtt_TemporalAdjuster, 0, jl_Object, [], 3, 3, 0, 0, 0, jt_ZoneOffset, "ZoneOffset", 18, jt_ZoneId, [jtt_TemporalAccessor, jtt_TemporalAdjuster, jl_Comparable, ji_Serializable], 4, 3, 0, 0, 0, - otcit_DateTimeZoneBuilder$Transition, "DateTimeZoneBuilder$Transition", 39, jl_Object, [], 4, 0, [otcit_DateTimeZoneBuilder,0,"Transition"], 0, 0]); - $rt_metadata([nmwc_Chunk$EnumCreateEntityType, "Chunk$EnumCreateEntityType", 81, jl_Enum, [], 12, 3, [nmwc_Chunk,0,"EnumCreateEntityType"], nmwc_Chunk$EnumCreateEntityType_$callClinit, 0, + otcit_DateTimeZoneBuilder$Transition, "DateTimeZoneBuilder$Transition", 39, jl_Object, [], 4, 0, [otcit_DateTimeZoneBuilder,0,"Transition"], 0, 0, + nmv_VillageDoorInfo, "VillageDoorInfo", 124, jl_Object, [], 0, 3, [0,0,0], 0, 0]); + $rt_metadata([nPs_Color, "Color", 174, jl_Object, [], 0, 3, 0, 0, 0, nmwgs_StructureStart, "StructureStart", 79, jl_Object, [], 1, 3, 0, 0, ["$generateStructure0", $rt_wrapFunction3(nmwgs_StructureStart_generateStructure), "$writeToNBT", $rt_wrapFunction1(nmwgs_StructureStart_writeToNBT), "$readFromNBT", $rt_wrapFunction1(nmwgs_StructureStart_readFromNBT), "$isSizeableStructure", $rt_wrapFunction0(nmwgs_StructureStart_isSizeableStructure), "$func_175788_a", $rt_wrapFunction1(nmwgs_StructureStart_func_175788_a), "$func_175787_b", $rt_wrapFunction1(nmwgs_StructureStart_func_175787_b)], - nmv_VillageDoorInfo, "VillageDoorInfo", 124, jl_Object, [], 0, 3, [0,0,0], 0, 0, - nPs_Color, "Color", 174, jl_Object, [], 0, 3, 0, 0, 0, + nmwc_Chunk$EnumCreateEntityType, "Chunk$EnumCreateEntityType", 81, jl_Enum, [], 12, 3, [nmwc_Chunk,0,"EnumCreateEntityType"], nmwc_Chunk$EnumCreateEntityType_$callClinit, 0, nlevsl_LANPeerEvent$LANPeerPacketEvent, "LANPeerEvent$LANPeerPacketEvent", 168, jl_Object, [nlevsl_LANPeerEvent], 0, 3, [nlevsl_LANPeerEvent,0,"LANPeerPacketEvent"], 0, 0, nme_EntityTrackerEntry, "EntityTrackerEntry", 126, jl_Object, [], 0, 3, [0,0,0], nme_EntityTrackerEntry_$callClinit, ["$equals0", $rt_wrapFunction1(nme_EntityTrackerEntry_equals), "$hashCode0", $rt_wrapFunction0(nme_EntityTrackerEntry_hashCode)], ju_Hashtable$HashIterator, 0, jl_Object, [ju_Iterator], 0, 0, 0, 0, 0, @@ -1419006,9 +1421309,9 @@ nlevoed_GBufferPipelineProgramInstance, 0, jl_Object, [], 0, 3, 0, 0, 0, nlevoedp_GBufferExtPipelineShader, 0, nlevoedp_ShaderProgram, [], 0, 3, 0, 0, 0, nlevoedp_GBufferExtPipelineShader$Uniforms, 0, jl_Object, [nlevoedp_IProgramUniforms], 0, 3, 0, 0, ["$loadUniforms0", $rt_wrapFunction1(nlevoedp_GBufferExtPipelineShader$Uniforms_loadUniforms)], - nlevsrp_IPacket07LocalWorlds$LocalWorld, "IPacket07LocalWorlds$LocalWorld", 167, jl_Object, [], 0, 3, [nlevsrp_IPacket07LocalWorlds,0,"LocalWorld"], 0, 0, nlevsrp_ICEServerSet$RelayType, "ICEServerSet$RelayType", 167, jl_Enum, [], 12, 3, [nlevsrp_ICEServerSet,0,"RelayType"], nlevsrp_ICEServerSet$RelayType_$callClinit, 0, nlevsrp_ICEServerSet$RelayServer, "ICEServerSet$RelayServer", 167, jl_Object, [], 0, 3, [nlevsrp_ICEServerSet,0,"RelayServer"], 0, 0, + nlevsrp_IPacket07LocalWorlds$LocalWorld, "IPacket07LocalWorlds$LocalWorld", 167, jl_Object, [], 0, 3, [nlevsrp_IPacket07LocalWorlds,0,"LocalWorld"], 0, 0, nmcrbm_ModelBlockDefinition$MissingVariantException, "ModelBlockDefinition$MissingVariantException", 96, jl_RuntimeException, [], 0, 3, [nmcrbm_ModelBlockDefinition,0,"MissingVariantException"], 0, 0, nmu_BlockPos$2$1, 0, cgcc_AbstractIterator, [], 0, 0, 0, 0, ["$computeNext", $rt_wrapFunction0(nmu_BlockPos$2$1_computeNext)], ji_UncheckedIOException, "UncheckedIOException", 17, jl_RuntimeException, [], 0, 3, [0,0,0], 0, 0, @@ -1419036,9 +1421339,9 @@ cgcc_Maps$KeySet, 0, cgcc_Sets$ImprovedAbstractSet, [], 0, 0, 0, 0, ["$size0", $rt_wrapFunction0(cgcc_Maps$KeySet_size)], cgcc_HashBiMap$Inverse$InverseKeySet, 0, cgcc_Maps$KeySet, [], 4, 0, 0, 0, ["$iterator", $rt_wrapFunction0(cgcc_HashBiMap$Inverse$InverseKeySet_iterator)], nlevoedp_PipelineShaderAccelParticleGBuffer, 0, nlevoedp_ShaderProgram, [], 0, 3, 0, 0, 0, - nlevoedp_PipelineShaderAccelParticleForward, 0, nlevoedp_ShaderProgram, [], 0, 3, 0, 0, 0]); - $rt_metadata([ju_AbstractList$SubAbstractList, "AbstractList$SubAbstractList", 8, ju_AbstractList, [], 0, 0, 0, 0, ["$sort", $rt_wrapFunction1(ju_List_sort), "$get2", $rt_wrapFunction1(ju_AbstractList$SubAbstractList_get), "$iterator", $rt_wrapFunction0(ju_AbstractList$SubAbstractList_iterator), "$remove1", $rt_wrapFunction1(ju_AbstractList$SubAbstractList_remove), "$size0", $rt_wrapFunction0(ju_AbstractList$SubAbstractList_size)], - ju_AbstractList$SubAbstractListRandomAccess, 0, ju_AbstractList$SubAbstractList, [ju_RandomAccess], 4, 0, 0, 0, ["$sort", $rt_wrapFunction1(ju_List_sort)], + nlevoedp_PipelineShaderAccelParticleForward, 0, nlevoedp_ShaderProgram, [], 0, 3, 0, 0, 0, + ju_AbstractList$SubAbstractList, "AbstractList$SubAbstractList", 8, ju_AbstractList, [], 0, 0, 0, 0, ["$sort", $rt_wrapFunction1(ju_List_sort), "$get2", $rt_wrapFunction1(ju_AbstractList$SubAbstractList_get), "$iterator", $rt_wrapFunction0(ju_AbstractList$SubAbstractList_iterator), "$remove1", $rt_wrapFunction1(ju_AbstractList$SubAbstractList_remove), "$size0", $rt_wrapFunction0(ju_AbstractList$SubAbstractList_size)]]); + $rt_metadata([ju_AbstractList$SubAbstractListRandomAccess, 0, ju_AbstractList$SubAbstractList, [ju_RandomAccess], 4, 0, 0, 0, ["$sort", $rt_wrapFunction1(ju_List_sort)], nlevu_GuiUpdateVersionList, "GuiUpdateVersionList", 146, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$initGui", $rt_wrapFunction0(nlevu_GuiUpdateVersionList_initGui), "$actionPerformed", $rt_wrapFunction1(nlevu_GuiUpdateVersionList_actionPerformed), "$drawScreen", $rt_wrapFunction3(nlevu_GuiUpdateVersionList_drawScreen), "$handleMouseInput", $rt_wrapFunction0(nlevu_GuiUpdateVersionList_handleMouseInput)], nmcg_GuiYesNo, "GuiYesNo", 105, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$initGui", $rt_wrapFunction0(nmcg_GuiYesNo_initGui), "$actionPerformed", $rt_wrapFunction1(nmcg_GuiYesNo_actionPerformed), "$drawScreen", $rt_wrapFunction3(nmcg_GuiYesNo_drawScreen), "$updateScreen", $rt_wrapFunction0(nmcg_GuiYesNo_updateScreen)], nmcg_GuiConfirmOpenLink, "GuiConfirmOpenLink", 105, nmcg_GuiYesNo, [], 0, 3, 0, 0, ["$initGui", $rt_wrapFunction0(nmcg_GuiConfirmOpenLink_initGui), "$actionPerformed", $rt_wrapFunction1(nmcg_GuiConfirmOpenLink_actionPerformed), "$drawScreen", $rt_wrapFunction3(nmcg_GuiConfirmOpenLink_drawScreen)], @@ -1419090,9 +1421393,9 @@ nme_Entity$4, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nme_Entity$4_call)], nmcrm_WeightedBakedModel$MyWeighedRandomItem, "WeightedBakedModel$MyWeighedRandomItem", 102, nmu_WeightedRandom$Item, [jl_Comparable], 0, 0, [nmcrm_WeightedBakedModel,0,"MyWeighedRandomItem"], 0, ["$toString", $rt_wrapFunction0(nmcrm_WeightedBakedModel$MyWeighedRandomItem_toString), "$compareTo6", $rt_wrapFunction1(nmcrm_WeightedBakedModel$MyWeighedRandomItem_compareTo)], nmcrm_WeightedBakedModel, "WeightedBakedModel", 102, jl_Object, [nmcrm_IBakedModel], 0, 3, [0,0,0], 0, ["$getFaceQuads", $rt_wrapFunction1(nmcrm_WeightedBakedModel_getFaceQuads), "$getGeneralQuads", $rt_wrapFunction0(nmcrm_WeightedBakedModel_getGeneralQuads), "$isAmbientOcclusion", $rt_wrapFunction0(nmcrm_WeightedBakedModel_isAmbientOcclusion), "$isGui3d", $rt_wrapFunction0(nmcrm_WeightedBakedModel_isGui3d), "$isBuiltInRenderer", $rt_wrapFunction0(nmcrm_WeightedBakedModel_isBuiltInRenderer), "$getParticleTexture", - $rt_wrapFunction0(nmcrm_WeightedBakedModel_getParticleTexture), "$getItemCameraTransforms", $rt_wrapFunction0(nmcrm_WeightedBakedModel_getItemCameraTransforms)]]); - $rt_metadata([nPsem_IntVector, 0, jl_Object, [jl_Cloneable], 0, 3, 0, 0, 0, - nPsem_IntStack, 0, nPsem_IntVector, [], 0, 3, 0, 0, 0, + $rt_wrapFunction0(nmcrm_WeightedBakedModel_getParticleTexture), "$getItemCameraTransforms", $rt_wrapFunction0(nmcrm_WeightedBakedModel_getItemCameraTransforms)], + nPsem_IntVector, 0, jl_Object, [jl_Cloneable], 0, 3, 0, 0, 0]); + $rt_metadata([nPsem_IntStack, 0, nPsem_IntVector, [], 0, 3, 0, 0, 0, nms_Team$EnumVisible, "Team$EnumVisible", 123, jl_Enum, [], 12, 3, [nms_Team,0,"EnumVisible"], nms_Team$EnumVisible_$callClinit, 0, nmt_TileEntityMobSpawner$1, 0, nmt_MobSpawnerBaseLogic, [], 0, 0, 0, 0, ["$func_98267_a", $rt_wrapFunction1(nmt_TileEntityMobSpawner$1_func_98267_a), "$getSpawnerWorld", $rt_wrapFunction0(nmt_TileEntityMobSpawner$1_getSpawnerWorld), "$getSpawnerPosition", $rt_wrapFunction0(nmt_TileEntityMobSpawner$1_getSpawnerPosition), "$setRandomEntity", $rt_wrapFunction1(nmt_TileEntityMobSpawner$1_setRandomEntity)], nmcs_CommandBlockLogic, "CommandBlockLogic", 62, jl_Object, [nmc_ICommandSender], 1, 3, 0, nmcs_CommandBlockLogic_$callClinit, ["$canCommandSenderUseCommand", $rt_wrapFunction2(nmcs_CommandBlockLogic_canCommandSenderUseCommand), "$setCommand", $rt_wrapFunction1(nmcs_CommandBlockLogic_setCommand), "$getName", $rt_wrapFunction0(nmcs_CommandBlockLogic_getName), "$getDisplayName0", $rt_wrapFunction0(nmcs_CommandBlockLogic_getDisplayName), "$addChatMessage", $rt_wrapFunction1(nmcs_CommandBlockLogic_addChatMessage), @@ -1419143,12 +1421446,11 @@ nmea_EntityAILookIdle, 0, nmea_EntityAIBase, [], 0, 3, 0, 0, ["$shouldExecute", $rt_wrapFunction0(nmea_EntityAILookIdle_shouldExecute), "$continueExecuting", $rt_wrapFunction0(nmea_EntityAILookIdle_continueExecuting), "$startExecuting", $rt_wrapFunction0(nmea_EntityAILookIdle_startExecuting), "$updateTask", $rt_wrapFunction0(nmea_EntityAILookIdle_updateTask)], nlevit_TeaVMUpdateThread, 0, jl_Object, [jl_Runnable], 0, 3, 0, nlevit_TeaVMUpdateThread_$callClinit, 0, nlevsl_LANServerList, "LANServerList", 168, jl_Object, [], 0, 3, 0, 0, 0, - nlevi_PlatformApplication$3, 0, jl_Object, [otjde_EventListener], 0, 0, 0, 0, ["$handleEvent$exported$0", $rt_wrapFunction1(nlevi_PlatformApplication$3_handleEvent$exported$0)]]); - $rt_metadata([nmcrbm_BreakingFour, "BreakingFour", 96, nmcrbm_BakedQuad, [], 0, 3, [0,0,0], 0, 0, - nmcrc_VisGraph$1, 0, jl_Object, [], 32, 0, 0, nmcrc_VisGraph$1_$callClinit, 0, + nlevi_PlatformApplication$3, 0, jl_Object, [otjde_EventListener], 0, 0, 0, 0, ["$handleEvent$exported$0", $rt_wrapFunction1(nlevi_PlatformApplication$3_handleEvent$exported$0)], + nmcrbm_BreakingFour, "BreakingFour", 96, nmcrbm_BakedQuad, [], 0, 3, [0,0,0], 0, 0]); + $rt_metadata([nmcrc_VisGraph$1, 0, jl_Object, [], 32, 0, 0, nmcrc_VisGraph$1_$callClinit, 0, nPse_VisGraphExperimental$1, 0, jl_Object, [], 32, 0, 0, nPse_VisGraphExperimental$1_$callClinit, 0, nmcrbm_ItemModelGenerator$Span, "ItemModelGenerator$Span", 96, jl_Object, [], 0, 0, [nmcrbm_ItemModelGenerator,0,"Span"], 0, 0, - nmcrbm_ItemModelGenerator$1, 0, jl_Object, [], 32, 0, 0, nmcrbm_ItemModelGenerator$1_$callClinit, 0, nlevoedp_PipelineShaderGBufferDebugView$Uniforms, 0, jl_Object, [nlevoedp_IProgramUniforms], 0, 3, 0, 0, ["$loadUniforms0", $rt_wrapFunction1(nlevoedp_PipelineShaderGBufferDebugView$Uniforms_loadUniforms)], jl_SystemClassLoader, 0, jl_ClassLoader, [], 0, 0, 0, 0, 0, nPs_ClientMathUtils, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -1419169,16 +1421471,19 @@ nmea_EntitySenses, "EntitySenses", 130, jl_Object, [], 0, 3, 0, 0, 0, nmcrbm_BreakingFour$1, 0, jl_Object, [], 32, 0, 0, nmcrbm_BreakingFour$1_$callClinit, 0, nmu_CombatTracker, "CombatTracker", 85, jl_Object, [], 0, 3, 0, 0, 0, - otcir_JSCallable, "JSCallable", 38, jl_Object, [otj_JSObject], 3, 3, 0, 0, 0, nmcrbm_ModelBlock$Bookkeep, "ModelBlock$Bookkeep", 96, jl_Object, [], 4, 0, 0, 0, 0, + otcir_JSCallable, "JSCallable", 38, jl_Object, [otj_JSObject], 3, 3, 0, 0, 0, + nmws_MapData$MapInfo, "MapData$MapInfo", 83, jl_Object, [], 0, 3, [nmws_MapData,0,"MapInfo"], 0, 0, cgcc_ImmutableMultimap, 0, cgcc_AbstractMultimap, [ji_Serializable], 1, 3, 0, 0, 0, cgcc_SetMultimap, 0, jl_Object, [cgcc_Multimap], 3, 3, 0, 0, 0, cgcc_ImmutableSetMultimap, "ImmutableSetMultimap", 3, cgcc_ImmutableMultimap, [cgcc_SetMultimap], 0, 3, 0, 0, 0, - nmws_MapData$MapInfo, "MapData$MapInfo", 83, jl_Object, [], 0, 3, [nmws_MapData,0,"MapInfo"], 0, 0, nmw_DifficultyInstance, "DifficultyInstance", 74, jl_Object, [], 0, 3, 0, 0, 0, otjw_AudioBuffer, "AudioBuffer", 35, jl_Object, [otj_JSObject], 3, 3, 0, 0, 0, nmeaa_IAttributeInstance, "IAttributeInstance", 131, jl_Object, [], 3, 3, 0, 0, 0, cgcc_ImmutableBiMap$Builder, "ImmutableBiMap$Builder", 3, cgcc_ImmutableMap$Builder, [], 4, 3, 0, 0, 0, + nmc_CommandBase$CoordinateArg, "CommandBase$CoordinateArg", 61, jl_Object, [], 0, 3, 0, 0, 0, + cgcb_Optional, "Optional", 4, jl_Object, [ji_Serializable], 1, 3, 0, 0, 0, + cgcc_ImmutableListMultimap, "ImmutableListMultimap", 3, cgcc_ImmutableMultimap, [cgcc_ListMultimap], 0, 3, 0, 0, 0, nea_BaseData$DataBooleanCallback, "BaseData$DataBooleanCallback", 176, jl_Object, [otj_JSObject], 3, 3, 0, 0, 0, nea_BaseData$DataDoubleCallback, "BaseData$DataDoubleCallback", 176, jl_Object, [otj_JSObject], 3, 3, 0, 0, 0, nea_BaseData$DataFloatCallback, "BaseData$DataFloatCallback", 176, jl_Object, [otj_JSObject], 3, 3, 0, 0, 0, @@ -1419192,12 +1421497,9 @@ nea_BaseData$BooleanCallbackArr, "BaseData$BooleanCallbackArr", 176, jl_Object, [otj_JSObject], 3, 3, 0, 0, 0, nea_BaseData$IntCallbackArr, "BaseData$IntCallbackArr", 176, jl_Object, [otj_JSObject], 3, 3, 0, 0, 0, nea_BaseData$StringCallbackArr, "BaseData$StringCallbackArr", 176, jl_Object, [otj_JSObject], 3, 3, 0, 0, 0, - nea_BaseData$DoubleCallbackArr, "BaseData$DoubleCallbackArr", 176, jl_Object, [otj_JSObject], 3, 3, 0, 0, 0, - nea_BaseData$FloatCallbackArr, "BaseData$FloatCallbackArr", 176, jl_Object, [otj_JSObject], 3, 3, 0, 0, 0]); - $rt_metadata([nea_BaseData$ObjectCallbackArr, "BaseData$ObjectCallbackArr", 176, jl_Object, [otj_JSObject], 3, 3, 0, 0, 0, - cgcb_Optional, "Optional", 4, jl_Object, [ji_Serializable], 1, 3, 0, 0, 0, - cgcc_ImmutableListMultimap, "ImmutableListMultimap", 3, cgcc_ImmutableMultimap, [cgcc_ListMultimap], 0, 3, 0, 0, 0, - nmc_CommandBase$CoordinateArg, "CommandBase$CoordinateArg", 61, jl_Object, [], 0, 3, 0, 0, 0, + nea_BaseData$DoubleCallbackArr, "BaseData$DoubleCallbackArr", 176, jl_Object, [otj_JSObject], 3, 3, 0, 0, 0]); + $rt_metadata([nea_BaseData$FloatCallbackArr, "BaseData$FloatCallbackArr", 176, jl_Object, [otj_JSObject], 3, 3, 0, 0, 0, + nea_BaseData$ObjectCallbackArr, "BaseData$ObjectCallbackArr", 176, jl_Object, [otj_JSObject], 3, 3, 0, 0, 0, jt_DateFormatElement$TrieNode, "DateFormatElement$TrieNode", 20, jl_Object, [], 0, 0, 0, 0, 0, cgcc_LinkedListMultimap$Node, "LinkedListMultimap$Node", 3, cgcc_AbstractMapEntry, [], 4, 0, 0, 0, 0, nme_Enchantment$makeModData$lambda$_3_0, 0, jl_Object, [nea_BaseData$VoidCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Enchantment$makeModData$lambda$_3_0_onCallback$exported$0)], @@ -1419217,12 +1421519,10 @@ cgcc_HashBiMap$Inverse$InverseKeySet$1, 0, cgcc_HashBiMap$Itr, [], 0, 0, 0, 0, ["$output", $rt_wrapFunction1(cgcc_HashBiMap$Inverse$InverseKeySet$1_output)], nmnps_S44PacketWorldBorder$Action, "S44PacketWorldBorder$Action", 65, jl_Enum, [], 12, 3, [nmnps_S44PacketWorldBorder,0,"Action"], nmnps_S44PacketWorldBorder$Action_$callClinit, 0, ju_IdentityHashMap$HashMapEntrySet, 0, ju_AbstractSet, [], 0, 0, 0, 0, 0, - cgcb_AbstractIterator$1, 0, jl_Object, [], 32, 0, 0, cgcb_AbstractIterator$1_$callClinit, 0, ju_IdentityHashMap$2, "IdentityHashMap$2", 8, ju_AbstractCollection, [], 0, 0, [ju_IdentityHashMap,0,0], 0, ["$size0", $rt_wrapFunction0(ju_IdentityHashMap$2_size), "$iterator", $rt_wrapFunction0(ju_IdentityHashMap$2_iterator)], otcir_Flags, 0, jl_Object, [], 4, 3, 0, 0, 0, otcir_Converter, 0, jl_Object, [], 4, 3, 0, 0, 0, nPsj_JSONUtils, 0, jl_Object, [], 0, 3, 0, 0, 0, - nmu_EnumFacing$1, 0, jl_Object, [], 32, 0, 0, nmu_EnumFacing$1_$callClinit, 0, cgcc_HashBiMap$Inverse$1, 0, cgcc_Maps$EntrySet, [], 0, 0, 0, 0, ["$map4", $rt_wrapFunction0(cgcc_HashBiMap$Inverse$1_map), "$iterator", $rt_wrapFunction0(cgcc_HashBiMap$Inverse$1_iterator)], nmn_NBTUtil, 0, jl_Object, [], 4, 3, 0, 0, 0, nmea_EntityAITasks$EntityAITaskEntry, "EntityAITasks$EntityAITaskEntry", 130, jl_Object, [], 0, 0, [nmea_EntityAITasks,0,"EntityAITaskEntry"], 0, 0, @@ -1419245,14 +1421545,14 @@ nmcg_GuiLanguage$List, 0, nmcg_GuiSlot, [], 0, 0, 0, 0, ["$getSize0", $rt_wrapFunction0(nmcg_GuiLanguage$List_getSize), "$elementClicked", $rt_wrapFunction4(nmcg_GuiLanguage$List_elementClicked), "$isSelected", $rt_wrapFunction1(nmcg_GuiLanguage$List_isSelected), "$getContentHeight", $rt_wrapFunction0(nmcg_GuiLanguage$List_getContentHeight), "$drawBackground0", $rt_wrapFunction0(nmcg_GuiLanguage$List_drawBackground), "$drawSlot0", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcg_GuiLanguage$List_drawSlot(this, var_1, var_2, var_3, var_4, var_5, var_6); }], nlevs_WorkerStartupFailedException, 0, jl_RuntimeException, [], 0, 3, 0, 0, 0, - nmcg_GuiListExtended, 0, nmcg_GuiSlot, [], 1, 3, 0, 0, ["$elementClicked", $rt_wrapFunction4(nmcg_GuiListExtended_elementClicked), "$isSelected", $rt_wrapFunction1(nmcg_GuiListExtended_isSelected), "$drawBackground0", $rt_wrapFunction0(nmcg_GuiListExtended_drawBackground), "$drawSlot0", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcg_GuiListExtended_drawSlot(this, var_1, var_2, var_3, var_4, var_5, var_6); }, "$func_178040_a", $rt_wrapFunction3(nmcg_GuiListExtended_func_178040_a)]]); - $rt_metadata([nmcg_ServerSelectionList, 0, nmcg_GuiListExtended, [], 0, 3, 0, 0, ["$getListEntry", $rt_wrapFunction1(nmcg_ServerSelectionList_getListEntry), "$getSize0", $rt_wrapFunction0(nmcg_ServerSelectionList_getSize), "$isSelected", $rt_wrapFunction1(nmcg_ServerSelectionList_isSelected), "$getScrollBarX", $rt_wrapFunction0(nmcg_ServerSelectionList_getScrollBarX), "$getListWidth", $rt_wrapFunction0(nmcg_ServerSelectionList_getListWidth), "$drawSelectionBox0", function(var_1, var_2, var_3, var_4, var_5) - { nmcg_ServerSelectionList_drawSelectionBox(this, var_1, var_2, var_3, var_4, var_5); }, "$drawSlot0", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcg_ServerSelectionList_drawSlot(this, var_1, var_2, var_3, var_4, var_5, var_6); }], + nmcg_GuiListExtended, 0, nmcg_GuiSlot, [], 1, 3, 0, 0, ["$elementClicked", $rt_wrapFunction4(nmcg_GuiListExtended_elementClicked), "$isSelected", $rt_wrapFunction1(nmcg_GuiListExtended_isSelected), "$drawBackground0", $rt_wrapFunction0(nmcg_GuiListExtended_drawBackground), "$drawSlot0", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcg_GuiListExtended_drawSlot(this, var_1, var_2, var_3, var_4, var_5, var_6); }, "$func_178040_a", $rt_wrapFunction3(nmcg_GuiListExtended_func_178040_a)], + nmcg_ServerSelectionList, 0, nmcg_GuiListExtended, [], 0, 3, 0, 0, ["$getListEntry", $rt_wrapFunction1(nmcg_ServerSelectionList_getListEntry), "$getSize0", $rt_wrapFunction0(nmcg_ServerSelectionList_getSize), "$isSelected", $rt_wrapFunction1(nmcg_ServerSelectionList_isSelected), "$getScrollBarX", $rt_wrapFunction0(nmcg_ServerSelectionList_getScrollBarX), "$getListWidth", $rt_wrapFunction0(nmcg_ServerSelectionList_getListWidth), "$drawSelectionBox0", function(var_1, var_2, var_3, var_4, var_5) { nmcg_ServerSelectionList_drawSelectionBox(this, + var_1, var_2, var_3, var_4, var_5); }, "$drawSlot0", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcg_ServerSelectionList_drawSlot(this, var_1, var_2, var_3, var_4, var_5, var_6); }], nmcg_GuiListExtended$IGuiListEntry, 0, jl_Object, [], 3, 3, 0, 0, 0, nmcg_ServerListEntryNormal, "ServerListEntryNormal", 105, jl_Object, [nmcg_GuiListExtended$IGuiListEntry], 0, 3, [0,0,0], nmcg_ServerListEntryNormal_$callClinit, ["$drawEntry", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcg_ServerListEntryNormal_drawEntry(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$mousePressed0", function(var_1, var_2, var_3, var_4, var_5, var_6) { return nmcg_ServerListEntryNormal_mousePressed(this, var_1, var_2, var_3, var_4, var_5, var_6); }, "$setSelected", $rt_wrapFunction3(nmcg_ServerListEntryNormal_setSelected), "$mouseReleased2", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcg_ServerListEntryNormal_mouseReleased(this, var_1, var_2, var_3, var_4, var_5, var_6); }], - nlevsg_GuiScreenConnectOption, "GuiScreenConnectOption", 169, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$initGui", $rt_wrapFunction0(nlevsg_GuiScreenConnectOption_initGui), "$actionPerformed", $rt_wrapFunction1(nlevsg_GuiScreenConnectOption_actionPerformed), "$drawScreen", $rt_wrapFunction3(nlevsg_GuiScreenConnectOption_drawScreen), "$mouseClicked", $rt_wrapFunction3(nlevsg_GuiScreenConnectOption_mouseClicked)], - nmcg_GuiScreenAddServer, "GuiScreenAddServer", 105, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$updateScreen", $rt_wrapFunction0(nmcg_GuiScreenAddServer_updateScreen), "$initGui", $rt_wrapFunction0(nmcg_GuiScreenAddServer_initGui), "$onGuiClosed", $rt_wrapFunction0(nmcg_GuiScreenAddServer_onGuiClosed), "$actionPerformed", $rt_wrapFunction1(nmcg_GuiScreenAddServer_actionPerformed), "$keyTyped", $rt_wrapFunction2(nmcg_GuiScreenAddServer_keyTyped), "$mouseClicked", $rt_wrapFunction3(nmcg_GuiScreenAddServer_mouseClicked), + nlevsg_GuiScreenConnectOption, "GuiScreenConnectOption", 169, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$initGui", $rt_wrapFunction0(nlevsg_GuiScreenConnectOption_initGui), "$actionPerformed", $rt_wrapFunction1(nlevsg_GuiScreenConnectOption_actionPerformed), "$drawScreen", $rt_wrapFunction3(nlevsg_GuiScreenConnectOption_drawScreen), "$mouseClicked", $rt_wrapFunction3(nlevsg_GuiScreenConnectOption_mouseClicked)]]); + $rt_metadata([nmcg_GuiScreenAddServer, "GuiScreenAddServer", 105, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$updateScreen", $rt_wrapFunction0(nmcg_GuiScreenAddServer_updateScreen), "$initGui", $rt_wrapFunction0(nmcg_GuiScreenAddServer_initGui), "$onGuiClosed", $rt_wrapFunction0(nmcg_GuiScreenAddServer_onGuiClosed), "$actionPerformed", $rt_wrapFunction1(nmcg_GuiScreenAddServer_actionPerformed), "$keyTyped", $rt_wrapFunction2(nmcg_GuiScreenAddServer_keyTyped), "$mouseClicked", $rt_wrapFunction3(nmcg_GuiScreenAddServer_mouseClicked), "$drawScreen", $rt_wrapFunction3(nmcg_GuiScreenAddServer_drawScreen)], nlevsg_GuiScreenLANConnect, "GuiScreenLANConnect", 169, nmcg_GuiScreen, [], 0, 3, 0, nlevsg_GuiScreenLANConnect_$callClinit, ["$initGui", $rt_wrapFunction0(nlevsg_GuiScreenLANConnect_initGui), "$onGuiClosed", $rt_wrapFunction0(nlevsg_GuiScreenLANConnect_onGuiClosed), "$keyTyped", $rt_wrapFunction2(nlevsg_GuiScreenLANConnect_keyTyped), "$updateScreen", $rt_wrapFunction0(nlevsg_GuiScreenLANConnect_updateScreen), "$mouseClicked", $rt_wrapFunction3(nlevsg_GuiScreenLANConnect_mouseClicked), "$drawScreen", $rt_wrapFunction3(nlevsg_GuiScreenLANConnect_drawScreen), "$actionPerformed", $rt_wrapFunction1(nlevsg_GuiScreenLANConnect_actionPerformed)], @@ -1419280,9 +1421580,9 @@ jl_Thread$start$lambda$_4_0, 0, jl_Object, [otp_PlatformRunnable], 0, 3, 0, 0, ["$run", $rt_wrapFunction0(jl_Thread$start$lambda$_4_0_run)], nlevi_PlatformApplication$FileChooserCallback, 0, jl_Object, [otj_JSObject], 3, 0, 0, 0, 0, nlevi_PlatformApplication$FileChooserCallbackImpl, 0, jl_Object, [nlevi_PlatformApplication$FileChooserCallback], 0, 0, 0, 0, ["$accept$exported$00", $rt_wrapFunction2(nlevi_PlatformApplication$FileChooserCallbackImpl_accept$exported$0)], - nlevsg_GuiScreenDemoIntegratedServerFailed, "GuiScreenDemoIntegratedServerFailed", 169, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$drawScreen", $rt_wrapFunction3(nlevsg_GuiScreenDemoIntegratedServerFailed_drawScreen)], nmcg_GuiDisconnected, "GuiDisconnected", 105, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$keyTyped", $rt_wrapFunction2(nmcg_GuiDisconnected_keyTyped), "$initGui", $rt_wrapFunction0(nmcg_GuiDisconnected_initGui), "$actionPerformed", $rt_wrapFunction1(nmcg_GuiDisconnected_actionPerformed), "$drawScreen", $rt_wrapFunction3(nmcg_GuiDisconnected_drawScreen), "$updateScreen", $rt_wrapFunction0(nmcg_GuiDisconnected_updateScreen)], nlevs_ConnectionHandshake, 0, jl_Object, [], 0, 3, 0, nlevs_ConnectionHandshake_$callClinit, 0, + nlevsg_GuiScreenDemoIntegratedServerFailed, "GuiScreenDemoIntegratedServerFailed", 169, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$drawScreen", $rt_wrapFunction3(nlevsg_GuiScreenDemoIntegratedServerFailed_drawScreen)], nlevsg_GuiShareToLan$actionPerformed$lambda$_3_0, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, 0, nlevsg_GuiScreenNoRelays, "GuiScreenNoRelays", 169, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$initGui", $rt_wrapFunction0(nlevsg_GuiScreenNoRelays_initGui), "$drawScreen", $rt_wrapFunction3(nlevsg_GuiScreenNoRelays_drawScreen), "$actionPerformed", $rt_wrapFunction1(nlevsg_GuiScreenNoRelays_actionPerformed)], nlevp_ProfileExporter, 0, jl_Object, [], 0, 3, 0, nlevp_ProfileExporter_$callClinit, 0, @@ -1419299,12 +1421599,12 @@ nmea_EntityAIPanic, 0, nmea_EntityAIBase, [], 0, 3, 0, 0, ["$shouldExecute", $rt_wrapFunction0(nmea_EntityAIPanic_shouldExecute), "$startExecuting", $rt_wrapFunction0(nmea_EntityAIPanic_startExecuting), "$continueExecuting", $rt_wrapFunction0(nmea_EntityAIPanic_continueExecuting)], nmea_EntityAIMate, 0, nmea_EntityAIBase, [], 0, 3, 0, 0, ["$shouldExecute", $rt_wrapFunction0(nmea_EntityAIMate_shouldExecute), "$continueExecuting", $rt_wrapFunction0(nmea_EntityAIMate_continueExecuting), "$resetTask", $rt_wrapFunction0(nmea_EntityAIMate_resetTask), "$updateTask", $rt_wrapFunction0(nmea_EntityAIMate_updateTask)], nmea_EntityAITempt, 0, nmea_EntityAIBase, [], 0, 3, 0, 0, ["$shouldExecute", $rt_wrapFunction0(nmea_EntityAITempt_shouldExecute), "$continueExecuting", $rt_wrapFunction0(nmea_EntityAITempt_continueExecuting), "$startExecuting", $rt_wrapFunction0(nmea_EntityAITempt_startExecuting), "$resetTask", $rt_wrapFunction0(nmea_EntityAITempt_resetTask), "$updateTask", $rt_wrapFunction0(nmea_EntityAITempt_updateTask)], - nmea_EntityAIFollowParent, 0, nmea_EntityAIBase, [], 0, 3, 0, 0, ["$shouldExecute", $rt_wrapFunction0(nmea_EntityAIFollowParent_shouldExecute), "$continueExecuting", $rt_wrapFunction0(nmea_EntityAIFollowParent_continueExecuting), "$startExecuting", $rt_wrapFunction0(nmea_EntityAIFollowParent_startExecuting), "$resetTask", $rt_wrapFunction0(nmea_EntityAIFollowParent_resetTask), "$updateTask", $rt_wrapFunction0(nmea_EntityAIFollowParent_updateTask)]]); - $rt_metadata([nmv_Village$VillageAggressor, "Village$VillageAggressor", 124, jl_Object, [], 0, 0, [nmv_Village,0,"VillageAggressor"], 0, 0, + nmea_EntityAIFollowParent, 0, nmea_EntityAIBase, [], 0, 3, 0, 0, ["$shouldExecute", $rt_wrapFunction0(nmea_EntityAIFollowParent_shouldExecute), "$continueExecuting", $rt_wrapFunction0(nmea_EntityAIFollowParent_continueExecuting), "$startExecuting", $rt_wrapFunction0(nmea_EntityAIFollowParent_startExecuting), "$resetTask", $rt_wrapFunction0(nmea_EntityAIFollowParent_resetTask), "$updateTask", $rt_wrapFunction0(nmea_EntityAIFollowParent_updateTask)], + nmv_Village$VillageAggressor, "Village$VillageAggressor", 124, jl_Object, [], 0, 0, [nmv_Village,0,"VillageAggressor"], 0, 0, nmea_EntityAIMoveTowardsTarget, 0, nmea_EntityAIBase, [], 0, 3, 0, 0, ["$shouldExecute", $rt_wrapFunction0(nmea_EntityAIMoveTowardsTarget_shouldExecute), "$continueExecuting", $rt_wrapFunction0(nmea_EntityAIMoveTowardsTarget_continueExecuting), "$resetTask", $rt_wrapFunction0(nmea_EntityAIMoveTowardsTarget_resetTask), "$startExecuting", $rt_wrapFunction0(nmea_EntityAIMoveTowardsTarget_startExecuting)], nmea_EntityAILookAtVillager, 0, nmea_EntityAIBase, [], 0, 3, 0, 0, ["$shouldExecute", $rt_wrapFunction0(nmea_EntityAILookAtVillager_shouldExecute), "$continueExecuting", $rt_wrapFunction0(nmea_EntityAILookAtVillager_continueExecuting), "$startExecuting", $rt_wrapFunction0(nmea_EntityAILookAtVillager_startExecuting), "$resetTask", $rt_wrapFunction0(nmea_EntityAILookAtVillager_resetTask), "$updateTask", $rt_wrapFunction0(nmea_EntityAILookAtVillager_updateTask)], - nmea_EntityAIDefendVillage, 0, nmea_EntityAITarget, [], 0, 3, 0, 0, ["$shouldExecute", $rt_wrapFunction0(nmea_EntityAIDefendVillage_shouldExecute), "$startExecuting", $rt_wrapFunction0(nmea_EntityAIDefendVillage_startExecuting)], - nmem_EntityIronGolem$AINearestAttackableTargetNonCreeper, "EntityIronGolem$AINearestAttackableTargetNonCreeper", 135, nmea_EntityAINearestAttackableTarget, [], 0, 0, 0, 0, 0, + nmea_EntityAIDefendVillage, 0, nmea_EntityAITarget, [], 0, 3, 0, 0, ["$shouldExecute", $rt_wrapFunction0(nmea_EntityAIDefendVillage_shouldExecute), "$startExecuting", $rt_wrapFunction0(nmea_EntityAIDefendVillage_startExecuting)]]); + $rt_metadata([nmem_EntityIronGolem$AINearestAttackableTargetNonCreeper, "EntityIronGolem$AINearestAttackableTargetNonCreeper", 135, nmea_EntityAINearestAttackableTarget, [], 0, 0, 0, 0, 0, nlevs_HandshakePacketTypes, 0, jl_Object, [], 0, 3, 0, 0, 0, nlevp_ServerSkinCache, "ServerSkinCache", 145, jl_Object, [], 0, 3, 0, nlevp_ServerSkinCache_$callClinit, 0, nlevp_ServerCapeCache, "ServerCapeCache", 145, jl_Object, [], 0, 3, 0, nlevp_ServerCapeCache_$callClinit, 0, @@ -1419312,12 +1421612,12 @@ "$closeChannel", $rt_wrapFunction1(nlevsl_LANClientNetworkManager_closeChannel), "$checkDisconnected", $rt_wrapFunction0(nlevsl_LANClientNetworkManager_checkDisconnected)], nlevi_EnumServerRateLimit, "EnumServerRateLimit", 141, jl_Enum, [], 12, 3, [0,0,0], nlevi_EnumServerRateLimit_$callClinit, 0, nlevsl_LANServerController$shareToLAN$lambda$_1_0, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(nlevsl_LANServerController$shareToLAN$lambda$_1_0_accept)], - nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_0, 0, jl_Object, [juf_Supplier], 0, 3, 0, 0, ["$get4", $rt_wrapFunction0(nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_0_get)], - nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_1, 0, jl_Object, [juf_Supplier], 0, 3, 0, 0, ["$get4", $rt_wrapFunction0(nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_1_get)], - nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_2, 0, jl_Object, [juf_Supplier], 0, 3, 0, 0, ["$get4", $rt_wrapFunction0(nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_2_get)], - nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_3, 0, jl_Object, [juf_Supplier], 0, 3, 0, 0, ["$get4", $rt_wrapFunction0(nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_3_get)], - nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_4, 0, jl_Object, [juf_Supplier], 0, 3, 0, 0, ["$get4", $rt_wrapFunction0(nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_4_get)], - nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_5, 0, jl_Object, [juf_Supplier], 0, 3, 0, 0, ["$get4", $rt_wrapFunction0(nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_18_5_get)], + nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_0, 0, jl_Object, [juf_Supplier], 0, 3, 0, 0, ["$get4", $rt_wrapFunction0(nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_0_get)], + nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_1, 0, jl_Object, [juf_Supplier], 0, 3, 0, 0, ["$get4", $rt_wrapFunction0(nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_1_get)], + nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_2, 0, jl_Object, [juf_Supplier], 0, 3, 0, 0, ["$get4", $rt_wrapFunction0(nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_2_get)], + nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_3, 0, jl_Object, [juf_Supplier], 0, 3, 0, 0, ["$get4", $rt_wrapFunction0(nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_3_get)], + nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_4, 0, jl_Object, [juf_Supplier], 0, 3, 0, 0, ["$get4", $rt_wrapFunction0(nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_4_get)], + nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_5, 0, jl_Object, [juf_Supplier], 0, 3, 0, 0, ["$get4", $rt_wrapFunction0(nmt_TileEntityBanner$EnumBannerPattern$_clinit_$lambda$_19_5_get)], jur_IntArrHash, 0, jl_Object, [], 0, 0, 0, 0, 0, nmea_EntityMinecartMobSpawner$1, 0, nmt_MobSpawnerBaseLogic, [], 0, 0, 0, 0, ["$func_98267_a", $rt_wrapFunction1(nmea_EntityMinecartMobSpawner$1_func_98267_a), "$getSpawnerWorld", $rt_wrapFunction0(nmea_EntityMinecartMobSpawner$1_getSpawnerWorld), "$getSpawnerPosition", $rt_wrapFunction0(nmea_EntityMinecartMobSpawner$1_getSpawnerPosition)], nme_EntityMinecartCommandBlock$1, 0, nmcs_CommandBlockLogic, [], 0, 0, 0, 0, ["$updateCommand", $rt_wrapFunction0(nme_EntityMinecartCommandBlock$1_updateCommand), "$func_145751_f", $rt_wrapFunction0(nme_EntityMinecartCommandBlock$1_func_145751_f), "$func_145757_a", $rt_wrapFunction1(nme_EntityMinecartCommandBlock$1_func_145757_a), "$getPosition0", $rt_wrapFunction0(nme_EntityMinecartCommandBlock$1_getPosition), "$getPositionVector", $rt_wrapFunction0(nme_EntityMinecartCommandBlock$1_getPositionVector), "$getEntityWorld", @@ -1419351,12 +1421651,12 @@ nmeb_EntityDragonPart, "EntityDragonPart", 128, nme_Entity, [], 0, 3, [0,0,0], 0, ["$entityInit", $rt_wrapFunction0(nmeb_EntityDragonPart_entityInit), "$readEntityFromNBT", $rt_wrapFunction1(nmeb_EntityDragonPart_readEntityFromNBT), "$writeEntityToNBT", $rt_wrapFunction1(nmeb_EntityDragonPart_writeEntityToNBT), "$canBeCollidedWith", $rt_wrapFunction0(nmeb_EntityDragonPart_canBeCollidedWith), "$attackEntityFrom", $rt_wrapFunction2(nmeb_EntityDragonPart_attackEntityFrom), "$isEntityEqual", $rt_wrapFunction1(nmeb_EntityDragonPart_isEntityEqual)], nmem_EntityGuardian$AIGuardianAttack, 0, nmea_EntityAIBase, [], 0, 0, 0, 0, ["$shouldExecute", $rt_wrapFunction0(nmem_EntityGuardian$AIGuardianAttack_shouldExecute), "$continueExecuting", $rt_wrapFunction0(nmem_EntityGuardian$AIGuardianAttack_continueExecuting), "$startExecuting", $rt_wrapFunction0(nmem_EntityGuardian$AIGuardianAttack_startExecuting), "$resetTask", $rt_wrapFunction0(nmem_EntityGuardian$AIGuardianAttack_resetTask), "$updateTask", $rt_wrapFunction0(nmem_EntityGuardian$AIGuardianAttack_updateTask)], nmem_EntityGuardian$GuardianTargetSelector, 0, jl_Object, [cgcb_Predicate], 0, 0, 0, 0, ["$apply0", $rt_wrapFunction1(nmem_EntityGuardian$GuardianTargetSelector_apply)], - nmem_EntityGuardian$GuardianMoveHelper, 0, nmea_EntityMoveHelper, [], 0, 0, 0, 0, ["$onUpdateMoveHelper", $rt_wrapFunction0(nmem_EntityGuardian$GuardianMoveHelper_onUpdateMoveHelper)]]); - $rt_metadata([nmea_EntityAIControlledByPlayer, "EntityAIControlledByPlayer", 130, nmea_EntityAIBase, [], 0, 3, 0, 0, ["$startExecuting", $rt_wrapFunction0(nmea_EntityAIControlledByPlayer_startExecuting), "$resetTask", $rt_wrapFunction0(nmea_EntityAIControlledByPlayer_resetTask), "$shouldExecute", $rt_wrapFunction0(nmea_EntityAIControlledByPlayer_shouldExecute), "$updateTask", $rt_wrapFunction0(nmea_EntityAIControlledByPlayer_updateTask)], + nmem_EntityGuardian$GuardianMoveHelper, 0, nmea_EntityMoveHelper, [], 0, 0, 0, 0, ["$onUpdateMoveHelper", $rt_wrapFunction0(nmem_EntityGuardian$GuardianMoveHelper_onUpdateMoveHelper)], + nmea_EntityAIControlledByPlayer, "EntityAIControlledByPlayer", 130, nmea_EntityAIBase, [], 0, 3, 0, 0, ["$startExecuting", $rt_wrapFunction0(nmea_EntityAIControlledByPlayer_startExecuting), "$resetTask", $rt_wrapFunction0(nmea_EntityAIControlledByPlayer_resetTask), "$shouldExecute", $rt_wrapFunction0(nmea_EntityAIControlledByPlayer_shouldExecute), "$updateTask", $rt_wrapFunction0(nmea_EntityAIControlledByPlayer_updateTask)], nmep_EntitySheep$1, "EntitySheep$1", 133, nmi_Container, [], 0, 0, [nmep_EntitySheep,0,0], 0, 0, nmea_EntityAIEatGrass, 0, nmea_EntityAIBase, [], 0, 3, 0, nmea_EntityAIEatGrass_$callClinit, ["$shouldExecute", $rt_wrapFunction0(nmea_EntityAIEatGrass_shouldExecute), "$startExecuting", $rt_wrapFunction0(nmea_EntityAIEatGrass_startExecuting), "$resetTask", $rt_wrapFunction0(nmea_EntityAIEatGrass_resetTask), "$continueExecuting", $rt_wrapFunction0(nmea_EntityAIEatGrass_continueExecuting), "$updateTask", $rt_wrapFunction0(nmea_EntityAIEatGrass_updateTask)], - nmep_EntitySquid$AIMoveRandom, 0, nmea_EntityAIBase, [], 0, 0, 0, 0, ["$shouldExecute", $rt_wrapFunction0(nmep_EntitySquid$AIMoveRandom_shouldExecute), "$updateTask", $rt_wrapFunction0(nmep_EntitySquid$AIMoveRandom_updateTask)], - nmea_EntityAIFollowOwner, 0, nmea_EntityAIBase, [], 0, 3, 0, 0, ["$shouldExecute", $rt_wrapFunction0(nmea_EntityAIFollowOwner_shouldExecute), "$continueExecuting", $rt_wrapFunction0(nmea_EntityAIFollowOwner_continueExecuting), "$startExecuting", $rt_wrapFunction0(nmea_EntityAIFollowOwner_startExecuting), "$resetTask", $rt_wrapFunction0(nmea_EntityAIFollowOwner_resetTask), "$updateTask", $rt_wrapFunction0(nmea_EntityAIFollowOwner_updateTask)], + nmep_EntitySquid$AIMoveRandom, 0, nmea_EntityAIBase, [], 0, 0, 0, 0, ["$shouldExecute", $rt_wrapFunction0(nmep_EntitySquid$AIMoveRandom_shouldExecute), "$updateTask", $rt_wrapFunction0(nmep_EntitySquid$AIMoveRandom_updateTask)]]); + $rt_metadata([nmea_EntityAIFollowOwner, 0, nmea_EntityAIBase, [], 0, 3, 0, 0, ["$shouldExecute", $rt_wrapFunction0(nmea_EntityAIFollowOwner_shouldExecute), "$continueExecuting", $rt_wrapFunction0(nmea_EntityAIFollowOwner_continueExecuting), "$startExecuting", $rt_wrapFunction0(nmea_EntityAIFollowOwner_startExecuting), "$resetTask", $rt_wrapFunction0(nmea_EntityAIFollowOwner_resetTask), "$updateTask", $rt_wrapFunction0(nmea_EntityAIFollowOwner_updateTask)], nmea_EntityAIBeg, 0, nmea_EntityAIBase, [], 0, 3, 0, 0, ["$shouldExecute", $rt_wrapFunction0(nmea_EntityAIBeg_shouldExecute), "$continueExecuting", $rt_wrapFunction0(nmea_EntityAIBeg_continueExecuting), "$startExecuting", $rt_wrapFunction0(nmea_EntityAIBeg_startExecuting), "$resetTask", $rt_wrapFunction0(nmea_EntityAIBeg_resetTask), "$updateTask", $rt_wrapFunction0(nmea_EntityAIBeg_updateTask)], nmea_EntityAIOwnerHurtByTarget, 0, nmea_EntityAITarget, [], 0, 3, 0, 0, ["$shouldExecute", $rt_wrapFunction0(nmea_EntityAIOwnerHurtByTarget_shouldExecute), "$startExecuting", $rt_wrapFunction0(nmea_EntityAIOwnerHurtByTarget_startExecuting)], nmea_EntityAIOwnerHurtTarget, 0, nmea_EntityAITarget, [], 0, 3, 0, 0, ["$shouldExecute", $rt_wrapFunction0(nmea_EntityAIOwnerHurtTarget_shouldExecute), "$startExecuting", $rt_wrapFunction0(nmea_EntityAIOwnerHurtTarget_startExecuting)], @@ -1419401,40 +1421701,40 @@ nmea_EntityAIAvoidEntity$1, "EntityAIAvoidEntity$1", 130, jl_Object, [cgcb_Predicate], 0, 0, [nmea_EntityAIAvoidEntity,0,0], 0, ["$apply0", $rt_wrapFunction1(nmea_EntityAIAvoidEntity$1_apply)], nmbsp_BlockStateHelper, 0, jl_Object, [cgcb_Predicate], 0, 3, 0, 0, ["$apply0", $rt_wrapFunction1(nmbsp_BlockStateHelper_apply0)], cgcb_Predicates$IsEqualToPredicate, "Predicates$IsEqualToPredicate", 4, jl_Object, [cgcb_Predicate, ji_Serializable], 0, 0, [cgcb_Predicates,0,"IsEqualToPredicate"], 0, ["$apply0", $rt_wrapFunction1(cgcb_Predicates$IsEqualToPredicate_apply), "$hashCode0", $rt_wrapFunction0(cgcb_Predicates$IsEqualToPredicate_hashCode), "$equals0", $rt_wrapFunction1(cgcb_Predicates$IsEqualToPredicate_equals), "$toString", $rt_wrapFunction0(cgcb_Predicates$IsEqualToPredicate_toString)], - nmv_MerchantRecipe, "MerchantRecipe", 124, jl_Object, [], 0, 3, [0,0,0], 0, 0]); - $rt_metadata([nmcp_EntityRainFX, "EntityRainFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$onUpdate", $rt_wrapFunction0(nmcp_EntityRainFX_onUpdate)], - nmcp_EntitySplashFX, "EntitySplashFX", 104, nmcp_EntityRainFX, [], 0, 3, [0,0,0], 0, 0, - nlevsrp_ICEServerSet, 0, jl_Object, [], 0, 3, 0, 0, 0, - nmcp_EntityBubbleFX, "EntityBubbleFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$onUpdate", $rt_wrapFunction0(nmcp_EntityBubbleFX_onUpdate)], - nmcp_EntityCrit2FX, "EntityCrit2FX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityCrit2FX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$onUpdate", $rt_wrapFunction0(nmcp_EntityCrit2FX_onUpdate)], + nmv_MerchantRecipe, "MerchantRecipe", 124, jl_Object, [], 0, 3, [0,0,0], 0, 0, + nmcp_EntityReddustFX, "EntityReddustFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityReddustFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$onUpdate", $rt_wrapFunction0(nmcp_EntityReddustFX_onUpdate)], + nlevsr_RelayQuery, 0, jl_Object, [], 3, 3, 0, 0, 0, + nmcp_Barrier, "Barrier", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$getFXLayer", $rt_wrapFunction0(nmcp_Barrier_getFXLayer), "$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_Barrier_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$renderAccelerated", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { return nmcp_Barrier_renderAccelerated(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }], + nmcp_EntitySnowShovelFX, "EntitySnowShovelFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntitySnowShovelFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$onUpdate", $rt_wrapFunction0(nmcp_EntitySnowShovelFX_onUpdate)]]); + $rt_metadata([nmcp_EntityBlockDustFX, "EntityBlockDustFX", 104, nmcp_EntityDiggingFX, [], 0, 3, [0,0,0], 0, 0, + nmcp_EntityExplodeFX, "EntityExplodeFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$onUpdate", $rt_wrapFunction0(nmcp_EntityExplodeFX_onUpdate)], + nmcp_EntitySpellParticleFX, "EntitySpellParticleFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], nmcp_EntitySpellParticleFX_$callClinit, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntitySpellParticleFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$onUpdate", $rt_wrapFunction0(nmcp_EntitySpellParticleFX_onUpdate)], nmcp_EntityHugeExplodeFX, "EntityHugeExplodeFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityHugeExplodeFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$onUpdate", $rt_wrapFunction0(nmcp_EntityHugeExplodeFX_onUpdate), "$getFXLayer", $rt_wrapFunction0(nmcp_EntityHugeExplodeFX_getFXLayer)], + nmcp_EntitySuspendFX, "EntitySuspendFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$onUpdate", $rt_wrapFunction0(nmcp_EntitySuspendFX_onUpdate)], + nmcp_EntityAuraFX, "EntityAuraFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$onUpdate", $rt_wrapFunction0(nmcp_EntityAuraFX_onUpdate)], + nmcp_EntityHeartFX, "EntityHeartFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityHeartFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$onUpdate", $rt_wrapFunction0(nmcp_EntityHeartFX_onUpdate)], + nmcp_MobAppearance, "MobAppearance", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$getFXLayer", $rt_wrapFunction0(nmcp_MobAppearance_getFXLayer), "$onUpdate", $rt_wrapFunction0(nmcp_MobAppearance_onUpdate), "$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_MobAppearance_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }], + nmcp_EntityCrit2FX, "EntityCrit2FX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityCrit2FX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$onUpdate", $rt_wrapFunction0(nmcp_EntityCrit2FX_onUpdate)], + nmcp_EntityCloudFX, "EntityCloudFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityCloudFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$onUpdate", $rt_wrapFunction0(nmcp_EntityCloudFX_onUpdate)], + nmcp_EntityBubbleFX, "EntityBubbleFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$onUpdate", $rt_wrapFunction0(nmcp_EntityBubbleFX_onUpdate)], + nmcp_EntityFlameFX, "EntityFlameFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityFlameFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$getBrightnessForRender", $rt_wrapFunction1(nmcp_EntityFlameFX_getBrightnessForRender), "$getBrightness", $rt_wrapFunction1(nmcp_EntityFlameFX_getBrightness), "$onUpdate", $rt_wrapFunction0(nmcp_EntityFlameFX_onUpdate)], + nmcp_EntityDropParticleFX, "EntityDropParticleFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$getBrightnessForRender", $rt_wrapFunction1(nmcp_EntityDropParticleFX_getBrightnessForRender), "$getBrightness", $rt_wrapFunction1(nmcp_EntityDropParticleFX_getBrightness), "$onUpdate", $rt_wrapFunction0(nmcp_EntityDropParticleFX_onUpdate)], + nlevsrp_ICEServerSet, 0, jl_Object, [], 0, 3, 0, 0, 0, + nmcp_EntityRainFX, "EntityRainFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$onUpdate", $rt_wrapFunction0(nmcp_EntityRainFX_onUpdate)], + nmcp_EntityFishWakeFX, "EntityFishWakeFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$onUpdate", $rt_wrapFunction0(nmcp_EntityFishWakeFX_onUpdate)], + nlevi_OpenGLObjects, 0, jl_Object, [], 0, 0, 0, 0, 0, + nmcp_EntityFirework, 0, jl_Object, [], 0, 3, 0, 0, 0, + nmcp_EntityFootStepFX, "EntityFootStepFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], nmcp_EntityFootStepFX_$callClinit, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityFootStepFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$onUpdate", $rt_wrapFunction0(nmcp_EntityFootStepFX_onUpdate), "$getFXLayer", $rt_wrapFunction0(nmcp_EntityFootStepFX_getFXLayer)], nmcp_EntityBreakingFX, "EntityBreakingFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$getFXLayer", $rt_wrapFunction0(nmcp_EntityBreakingFX_getFXLayer), "$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityBreakingFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$renderAccelerated", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { return nmcp_EntityBreakingFX_renderAccelerated(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }], - nmcp_EntityFlameFX, "EntityFlameFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityFlameFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$getBrightnessForRender", $rt_wrapFunction1(nmcp_EntityFlameFX_getBrightnessForRender), "$getBrightness", $rt_wrapFunction1(nmcp_EntityFlameFX_getBrightness), "$onUpdate", $rt_wrapFunction0(nmcp_EntityFlameFX_onUpdate)], - nmcp_EntitySmokeFX, "EntitySmokeFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntitySmokeFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$onUpdate", $rt_wrapFunction0(nmcp_EntitySmokeFX_onUpdate)], - nmcp_EntitySpellParticleFX, "EntitySpellParticleFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], nmcp_EntitySpellParticleFX_$callClinit, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntitySpellParticleFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$onUpdate", $rt_wrapFunction0(nmcp_EntitySpellParticleFX_onUpdate)], - nmcp_EntityDropParticleFX, "EntityDropParticleFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$getBrightnessForRender", $rt_wrapFunction1(nmcp_EntityDropParticleFX_getBrightnessForRender), "$getBrightness", $rt_wrapFunction1(nmcp_EntityDropParticleFX_getBrightness), "$onUpdate", $rt_wrapFunction0(nmcp_EntityDropParticleFX_onUpdate)], - nmcp_EntityLavaFX, "EntityLavaFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$getBrightnessForRender", $rt_wrapFunction1(nmcp_EntityLavaFX_getBrightnessForRender), "$getBrightness", $rt_wrapFunction1(nmcp_EntityLavaFX_getBrightness), "$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityLavaFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$onUpdate", $rt_wrapFunction0(nmcp_EntityLavaFX_onUpdate)], - nmcp_EntitySnowShovelFX, "EntitySnowShovelFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntitySnowShovelFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$onUpdate", $rt_wrapFunction0(nmcp_EntitySnowShovelFX_onUpdate)], - nmcp_Barrier, "Barrier", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$getFXLayer", $rt_wrapFunction0(nmcp_Barrier_getFXLayer), "$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_Barrier_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$renderAccelerated", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { return nmcp_Barrier_renderAccelerated(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }], - nmcp_MobAppearance, "MobAppearance", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$getFXLayer", $rt_wrapFunction0(nmcp_MobAppearance_getFXLayer), "$onUpdate", $rt_wrapFunction0(nmcp_MobAppearance_onUpdate), "$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_MobAppearance_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }], - nmcp_EntityHeartFX, "EntityHeartFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityHeartFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$onUpdate", $rt_wrapFunction0(nmcp_EntityHeartFX_onUpdate)], - nlevsr_RelayQuery, 0, jl_Object, [], 3, 3, 0, 0, 0, - nmcp_EntityCloudFX, "EntityCloudFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityCloudFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$onUpdate", $rt_wrapFunction0(nmcp_EntityCloudFX_onUpdate)], nmcp_EntityEnchantmentTableParticleFX, "EntityEnchantmentTableParticleFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$getBrightnessForRender", $rt_wrapFunction1(nmcp_EntityEnchantmentTableParticleFX_getBrightnessForRender), "$getBrightness", $rt_wrapFunction1(nmcp_EntityEnchantmentTableParticleFX_getBrightness), "$onUpdate", $rt_wrapFunction0(nmcp_EntityEnchantmentTableParticleFX_onUpdate)], - nmcp_EntityExplodeFX, "EntityExplodeFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$onUpdate", $rt_wrapFunction0(nmcp_EntityExplodeFX_onUpdate)], - nmcp_EntityCritFX, "EntityCritFX", 104, nmcp_EntitySmokeFX, [], 0, 3, [0,0,0], 0, 0, - nmcp_EntityBlockDustFX, "EntityBlockDustFX", 104, nmcp_EntityDiggingFX, [], 0, 3, [0,0,0], 0, 0, - nmcp_EntitySuspendFX, "EntitySuspendFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$onUpdate", $rt_wrapFunction0(nmcp_EntitySuspendFX_onUpdate)], - nlevi_OpenGLObjects, 0, jl_Object, [], 0, 0, 0, 0, 0, - nmcp_EntityFootStepFX, "EntityFootStepFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], nmcp_EntityFootStepFX_$callClinit, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityFootStepFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$onUpdate", $rt_wrapFunction0(nmcp_EntityFootStepFX_onUpdate), "$getFXLayer", $rt_wrapFunction0(nmcp_EntityFootStepFX_getFXLayer)], - nmcp_EntityReddustFX, "EntityReddustFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityReddustFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$onUpdate", $rt_wrapFunction0(nmcp_EntityReddustFX_onUpdate)], - nmcp_EntityFishWakeFX, "EntityFishWakeFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$onUpdate", $rt_wrapFunction0(nmcp_EntityFishWakeFX_onUpdate)], - nmcp_EntityLargeExplodeFX, "EntityLargeExplodeFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], nmcp_EntityLargeExplodeFX_$callClinit, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityLargeExplodeFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$getBrightnessForRender", $rt_wrapFunction1(nmcp_EntityLargeExplodeFX_getBrightnessForRender), "$onUpdate", $rt_wrapFunction0(nmcp_EntityLargeExplodeFX_onUpdate), "$getFXLayer", $rt_wrapFunction0(nmcp_EntityLargeExplodeFX_getFXLayer)], + nmcp_EntitySmokeFX, "EntitySmokeFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntitySmokeFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$onUpdate", $rt_wrapFunction0(nmcp_EntitySmokeFX_onUpdate)], nmcp_EntityNoteFX, "EntityNoteFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityNoteFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$onUpdate", $rt_wrapFunction0(nmcp_EntityNoteFX_onUpdate)], - nmcp_EntityAuraFX, "EntityAuraFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$onUpdate", $rt_wrapFunction0(nmcp_EntityAuraFX_onUpdate)], + nmcp_EntityLavaFX, "EntityLavaFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$getBrightnessForRender", $rt_wrapFunction1(nmcp_EntityLavaFX_getBrightnessForRender), "$getBrightness", $rt_wrapFunction1(nmcp_EntityLavaFX_getBrightness), "$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityLavaFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$onUpdate", $rt_wrapFunction0(nmcp_EntityLavaFX_onUpdate)], nmcp_EntityPortalFX, "EntityPortalFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], 0, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityPortalFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$getBrightnessForRender", $rt_wrapFunction1(nmcp_EntityPortalFX_getBrightnessForRender), "$getBrightness", $rt_wrapFunction1(nmcp_EntityPortalFX_getBrightness), "$onUpdate", $rt_wrapFunction0(nmcp_EntityPortalFX_onUpdate)], - nmcp_EntityFirework, 0, jl_Object, [], 0, 3, 0, 0, 0, + nmcp_EntitySplashFX, "EntitySplashFX", 104, nmcp_EntityRainFX, [], 0, 3, [0,0,0], 0, 0, + nmcp_EntityLargeExplodeFX, "EntityLargeExplodeFX", 104, nmcp_EntityFX, [], 0, 3, [0,0,0], nmcp_EntityLargeExplodeFX_$callClinit, ["$renderParticle", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nmcp_EntityLargeExplodeFX_renderParticle(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$getBrightnessForRender", $rt_wrapFunction1(nmcp_EntityLargeExplodeFX_getBrightnessForRender), "$onUpdate", $rt_wrapFunction0(nmcp_EntityLargeExplodeFX_onUpdate), "$getFXLayer", $rt_wrapFunction0(nmcp_EntityLargeExplodeFX_getFXLayer)], + nmcp_EntityCritFX, "EntityCritFX", 104, nmcp_EntitySmokeFX, [], 0, 3, [0,0,0], 0, 0, nmwgs_StructureBoundingBox, "StructureBoundingBox", 79, jl_Object, [], 0, 3, [0,0,0], 0, ["$toString", $rt_wrapFunction0(nmwgs_StructureBoundingBox_toString)], ju_IdentityHashMap$AbstractMapIterator, "IdentityHashMap$AbstractMapIterator", 8, jl_Object, [], 0, 0, 0, 0, ["$hasNext", $rt_wrapFunction0(ju_IdentityHashMap$AbstractMapIterator_hasNext), "$remove2", $rt_wrapFunction0(ju_IdentityHashMap$AbstractMapIterator_remove)], ju_IdentityHashMap$EntryIterator, 0, ju_IdentityHashMap$AbstractMapIterator, [ju_Iterator], 0, 0, 0, 0, 0, @@ -1419454,16 +1421754,16 @@ var_5) { return nmp_PathNavigateSwimmer_isDirectPathBetweenPoints(this, var_1, var_2, var_3, var_4, var_5); }], cgcc_DenseImmutableTable$ImmutableArrayMap$1, "DenseImmutableTable$ImmutableArrayMap$1", 3, cgcc_ImmutableMapEntrySet, [], 0, 0, [cgcc_DenseImmutableTable$ImmutableArrayMap,0,0], 0, ["$map7", $rt_wrapFunction0(cgcc_DenseImmutableTable$ImmutableArrayMap$1_map), "$iterator0", $rt_wrapFunction0(cgcc_DenseImmutableTable$ImmutableArrayMap$1_iterator), "$iterator", $rt_wrapFunction0(cgcc_DenseImmutableTable$ImmutableArrayMap$1_iterator0)], nmcg_GuiSelectWorld$List, 0, nmcg_GuiSlot, [], 0, 0, 0, 0, ["$getSize0", $rt_wrapFunction0(nmcg_GuiSelectWorld$List_getSize), "$elementClicked", $rt_wrapFunction4(nmcg_GuiSelectWorld$List_elementClicked), "$isSelected", $rt_wrapFunction1(nmcg_GuiSelectWorld$List_isSelected), "$getContentHeight", $rt_wrapFunction0(nmcg_GuiSelectWorld$List_getContentHeight), "$drawBackground0", $rt_wrapFunction0(nmcg_GuiSelectWorld$List_drawBackground), "$drawSlot0", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcg_GuiSelectWorld$List_drawSlot(this, - var_1, var_2, var_3, var_4, var_5, var_6); }]]); - $rt_metadata([nmcg_GuiSelectWorld$updateScreen$lambda$_2_0, 0, jl_Object, [juf_BooleanSupplier], 0, 3, 0, 0, ["$getAsBoolean", $rt_wrapFunction0(nmcg_GuiSelectWorld$updateScreen$lambda$_2_0_getAsBoolean)], + var_1, var_2, var_3, var_4, var_5, var_6); }], + nmcg_GuiSelectWorld$updateScreen$lambda$_2_0, 0, jl_Object, [juf_BooleanSupplier], 0, 3, 0, 0, ["$getAsBoolean", $rt_wrapFunction0(nmcg_GuiSelectWorld$updateScreen$lambda$_2_0_getAsBoolean)], nmcg_GuiSelectWorld$updateScreen$lambda$_2_1, 0, jl_Object, [juf_BiConsumer], 0, 3, 0, 0, ["$accept0", $rt_wrapFunction2(nmcg_GuiSelectWorld$updateScreen$lambda$_2_1_accept)], - nmem_EntitySpider$GroupData, 0, jl_Object, [nme_IEntityLivingData], 0, 3, 0, 0, 0, nmep_EntityRabbit$RabbitTypeData, 0, jl_Object, [nme_IEntityLivingData], 0, 3, 0, 0, 0, - nmep_EntityHorse$GroupData, 0, jl_Object, [nme_IEntityLivingData], 0, 3, 0, 0, 0, + nmem_EntitySpider$GroupData, 0, jl_Object, [nme_IEntityLivingData], 0, 3, 0, 0, 0]); + $rt_metadata([nmep_EntityHorse$GroupData, 0, jl_Object, [nme_IEntityLivingData], 0, 3, 0, 0, 0, + nlevsg_GuiScreenLANConnecting, "GuiScreenLANConnecting", 169, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$doesGuiPauseGame", $rt_wrapFunction0(nlevsg_GuiScreenLANConnecting_doesGuiPauseGame), "$updateScreen", $rt_wrapFunction0(nlevsg_GuiScreenLANConnecting_updateScreen), "$drawScreen", $rt_wrapFunction3(nlevsg_GuiScreenLANConnecting_drawScreen)], nlevsg_GuiScreenCreateWorldSelection, "GuiScreenCreateWorldSelection", 169, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$initGui", $rt_wrapFunction0(nlevsg_GuiScreenCreateWorldSelection_initGui), "$updateScreen", $rt_wrapFunction0(nlevsg_GuiScreenCreateWorldSelection_updateScreen), "$drawScreen", $rt_wrapFunction3(nlevsg_GuiScreenCreateWorldSelection_drawScreen), "$actionPerformed", $rt_wrapFunction1(nlevsg_GuiScreenCreateWorldSelection_actionPerformed)], nmcg_GuiRenameWorld, "GuiRenameWorld", 105, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$updateScreen", $rt_wrapFunction0(nmcg_GuiRenameWorld_updateScreen), "$initGui", $rt_wrapFunction0(nmcg_GuiRenameWorld_initGui), "$onGuiClosed", $rt_wrapFunction0(nmcg_GuiRenameWorld_onGuiClosed), "$actionPerformed", $rt_wrapFunction1(nmcg_GuiRenameWorld_actionPerformed), "$keyTyped", $rt_wrapFunction2(nmcg_GuiRenameWorld_keyTyped), "$mouseClicked", $rt_wrapFunction3(nmcg_GuiRenameWorld_mouseClicked), "$drawScreen", $rt_wrapFunction3(nmcg_GuiRenameWorld_drawScreen)], nlevsg_GuiScreenBackupWorldSelection, "GuiScreenBackupWorldSelection", 169, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$initGui", $rt_wrapFunction0(nlevsg_GuiScreenBackupWorldSelection_initGui), "$drawScreen", $rt_wrapFunction3(nlevsg_GuiScreenBackupWorldSelection_drawScreen), "$actionPerformed", $rt_wrapFunction1(nlevsg_GuiScreenBackupWorldSelection_actionPerformed), "$confirmClicked", $rt_wrapFunction2(nlevsg_GuiScreenBackupWorldSelection_confirmClicked)], - nlevsg_GuiScreenLANConnecting, "GuiScreenLANConnecting", 169, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$doesGuiPauseGame", $rt_wrapFunction0(nlevsg_GuiScreenLANConnecting_doesGuiPauseGame), "$updateScreen", $rt_wrapFunction0(nlevsg_GuiScreenLANConnecting_updateScreen), "$drawScreen", $rt_wrapFunction3(nlevsg_GuiScreenLANConnecting_drawScreen)], nmu_EntityDamageSource, 0, nmu_DamageSource, [], 0, 3, 0, 0, ["$getEntity", $rt_wrapFunction0(nmu_EntityDamageSource_getEntity), "$getDeathMessage0", $rt_wrapFunction1(nmu_EntityDamageSource_getDeathMessage), "$isDifficultyScaled", $rt_wrapFunction0(nmu_EntityDamageSource_isDifficultyScaled)], nmu_EntityDamageSourceIndirect, 0, nmu_EntityDamageSource, [], 0, 3, 0, 0, ["$getSourceOfDamage", $rt_wrapFunction0(nmu_EntityDamageSourceIndirect_getSourceOfDamage), "$getEntity", $rt_wrapFunction0(nmu_EntityDamageSourceIndirect_getEntity), "$getDeathMessage0", $rt_wrapFunction1(nmu_EntityDamageSourceIndirect_getDeathMessage)], nmi_InventoryHelper, 0, jl_Object, [], 0, 3, 0, nmi_InventoryHelper_$callClinit, 0, @@ -1419502,20 +1421802,20 @@ ju_TreeMap$EntrySet, 0, ju_AbstractSet, [ju_SequencedSet], 0, 0, 0, 0, ["$iterator", $rt_wrapFunction0(ju_TreeMap$EntrySet_iterator)], oacl_ObjectUtils, 0, jl_Object, [], 0, 3, 0, 0, 0, nmei_EntityPainting$EnumArt, "EntityPainting$EnumArt", 127, jl_Enum, [], 12, 3, [nmei_EntityPainting,0,"EnumArt"], nmei_EntityPainting$EnumArt_$callClinit, 0, - nlevp_ProfileImporter$importProfileAndSettings$lambda$_6_0, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(nlevp_ProfileImporter$importProfileAndSettings$lambda$_6_0_accept)], cgcc_ComparisonChain, 0, jl_Object, [], 1, 3, 0, cgcc_ComparisonChain_$callClinit, 0, - nmcrbm_ItemCameraTransforms$1, 0, jl_Object, [], 32, 0, 0, nmcrbm_ItemCameraTransforms$1_$callClinit, 0, + nlevp_ProfileImporter$importProfileAndSettings$lambda$_6_0, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(nlevp_ProfileImporter$importProfileAndSettings$lambda$_6_0_accept)], nlevu_GuiUpdateVersionSlot$refresh$lambda$_1_0, 0, jl_Object, [ju_Comparator], 0, 3, 0, 0, ["$compare", $rt_wrapFunction2(nlevu_GuiUpdateVersionSlot$refresh$lambda$_1_0_compare)], - nmwp_NodeProcessor, 0, jl_Object, [], 1, 3, 0, 0, 0]); - $rt_metadata([nmwp_WalkNodeProcessor, 0, nmwp_NodeProcessor, [], 0, 3, 0, 0, ["$initProcessor", $rt_wrapFunction2(nmwp_WalkNodeProcessor_initProcessor), "$postProcess", $rt_wrapFunction0(nmwp_WalkNodeProcessor_postProcess), "$getPathPointTo", $rt_wrapFunction1(nmwp_WalkNodeProcessor_getPathPointTo), "$getPathPointToCoords", $rt_wrapFunction4(nmwp_WalkNodeProcessor_getPathPointToCoords), "$findPathOptions", function(var_1, var_2, var_3, var_4, var_5) { return nmwp_WalkNodeProcessor_findPathOptions(this, var_1, - var_2, var_3, var_4, var_5); }], + nmwp_NodeProcessor, 0, jl_Object, [], 1, 3, 0, 0, 0, + nmwp_WalkNodeProcessor, 0, nmwp_NodeProcessor, [], 0, 3, 0, 0, ["$initProcessor", $rt_wrapFunction2(nmwp_WalkNodeProcessor_initProcessor), "$postProcess", $rt_wrapFunction0(nmwp_WalkNodeProcessor_postProcess), "$getPathPointTo", $rt_wrapFunction1(nmwp_WalkNodeProcessor_getPathPointTo), "$getPathPointToCoords", $rt_wrapFunction4(nmwp_WalkNodeProcessor_getPathPointToCoords), "$findPathOptions", function(var_1, var_2, var_3, var_4, var_5) { return nmwp_WalkNodeProcessor_findPathOptions(this, var_1, var_2, var_3, + var_4, var_5); }], nmp_PathFinder, 0, jl_Object, [], 0, 3, 0, 0, 0, nmcg_GuiLockIconButton$Icon, "GuiLockIconButton$Icon", 105, jl_Enum, [], 12, 0, [nmcg_GuiLockIconButton,0,"Icon"], nmcg_GuiLockIconButton$Icon_$callClinit, 0, nmcg_GuiKeyBindingList, 0, nmcg_GuiListExtended, [], 0, 3, 0, 0, ["$getSize0", $rt_wrapFunction0(nmcg_GuiKeyBindingList_getSize), "$getListEntry", $rt_wrapFunction1(nmcg_GuiKeyBindingList_getListEntry), "$getScrollBarX", $rt_wrapFunction0(nmcg_GuiKeyBindingList_getScrollBarX), "$getListWidth", $rt_wrapFunction0(nmcg_GuiKeyBindingList_getListWidth)], - nlevp_GuiPasswordTextField, 0, nmcg_GuiTextField, [], 0, 3, 0, 0, 0, - nPs_IOptionControl, 0, jl_Object, [], 3, 3, 0, 0, 0, - nPs_GuiOptionSliderOF, "GuiOptionSliderOF", 174, nmcg_GuiOptionSlider, [nPs_IOptionControl], 0, 3, [0,0,0], 0, 0, + nPs_IOptionControl, 0, jl_Object, [], 3, 3, 0, 0, 0]); + $rt_metadata([nPs_GuiOptionSliderOF, "GuiOptionSliderOF", 174, nmcg_GuiOptionSlider, [nPs_IOptionControl], 0, 3, [0,0,0], 0, 0, nPs_GuiOptionButtonOF, "GuiOptionButtonOF", 174, nmcg_GuiOptionButton, [nPs_IOptionControl], 0, 3, [0,0,0], 0, 0, + nmcg_GuiCustomizeSkin$ButtonPart, "GuiCustomizeSkin$ButtonPart", 105, nmcg_GuiButton, [], 0, 0, [nmcg_GuiCustomizeSkin,0,"ButtonPart"], 0, 0, + nlevp_GuiPasswordTextField, 0, nmcg_GuiTextField, [], 0, 3, 0, 0, 0, nmcg_GuiScreenOptionsSounds$Button, "GuiScreenOptionsSounds$Button", 105, nmcg_GuiButton, [], 0, 0, [nmcg_GuiScreenOptionsSounds,0,"Button"], 0, ["$getHoverState", $rt_wrapFunction1(nmcg_GuiScreenOptionsSounds$Button_getHoverState), "$mouseDragged", $rt_wrapFunction3(nmcg_GuiScreenOptionsSounds$Button_mouseDragged), "$mousePressed", $rt_wrapFunction3(nmcg_GuiScreenOptionsSounds$Button_mousePressed), "$playPressSound", $rt_wrapFunction1(nmcg_GuiScreenOptionsSounds$Button_playPressSound), "$mouseReleased", $rt_wrapFunction2(nmcg_GuiScreenOptionsSounds$Button_mouseReleased)], nmcg_GuiResourcePackList, 0, nmcg_GuiListExtended, [], 1, 3, 0, 0, ["$drawListHeader", $rt_wrapFunction3(nmcg_GuiResourcePackList_drawListHeader), "$getSize0", $rt_wrapFunction0(nmcg_GuiResourcePackList_getSize), "$getListWidth", $rt_wrapFunction0(nmcg_GuiResourcePackList_getListWidth), "$getScrollBarX", $rt_wrapFunction0(nmcg_GuiResourcePackList_getScrollBarX), "$getListEntry", $rt_wrapFunction1(nmcg_GuiResourcePackList_getListEntry0)], @@ -1419527,16 +1421827,15 @@ nmcr_ResourcePackListEntryFound, "ResourcePackListEntryFound", 100, nmcr_ResourcePackListEntry, [], 0, 3, [0,0,0], 0, ["$func_148313_c", $rt_wrapFunction0(nmcr_ResourcePackListEntryFound_func_148313_c), "$func_183019_a", $rt_wrapFunction0(nmcr_ResourcePackListEntryFound_func_183019_a), "$func_148311_a", $rt_wrapFunction0(nmcr_ResourcePackListEntryFound_func_148311_a), "$func_148312_b", $rt_wrapFunction0(nmcr_ResourcePackListEntryFound_func_148312_b)], nmcr_ResourcePackListEntryDefault, "ResourcePackListEntryDefault", 100, nmcr_ResourcePackListEntry, [], 0, 3, [0,0,0], nmcr_ResourcePackListEntryDefault_$callClinit, ["$func_183019_a", $rt_wrapFunction0(nmcr_ResourcePackListEntryDefault_func_183019_a), "$func_148311_a", $rt_wrapFunction0(nmcr_ResourcePackListEntryDefault_func_148311_a), "$func_148309_e", $rt_wrapFunction0(nmcr_ResourcePackListEntryDefault_func_148309_e), "$func_148308_f", $rt_wrapFunction0(nmcr_ResourcePackListEntryDefault_func_148308_f), "$func_148314_g", $rt_wrapFunction0(nmcr_ResourcePackListEntryDefault_func_148314_g), "$func_148307_h", $rt_wrapFunction0(nmcr_ResourcePackListEntryDefault_func_148307_h), "$func_148312_b", $rt_wrapFunction0(nmcr_ResourcePackListEntryDefault_func_148312_b), "$func_148313_c", $rt_wrapFunction0(nmcr_ResourcePackListEntryDefault_func_148313_c), "$func_148310_d", $rt_wrapFunction0(nmcr_ResourcePackListEntryDefault_func_148310_d)], - nmcg_GuiCustomizeSkin$ButtonPart, "GuiCustomizeSkin$ButtonPart", 105, nmcg_GuiButton, [], 0, 0, [nmcg_GuiCustomizeSkin,0,"ButtonPart"], 0, 0, + nmcg_GuiScreenServerList, "GuiScreenServerList", 105, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$updateScreen", $rt_wrapFunction0(nmcg_GuiScreenServerList_updateScreen), "$initGui", $rt_wrapFunction0(nmcg_GuiScreenServerList_initGui), "$onGuiClosed", $rt_wrapFunction0(nmcg_GuiScreenServerList_onGuiClosed), "$actionPerformed", $rt_wrapFunction1(nmcg_GuiScreenServerList_actionPerformed), "$keyTyped", $rt_wrapFunction2(nmcg_GuiScreenServerList_keyTyped), "$mouseClicked", $rt_wrapFunction3(nmcg_GuiScreenServerList_mouseClicked), + "$drawScreen", $rt_wrapFunction3(nmcg_GuiScreenServerList_drawScreen)], + nPs_GuiShadowExperimental, "GuiShadowExperimental", 174, nmcg_GuiScreen, [], 0, 3, 0, nPs_GuiShadowExperimental_$callClinit, ["$initGui", $rt_wrapFunction0(nPs_GuiShadowExperimental_initGui), "$actionPerformed", $rt_wrapFunction1(nPs_GuiShadowExperimental_actionPerformed), "$drawScreen", $rt_wrapFunction3(nPs_GuiShadowExperimental_drawScreen), "$mouseClicked", $rt_wrapFunction3(nPs_GuiShadowExperimental_mouseClicked)], nPs_GuiDetailSettingsOF, "GuiDetailSettingsOF", 174, nmcg_GuiScreen, [], 0, 3, 0, nPs_GuiDetailSettingsOF_$callClinit, ["$initGui", $rt_wrapFunction0(nPs_GuiDetailSettingsOF_initGui), "$actionPerformed", $rt_wrapFunction1(nPs_GuiDetailSettingsOF_actionPerformed), "$drawScreen", $rt_wrapFunction3(nPs_GuiDetailSettingsOF_drawScreen)], nPs_GuiQualitySettingsOF, "GuiQualitySettingsOF", 174, nmcg_GuiScreen, [], 0, 3, 0, nPs_GuiQualitySettingsOF_$callClinit, ["$initGui", $rt_wrapFunction0(nPs_GuiQualitySettingsOF_initGui), "$actionPerformed", $rt_wrapFunction1(nPs_GuiQualitySettingsOF_actionPerformed), "$drawScreen", $rt_wrapFunction3(nPs_GuiQualitySettingsOF_drawScreen)], nPs_GuiAnimationSettingsOF, "GuiAnimationSettingsOF", 174, nmcg_GuiScreen, [], 0, 3, 0, nPs_GuiAnimationSettingsOF_$callClinit, ["$initGui", $rt_wrapFunction0(nPs_GuiAnimationSettingsOF_initGui), "$actionPerformed", $rt_wrapFunction1(nPs_GuiAnimationSettingsOF_actionPerformed), "$drawScreen", $rt_wrapFunction3(nPs_GuiAnimationSettingsOF_drawScreen)], nPs_GuiPerformanceSettingsOF, "GuiPerformanceSettingsOF", 174, nmcg_GuiScreen, [], 0, 3, 0, nPs_GuiPerformanceSettingsOF_$callClinit, ["$initGui", $rt_wrapFunction0(nPs_GuiPerformanceSettingsOF_initGui), "$actionPerformed", $rt_wrapFunction1(nPs_GuiPerformanceSettingsOF_actionPerformed), "$drawScreen", $rt_wrapFunction3(nPs_GuiPerformanceSettingsOF_drawScreen)], nPs_GuiOtherSettingsOF, "GuiOtherSettingsOF", 174, nmcg_GuiScreen, [nmcg_GuiYesNoCallback], 0, 3, 0, nPs_GuiOtherSettingsOF_$callClinit, ["$initGui", $rt_wrapFunction0(nPs_GuiOtherSettingsOF_initGui), "$actionPerformed", $rt_wrapFunction1(nPs_GuiOtherSettingsOF_actionPerformed), "$confirmClicked", $rt_wrapFunction2(nPs_GuiOtherSettingsOF_confirmClicked), "$drawScreen", $rt_wrapFunction3(nPs_GuiOtherSettingsOF_drawScreen)], nPs_GuiShaders, "GuiShaders", 174, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$initGui", $rt_wrapFunction0(nPs_GuiShaders_initGui), "$handleMouseInput", $rt_wrapFunction0(nPs_GuiShaders_handleMouseInput), "$actionPerformed", $rt_wrapFunction1(nPs_GuiShaders_actionPerformed), "$drawScreen", $rt_wrapFunction3(nPs_GuiShaders_drawScreen)], - nmcg_GuiScreenServerList, "GuiScreenServerList", 105, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$updateScreen", $rt_wrapFunction0(nmcg_GuiScreenServerList_updateScreen), "$initGui", $rt_wrapFunction0(nmcg_GuiScreenServerList_initGui), "$onGuiClosed", $rt_wrapFunction0(nmcg_GuiScreenServerList_onGuiClosed), "$actionPerformed", $rt_wrapFunction1(nmcg_GuiScreenServerList_actionPerformed), "$keyTyped", $rt_wrapFunction2(nmcg_GuiScreenServerList_keyTyped), "$mouseClicked", $rt_wrapFunction3(nmcg_GuiScreenServerList_mouseClicked), - "$drawScreen", $rt_wrapFunction3(nmcg_GuiScreenServerList_drawScreen)], - nPs_GuiShadowExperimental, "GuiShadowExperimental", 174, nmcg_GuiScreen, [], 0, 3, 0, nPs_GuiShadowExperimental_$callClinit, ["$initGui", $rt_wrapFunction0(nPs_GuiShadowExperimental_initGui), "$actionPerformed", $rt_wrapFunction1(nPs_GuiShadowExperimental_actionPerformed), "$drawScreen", $rt_wrapFunction3(nPs_GuiShadowExperimental_drawScreen), "$mouseClicked", $rt_wrapFunction3(nPs_GuiShadowExperimental_mouseClicked)], nlevi_PlatformWebRTC$LANPeer$_init_$lambda$_0_0, 0, jl_Object, [otjde_EventListener], 0, 3, 0, 0, ["$handleEvent$exported$0", $rt_wrapFunction1(nlevi_PlatformWebRTC$LANPeer$_init_$lambda$_0_0_handleEvent$exported$0)], nlevi_PlatformWebRTC$LANPeer$_init_$lambda$_0_1, "PlatformWebRTC$LANPeer$$lambda$_0_1", 141, jl_Object, [otjde_EventListener], 0, 3, [0,0,0], 0, ["$handleEvent$exported$0", $rt_wrapFunction1(nlevi_PlatformWebRTC$LANPeer$_init_$lambda$_0_1_handleEvent$exported$0)], nlevi_PlatformWebRTC$LANPeer$_init_$lambda$_0_2, 0, jl_Object, [otjde_EventListener], 0, 3, 0, 0, ["$handleEvent$exported$0", $rt_wrapFunction1(nlevi_PlatformWebRTC$LANPeer$_init_$lambda$_0_2_handleEvent$exported$0)], @@ -1419564,13 +1421863,13 @@ nlevi_PlatformWebRTC$RelayWorldsQueryImpl, "PlatformWebRTC$RelayWorldsQueryImpl", 141, jl_Object, [nlevsr_RelayWorldsQuery], 0, 0, [nlevi_PlatformWebRTC,0,"RelayWorldsQueryImpl"], 0, ["$isQueryOpen", $rt_wrapFunction0(nlevi_PlatformWebRTC$RelayWorldsQueryImpl_isQueryOpen), "$isQueryFailed", $rt_wrapFunction0(nlevi_PlatformWebRTC$RelayWorldsQueryImpl_isQueryFailed), "$getWorlds", $rt_wrapFunction0(nlevi_PlatformWebRTC$RelayWorldsQueryImpl_getWorlds)], nlevit_TeaVMServerQuery, "TeaVMServerQuery", 142, jl_Object, [nlevi_IServerQuery], 0, 3, 0, nlevit_TeaVMServerQuery_$callClinit, 0, nmd_IBehaviorDispenseItem$1, 0, jl_Object, [nmd_IBehaviorDispenseItem], 0, 0, 0, 0, 0, - ju_DuplicateFormatFlagsException, "DuplicateFormatFlagsException", 8, ju_IllegalFormatException, [], 0, 3, [0,0,0], 0, 0]); - $rt_metadata([ju_Formattable, 0, jl_Object, [], 3, 3, 0, 0, 0, + ju_DuplicateFormatFlagsException, "DuplicateFormatFlagsException", 8, ju_IllegalFormatException, [], 0, 3, [0,0,0], 0, 0, + ju_Formattable, 0, jl_Object, [], 3, 3, 0, 0, 0, oacl_ObjectUtils$Null, 0, jl_Object, [ji_Serializable], 0, 3, 0, 0, 0, cgcc_ComparisonChain$1, 0, cgcc_ComparisonChain, [], 0, 0, 0, 0, ["$compare2", $rt_wrapFunction2(cgcc_ComparisonChain$1_compare), "$compare3", $rt_wrapFunction2(cgcc_ComparisonChain$1_compare0), "$result0", $rt_wrapFunction0(cgcc_ComparisonChain$1_result)], cgcc_ComparisonChain$InactiveComparisonChain, 0, cgcc_ComparisonChain, [], 4, 0, 0, 0, ["$compare2", $rt_wrapFunction2(cgcc_ComparisonChain$InactiveComparisonChain_compare), "$compare3", $rt_wrapFunction2(cgcc_ComparisonChain$InactiveComparisonChain_compare0), "$result0", $rt_wrapFunction0(cgcc_ComparisonChain$InactiveComparisonChain_result)], - nlevi_PlatformWebRTC$RelayWorldsQueryImpl$_init_$lambda$_0_0, 0, jl_Object, [otjde_EventListener], 0, 3, 0, 0, ["$handleEvent$exported$0", $rt_wrapFunction1(nlevi_PlatformWebRTC$RelayWorldsQueryImpl$_init_$lambda$_0_0_handleEvent$exported$0)], - nlevi_PlatformWebRTC$RelayWorldsQueryImpl$_init_$lambda$_0_1, 0, jl_Object, [otjde_EventListener], 0, 3, 0, 0, ["$handleEvent$exported$0", $rt_wrapFunction1(nlevi_PlatformWebRTC$RelayWorldsQueryImpl$_init_$lambda$_0_1_handleEvent$exported$0)], + nlevi_PlatformWebRTC$RelayWorldsQueryImpl$_init_$lambda$_0_0, 0, jl_Object, [otjde_EventListener], 0, 3, 0, 0, ["$handleEvent$exported$0", $rt_wrapFunction1(nlevi_PlatformWebRTC$RelayWorldsQueryImpl$_init_$lambda$_0_0_handleEvent$exported$0)]]); + $rt_metadata([nlevi_PlatformWebRTC$RelayWorldsQueryImpl$_init_$lambda$_0_1, 0, jl_Object, [otjde_EventListener], 0, 3, 0, 0, ["$handleEvent$exported$0", $rt_wrapFunction1(nlevi_PlatformWebRTC$RelayWorldsQueryImpl$_init_$lambda$_0_1_handleEvent$exported$0)], nlevi_PlatformWebRTC$RelayWorldsQueryImpl$_init_$lambda$_0_2, 0, jl_Object, [otjde_EventListener], 0, 3, 0, 0, ["$handleEvent$exported$0", $rt_wrapFunction1(nlevi_PlatformWebRTC$RelayWorldsQueryImpl$_init_$lambda$_0_2_handleEvent$exported$0)], nmwgs_StructureMineshaftStart, "StructureMineshaftStart", 79, nmwgs_StructureStart, [], 0, 3, [0,0,0], 0, 0, nmwgs_MapGenVillage$Start, "MapGenVillage$Start", 79, nmwgs_StructureStart, [], 0, 3, [nmwgs_MapGenVillage,0,"Start"], 0, ["$isSizeableStructure", $rt_wrapFunction0(nmwgs_MapGenVillage$Start_isSizeableStructure), "$writeToNBT", $rt_wrapFunction1(nmwgs_MapGenVillage$Start_writeToNBT), "$readFromNBT", $rt_wrapFunction1(nmwgs_MapGenVillage$Start_readFromNBT)], @@ -1419618,15 +1421917,15 @@ nmwgs_StructureNetherBridgePieces$Straight, "StructureNetherBridgePieces$Straight", 79, nmwgs_StructureNetherBridgePieces$Piece, [], 0, 3, [nmwgs_StructureNetherBridgePieces,0,"Straight"], 0, ["$buildComponent", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Straight_buildComponent), "$addComponentParts", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Straight_addComponentParts)], nmwgs_StructureNetherBridgePieces$Corridor3, "StructureNetherBridgePieces$Corridor3", 79, nmwgs_StructureNetherBridgePieces$Piece, [], 0, 3, [nmwgs_StructureNetherBridgePieces,0,"Corridor3"], 0, ["$buildComponent", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Corridor3_buildComponent), "$addComponentParts", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Corridor3_addComponentParts)], nmwgs_StructureNetherBridgePieces$Corridor4, "StructureNetherBridgePieces$Corridor4", 79, nmwgs_StructureNetherBridgePieces$Piece, [], 0, 3, [nmwgs_StructureNetherBridgePieces,0,"Corridor4"], 0, ["$buildComponent", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Corridor4_buildComponent), "$addComponentParts", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Corridor4_addComponentParts)], - nmwgs_StructureNetherBridgePieces$Entrance, "StructureNetherBridgePieces$Entrance", 79, nmwgs_StructureNetherBridgePieces$Piece, [], 0, 3, [nmwgs_StructureNetherBridgePieces,0,"Entrance"], 0, ["$buildComponent", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Entrance_buildComponent), "$addComponentParts", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Entrance_addComponentParts)]]); - $rt_metadata([nmwgs_StructureNetherBridgePieces$Crossing2, "StructureNetherBridgePieces$Crossing2", 79, nmwgs_StructureNetherBridgePieces$Piece, [], 0, 3, [nmwgs_StructureNetherBridgePieces,0,"Crossing2"], 0, ["$buildComponent", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Crossing2_buildComponent), "$addComponentParts", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Crossing2_addComponentParts)], + nmwgs_StructureNetherBridgePieces$Entrance, "StructureNetherBridgePieces$Entrance", 79, nmwgs_StructureNetherBridgePieces$Piece, [], 0, 3, [nmwgs_StructureNetherBridgePieces,0,"Entrance"], 0, ["$buildComponent", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Entrance_buildComponent), "$addComponentParts", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Entrance_addComponentParts)], + nmwgs_StructureNetherBridgePieces$Crossing2, "StructureNetherBridgePieces$Crossing2", 79, nmwgs_StructureNetherBridgePieces$Piece, [], 0, 3, [nmwgs_StructureNetherBridgePieces,0,"Crossing2"], 0, ["$buildComponent", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Crossing2_buildComponent), "$addComponentParts", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Crossing2_addComponentParts)], nmwgs_StructureNetherBridgePieces$Corridor, "StructureNetherBridgePieces$Corridor", 79, nmwgs_StructureNetherBridgePieces$Piece, [], 0, 3, [nmwgs_StructureNetherBridgePieces,0,"Corridor"], 0, ["$readStructureFromNBT", $rt_wrapFunction1(nmwgs_StructureNetherBridgePieces$Corridor_readStructureFromNBT), "$writeStructureToNBT", $rt_wrapFunction1(nmwgs_StructureNetherBridgePieces$Corridor_writeStructureToNBT), "$buildComponent", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Corridor_buildComponent), "$addComponentParts", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Corridor_addComponentParts)], nmwgs_StructureNetherBridgePieces$Corridor5, "StructureNetherBridgePieces$Corridor5", 79, nmwgs_StructureNetherBridgePieces$Piece, [], 0, 3, [nmwgs_StructureNetherBridgePieces,0,"Corridor5"], 0, ["$buildComponent", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Corridor5_buildComponent), "$addComponentParts", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Corridor5_addComponentParts)], nmwgs_StructureNetherBridgePieces$Corridor2, "StructureNetherBridgePieces$Corridor2", 79, nmwgs_StructureNetherBridgePieces$Piece, [], 0, 3, [nmwgs_StructureNetherBridgePieces,0,"Corridor2"], 0, ["$readStructureFromNBT", $rt_wrapFunction1(nmwgs_StructureNetherBridgePieces$Corridor2_readStructureFromNBT), "$writeStructureToNBT", $rt_wrapFunction1(nmwgs_StructureNetherBridgePieces$Corridor2_writeStructureToNBT), "$buildComponent", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Corridor2_buildComponent), "$addComponentParts", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Corridor2_addComponentParts)], - nmwgs_StructureNetherBridgePieces$NetherStalkRoom, "StructureNetherBridgePieces$NetherStalkRoom", 79, nmwgs_StructureNetherBridgePieces$Piece, [], 0, 3, [nmwgs_StructureNetherBridgePieces,0,"NetherStalkRoom"], 0, ["$buildComponent", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$NetherStalkRoom_buildComponent), "$addComponentParts", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$NetherStalkRoom_addComponentParts)], - nmwgs_StructureNetherBridgePieces$Throne, "StructureNetherBridgePieces$Throne", 79, nmwgs_StructureNetherBridgePieces$Piece, [], 0, 3, [nmwgs_StructureNetherBridgePieces,0,"Throne"], 0, ["$readStructureFromNBT", $rt_wrapFunction1(nmwgs_StructureNetherBridgePieces$Throne_readStructureFromNBT), "$writeStructureToNBT", $rt_wrapFunction1(nmwgs_StructureNetherBridgePieces$Throne_writeStructureToNBT), "$addComponentParts", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Throne_addComponentParts)], + nmwgs_StructureNetherBridgePieces$NetherStalkRoom, "StructureNetherBridgePieces$NetherStalkRoom", 79, nmwgs_StructureNetherBridgePieces$Piece, [], 0, 3, [nmwgs_StructureNetherBridgePieces,0,"NetherStalkRoom"], 0, ["$buildComponent", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$NetherStalkRoom_buildComponent), "$addComponentParts", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$NetherStalkRoom_addComponentParts)]]); + $rt_metadata([nmwgs_StructureNetherBridgePieces$Throne, "StructureNetherBridgePieces$Throne", 79, nmwgs_StructureNetherBridgePieces$Piece, [], 0, 3, [nmwgs_StructureNetherBridgePieces,0,"Throne"], 0, ["$readStructureFromNBT", $rt_wrapFunction1(nmwgs_StructureNetherBridgePieces$Throne_readStructureFromNBT), "$writeStructureToNBT", $rt_wrapFunction1(nmwgs_StructureNetherBridgePieces$Throne_writeStructureToNBT), "$addComponentParts", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Throne_addComponentParts)], nmwgs_StructureNetherBridgePieces$Crossing, "StructureNetherBridgePieces$Crossing", 79, nmwgs_StructureNetherBridgePieces$Piece, [], 0, 3, [nmwgs_StructureNetherBridgePieces,0,"Crossing"], 0, ["$buildComponent", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Crossing_buildComponent), "$addComponentParts", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Crossing_addComponentParts)], nmwgs_StructureNetherBridgePieces$Stairs, "StructureNetherBridgePieces$Stairs", 79, nmwgs_StructureNetherBridgePieces$Piece, [], 0, 3, [nmwgs_StructureNetherBridgePieces,0,"Stairs"], 0, ["$buildComponent", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Stairs_buildComponent), "$addComponentParts", $rt_wrapFunction3(nmwgs_StructureNetherBridgePieces$Stairs_addComponentParts)], nmwgs_StructureNetherBridgePieces$Start, "StructureNetherBridgePieces$Start", 79, nmwgs_StructureNetherBridgePieces$Crossing3, [], 0, 3, [nmwgs_StructureNetherBridgePieces,0,"Start"], 0, ["$readStructureFromNBT", $rt_wrapFunction1(nmwgs_StructureNetherBridgePieces$Start_readStructureFromNBT), "$writeStructureToNBT", $rt_wrapFunction1(nmwgs_StructureNetherBridgePieces$Start_writeStructureToNBT)], @@ -1419674,16 +1421973,16 @@ nmwgs_StructureComponent$BlockSelector, "StructureComponent$BlockSelector", 79, jl_Object, [], 1, 3, 0, 0, 0, nmwgs_StructureStrongholdPieces$Stones, 0, nmwgs_StructureComponent$BlockSelector, [], 0, 0, 0, 0, ["$selectBlocks", function(var_1, var_2, var_3, var_4, var_5) { nmwgs_StructureStrongholdPieces$Stones_selectBlocks(this, var_1, var_2, var_3, var_4, var_5); }], otjde_Event, "Event", 32, jl_Object, [otj_JSObject], 3, 3, 0, 0, 0, + juc_Executor, "Executor", 13, jl_Object, [], 3, 3, 0, 0, 0, otjc_JSError, "JSError", 28, jl_Object, [otj_JSObject], 1, 3, 0, 0, 0, + juc_TimeUnit, "TimeUnit", 13, jl_Enum, [], 12, 3, [0,0,0], juc_TimeUnit_$callClinit, 0, otjw_CloseEvent, "CloseEvent", 34, jl_Object, [otjde_Event], 3, 3, 0, 0, 0, otjde_MessageEvent, "MessageEvent", 32, jl_Object, [otjde_Event], 3, 3, 0, 0, 0, - juc_Executor, "Executor", 13, jl_Object, [], 3, 3, 0, 0, 0]); - $rt_metadata([juc_TimeUnit, "TimeUnit", 13, jl_Enum, [], 12, 3, [0,0,0], juc_TimeUnit_$callClinit, 0, ju_AbstractMap$Values$1, "AbstractMap$Values$1", 8, jl_Object, [ju_Iterator], 0, 0, [ju_AbstractMap$Values,0,0], 0, ["$hasNext", $rt_wrapFunction0(ju_AbstractMap$Values$1_hasNext), "$next", $rt_wrapFunction0(ju_AbstractMap$Values$1_next), "$remove2", $rt_wrapFunction0(ju_AbstractMap$Values$1_remove)], nmw_ChunkCache, 0, jl_Object, [nmw_IBlockAccess], 0, 3, 0, 0, ["$getBlockState", $rt_wrapFunction1(nmw_ChunkCache_getBlockState), "$getBiomeGenForCoords", $rt_wrapFunction1(nmw_ChunkCache_getBiomeGenForCoords), "$isAirBlock", $rt_wrapFunction1(nmw_ChunkCache_isAirBlock), "$getStrongPower", $rt_wrapFunction2(nmw_ChunkCache_getStrongPower)], cgcc_DenseImmutableTable$ImmutableArrayMap$1$1, "DenseImmutableTable$ImmutableArrayMap$1$1", 3, cgcc_AbstractIterator, [], 0, 0, [cgcc_DenseImmutableTable$ImmutableArrayMap$1,0,0], 0, ["$computeNext", $rt_wrapFunction0(cgcc_DenseImmutableTable$ImmutableArrayMap$1$1_computeNext)], - nmcg_GuiSelectWorld$confirmClicked$lambda$_10_0, 0, jl_Object, [juf_BooleanSupplier], 0, 3, 0, 0, ["$getAsBoolean", $rt_wrapFunction0(nmcg_GuiSelectWorld$confirmClicked$lambda$_10_0_getAsBoolean)], - cgcc_HashBiMap$KeySet, 0, cgcc_Maps$KeySet, [], 4, 0, 0, 0, ["$iterator", $rt_wrapFunction0(cgcc_HashBiMap$KeySet_iterator)], + nmcg_GuiSelectWorld$confirmClicked$lambda$_10_0, 0, jl_Object, [juf_BooleanSupplier], 0, 3, 0, 0, ["$getAsBoolean", $rt_wrapFunction0(nmcg_GuiSelectWorld$confirmClicked$lambda$_10_0_getAsBoolean)]]); + $rt_metadata([cgcc_HashBiMap$KeySet, 0, cgcc_Maps$KeySet, [], 4, 0, 0, 0, ["$iterator", $rt_wrapFunction0(cgcc_HashBiMap$KeySet_iterator)], ju_IdentityHashMap$KeyIterator, "IdentityHashMap$KeyIterator", 8, ju_IdentityHashMap$AbstractMapIterator, [ju_Iterator], 0, 0, [ju_IdentityHashMap,0,0], 0, ["$next", $rt_wrapFunction0(ju_IdentityHashMap$KeyIterator_next)], juc_ConcurrentHashMap$AbstractMapIterator, 0, jl_Object, [], 0, 0, 0, 0, ["$hasNext", $rt_wrapFunction0(juc_ConcurrentHashMap$AbstractMapIterator_hasNext)], juc_ConcurrentHashMap$KeyIterator, 0, juc_ConcurrentHashMap$AbstractMapIterator, [ju_Iterator], 0, 0, 0, 0, ["$next", $rt_wrapFunction0(juc_ConcurrentHashMap$KeyIterator_next)], @@ -1419702,22 +1422001,18 @@ nmb_BlockPistonBase$1, 0, jl_Object, [], 32, 0, 0, nmb_BlockPistonBase$1_$callClinit, 0, nmb_BlockLadder$1, 0, jl_Object, [], 32, 0, 0, nmb_BlockLadder$1_$callClinit, 0, nmb_BlockWallSign$1, 0, jl_Object, [], 32, 0, 0, nmb_BlockWallSign$1_$callClinit, 0, - nmb_BlockLever$1, 0, jl_Object, [], 32, 0, 0, nmb_BlockLever$1_$callClinit, 0, nmb_BlockCocoa$1, 0, jl_Object, [], 32, 0, 0, nmb_BlockCocoa$1_$callClinit, 0, nmb_BlockTripWireHook$1, 0, jl_Object, [], 32, 0, 0, nmb_BlockTripWireHook$1_$callClinit, 0, nmb_BlockSkull$2, 0, jl_Object, [], 32, 0, 0, nmb_BlockSkull$2_$callClinit, 0, nmb_BlockBanner$1, 0, jl_Object, [], 32, 0, 0, nmb_BlockBanner$1_$callClinit, 0, - nmwgl_GenLayerEdge$1, 0, jl_Object, [], 32, 0, 0, nmwgl_GenLayerEdge$1_$callClinit, 0, ju_AbstractList$TListIteratorImpl, 0, jl_Object, [ju_ListIterator], 0, 0, 0, 0, ["$hasNext", $rt_wrapFunction0(ju_AbstractList$TListIteratorImpl_hasNext), "$next", $rt_wrapFunction0(ju_AbstractList$TListIteratorImpl_next)], nmt_TileEntity$1, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmt_TileEntity$1_call)], nmt_TileEntity$2, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmt_TileEntity$2_call)], nmt_TileEntity$3, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmt_TileEntity$3_call)], nmnps_S08PacketPlayerPosLook$EnumFlags, "S08PacketPlayerPosLook$EnumFlags", 65, jl_Enum, [], 12, 3, [nmnps_S08PacketPlayerPosLook,0,"EnumFlags"], nmnps_S08PacketPlayerPosLook$EnumFlags_$callClinit, 0, nmnps_S20PacketEntityProperties$Snapshot, "S20PacketEntityProperties$Snapshot", 65, jl_Object, [], 0, 3, [nmnps_S20PacketEntityProperties,0,"Snapshot"], 0, 0, - nmnps_S38PacketPlayerListItem$1, 0, jl_Object, [], 32, 0, 0, nmnps_S38PacketPlayerListItem$1_$callClinit, 0, nmnps_S3CPacketUpdateScore$Action, "S3CPacketUpdateScore$Action", 65, jl_Enum, [], 12, 3, [nmnps_S3CPacketUpdateScore,0,"Action"], nmnps_S3CPacketUpdateScore$Action_$callClinit, 0, nmnps_S42PacketCombatEvent$Event, "S42PacketCombatEvent$Event", 65, jl_Enum, [], 12, 3, [nmnps_S42PacketCombatEvent,0,"Event"], nmnps_S42PacketCombatEvent$Event_$callClinit, 0, - nmnps_S44PacketWorldBorder$1, 0, jl_Object, [], 32, 0, 0, nmnps_S44PacketWorldBorder$1_$callClinit, 0, nmnps_S45PacketTitle$Type, "S45PacketTitle$Type", 65, jl_Enum, [], 12, 3, [nmnps_S45PacketTitle,0,"Type"], nmnps_S45PacketTitle$Type_$callClinit, 0, nmnpc_C02PacketUseEntity$Action, "C02PacketUseEntity$Action", 66, jl_Enum, [], 12, 3, [nmnpc_C02PacketUseEntity,0,"Action"], nmnpc_C02PacketUseEntity$Action_$callClinit, 0, nmnpc_C07PacketPlayerDigging$Action, "C07PacketPlayerDigging$Action", 66, jl_Enum, [], 12, 3, [nmnpc_C07PacketPlayerDigging,0,"Action"], nmnpc_C07PacketPlayerDigging$Action_$callClinit, 0, @@ -1419730,9 +1422025,7 @@ nmb_BlockPortal$Size, 0, jl_Object, [], 0, 3, 0, 0, 0, nmb_BlockSapling$1, 0, jl_Object, [], 32, 0, 0, nmb_BlockSapling$1_$callClinit, 0, nmwgf_WorldGenMegaJungle, 0, nmwgf_WorldGenHugeTrees, [], 0, 3, 0, 0, ["$generate", $rt_wrapFunction3(nmwgf_WorldGenMegaJungle_generate)], - nmw_World$2, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmw_World$2_call)]]); - $rt_metadata([nmb_BlockPressurePlate$1, 0, jl_Object, [], 32, 0, 0, nmb_BlockPressurePlate$1_$callClinit, 0, - nmcs_GameSettings$1, 0, jl_Object, [], 32, 0, 0, nmcs_GameSettings$1_$callClinit, 0, + nmw_World$2, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmw_World$2_call)], nmwgf_WorldGenDesertWells, 0, nmwgf_WorldGenerator, [], 0, 3, 0, nmwgf_WorldGenDesertWells_$callClinit, 0, nmwgf_WorldGenMelon, 0, nmwgf_WorldGenerator, [], 0, 3, 0, 0, 0, nmwgf_WorldGenVines, 0, nmwgf_WorldGenerator, [], 0, 3, 0, 0, 0, @@ -1419741,8 +1422034,8 @@ cgcc_ImmutableList$ReverseImmutableList, 0, cgcc_ImmutableList, [], 0, 0, 0, 0, ["$sort", $rt_wrapFunction1(ju_List_sort), "$get2", $rt_wrapFunction1(cgcc_ImmutableList$ReverseImmutableList_get), "$size0", $rt_wrapFunction0(cgcc_ImmutableList$ReverseImmutableList_size)], jl_Object$NotifyListener, 0, jl_Object, [otp_PlatformRunnable, otr_EventQueue$Event], 3, 0, 0, 0, 0, nme_EntityLivingBase$1, "EntityLivingBase$1", 126, jl_Object, [cgcb_Predicate], 0, 0, [nme_EntityLivingBase,0,0], 0, ["$apply0", $rt_wrapFunction1(nme_EntityLivingBase$1_apply)], - nmt_TileEntitySign$1, 0, jl_Object, [nmc_ICommandSender], 0, 0, 0, 0, ["$addChatMessage", $rt_wrapFunction1(nmt_TileEntitySign$1_addChatMessage), "$canCommandSenderUseCommand", $rt_wrapFunction2(nmt_TileEntitySign$1_canCommandSenderUseCommand), "$getPosition0", $rt_wrapFunction0(nmt_TileEntitySign$1_getPosition), "$getEntityWorld", $rt_wrapFunction0(nmt_TileEntitySign$1_getEntityWorld), "$getCommandSenderEntity", $rt_wrapFunction0(nmt_TileEntitySign$1_getCommandSenderEntity)], - nmu_ChatComponentProcessor, 0, jl_Object, [], 0, 3, 0, 0, 0, + nmt_TileEntitySign$1, 0, jl_Object, [nmc_ICommandSender], 0, 0, 0, 0, ["$addChatMessage", $rt_wrapFunction1(nmt_TileEntitySign$1_addChatMessage), "$canCommandSenderUseCommand", $rt_wrapFunction2(nmt_TileEntitySign$1_canCommandSenderUseCommand), "$getPosition0", $rt_wrapFunction0(nmt_TileEntitySign$1_getPosition), "$getEntityWorld", $rt_wrapFunction0(nmt_TileEntitySign$1_getEntityWorld), "$getCommandSenderEntity", $rt_wrapFunction0(nmt_TileEntitySign$1_getCommandSenderEntity)]]); + $rt_metadata([nmu_ChatComponentProcessor, 0, jl_Object, [], 0, 3, 0, 0, 0, nmc_CommandException, "CommandException", 61, jl_Exception, [], 0, 3, [0,0,0], 0, 0, nmcr_RenderGlobal$1, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmcr_RenderGlobal$1_call)], nmi_InventoryLargeChest, 0, jl_Object, [nmw_ILockableContainer], 0, 3, 0, 0, ["$getSizeInventory", $rt_wrapFunction0(nmi_InventoryLargeChest_getSizeInventory), "$getName", $rt_wrapFunction0(nmi_InventoryLargeChest_getName), "$hasCustomName", $rt_wrapFunction0(nmi_InventoryLargeChest_hasCustomName), "$getDisplayName0", $rt_wrapFunction0(nmi_InventoryLargeChest_getDisplayName), "$getStackInSlot", $rt_wrapFunction1(nmi_InventoryLargeChest_getStackInSlot), "$decrStackSize", $rt_wrapFunction2(nmi_InventoryLargeChest_decrStackSize), @@ -1419768,10 +1422061,10 @@ $rt_wrapFunction3(nlevsg_GuiScreenNameWorldImport_mouseClicked), "$drawScreen", $rt_wrapFunction3(nlevsg_GuiScreenNameWorldImport_drawScreen)], nmcg_GuiCreateWorld, "GuiCreateWorld", 105, nmcg_GuiScreen, [], 0, 3, 0, nmcg_GuiCreateWorld_$callClinit, ["$updateScreen", $rt_wrapFunction0(nmcg_GuiCreateWorld_updateScreen), "$initGui", $rt_wrapFunction0(nmcg_GuiCreateWorld_initGui), "$onGuiClosed", $rt_wrapFunction0(nmcg_GuiCreateWorld_onGuiClosed), "$actionPerformed", $rt_wrapFunction1(nmcg_GuiCreateWorld_actionPerformed), "$keyTyped", $rt_wrapFunction2(nmcg_GuiCreateWorld_keyTyped), "$mouseClicked", $rt_wrapFunction3(nmcg_GuiCreateWorld_mouseClicked), "$drawScreen", $rt_wrapFunction3(nmcg_GuiCreateWorld_drawScreen)], - nmcg_GuiRenameWorld$actionPerformed$lambda$_5_0, 0, jl_Object, [juf_BooleanSupplier], 0, 3, 0, 0, ["$getAsBoolean", $rt_wrapFunction0(nmcg_GuiRenameWorld$actionPerformed$lambda$_5_0_getAsBoolean)], - nmcg_GuiRenameWorld$actionPerformed$lambda$_5_1, 0, jl_Object, [juf_BooleanSupplier], 0, 3, 0, 0, ["$getAsBoolean", $rt_wrapFunction0(nmcg_GuiRenameWorld$actionPerformed$lambda$_5_1_getAsBoolean)], nlevsg_GuiScreenBackupWorldSelection$actionPerformed$lambda$_3_0, 0, jl_Object, [juf_BooleanSupplier], 0, 3, 0, 0, ["$getAsBoolean", $rt_wrapFunction0(nlevsg_GuiScreenBackupWorldSelection$actionPerformed$lambda$_3_0_getAsBoolean)], nlevsg_GuiScreenBackupWorldSelection$actionPerformed$lambda$_3_1, 0, jl_Object, [juf_BooleanSupplier], 0, 3, 0, 0, ["$getAsBoolean", $rt_wrapFunction0(nlevsg_GuiScreenBackupWorldSelection$actionPerformed$lambda$_3_1_getAsBoolean)], + nmcg_GuiRenameWorld$actionPerformed$lambda$_5_0, 0, jl_Object, [juf_BooleanSupplier], 0, 3, 0, 0, ["$getAsBoolean", $rt_wrapFunction0(nmcg_GuiRenameWorld$actionPerformed$lambda$_5_0_getAsBoolean)], + nmcg_GuiRenameWorld$actionPerformed$lambda$_5_1, 0, jl_Object, [juf_BooleanSupplier], 0, 3, 0, 0, ["$getAsBoolean", $rt_wrapFunction0(nmcg_GuiRenameWorld$actionPerformed$lambda$_5_1_getAsBoolean)], nmcr_RegionRenderCache, 0, nmw_ChunkCache, [], 0, 3, 0, 0, ["$getTileEntity", $rt_wrapFunction1(nmcr_RegionRenderCache_getTileEntity), "$getCombinedLight", $rt_wrapFunction2(nmcr_RegionRenderCache_getCombinedLight), "$getBlockState", $rt_wrapFunction1(nmcr_RegionRenderCache_getBlockState)], ju_TreeMap$EntryIterator, 0, jl_Object, [ju_Iterator], 0, 0, 0, 0, ["$hasNext", $rt_wrapFunction0(ju_TreeMap$EntryIterator_hasNext), "$remove2", $rt_wrapFunction0(ju_TreeMap$EntryIterator_remove), "$next", $rt_wrapFunction0(ju_TreeMap$EntryIterator_next)], nmp_PathEntity, 0, jl_Object, [], 0, 3, 0, 0, 0, @@ -1419786,8 +1422079,8 @@ nmb_BlockBeacon$1, "BlockBeacon$1", 117, jl_Object, [jl_Runnable], 0, 0, [nmb_BlockBeacon,0,0], 0, ["$run", $rt_wrapFunction0(nmb_BlockBeacon$1_run)], nmcr_BlockModelRenderer$EnumNeighborInfo, "BlockModelRenderer$EnumNeighborInfo", 90, jl_Enum, [], 12, 3, [nmcr_BlockModelRenderer,0,"EnumNeighborInfo"], nmcr_BlockModelRenderer$EnumNeighborInfo_$callClinit, 0, nmcr_BlockModelRenderer$VertexTranslations, "BlockModelRenderer$VertexTranslations", 90, jl_Enum, [], 12, 0, [nmcr_BlockModelRenderer,0,"VertexTranslations"], nmcr_BlockModelRenderer$VertexTranslations_$callClinit, 0, - nmcr_BlockModelRenderer$Orientation, "BlockModelRenderer$Orientation", 90, jl_Enum, [], 12, 3, [nmcr_BlockModelRenderer,0,"Orientation"], nmcr_BlockModelRenderer$Orientation_$callClinit, 0]); - $rt_metadata([nmc_PlayerSelector, 0, jl_Object, [], 0, 3, 0, nmc_PlayerSelector_$callClinit, 0, + nmcr_BlockModelRenderer$Orientation, "BlockModelRenderer$Orientation", 90, jl_Enum, [], 12, 3, [nmcr_BlockModelRenderer,0,"Orientation"], nmcr_BlockModelRenderer$Orientation_$callClinit, 0, + nmc_PlayerSelector, 0, jl_Object, [], 0, 3, 0, nmc_PlayerSelector_$callClinit, 0, nmc_EntityNotFoundException, "EntityNotFoundException", 61, nmc_CommandException, [], 0, 3, [0,0,0], 0, 0, nlevi_PlatformWebRTC$LANPeer$lambda$new$1$lambda$_14_0, 0, jl_Object, [otjb_TimerHandler], 0, 3, 0, 0, ["$onTimer$exported$0", $rt_wrapFunction0(nlevi_PlatformWebRTC$LANPeer$lambda$new$1$lambda$_14_0_onTimer$exported$0)], nlevi_PlatformWebRTC$LANPeer$lambda$new$4$lambda$_11_0, 0, jl_Object, [otjb_TimerHandler], 0, 3, 0, 0, ["$onTimer$exported$0", $rt_wrapFunction0(nlevi_PlatformWebRTC$LANPeer$lambda$new$4$lambda$_11_0_onTimer$exported$0)], @@ -1419797,8 +1422090,8 @@ nmcr_ResourcePackListEntry$1, 0, jl_Object, [nmcg_GuiYesNoCallback], 0, 0, 0, 0, ["$confirmClicked", $rt_wrapFunction2(nmcr_ResourcePackListEntry$1_confirmClicked)], nlevi_PlatformWebRTC$LANClient, 0, jl_Object, [], 0, 3, 0, 0, 0, nmwgs_StructureVillagePieces$PieceWeight, "StructureVillagePieces$PieceWeight", 79, jl_Object, [], 0, 3, [nmwgs_StructureVillagePieces,0,"PieceWeight"], 0, 0, - nmi_InventoryEnderChest, "InventoryEnderChest", 60, nmi_InventoryBasic, [], 0, 3, [0,0,0], 0, ["$isUseableByPlayer", $rt_wrapFunction1(nmi_InventoryEnderChest_isUseableByPlayer), "$openInventory", $rt_wrapFunction1(nmi_InventoryEnderChest_openInventory), "$closeInventory", $rt_wrapFunction1(nmi_InventoryEnderChest_closeInventory)], - nmi_ContainerPlayer, "ContainerPlayer", 60, nmi_Container, [], 0, 3, [0,0,0], 0, ["$onCraftMatrixChanged", $rt_wrapFunction1(nmi_ContainerPlayer_onCraftMatrixChanged), "$onContainerClosed", $rt_wrapFunction1(nmi_ContainerPlayer_onContainerClosed), "$canInteractWith", $rt_wrapFunction1(nmi_ContainerPlayer_canInteractWith), "$transferStackInSlot", $rt_wrapFunction2(nmi_ContainerPlayer_transferStackInSlot), "$canMergeSlot", $rt_wrapFunction2(nmi_ContainerPlayer_canMergeSlot)], + nmi_InventoryEnderChest, "InventoryEnderChest", 60, nmi_InventoryBasic, [], 0, 3, [0,0,0], 0, ["$isUseableByPlayer", $rt_wrapFunction1(nmi_InventoryEnderChest_isUseableByPlayer), "$openInventory", $rt_wrapFunction1(nmi_InventoryEnderChest_openInventory), "$closeInventory", $rt_wrapFunction1(nmi_InventoryEnderChest_closeInventory)]]); + $rt_metadata([nmi_ContainerPlayer, "ContainerPlayer", 60, nmi_Container, [], 0, 3, [0,0,0], 0, ["$onCraftMatrixChanged", $rt_wrapFunction1(nmi_ContainerPlayer_onCraftMatrixChanged), "$onContainerClosed", $rt_wrapFunction1(nmi_ContainerPlayer_onContainerClosed), "$canInteractWith", $rt_wrapFunction1(nmi_ContainerPlayer_canInteractWith), "$transferStackInSlot", $rt_wrapFunction2(nmi_ContainerPlayer_transferStackInSlot), "$canMergeSlot", $rt_wrapFunction2(nmi_ContainerPlayer_canMergeSlot)], nmbs_BlockWorldState, "BlockWorldState", 119, jl_Object, [], 0, 3, [0,0,0], 0, 0, nmcr_BlockModelRenderer$1, 0, jl_Object, [], 32, 0, 0, nmcr_BlockModelRenderer$1_$callClinit, 0, nmwgs_ComponentScatteredFeaturePieces$JunglePyramid$Stones, 0, nmwgs_StructureComponent$BlockSelector, [], 0, 0, 0, 0, ["$selectBlocks", function(var_1, var_2, var_3, var_4, var_5) { nmwgs_ComponentScatteredFeaturePieces$JunglePyramid$Stones_selectBlocks(this, var_1, var_2, var_3, var_4, var_5); }], @@ -1419834,21 +1422127,21 @@ nmc_PlayerSelector$11, "PlayerSelector$11", 61, jl_Object, [cgcb_Predicate], 0, 0, [nmc_PlayerSelector,0,0], 0, ["$apply0", $rt_wrapFunction1(nmc_PlayerSelector$11_apply)], nmep_EntityPlayer$EnumStatus, "EntityPlayer$EnumStatus", 134, jl_Enum, [], 12, 3, [nmep_EntityPlayer,0,"EnumStatus"], nmep_EntityPlayer$EnumStatus_$callClinit, 0, cgcc_HashBiMap$KeySet$1, 0, cgcc_HashBiMap$Itr, [], 0, 0, 0, 0, ["$output", $rt_wrapFunction1(cgcc_HashBiMap$KeySet$1_output)], - nmb_BlockFlowerPot$1, 0, jl_Object, [], 32, 0, 0, nmb_BlockFlowerPot$1_$callClinit, 0, nmb_BlockFarmland$1, 0, jl_Object, [], 32, 0, 0, nmb_BlockFarmland$1_$callClinit, 0, - nmwb_BiomeColorHelper, 0, jl_Object, [], 0, 3, 0, 0, 0]); - $rt_metadata([nlevsg_GuiScreenBackupWorldSelection$confirmClicked$lambda$_4_0, 0, jl_Object, [juf_BooleanSupplier], 0, 3, 0, 0, ["$getAsBoolean", $rt_wrapFunction0(nlevsg_GuiScreenBackupWorldSelection$confirmClicked$lambda$_4_0_getAsBoolean)], + nmwb_BiomeColorHelper, 0, jl_Object, [], 0, 3, 0, 0, 0, + nmb_BlockFlowerPot$1, 0, jl_Object, [], 32, 0, 0, nmb_BlockFlowerPot$1_$callClinit, 0, + nlevsg_GuiScreenBackupWorldSelection$confirmClicked$lambda$_4_0, 0, jl_Object, [juf_BooleanSupplier], 0, 3, 0, 0, ["$getAsBoolean", $rt_wrapFunction0(nlevsg_GuiScreenBackupWorldSelection$confirmClicked$lambda$_4_0_getAsBoolean)], nmu_BlockPos$1$1, 0, cgcc_AbstractIterator, [], 0, 0, 0, 0, ["$computeNext", $rt_wrapFunction0(nmu_BlockPos$1$1_computeNext)], nmep_InventoryPlayer$1, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmep_InventoryPlayer$1_call)], nmi_ContainerChest, "ContainerChest", 60, nmi_Container, [], 0, 3, [0,0,0], 0, ["$canInteractWith", $rt_wrapFunction1(nmi_ContainerChest_canInteractWith), "$transferStackInSlot", $rt_wrapFunction2(nmi_ContainerChest_transferStackInSlot), "$onContainerClosed", $rt_wrapFunction1(nmi_ContainerChest_onContainerClosed)], - nmi_SlotFurnaceFuel, "SlotFurnaceFuel", 60, nmi_Slot, [], 0, 3, [0,0,0], 0, ["$isItemValid", $rt_wrapFunction1(nmi_SlotFurnaceFuel_isItemValid), "$getItemStackLimit", $rt_wrapFunction1(nmi_SlotFurnaceFuel_getItemStackLimit)], oaclb_ToStringBuilder, 0, jl_Object, [oaclb_Builder], 0, 3, 0, oaclb_ToStringBuilder_$callClinit, 0, + nmi_SlotFurnaceFuel, "SlotFurnaceFuel", 60, nmi_Slot, [], 0, 3, [0,0,0], 0, ["$isItemValid", $rt_wrapFunction1(nmi_SlotFurnaceFuel_isItemValid), "$getItemStackLimit", $rt_wrapFunction1(nmi_SlotFurnaceFuel_getItemStackLimit)], nmu_CombatEntry, "CombatEntry", 85, jl_Object, [], 0, 3, [0,0,0], 0, 0, nlevo_WorldRenderer$1, 0, jl_Object, [ju_Comparator], 0, 0, 0, 0, ["$compare", $rt_wrapFunction2(nlevo_WorldRenderer$1_compare)], cgcc_HashBiMap$Inverse$1$1$InverseEntry, "HashBiMap$Inverse$1$1$InverseEntry", 3, cgcc_AbstractMapEntry, [], 0, 0, [cgcc_HashBiMap$Inverse$1$1,0,"InverseEntry"], 0, ["$getKey", $rt_wrapFunction0(cgcc_HashBiMap$Inverse$1$1$InverseEntry_getKey), "$getValue", $rt_wrapFunction0(cgcc_HashBiMap$Inverse$1$1$InverseEntry_getValue)], cgcc_AbstractMapBasedMultimap$KeySet, 0, cgcc_Maps$KeySet, [], 0, 0, 0, 0, 0, - cgcc_AbstractMapBasedMultimap$SortedKeySet, 0, cgcc_AbstractMapBasedMultimap$KeySet, [ju_SortedSet], 0, 0, 0, 0, 0, - nlevsg_GuiSlotRelay$1, 0, jl_Object, [], 32, 0, 0, nlevsg_GuiSlotRelay$1_$callClinit, 0, + cgcc_AbstractMapBasedMultimap$SortedKeySet, 0, cgcc_AbstractMapBasedMultimap$KeySet, [ju_SortedSet], 0, 0, 0, 0, 0]); + $rt_metadata([nlevsg_GuiSlotRelay$1, 0, jl_Object, [], 32, 0, 0, nlevsg_GuiSlotRelay$1_$callClinit, 0, cgcc_DenseImmutableTable$Row, "DenseImmutableTable$Row", 3, cgcc_DenseImmutableTable$ImmutableArrayMap, [], 4, 0, [cgcc_DenseImmutableTable,0,"Row"], 0, ["$keyToIndex", $rt_wrapFunction0(cgcc_DenseImmutableTable$Row_keyToIndex), "$getValue4", $rt_wrapFunction1(cgcc_DenseImmutableTable$Row_getValue), "$isPartialView", $rt_wrapFunction0(cgcc_DenseImmutableTable$Row_isPartialView)], nmeaa_ModifiableAttributeInstance, "ModifiableAttributeInstance", 131, jl_Object, [nmeaa_IAttributeInstance], 0, 3, [0,0,0], 0, 0, nmu_WeightedRandomFishable, "WeightedRandomFishable", 85, nmu_WeightedRandom$Item, [], 0, 3, [0,0,0], 0, 0, @@ -1419869,8 +1422162,8 @@ nlevi_PlatformWebRTC$LANClient$signalRemoteConnect$lambda$_4_5, 0, jl_Object, [otjde_EventListener], 0, 3, 0, 0, ["$handleEvent$exported$0", $rt_wrapFunction1(nlevi_PlatformWebRTC$LANClient$signalRemoteConnect$lambda$_4_5_handleEvent$exported$0)], nmwgs_StructureComponent$1, 0, jl_Object, [], 32, 0, 0, nmwgs_StructureComponent$1_$callClinit, 0, nPs_Matches, 0, jl_Object, [], 0, 3, 0, 0, 0, - nlevoedg_GuiShaderConfigList, "GuiShaderConfigList", 152, nmcg_GuiListExtended, [], 0, 3, 0, nlevoedg_GuiShaderConfigList_$callClinit, ["$getListEntry", $rt_wrapFunction1(nlevoedg_GuiShaderConfigList_getListEntry), "$getSize0", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList_getSize), "$getListWidth", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList_getListWidth)], nlevsg_GuiScreenChangeRelayTimeout$1, 0, nlevsg_GuiSlider2, [], 0, 0, 0, 0, ["$mouseDragged", $rt_wrapFunction3(nlevsg_GuiScreenChangeRelayTimeout$1_mouseDragged)], + nlevoedg_GuiShaderConfigList, "GuiShaderConfigList", 152, nmcg_GuiListExtended, [], 0, 3, 0, nlevoedg_GuiShaderConfigList_$callClinit, ["$getListEntry", $rt_wrapFunction1(nlevoedg_GuiShaderConfigList_getListEntry), "$getSize0", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList_getSize), "$getListWidth", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList_getListWidth)], nlevsg_GuiScreenNameWorldImport$updateScreen$lambda$_1_0, 0, jl_Object, [juf_BooleanSupplier], 0, 3, 0, 0, ["$getAsBoolean", $rt_wrapFunction0(nlevsg_GuiScreenNameWorldImport$updateScreen$lambda$_1_0_getAsBoolean)], nmwgs_StructureMineshaftPieces$1, 0, jl_Object, [], 32, 0, 0, nmwgs_StructureMineshaftPieces$1_$callClinit, 0, nmcg_GuiSlider$FormatHelper, 0, jl_Object, [], 3, 3, 0, 0, 0, @@ -1419878,7 +1422171,6 @@ nmcg_GuiCustomizeWorldScreen, "GuiCustomizeWorldScreen", 105, nmcg_GuiScreen, [nmcg_GuiSlider$FormatHelper, nmcg_GuiPageButtonList$GuiResponder], 0, 3, 0, 0, ["$initGui", $rt_wrapFunction0(nmcg_GuiCustomizeWorldScreen_initGui), "$handleMouseInput", $rt_wrapFunction0(nmcg_GuiCustomizeWorldScreen_handleMouseInput), "$actionPerformed", $rt_wrapFunction1(nmcg_GuiCustomizeWorldScreen_actionPerformed), "$keyTyped", $rt_wrapFunction2(nmcg_GuiCustomizeWorldScreen_keyTyped), "$mouseClicked", $rt_wrapFunction3(nmcg_GuiCustomizeWorldScreen_mouseClicked), "$mouseReleased0", $rt_wrapFunction3(nmcg_GuiCustomizeWorldScreen_mouseReleased), "$drawScreen", $rt_wrapFunction3(nmcg_GuiCustomizeWorldScreen_drawScreen)], nmcg_GuiCreateFlatWorld, "GuiCreateFlatWorld", 105, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$initGui", $rt_wrapFunction0(nmcg_GuiCreateFlatWorld_initGui), "$handleMouseInput", $rt_wrapFunction0(nmcg_GuiCreateFlatWorld_handleMouseInput), "$actionPerformed", $rt_wrapFunction1(nmcg_GuiCreateFlatWorld_actionPerformed), "$drawScreen", $rt_wrapFunction3(nmcg_GuiCreateFlatWorld_drawScreen)], - nmnps_S42PacketCombatEvent$1, 0, jl_Object, [], 32, 0, 0, nmnps_S42PacketCombatEvent$1_$callClinit, 0, nlevo_WorldRenderer$State, 0, jl_Object, [], 0, 3, 0, 0, 0, nlevc_EaglerLoadingCache, 0, jl_Object, [], 0, 3, 0, 0, 0, nlevc_EaglerCacheProvider, 0, jl_Object, [], 3, 3, 0, 0, 0, @@ -1419888,8 +1422180,8 @@ nmcrel_LayerArmorBase$2, 0, jl_Object, [], 32, 0, 0, nmcrel_LayerArmorBase$2_$callClinit, 0, nmcrel_LayerArmorBase$1, "LayerArmorBase$1", 99, nlevoed_ShadersRenderPassFuture, [], 0, 0, [nmcrel_LayerArmorBase,0,0], 0, ["$draw0", $rt_wrapFunction1(nmcrel_LayerArmorBase$1_draw)], cgcp_Doubles, 0, jl_Object, [], 4, 3, 0, cgcp_Doubles_$callClinit, 0, - cgcp_Floats, 0, jl_Object, [], 4, 3, 0, 0, 0]); - $rt_metadata([nmbs_BlockWorldState$1, "BlockWorldState$1", 119, jl_Object, [cgcb_Predicate], 0, 0, [nmbs_BlockWorldState,0,0], 0, ["$apply0", $rt_wrapFunction1(nmbs_BlockWorldState$1_apply)], + cgcp_Floats, 0, jl_Object, [], 4, 3, 0, 0, 0, + nmbs_BlockWorldState$1, "BlockWorldState$1", 119, jl_Object, [cgcb_Predicate], 0, 0, [nmbs_BlockWorldState,0,0], 0, ["$apply0", $rt_wrapFunction1(nmbs_BlockWorldState$1_apply)], nlevi_PlatformWebRTC$LANPeer$lambda$setRemoteDescription$10$lambda$_5_0, 0, jl_Object, [nlevi_PlatformWebRTC$DescHandler], 0, 3, 0, 0, ["$call$exported$01", $rt_wrapFunction1(nlevi_PlatformWebRTC$LANPeer$lambda$setRemoteDescription$10$lambda$_5_0_call$exported$0)], nlevi_PlatformWebRTC$LANPeer$lambda$setRemoteDescription$10$lambda$_5_1, 0, jl_Object, [nlevi_PlatformWebRTC$ErrorHandler], 0, 3, 0, 0, ["$call$exported$01", $rt_wrapFunction1(nlevi_PlatformWebRTC$LANPeer$lambda$setRemoteDescription$10$lambda$_5_1_call$exported$0)], nlevoedg_GuiShaderConfigList$ListEntryHeader, "GuiShaderConfigList$ListEntryHeader", 152, jl_Object, [nmcg_GuiListExtended$IGuiListEntry], 0, 0, [nlevoedg_GuiShaderConfigList,0,"ListEntryHeader"], 0, ["$setSelected", $rt_wrapFunction3(nlevoedg_GuiShaderConfigList$ListEntryHeader_setSelected), "$drawEntry", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nlevoedg_GuiShaderConfigList$ListEntryHeader_drawEntry(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$mousePressed0", @@ -1419903,8 +1422195,8 @@ nlevoedg_GuiShaderConfigList$2, "GuiShaderConfigList$2", 152, nlevoedg_GuiShaderConfigList$ShaderOption, [], 0, 0, [nlevoedg_GuiShaderConfigList,0,0], 0, ["$getDisplayValue", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList$2_getDisplayValue), "$toggleOption", $rt_wrapFunction2(nlevoedg_GuiShaderConfigList$2_toggleOption), "$getDirty", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList$2_getDirty)], nlevoedg_GuiShaderConfigList$3, "GuiShaderConfigList$3", 152, nlevoedg_GuiShaderConfigList$ShaderOption, [], 0, 0, [nlevoedg_GuiShaderConfigList,0,0], 0, ["$getDisplayValue", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList$3_getDisplayValue), "$toggleOption", $rt_wrapFunction2(nlevoedg_GuiShaderConfigList$3_toggleOption), "$getDirty", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList$3_getDirty)], nlevoedg_GuiShaderConfigList$4, "GuiShaderConfigList$4", 152, nlevoedg_GuiShaderConfigList$ShaderOption, [], 0, 0, [nlevoedg_GuiShaderConfigList,0,0], 0, ["$getDisplayValue", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList$4_getDisplayValue), "$toggleOption", $rt_wrapFunction2(nlevoedg_GuiShaderConfigList$4_toggleOption), "$getDirty", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList$4_getDirty)], - nlevoedg_GuiShaderConfigList$5, "GuiShaderConfigList$5", 152, nlevoedg_GuiShaderConfigList$ShaderOption, [], 0, 0, [nlevoedg_GuiShaderConfigList,0,0], 0, ["$getDisplayValue", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList$5_getDisplayValue), "$toggleOption", $rt_wrapFunction2(nlevoedg_GuiShaderConfigList$5_toggleOption), "$getDirty", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList$5_getDirty)], - nlevoedg_GuiShaderConfigList$6, "GuiShaderConfigList$6", 152, nlevoedg_GuiShaderConfigList$ShaderOption, [], 0, 0, [nlevoedg_GuiShaderConfigList,0,0], 0, ["$getDisplayValue", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList$6_getDisplayValue), "$toggleOption", $rt_wrapFunction2(nlevoedg_GuiShaderConfigList$6_toggleOption), "$getDirty", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList$6_getDirty)], + nlevoedg_GuiShaderConfigList$5, "GuiShaderConfigList$5", 152, nlevoedg_GuiShaderConfigList$ShaderOption, [], 0, 0, [nlevoedg_GuiShaderConfigList,0,0], 0, ["$getDisplayValue", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList$5_getDisplayValue), "$toggleOption", $rt_wrapFunction2(nlevoedg_GuiShaderConfigList$5_toggleOption), "$getDirty", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList$5_getDirty)]]); + $rt_metadata([nlevoedg_GuiShaderConfigList$6, "GuiShaderConfigList$6", 152, nlevoedg_GuiShaderConfigList$ShaderOption, [], 0, 0, [nlevoedg_GuiShaderConfigList,0,0], 0, ["$getDisplayValue", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList$6_getDisplayValue), "$toggleOption", $rt_wrapFunction2(nlevoedg_GuiShaderConfigList$6_toggleOption), "$getDirty", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList$6_getDirty)], nlevoedg_GuiShaderConfigList$7, "GuiShaderConfigList$7", 152, nlevoedg_GuiShaderConfigList$ShaderOption, [], 0, 0, [nlevoedg_GuiShaderConfigList,0,0], 0, ["$getDisplayValue", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList$7_getDisplayValue), "$toggleOption", $rt_wrapFunction2(nlevoedg_GuiShaderConfigList$7_toggleOption), "$getDirty", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList$7_getDirty)], nlevoedg_GuiShaderConfigList$8, "GuiShaderConfigList$8", 152, nlevoedg_GuiShaderConfigList$ShaderOption, [], 0, 0, [nlevoedg_GuiShaderConfigList,0,0], 0, ["$getDisplayValue", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList$8_getDisplayValue), "$toggleOption", $rt_wrapFunction2(nlevoedg_GuiShaderConfigList$8_toggleOption), "$getDirty", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList$8_getDirty)], nlevoedg_GuiShaderConfigList$9, "GuiShaderConfigList$9", 152, nlevoedg_GuiShaderConfigList$ShaderOption, [], 0, 0, [nlevoedg_GuiShaderConfigList,0,0], 0, ["$getDisplayValue", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList$9_getDisplayValue), "$toggleOption", $rt_wrapFunction2(nlevoedg_GuiShaderConfigList$9_toggleOption), "$getDirty", $rt_wrapFunction0(nlevoedg_GuiShaderConfigList$9_getDirty)], @@ -1419920,7 +1422212,6 @@ nmwb_BiomeColorHelper$2, 0, jl_Object, [nmwb_BiomeColorHelper$ColorResolver], 0, 0, 0, 0, ["$getColorAtPos", $rt_wrapFunction2(nmwb_BiomeColorHelper$2_getColorAtPos)], nmwb_BiomeColorHelper$3, 0, jl_Object, [nmwb_BiomeColorHelper$ColorResolver], 0, 0, 0, 0, ["$getColorAtPos", $rt_wrapFunction2(nmwb_BiomeColorHelper$3_getColorAtPos)], oaclb_ToStringStyle, 0, jl_Object, [ji_Serializable], 1, 3, 0, oaclb_ToStringStyle_$callClinit, 0, - nmb_BlockRailBase$1, 0, jl_Object, [], 32, 0, 0, nmb_BlockRailBase$1_$callClinit, 0, nlevoedg_GuiShaderConfigList$ListEntryButtonRow, "GuiShaderConfigList$ListEntryButtonRow", 152, jl_Object, [nmcg_GuiListExtended$IGuiListEntry], 0, 0, [nlevoedg_GuiShaderConfigList,0,"ListEntryButtonRow"], 0, ["$setSelected", $rt_wrapFunction3(nlevoedg_GuiShaderConfigList$ListEntryButtonRow_setSelected), "$drawEntry", function(var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8) { nlevoedg_GuiShaderConfigList$ListEntryButtonRow_drawEntry(this, var_1, var_2, var_3, var_4, var_5, var_6, var_7, var_8); }, "$mousePressed0", function(var_1, var_2, var_3, var_4, var_5, var_6) { return nlevoedg_GuiShaderConfigList$ListEntryButtonRow_mousePressed(this, var_1, var_2, var_3, var_4, var_5, var_6); }, "$mouseReleased2", function(var_1, var_2, var_3, var_4, var_5, var_6) { nlevoedg_GuiShaderConfigList$ListEntryButtonRow_mouseReleased(this, var_1, var_2, var_3, var_4, var_5, var_6); }], nmwgs_StructureBoundingBox$1, 0, jl_Object, [], 32, 0, 0, nmwgs_StructureBoundingBox$1_$callClinit, 0, @@ -1419943,8 +1422234,8 @@ cgcc_AbstractMapBasedMultimap$KeySet$1, 0, jl_Object, [ju_Iterator], 0, 0, 0, 0, 0, nmu_EntitySelectors$ArmoredMob, "EntitySelectors$ArmoredMob", 85, jl_Object, [cgcb_Predicate], 0, 3, [nmu_EntitySelectors,0,"ArmoredMob"], 0, ["$apply0", $rt_wrapFunction1(nmu_EntitySelectors$ArmoredMob_apply)], nmi_Bootstrap$5$1, 0, nmd_BehaviorProjectileDispense, [], 0, 0, 0, 0, ["$getProjectileEntity", $rt_wrapFunction2(nmi_Bootstrap$5$1_getProjectileEntity), "$func_82498_a", $rt_wrapFunction0(nmi_Bootstrap$5$1_func_82498_a), "$func_82500_b", $rt_wrapFunction0(nmi_Bootstrap$5$1_func_82500_b)], - nmwgf_WorldGenBigTree$FoliageCoordinates, "WorldGenBigTree$FoliageCoordinates", 77, nmu_BlockPos, [], 0, 0, [nmwgf_WorldGenBigTree,0,"FoliageCoordinates"], 0, 0]); - $rt_metadata([cgcc_AbstractMapBasedMultimap$Itr, 0, jl_Object, [ju_Iterator], 1, 0, 0, 0, 0, + nmwgf_WorldGenBigTree$FoliageCoordinates, "WorldGenBigTree$FoliageCoordinates", 77, nmu_BlockPos, [], 0, 0, [nmwgf_WorldGenBigTree,0,"FoliageCoordinates"], 0, 0, + cgcc_AbstractMapBasedMultimap$Itr, 0, jl_Object, [ju_Iterator], 1, 0, 0, 0, 0, cgcc_AbstractMapBasedMultimap$2, 0, cgcc_AbstractMapBasedMultimap$Itr, [], 0, 0, 0, 0, ["$output0", $rt_wrapFunction2(cgcc_AbstractMapBasedMultimap$2_output)], nmcg_GuiDownloadTerrain, "GuiDownloadTerrain", 105, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$keyTyped", $rt_wrapFunction2(nmcg_GuiDownloadTerrain_keyTyped), "$initGui", $rt_wrapFunction0(nmcg_GuiDownloadTerrain_initGui), "$updateScreen", $rt_wrapFunction0(nmcg_GuiDownloadTerrain_updateScreen), "$drawScreen", $rt_wrapFunction3(nmcg_GuiDownloadTerrain_drawScreen), "$doesGuiPauseGame", $rt_wrapFunction0(nmcg_GuiDownloadTerrain_doesGuiPauseGame), "$shouldHangupIntegratedServer", $rt_wrapFunction0(nmcg_GuiDownloadTerrain_shouldHangupIntegratedServer)], nmcn_NetHandlerPlayClient$handleJoinGame$lambda$_6_0, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, 0, @@ -1419957,9 +1422248,9 @@ nmcpi_LocalBlockIntercommunication, 0, jl_Object, [nmw_IInteractionObject], 0, 3, 0, 0, ["$getGuiID", $rt_wrapFunction0(nmcpi_LocalBlockIntercommunication_getGuiID), "$getDisplayName0", $rt_wrapFunction0(nmcpi_LocalBlockIntercommunication_getDisplayName)], nmcn_NetHandlerPlayClient$2, 0, jl_Object, [], 32, 0, 0, nmcn_NetHandlerPlayClient$2_$callClinit, 0, nmcg_GuiMerchant, "GuiMerchant", 105, nmcgi_GuiContainer, [], 0, 3, 0, nmcg_GuiMerchant_$callClinit, ["$initGui", $rt_wrapFunction0(nmcg_GuiMerchant_initGui), "$drawGuiContainerForegroundLayer", $rt_wrapFunction2(nmcg_GuiMerchant_drawGuiContainerForegroundLayer), "$updateScreen", $rt_wrapFunction0(nmcg_GuiMerchant_updateScreen), "$actionPerformed", $rt_wrapFunction1(nmcg_GuiMerchant_actionPerformed), "$drawGuiContainerBackgroundLayer", $rt_wrapFunction3(nmcg_GuiMerchant_drawGuiContainerBackgroundLayer), - "$drawScreen", $rt_wrapFunction3(nmcg_GuiMerchant_drawScreen)], - nmcg_GuiScreenBook, "GuiScreenBook", 105, nmcg_GuiScreen, [], 0, 3, 0, nmcg_GuiScreenBook_$callClinit, ["$updateScreen", $rt_wrapFunction0(nmcg_GuiScreenBook_updateScreen), "$initGui", $rt_wrapFunction0(nmcg_GuiScreenBook_initGui), "$onGuiClosed", $rt_wrapFunction0(nmcg_GuiScreenBook_onGuiClosed), "$actionPerformed", $rt_wrapFunction1(nmcg_GuiScreenBook_actionPerformed), "$keyTyped", $rt_wrapFunction2(nmcg_GuiScreenBook_keyTyped), "$drawScreen", $rt_wrapFunction3(nmcg_GuiScreenBook_drawScreen), "$mouseClicked", - $rt_wrapFunction3(nmcg_GuiScreenBook_mouseClicked), "$blockPTTKey", $rt_wrapFunction0(nmcg_GuiScreenBook_blockPTTKey)], + "$drawScreen", $rt_wrapFunction3(nmcg_GuiMerchant_drawScreen)]]); + $rt_metadata([nmcg_GuiScreenBook, "GuiScreenBook", 105, nmcg_GuiScreen, [], 0, 3, 0, nmcg_GuiScreenBook_$callClinit, ["$updateScreen", $rt_wrapFunction0(nmcg_GuiScreenBook_updateScreen), "$initGui", $rt_wrapFunction0(nmcg_GuiScreenBook_initGui), "$onGuiClosed", $rt_wrapFunction0(nmcg_GuiScreenBook_onGuiClosed), "$actionPerformed", $rt_wrapFunction1(nmcg_GuiScreenBook_actionPerformed), "$keyTyped", $rt_wrapFunction2(nmcg_GuiScreenBook_keyTyped), "$drawScreen", $rt_wrapFunction3(nmcg_GuiScreenBook_drawScreen), + "$mouseClicked", $rt_wrapFunction3(nmcg_GuiScreenBook_mouseClicked), "$blockPTTKey", $rt_wrapFunction0(nmcg_GuiScreenBook_blockPTTKey)], nmcn_NetHandlerPlayClient$handleResourcePack$lambda$_73_0, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, ["$accept", $rt_wrapFunction1(nmcn_NetHandlerPlayClient$handleResourcePack$lambda$_73_0_accept)], nmcn_NetHandlerPlayClient$1, 0, jl_Object, [nmcg_GuiYesNoCallback], 0, 0, 0, 0, ["$confirmClicked", $rt_wrapFunction2(nmcn_NetHandlerPlayClient$1_confirmClicked)], nmn_NetHandlerPlayServer$2, 0, jl_Object, [], 32, 0, 0, nmn_NetHandlerPlayServer$2_$callClinit, 0, @@ -1420003,8 +1422294,9 @@ "$getMapFileFromName", $rt_wrapFunction1(nmws_SaveHandlerMP_getMapFileFromName)], nmws_SaveDataMemoryStorage, 0, nmws_MapStorage, [], 0, 3, 0, 0, ["$loadData", $rt_wrapFunction2(nmws_SaveDataMemoryStorage_loadData), "$setData", $rt_wrapFunction2(nmws_SaveDataMemoryStorage_setData), "$saveAllData", $rt_wrapFunction0(nmws_SaveDataMemoryStorage_saveAllData), "$getUniqueDataId", $rt_wrapFunction1(nmws_SaveDataMemoryStorage_getUniqueDataId)], nmi_InventoryMerchant, "InventoryMerchant", 60, jl_Object, [nmi_IInventory], 0, 3, 0, 0, ["$getStackInSlot", $rt_wrapFunction1(nmi_InventoryMerchant_getStackInSlot), "$decrStackSize", $rt_wrapFunction2(nmi_InventoryMerchant_decrStackSize), "$setInventorySlotContents", $rt_wrapFunction2(nmi_InventoryMerchant_setInventorySlotContents), "$getInventoryStackLimit", $rt_wrapFunction0(nmi_InventoryMerchant_getInventoryStackLimit), "$markDirty", $rt_wrapFunction0(nmi_InventoryMerchant_markDirty)], - nmcrt_TileEntityBannerRenderer$TimedBannerTexture, "TileEntityBannerRenderer$TimedBannerTexture", 97, jl_Object, [], 0, 0, [nmcrt_TileEntityBannerRenderer,0,"TimedBannerTexture"], 0, 0]); - $rt_metadata([nmcrt_LayeredTexture, "LayeredTexture", 92, nmcrt_AbstractTexture, [], 0, 3, [0,0,0], nmcrt_LayeredTexture_$callClinit, ["$loadTexture0", $rt_wrapFunction1(nmcrt_LayeredTexture_loadTexture)], + nmb_BlockLever$1, 0, jl_Object, [], 32, 0, 0, nmb_BlockLever$1_$callClinit, 0, + nmcrt_TileEntityBannerRenderer$TimedBannerTexture, "TileEntityBannerRenderer$TimedBannerTexture", 97, jl_Object, [], 0, 0, [nmcrt_TileEntityBannerRenderer,0,"TimedBannerTexture"], 0, 0, + nmcrt_LayeredTexture, "LayeredTexture", 92, nmcrt_AbstractTexture, [], 0, 3, [0,0,0], nmcrt_LayeredTexture_$callClinit, ["$loadTexture0", $rt_wrapFunction1(nmcrt_LayeredTexture_loadTexture)], cgcc_AbstractMapBasedMultimap$WrappedList, 0, cgcc_AbstractMapBasedMultimap$WrappedCollection, [ju_List], 0, 0, 0, 0, ["$sort", $rt_wrapFunction1(ju_List_sort)], cgcc_AbstractMapBasedMultimap$RandomAccessWrappedList, 0, cgcc_AbstractMapBasedMultimap$WrappedList, [ju_RandomAccess], 0, 0, 0, 0, ["$sort", $rt_wrapFunction1(ju_List_sort)], nlevi_PlatformWebRTC$LANClient$lambda$signalRemoteConnect$1$lambda$_16_0, 0, jl_Object, [otjb_TimerHandler], 0, 3, 0, 0, ["$onTimer$exported$0", $rt_wrapFunction0(nlevi_PlatformWebRTC$LANClient$lambda$signalRemoteConnect$1$lambda$_16_0_onTimer$exported$0)], @@ -1420015,8 +1422307,8 @@ nlevi_PlatformWebRTC$LANPeer$lambda$setRemoteDescription$8$lambda$_7_1, 0, jl_Object, [nlevi_PlatformWebRTC$ErrorHandler], 0, 3, 0, 0, ["$call$exported$01", $rt_wrapFunction1(nlevi_PlatformWebRTC$LANPeer$lambda$setRemoteDescription$8$lambda$_7_1_call$exported$0)], nmu_TupleIntJsonSerializable, "TupleIntJsonSerializable", 85, jl_Object, [], 0, 3, [0,0,0], 0, 0, nmcg_GuiPageButtonList, 0, nmcg_GuiListExtended, [], 0, 3, 0, 0, ["$getSize0", $rt_wrapFunction0(nmcg_GuiPageButtonList_getSize), "$getListWidth", $rt_wrapFunction0(nmcg_GuiPageButtonList_getListWidth), "$getScrollBarX", $rt_wrapFunction0(nmcg_GuiPageButtonList_getScrollBarX), "$getListEntry", $rt_wrapFunction1(nmcg_GuiPageButtonList_getListEntry0)], - nmcg_GuiPageButtonList$GuiListEntry, 0, jl_Object, [], 0, 3, 0, 0, 0, - nmcg_GuiPageButtonList$GuiSlideEntry, 0, nmcg_GuiPageButtonList$GuiListEntry, [], 0, 3, 0, 0, 0, + nmcg_GuiPageButtonList$GuiListEntry, 0, jl_Object, [], 0, 3, 0, 0, 0]); + $rt_metadata([nmcg_GuiPageButtonList$GuiSlideEntry, 0, nmcg_GuiPageButtonList$GuiListEntry, [], 0, 3, 0, 0, 0, nmcg_GuiPageButtonList$GuiButtonEntry, 0, nmcg_GuiPageButtonList$GuiListEntry, [], 0, 3, 0, 0, 0, nmcg_GuiPageButtonList$GuiLabelEntry, 0, nmcg_GuiPageButtonList$GuiListEntry, [], 0, 3, 0, 0, 0, nmcg_GuiPageButtonList$EditBoxEntry, 0, nmcg_GuiPageButtonList$GuiListEntry, [], 0, 3, 0, 0, 0, @@ -1420055,23 +1422347,23 @@ cgcc_ImmutableMapValues, 0, cgcc_ImmutableCollection, [], 4, 0, 0, 0, ["$iterator", $rt_wrapFunction0(cgcc_ImmutableMapValues_iterator)], nmwgf_WorldGenShrub, 0, nmwgf_WorldGenTrees, [], 0, 3, 0, 0, ["$generate", $rt_wrapFunction3(nmwgf_WorldGenShrub_generate)], nmwgf_WorldGenTallGrass, 0, nmwgf_WorldGenerator, [], 0, 3, 0, 0, 0, - nlevssv_IntegratedVoiceService$VoicePair, "IntegratedVoiceService$VoicePair", 162, jl_Object, [], 0, 0, [nlevssv_IntegratedVoiceService,0,"VoicePair"], 0, ["$hashCode0", $rt_wrapFunction0(nlevssv_IntegratedVoiceService$VoicePair_hashCode), "$equals0", $rt_wrapFunction1(nlevssv_IntegratedVoiceService$VoicePair_equals)]]); - $rt_metadata([nmcm_ChunkProviderClient, 0, jl_Object, [nmwc_IChunkProvider], 0, 3, 0, nmcm_ChunkProviderClient_$callClinit, ["$chunkExists", $rt_wrapFunction2(nmcm_ChunkProviderClient_chunkExists), "$provideChunk", $rt_wrapFunction2(nmcm_ChunkProviderClient_provideChunk), "$saveChunks", $rt_wrapFunction2(nmcm_ChunkProviderClient_saveChunks), "$unloadQueuedChunks", $rt_wrapFunction0(nmcm_ChunkProviderClient_unloadQueuedChunks), "$canSave", $rt_wrapFunction0(nmcm_ChunkProviderClient_canSave), "$makeString", - $rt_wrapFunction0(nmcm_ChunkProviderClient_makeString), "$getPossibleCreatures", $rt_wrapFunction2(nmcm_ChunkProviderClient_getPossibleCreatures), "$getStrongholdGen", $rt_wrapFunction3(nmcm_ChunkProviderClient_getStrongholdGen), "$provideChunk0", $rt_wrapFunction1(nmcm_ChunkProviderClient_provideChunk0)], + nlevssv_IntegratedVoiceService$VoicePair, "IntegratedVoiceService$VoicePair", 162, jl_Object, [], 0, 0, [nlevssv_IntegratedVoiceService,0,"VoicePair"], 0, ["$hashCode0", $rt_wrapFunction0(nlevssv_IntegratedVoiceService$VoicePair_hashCode), "$equals0", $rt_wrapFunction1(nlevssv_IntegratedVoiceService$VoicePair_equals)], + nmcm_ChunkProviderClient, 0, jl_Object, [nmwc_IChunkProvider], 0, 3, 0, nmcm_ChunkProviderClient_$callClinit, ["$chunkExists", $rt_wrapFunction2(nmcm_ChunkProviderClient_chunkExists), "$provideChunk", $rt_wrapFunction2(nmcm_ChunkProviderClient_provideChunk), "$saveChunks", $rt_wrapFunction2(nmcm_ChunkProviderClient_saveChunks), "$unloadQueuedChunks", $rt_wrapFunction0(nmcm_ChunkProviderClient_unloadQueuedChunks), "$canSave", $rt_wrapFunction0(nmcm_ChunkProviderClient_canSave), "$makeString", $rt_wrapFunction0(nmcm_ChunkProviderClient_makeString), + "$getPossibleCreatures", $rt_wrapFunction2(nmcm_ChunkProviderClient_getPossibleCreatures), "$getStrongholdGen", $rt_wrapFunction3(nmcm_ChunkProviderClient_getStrongholdGen), "$provideChunk0", $rt_wrapFunction1(nmcm_ChunkProviderClient_provideChunk0)], nlevp_ServerSkinCache$WaitingSkin, "ServerSkinCache$WaitingSkin", 145, jl_Object, [], 0, 3, [nlevp_ServerSkinCache,0,"WaitingSkin"], 0, 0, - nmcg_GuiScreenBook$NextPageButton, "GuiScreenBook$NextPageButton", 105, nmcg_GuiButton, [], 0, 0, [nmcg_GuiScreenBook,0,"NextPageButton"], 0, ["$drawButton", $rt_wrapFunction3(nmcg_GuiScreenBook$NextPageButton_drawButton)], - nmcg_GuiFlatPresets$ListSlot, 0, nmcg_GuiSlot, [], 0, 0, 0, 0, ["$getSize0", $rt_wrapFunction0(nmcg_GuiFlatPresets$ListSlot_getSize), "$elementClicked", $rt_wrapFunction4(nmcg_GuiFlatPresets$ListSlot_elementClicked), "$isSelected", $rt_wrapFunction1(nmcg_GuiFlatPresets$ListSlot_isSelected), "$drawBackground0", $rt_wrapFunction0(nmcg_GuiFlatPresets$ListSlot_drawBackground), "$drawSlot0", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcg_GuiFlatPresets$ListSlot_drawSlot(this, var_1, var_2, var_3, var_4, - var_5, var_6); }], - nmcg_GuiScreenCustomizePresets$ListPreset, 0, nmcg_GuiSlot, [], 0, 0, 0, 0, ["$getSize0", $rt_wrapFunction0(nmcg_GuiScreenCustomizePresets$ListPreset_getSize), "$elementClicked", $rt_wrapFunction4(nmcg_GuiScreenCustomizePresets$ListPreset_elementClicked), "$isSelected", $rt_wrapFunction1(nmcg_GuiScreenCustomizePresets$ListPreset_isSelected), "$drawBackground0", $rt_wrapFunction0(nmcg_GuiScreenCustomizePresets$ListPreset_drawBackground), "$drawSlot0", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcg_GuiScreenCustomizePresets$ListPreset_drawSlot(this, - var_1, var_2, var_3, var_4, var_5, var_6); }], nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_0, 0, jl_Object, [nlevi_PlatformWebRTC$EmptyHandler], 0, 3, 0, 0, ["$call$exported$00", $rt_wrapFunction0(nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_0_call$exported$0)], nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_1, 0, jl_Object, [nlevi_PlatformWebRTC$ErrorHandler], 0, 3, 0, 0, ["$call$exported$01", $rt_wrapFunction1(nlevi_PlatformVoiceClient$VoicePeer$setRemoteDescription$lambda$_3_1_call$exported$0)], + nmcg_GuiScreenCustomizePresets$ListPreset, 0, nmcg_GuiSlot, [], 0, 0, 0, 0, ["$getSize0", $rt_wrapFunction0(nmcg_GuiScreenCustomizePresets$ListPreset_getSize), "$elementClicked", $rt_wrapFunction4(nmcg_GuiScreenCustomizePresets$ListPreset_elementClicked), "$isSelected", $rt_wrapFunction1(nmcg_GuiScreenCustomizePresets$ListPreset_isSelected), "$drawBackground0", $rt_wrapFunction0(nmcg_GuiScreenCustomizePresets$ListPreset_drawBackground), "$drawSlot0", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcg_GuiScreenCustomizePresets$ListPreset_drawSlot(this, + var_1, var_2, var_3, var_4, var_5, var_6); }], + nmcg_GuiFlatPresets$ListSlot, 0, nmcg_GuiSlot, [], 0, 0, 0, 0, ["$getSize0", $rt_wrapFunction0(nmcg_GuiFlatPresets$ListSlot_getSize), "$elementClicked", $rt_wrapFunction4(nmcg_GuiFlatPresets$ListSlot_elementClicked), "$isSelected", $rt_wrapFunction1(nmcg_GuiFlatPresets$ListSlot_isSelected), "$drawBackground0", $rt_wrapFunction0(nmcg_GuiFlatPresets$ListSlot_drawBackground), "$drawSlot0", function(var_1, var_2, var_3, var_4, var_5, var_6) { nmcg_GuiFlatPresets$ListSlot_drawSlot(this, var_1, var_2, var_3, var_4, + var_5, var_6); }], + nmcg_GuiScreenBook$NextPageButton, "GuiScreenBook$NextPageButton", 105, nmcg_GuiButton, [], 0, 0, [nmcg_GuiScreenBook,0,"NextPageButton"], 0, ["$drawButton", $rt_wrapFunction3(nmcg_GuiScreenBook$NextPageButton_drawButton)], nmt_TileEntityChest$1, 0, jl_Object, [], 32, 0, 0, nmt_TileEntityChest$1_$callClinit, 0, nlevm_EaglerFolderResourcePack$loadRemoteResourcePack$lambda$_10_0, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, 0, otjj_JSON, 0, jl_Object, [], 4, 3, 0, 0, 0, otjdx_Document, 0, jl_Object, [otjdx_Node], 3, 3, 0, 0, 0, - otjdh_HTMLDocument, 0, jl_Object, [otjdx_Document, otjde_EventTarget], 3, 3, 0, 0, 0, - nlevi_PlatformVoiceClient$VoicePeer$lambda$new$2$lambda$_16_0, 0, jl_Object, [otjde_EventListener], 0, 3, 0, 0, ["$handleEvent$exported$0", $rt_wrapFunction1(nlevi_PlatformVoiceClient$VoicePeer$lambda$new$2$lambda$_16_0_handleEvent$exported$0)], + otjdh_HTMLDocument, 0, jl_Object, [otjdx_Document, otjde_EventTarget], 3, 3, 0, 0, 0]); + $rt_metadata([nlevi_PlatformVoiceClient$VoicePeer$lambda$new$2$lambda$_16_0, 0, jl_Object, [otjde_EventListener], 0, 3, 0, 0, ["$handleEvent$exported$0", $rt_wrapFunction1(nlevi_PlatformVoiceClient$VoicePeer$lambda$new$2$lambda$_16_0_handleEvent$exported$0)], nlevi_PlatformVoiceClient$VoicePeer$lambda$new$5$lambda$_13_0, 0, jl_Object, [nlevi_PlatformWebRTC$EmptyHandler], 0, 3, 0, 0, ["$call$exported$00", $rt_wrapFunction0(nlevi_PlatformVoiceClient$VoicePeer$lambda$new$5$lambda$_13_0_call$exported$0)], nlevi_PlatformVoiceClient$VoicePeer$lambda$new$5$lambda$_13_1, 0, jl_Object, [nlevi_PlatformWebRTC$ErrorHandler], 0, 3, 0, 0, ["$call$exported$01", $rt_wrapFunction1(nlevi_PlatformVoiceClient$VoicePeer$lambda$new$5$lambda$_13_1_call$exported$0)], nlevi_PlatformRuntime$downloadRemoteURIByteArray$lambda$_24_0, 0, jl_Object, [juf_Consumer], 0, 3, 0, 0, 0, @@ -1420108,8 +1422400,8 @@ nmce_EntityPlayerSP$makeModData$lambda$_1_21, 0, jl_Object, [nea_BaseData$FloatCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmce_EntityPlayerSP$makeModData$lambda$_1_21_onCallback$exported$0)], nmce_EntityPlayerSP$makeModData$lambda$_1_22, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmce_EntityPlayerSP$makeModData$lambda$_1_22_onCallback$exported$0)], nmce_EntityPlayerSP$makeModData$lambda$_1_23, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmce_EntityPlayerSP$makeModData$lambda$_1_23_onCallback$exported$0)], - nmce_EntityPlayerSP$makeModData$lambda$_1_24, 0, jl_Object, [nea_BaseData$FloatCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmce_EntityPlayerSP$makeModData$lambda$_1_24_onCallback$exported$0)]]); - $rt_metadata([nmce_EntityPlayerSP$makeModData$lambda$_1_25, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmce_EntityPlayerSP$makeModData$lambda$_1_25_onCallback$exported$0)], + nmce_EntityPlayerSP$makeModData$lambda$_1_24, 0, jl_Object, [nea_BaseData$FloatCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmce_EntityPlayerSP$makeModData$lambda$_1_24_onCallback$exported$0)], + nmce_EntityPlayerSP$makeModData$lambda$_1_25, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmce_EntityPlayerSP$makeModData$lambda$_1_25_onCallback$exported$0)], nmce_EntityPlayerSP$makeModData$lambda$_1_26, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmce_EntityPlayerSP$makeModData$lambda$_1_26_onCallback$exported$0)], nmce_EntityPlayerSP$makeModData$lambda$_1_27, 0, jl_Object, [nea_BaseData$FloatCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmce_EntityPlayerSP$makeModData$lambda$_1_27_onCallback$exported$0)], nmce_EntityPlayerSP$makeModData$lambda$_1_28, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmce_EntityPlayerSP$makeModData$lambda$_1_28_onCallback$exported$0)], @@ -1420121,8 +1422413,8 @@ nmcgi_GuiEditSign, "GuiEditSign", 109, nmcg_GuiScreen, [], 0, 3, 0, 0, ["$initGui", $rt_wrapFunction0(nmcgi_GuiEditSign_initGui), "$onGuiClosed", $rt_wrapFunction0(nmcgi_GuiEditSign_onGuiClosed), "$updateScreen", $rt_wrapFunction0(nmcgi_GuiEditSign_updateScreen), "$actionPerformed", $rt_wrapFunction1(nmcgi_GuiEditSign_actionPerformed), "$keyTyped", $rt_wrapFunction2(nmcgi_GuiEditSign_keyTyped), "$drawScreen", $rt_wrapFunction3(nmcgi_GuiEditSign_drawScreen), "$blockPTTKey", $rt_wrapFunction0(nmcgi_GuiEditSign_blockPTTKey)], nmcn_NetHandlerPlayClient$makeModData$lambda$_5_0, 0, jl_Object, [nea_BaseData$VoidCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmcn_NetHandlerPlayClient$makeModData$lambda$_5_0_onCallback$exported$0)], nmcn_NetHandlerPlayClient$makeModData$lambda$_5_1, 0, jl_Object, [nea_BaseData$ObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmcn_NetHandlerPlayClient$makeModData$lambda$_5_1_onCallback$exported$0)], - nmcn_NetHandlerPlayClient$makeModData$lambda$_5_2, 0, jl_Object, [nea_BaseData$VoidCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmcn_NetHandlerPlayClient$makeModData$lambda$_5_2_onCallback$exported$0)], - nmcn_NetHandlerPlayClient$makeModData$lambda$_5_3, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmcn_NetHandlerPlayClient$makeModData$lambda$_5_3_onCallback$exported$0)], + nmcn_NetHandlerPlayClient$makeModData$lambda$_5_2, 0, jl_Object, [nea_BaseData$VoidCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmcn_NetHandlerPlayClient$makeModData$lambda$_5_2_onCallback$exported$0)]]); + $rt_metadata([nmcn_NetHandlerPlayClient$makeModData$lambda$_5_3, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmcn_NetHandlerPlayClient$makeModData$lambda$_5_3_onCallback$exported$0)], nmcn_NetHandlerPlayClient$makeModData$lambda$_5_4, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmcn_NetHandlerPlayClient$makeModData$lambda$_5_4_onCallback$exported$0)], nmcn_NetHandlerPlayClient$makeModData$lambda$_5_5, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmcn_NetHandlerPlayClient$makeModData$lambda$_5_5_onCallback$exported$0)], nmcn_NetHandlerPlayClient$makeModData$lambda$_5_6, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmcn_NetHandlerPlayClient$makeModData$lambda$_5_6_onCallback$exported$0)], @@ -1420161,8 +1422453,8 @@ nmi_ContainerHopper, "ContainerHopper", 60, nmi_Container, [], 0, 3, [0,0,0], 0, ["$canInteractWith", $rt_wrapFunction1(nmi_ContainerHopper_canInteractWith), "$transferStackInSlot", $rt_wrapFunction2(nmi_ContainerHopper_transferStackInSlot), "$onContainerClosed", $rt_wrapFunction1(nmi_ContainerHopper_onContainerClosed)], nmi_ContainerFurnace, "ContainerFurnace", 60, nmi_Container, [], 0, 3, [0,0,0], 0, ["$onCraftGuiOpened", $rt_wrapFunction1(nmi_ContainerFurnace_onCraftGuiOpened), "$detectAndSendChanges", $rt_wrapFunction0(nmi_ContainerFurnace_detectAndSendChanges), "$updateProgressBar", $rt_wrapFunction2(nmi_ContainerFurnace_updateProgressBar), "$canInteractWith", $rt_wrapFunction1(nmi_ContainerFurnace_canInteractWith), "$transferStackInSlot", $rt_wrapFunction2(nmi_ContainerFurnace_transferStackInSlot)], nmi_ContainerBrewingStand, "ContainerBrewingStand", 60, nmi_Container, [], 0, 3, [0,0,0], 0, ["$onCraftGuiOpened", $rt_wrapFunction1(nmi_ContainerBrewingStand_onCraftGuiOpened), "$detectAndSendChanges", $rt_wrapFunction0(nmi_ContainerBrewingStand_detectAndSendChanges), "$updateProgressBar", $rt_wrapFunction2(nmi_ContainerBrewingStand_updateProgressBar), "$canInteractWith", $rt_wrapFunction1(nmi_ContainerBrewingStand_canInteractWith), "$transferStackInSlot", $rt_wrapFunction2(nmi_ContainerBrewingStand_transferStackInSlot)], - nmi_ContainerDispenser, "ContainerDispenser", 60, nmi_Container, [], 0, 3, [0,0,0], 0, ["$canInteractWith", $rt_wrapFunction1(nmi_ContainerDispenser_canInteractWith), "$transferStackInSlot", $rt_wrapFunction2(nmi_ContainerDispenser_transferStackInSlot)]]); - $rt_metadata([nmep_EntityPlayer$makeModData$lambda$_4_0, 0, jl_Object, [nea_BaseData$ObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_0_onCallback$exported$0)], + nmi_ContainerDispenser, "ContainerDispenser", 60, nmi_Container, [], 0, 3, [0,0,0], 0, ["$canInteractWith", $rt_wrapFunction1(nmi_ContainerDispenser_canInteractWith), "$transferStackInSlot", $rt_wrapFunction2(nmi_ContainerDispenser_transferStackInSlot)], + nmep_EntityPlayer$makeModData$lambda$_4_0, 0, jl_Object, [nea_BaseData$ObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_0_onCallback$exported$0)], nmep_EntityPlayer$makeModData$lambda$_4_1, 0, jl_Object, [nea_BaseData$VoidCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_1_onCallback$exported$0)], nmep_EntityPlayer$makeModData$lambda$_4_2, 0, jl_Object, [nea_BaseData$ObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_2_onCallback$exported$0)], nmep_EntityPlayer$makeModData$lambda$_4_3, 0, jl_Object, [nea_BaseData$IntCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_3_onCallback$exported$0)], @@ -1420173,8 +1422465,8 @@ nmep_EntityPlayer$makeModData$lambda$_4_8, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_8_onCallback$exported$0)], nmep_EntityPlayer$makeModData$lambda$_4_9, 0, jl_Object, [nea_BaseData$IntCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_9_onCallback$exported$0)], nmep_EntityPlayer$makeModData$lambda$_4_10, 0, jl_Object, [nea_BaseData$StringCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_10_onCallback$exported$0)], - nmep_EntityPlayer$makeModData$lambda$_4_11, 0, jl_Object, [nea_BaseData$StringCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_11_onCallback$exported$0)], - nmep_EntityPlayer$makeModData$lambda$_4_12, 0, jl_Object, [nea_BaseData$IntCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_12_onCallback$exported$0)], + nmep_EntityPlayer$makeModData$lambda$_4_11, 0, jl_Object, [nea_BaseData$StringCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_11_onCallback$exported$0)]]); + $rt_metadata([nmep_EntityPlayer$makeModData$lambda$_4_12, 0, jl_Object, [nea_BaseData$IntCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_12_onCallback$exported$0)], nmep_EntityPlayer$makeModData$lambda$_4_13, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmep_EntityPlayer$makeModData$lambda$_4_13_onCallback$exported$0)], nmep_EntityPlayer$makeModData$lambda$_4_14, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmep_EntityPlayer$makeModData$lambda$_4_14_onCallback$exported$0)], nmep_EntityPlayer$makeModData$lambda$_4_15, 0, jl_Object, [nea_BaseData$VoidCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_15_onCallback$exported$0)], @@ -1420211,8 +1422503,8 @@ nmep_EntityPlayer$makeModData$lambda$_4_46, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_46_onCallback$exported$0)], nmep_EntityPlayer$makeModData$lambda$_4_47, 0, jl_Object, [nea_BaseData$DataStringCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmep_EntityPlayer$makeModData$lambda$_4_47_onCallback$exported$0)], nmep_EntityPlayer$makeModData$lambda$_4_48, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmep_EntityPlayer$makeModData$lambda$_4_48_onCallback$exported$0)], - nmep_EntityPlayer$makeModData$lambda$_4_49, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_49_onCallback$exported$0)]]); - $rt_metadata([nmep_EntityPlayer$makeModData$lambda$_4_50, 0, jl_Object, [nea_BaseData$FloatCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_50_onCallback$exported$0)], + nmep_EntityPlayer$makeModData$lambda$_4_49, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_49_onCallback$exported$0)], + nmep_EntityPlayer$makeModData$lambda$_4_50, 0, jl_Object, [nea_BaseData$FloatCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_50_onCallback$exported$0)], nmep_EntityPlayer$makeModData$lambda$_4_51, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_51_onCallback$exported$0)], nmep_EntityPlayer$makeModData$lambda$_4_52, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_52_onCallback$exported$0)], nmep_EntityPlayer$makeModData$lambda$_4_53, 0, jl_Object, [nea_BaseData$IntCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_53_onCallback$exported$0)], @@ -1420223,8 +1422515,8 @@ nmep_EntityPlayer$makeModData$lambda$_4_58, 0, jl_Object, [nea_BaseData$FloatCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_58_onCallback$exported$0)], nmep_EntityPlayer$makeModData$lambda$_4_59, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmep_EntityPlayer$makeModData$lambda$_4_59_onCallback$exported$0)], nmep_EntityPlayer$makeModData$lambda$_4_60, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmep_EntityPlayer$makeModData$lambda$_4_60_onCallback$exported$0)], - nmep_EntityPlayer$makeModData$lambda$_4_61, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmep_EntityPlayer$makeModData$lambda$_4_61_onCallback$exported$0)], - nmep_EntityPlayer$makeModData$lambda$_4_62, 0, jl_Object, [nea_BaseData$VoidCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_62_onCallback$exported$0)], + nmep_EntityPlayer$makeModData$lambda$_4_61, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmep_EntityPlayer$makeModData$lambda$_4_61_onCallback$exported$0)]]); + $rt_metadata([nmep_EntityPlayer$makeModData$lambda$_4_62, 0, jl_Object, [nea_BaseData$VoidCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_62_onCallback$exported$0)], nmep_EntityPlayer$makeModData$lambda$_4_63, 0, jl_Object, [nea_BaseData$DataStringCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmep_EntityPlayer$makeModData$lambda$_4_63_onCallback$exported$0)], nmep_EntityPlayer$makeModData$lambda$_4_64, 0, jl_Object, [nea_BaseData$VoidCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_EntityPlayer$makeModData$lambda$_4_64_onCallback$exported$0)], nmep_EntityPlayer$makeModData$lambda$_4_65, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmep_EntityPlayer$makeModData$lambda$_4_65_onCallback$exported$0)], @@ -1420262,8 +1422554,8 @@ nmcga_GuiStats$StatsItem$1, 0, jl_Object, [ju_Comparator], 0, 0, 0, 0, ["$compare", $rt_wrapFunction2(nmcga_GuiStats$StatsItem$1_compare)], nmcga_GuiStats$StatsBlock$1, 0, jl_Object, [ju_Comparator], 0, 0, 0, 0, ["$compare", $rt_wrapFunction2(nmcga_GuiStats$StatsBlock$1_compare)], nmi_ContainerHorseInventory$1, "ContainerHorseInventory$1", 60, nmi_Slot, [], 0, 0, [nmi_ContainerHorseInventory,0,0], 0, ["$isItemValid", $rt_wrapFunction1(nmi_ContainerHorseInventory$1_isItemValid)], - nmi_ContainerHorseInventory$2, "ContainerHorseInventory$2", 60, nmi_Slot, [], 0, 0, [nmi_ContainerHorseInventory,0,0], 0, ["$isItemValid", $rt_wrapFunction1(nmi_ContainerHorseInventory$2_isItemValid), "$canBeHovered", $rt_wrapFunction0(nmi_ContainerHorseInventory$2_canBeHovered)]]); - $rt_metadata([nlevi_PlatformVoiceClient$VoicePeer$lambda$setRemoteDescription$12$lambda$_6_0, 0, jl_Object, [nlevi_PlatformWebRTC$DescHandler], 0, 3, 0, 0, ["$call$exported$01", $rt_wrapFunction1(nlevi_PlatformVoiceClient$VoicePeer$lambda$setRemoteDescription$12$lambda$_6_0_call$exported$0)], + nmi_ContainerHorseInventory$2, "ContainerHorseInventory$2", 60, nmi_Slot, [], 0, 0, [nmi_ContainerHorseInventory,0,0], 0, ["$isItemValid", $rt_wrapFunction1(nmi_ContainerHorseInventory$2_isItemValid), "$canBeHovered", $rt_wrapFunction0(nmi_ContainerHorseInventory$2_canBeHovered)], + nlevi_PlatformVoiceClient$VoicePeer$lambda$setRemoteDescription$12$lambda$_6_0, 0, jl_Object, [nlevi_PlatformWebRTC$DescHandler], 0, 3, 0, 0, ["$call$exported$01", $rt_wrapFunction1(nlevi_PlatformVoiceClient$VoicePeer$lambda$setRemoteDescription$12$lambda$_6_0_call$exported$0)], nlevi_PlatformVoiceClient$VoicePeer$lambda$setRemoteDescription$12$lambda$_6_1, 0, jl_Object, [nlevi_PlatformWebRTC$ErrorHandler], 0, 3, 0, 0, ["$call$exported$01", $rt_wrapFunction1(nlevi_PlatformVoiceClient$VoicePeer$lambda$setRemoteDescription$12$lambda$_6_1_call$exported$0)], nmi_SlotFurnaceOutput, "SlotFurnaceOutput", 60, nmi_Slot, [], 0, 3, [0,0,0], 0, ["$isItemValid", $rt_wrapFunction1(nmi_SlotFurnaceOutput_isItemValid), "$decrStackSize0", $rt_wrapFunction1(nmi_SlotFurnaceOutput_decrStackSize), "$onPickupFromSlot", $rt_wrapFunction2(nmi_SlotFurnaceOutput_onPickupFromSlot), "$onCrafting", $rt_wrapFunction2(nmi_SlotFurnaceOutput_onCrafting0)], nmi_ContainerBrewingStand$Potion, "ContainerBrewingStand$Potion", 60, nmi_Slot, [], 0, 0, [nmi_ContainerBrewingStand,0,"Potion"], 0, ["$isItemValid", $rt_wrapFunction1(nmi_ContainerBrewingStand$Potion_isItemValid), "$getSlotStackLimit", $rt_wrapFunction0(nmi_ContainerBrewingStand$Potion_getSlotStackLimit), "$onPickupFromSlot", $rt_wrapFunction2(nmi_ContainerBrewingStand$Potion_onPickupFromSlot)], @@ -1420274,8 +1422566,8 @@ nme_Entity$makeModData$lambda$_40_2, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Entity$makeModData$lambda$_40_2_onCallback$exported$0)], nme_Entity$makeModData$lambda$_40_3, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Entity$makeModData$lambda$_40_3_onCallback$exported$0)], nme_Entity$makeModData$lambda$_40_4, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Entity$makeModData$lambda$_40_4_onCallback$exported$0)], - nme_Entity$makeModData$lambda$_40_5, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Entity$makeModData$lambda$_40_5_onCallback$exported$0)], - nme_Entity$makeModData$lambda$_40_6, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Entity$makeModData$lambda$_40_6_onCallback$exported$0)], + nme_Entity$makeModData$lambda$_40_5, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Entity$makeModData$lambda$_40_5_onCallback$exported$0)]]); + $rt_metadata([nme_Entity$makeModData$lambda$_40_6, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Entity$makeModData$lambda$_40_6_onCallback$exported$0)], nme_Entity$makeModData$lambda$_40_7, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Entity$makeModData$lambda$_40_7_onCallback$exported$0)], nme_Entity$makeModData$lambda$_40_8, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Entity$makeModData$lambda$_40_8_onCallback$exported$0)], nme_Entity$makeModData$lambda$_40_9, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Entity$makeModData$lambda$_40_9_onCallback$exported$0)], @@ -1420312,8 +1422604,8 @@ nme_Entity$makeModData$lambda$_40_40, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nme_Entity$makeModData$lambda$_40_40_onCallback$exported$0)], nme_Entity$makeModData$lambda$_40_41, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nme_Entity$makeModData$lambda$_40_41_onCallback$exported$0)], nme_Entity$makeModData$lambda$_40_42, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nme_Entity$makeModData$lambda$_40_42_onCallback$exported$0)], - nme_Entity$makeModData$lambda$_40_43, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nme_Entity$makeModData$lambda$_40_43_onCallback$exported$0)]]); - $rt_metadata([nme_Entity$makeModData$lambda$_40_44, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nme_Entity$makeModData$lambda$_40_44_onCallback$exported$0)], + nme_Entity$makeModData$lambda$_40_43, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nme_Entity$makeModData$lambda$_40_43_onCallback$exported$0)], + nme_Entity$makeModData$lambda$_40_44, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nme_Entity$makeModData$lambda$_40_44_onCallback$exported$0)], nme_Entity$makeModData$lambda$_40_45, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nme_Entity$makeModData$lambda$_40_45_onCallback$exported$0)], nme_Entity$makeModData$lambda$_40_46, 0, jl_Object, [nea_BaseData$StringCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Entity$makeModData$lambda$_40_46_onCallback$exported$0)], nme_Entity$makeModData$lambda$_40_47, 0, jl_Object, [nea_BaseData$IntCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Entity$makeModData$lambda$_40_47_onCallback$exported$0)], @@ -1420324,8 +1422616,8 @@ nme_Entity$makeModData$lambda$_40_52, 0, jl_Object, [nea_BaseData$FloatCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Entity$makeModData$lambda$_40_52_onCallback$exported$0)], nme_Entity$makeModData$lambda$_40_53, 0, jl_Object, [nea_BaseData$ObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Entity$makeModData$lambda$_40_53_onCallback$exported$0)], nme_Entity$makeModData$lambda$_40_54, 0, jl_Object, [nea_BaseData$ObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Entity$makeModData$lambda$_40_54_onCallback$exported$0)], - nme_Entity$makeModData$lambda$_40_55, 0, jl_Object, [nea_BaseData$StringCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Entity$makeModData$lambda$_40_55_onCallback$exported$0)], - nme_Entity$makeModData$lambda$_40_56, 0, jl_Object, [nea_BaseData$StringCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Entity$makeModData$lambda$_40_56_onCallback$exported$0)], + nme_Entity$makeModData$lambda$_40_55, 0, jl_Object, [nea_BaseData$StringCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Entity$makeModData$lambda$_40_55_onCallback$exported$0)]]); + $rt_metadata([nme_Entity$makeModData$lambda$_40_56, 0, jl_Object, [nea_BaseData$StringCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Entity$makeModData$lambda$_40_56_onCallback$exported$0)], nme_Entity$makeModData$lambda$_40_57, 0, jl_Object, [nea_BaseData$StringCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nme_Entity$makeModData$lambda$_40_57_onCallback$exported$0)], nme_Entity$makeModData$lambda$_40_58, 0, jl_Object, [nea_BaseData$DataDoubleCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nme_Entity$makeModData$lambda$_40_58_onCallback$exported$0)], nme_Entity$makeModData$lambda$_40_59, 0, jl_Object, [nea_BaseData$DataDoubleCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nme_Entity$makeModData$lambda$_40_59_onCallback$exported$0)], @@ -1420362,13 +1422654,12 @@ nmi_ContainerRepair$2, "ContainerRepair$2", 60, nmi_Slot, [], 0, 0, [nmi_ContainerRepair,0,0], 0, ["$isItemValid", $rt_wrapFunction1(nmi_ContainerRepair$2_isItemValid), "$canTakeStack", $rt_wrapFunction1(nmi_ContainerRepair$2_canTakeStack), "$onPickupFromSlot", $rt_wrapFunction2(nmi_ContainerRepair$2_onPickupFromSlot)], nmi_Container$makeModData$lambda$_6_0, 0, jl_Object, [nea_BaseData$VoidCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmi_Container$makeModData$lambda$_6_0_onCallback$exported$0)], nmi_Container$makeModData$lambda$_6_1, 0, jl_Object, [nea_BaseData$ObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmi_Container$makeModData$lambda$_6_1_onCallback$exported$0)], - nmi_Container$makeModData$lambda$_6_2, 0, jl_Object, [nea_BaseData$ObjectCallbackArr], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmi_Container$makeModData$lambda$_6_2_onCallback$exported$0)]]); - $rt_metadata([nmc_SyntaxErrorException, "SyntaxErrorException", 61, nmc_CommandException, [], 0, 3, [0,0,0], 0, 0, + nmi_Container$makeModData$lambda$_6_2, 0, jl_Object, [nea_BaseData$ObjectCallbackArr], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmi_Container$makeModData$lambda$_6_2_onCallback$exported$0)], + nmc_SyntaxErrorException, "SyntaxErrorException", 61, nmc_CommandException, [], 0, 3, [0,0,0], 0, 0, nmc_WrongUsageException, "WrongUsageException", 61, nmc_SyntaxErrorException, [], 0, 3, [0,0,0], 0, 0, nmt_TileEntitySign$2, 0, jl_Object, [nmc_ICommandSender], 0, 0, 0, 0, ["$getName", $rt_wrapFunction0(nmt_TileEntitySign$2_getName), "$getDisplayName0", $rt_wrapFunction0(nmt_TileEntitySign$2_getDisplayName), "$addChatMessage", $rt_wrapFunction1(nmt_TileEntitySign$2_addChatMessage), "$canCommandSenderUseCommand", $rt_wrapFunction2(nmt_TileEntitySign$2_canCommandSenderUseCommand), "$getPosition0", $rt_wrapFunction0(nmt_TileEntitySign$2_getPosition), "$getPositionVector", $rt_wrapFunction0(nmt_TileEntitySign$2_getPositionVector), "$getEntityWorld", $rt_wrapFunction0(nmt_TileEntitySign$2_getEntityWorld), "$getCommandSenderEntity", $rt_wrapFunction0(nmt_TileEntitySign$2_getCommandSenderEntity), "$sendCommandFeedback", $rt_wrapFunction0(nmt_TileEntitySign$2_sendCommandFeedback), "$setCommandStat", $rt_wrapFunction2(nmt_TileEntitySign$2_setCommandStat)], nmi_ItemHoe$1, 0, jl_Object, [], 32, 0, 0, nmi_ItemHoe$1_$callClinit, 0, - nmb_BlockSilverfish$1, 0, jl_Object, [], 32, 0, 0, nmb_BlockSilverfish$1_$callClinit, 0, nmi_ItemStack$makeModData$lambda$_3_0, 0, jl_Object, [nea_BaseData$ObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmi_ItemStack$makeModData$lambda$_3_0_onCallback$exported$0)], nmi_ItemStack$makeModData$lambda$_3_1, 0, jl_Object, [nea_BaseData$VoidCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmi_ItemStack$makeModData$lambda$_3_1_onCallback$exported$0)], nmi_ItemStack$makeModData$lambda$_3_2, 0, jl_Object, [nea_BaseData$ObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmi_ItemStack$makeModData$lambda$_3_2_onCallback$exported$0)], @@ -1420376,8 +1422667,8 @@ nmi_ItemStack$makeModData$lambda$_3_4, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmi_ItemStack$makeModData$lambda$_3_4_onCallback$exported$0)], nmi_ItemStack$makeModData$lambda$_3_5, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmi_ItemStack$makeModData$lambda$_3_5_onCallback$exported$0)], nmi_ItemStack$makeModData$lambda$_3_6, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmi_ItemStack$makeModData$lambda$_3_6_onCallback$exported$0)], - nmi_ItemStack$makeModData$lambda$_3_7, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmi_ItemStack$makeModData$lambda$_3_7_onCallback$exported$0)], - nmi_ItemStack$makeModData$lambda$_3_8, 0, jl_Object, [nea_BaseData$IntCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmi_ItemStack$makeModData$lambda$_3_8_onCallback$exported$0)], + nmi_ItemStack$makeModData$lambda$_3_7, 0, jl_Object, [nea_BaseData$BooleanCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmi_ItemStack$makeModData$lambda$_3_7_onCallback$exported$0)]]); + $rt_metadata([nmi_ItemStack$makeModData$lambda$_3_8, 0, jl_Object, [nea_BaseData$IntCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmi_ItemStack$makeModData$lambda$_3_8_onCallback$exported$0)], nmi_ItemStack$makeModData$lambda$_3_9, 0, jl_Object, [nea_BaseData$IntCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmi_ItemStack$makeModData$lambda$_3_9_onCallback$exported$0)], nmi_ItemStack$makeModData$lambda$_3_10, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmi_ItemStack$makeModData$lambda$_3_10_onCallback$exported$0)], nmi_ItemStack$makeModData$lambda$_3_11, 0, jl_Object, [nea_BaseData$IntCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmi_ItemStack$makeModData$lambda$_3_11_onCallback$exported$0)], @@ -1420413,8 +1422704,8 @@ nmu_Vec3$makeModData$lambda$_21_6, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_Vec3$makeModData$lambda$_21_6_onCallback$exported$0)], nmu_Vec3$makeModData$lambda$_21_7, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_Vec3$makeModData$lambda$_21_7_onCallback$exported$0)], nmu_Vec3$makeModData$lambda$_21_8, 0, jl_Object, [nea_BaseData$DataDoubleCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_Vec3$makeModData$lambda$_21_8_onCallback$exported$0)], - nmu_Vec3$makeModData$lambda$_21_9, 0, jl_Object, [nea_BaseData$DataDoubleCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_Vec3$makeModData$lambda$_21_9_onCallback$exported$0)]]); - $rt_metadata([nmu_Vec3$makeModData$lambda$_21_10, 0, jl_Object, [nea_BaseData$DoubleCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmu_Vec3$makeModData$lambda$_21_10_onCallback$exported$0)], + nmu_Vec3$makeModData$lambda$_21_9, 0, jl_Object, [nea_BaseData$DataDoubleCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_Vec3$makeModData$lambda$_21_9_onCallback$exported$0)], + nmu_Vec3$makeModData$lambda$_21_10, 0, jl_Object, [nea_BaseData$DoubleCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmu_Vec3$makeModData$lambda$_21_10_onCallback$exported$0)], nmu_Vec3$makeModData$lambda$_21_11, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_Vec3$makeModData$lambda$_21_11_onCallback$exported$0)], nmu_Vec3$makeModData$lambda$_21_12, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_Vec3$makeModData$lambda$_21_12_onCallback$exported$0)], nmu_Vec3$makeModData$lambda$_21_13, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_Vec3$makeModData$lambda$_21_13_onCallback$exported$0)], @@ -1420426,8 +1422717,8 @@ nmu_BlockPos$makeModData$lambda$_7_2, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_BlockPos$makeModData$lambda$_7_2_onCallback$exported$0)], nmu_BlockPos$makeModData$lambda$_7_3, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_BlockPos$makeModData$lambda$_7_3_onCallback$exported$0)], nmu_BlockPos$makeModData$lambda$_7_4, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_BlockPos$makeModData$lambda$_7_4_onCallback$exported$0)], - nmu_BlockPos$makeModData$lambda$_7_5, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_BlockPos$makeModData$lambda$_7_5_onCallback$exported$0)], - nmu_BlockPos$makeModData$lambda$_7_6, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_BlockPos$makeModData$lambda$_7_6_onCallback$exported$0)], + nmu_BlockPos$makeModData$lambda$_7_5, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_BlockPos$makeModData$lambda$_7_5_onCallback$exported$0)]]); + $rt_metadata([nmu_BlockPos$makeModData$lambda$_7_6, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_BlockPos$makeModData$lambda$_7_6_onCallback$exported$0)], nmu_BlockPos$makeModData$lambda$_7_7, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_BlockPos$makeModData$lambda$_7_7_onCallback$exported$0)], nmu_BlockPos$makeModData$lambda$_7_8, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_BlockPos$makeModData$lambda$_7_8_onCallback$exported$0)], nmu_BlockPos$makeModData$lambda$_7_9, 0, jl_Object, [nea_BaseData$ObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmu_BlockPos$makeModData$lambda$_7_9_onCallback$exported$0)], @@ -1420451,10 +1422742,10 @@ nmep_PlayerCapabilities$makeModData$lambda$_2_3, 0, jl_Object, [nea_BaseData$FloatCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmep_PlayerCapabilities$makeModData$lambda$_2_3_onCallback$exported$0)], nmep_PlayerCapabilities$makeModData$lambda$_2_4, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmep_PlayerCapabilities$makeModData$lambda$_2_4_onCallback$exported$0)], nmep_PlayerCapabilities$makeModData$lambda$_2_5, 0, jl_Object, [nea_BaseData$DataVoidCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmep_PlayerCapabilities$makeModData$lambda$_2_5_onCallback$exported$0)], + nmcg_GuiMerchant$MerchantButton, "GuiMerchant$MerchantButton", 105, nmcg_GuiButton, [], 0, 0, [nmcg_GuiMerchant,0,"MerchantButton"], 0, ["$drawButton", $rt_wrapFunction3(nmcg_GuiMerchant$MerchantButton_drawButton)], nmcgi_GuiBeacon$Button, "GuiBeacon$Button", 109, nmcg_GuiButton, [], 0, 0, 0, 0, ["$drawButton", $rt_wrapFunction3(nmcgi_GuiBeacon$Button_drawButton)], nmcgi_GuiBeacon$ConfirmButton, "GuiBeacon$ConfirmButton", 109, nmcgi_GuiBeacon$Button, [], 0, 0, [nmcgi_GuiBeacon,0,"ConfirmButton"], 0, ["$drawButtonForegroundLayer", $rt_wrapFunction2(nmcgi_GuiBeacon$ConfirmButton_drawButtonForegroundLayer)], nmcgi_GuiBeacon$CancelButton, "GuiBeacon$CancelButton", 109, nmcgi_GuiBeacon$Button, [], 0, 0, [nmcgi_GuiBeacon,0,"CancelButton"], 0, ["$drawButtonForegroundLayer", $rt_wrapFunction2(nmcgi_GuiBeacon$CancelButton_drawButtonForegroundLayer)], - nmcg_GuiMerchant$MerchantButton, "GuiMerchant$MerchantButton", 105, nmcg_GuiButton, [], 0, 0, [nmcg_GuiMerchant,0,"MerchantButton"], 0, ["$drawButton", $rt_wrapFunction3(nmcg_GuiMerchant$MerchantButton_drawButton)], nmu_EnchantmentNameParts, 0, jl_Object, [], 0, 3, 0, nmu_EnchantmentNameParts_$callClinit, 0, nmcgi_GuiBeacon$PowerButton, "GuiBeacon$PowerButton", 109, nmcgi_GuiBeacon$Button, [], 0, 0, [nmcgi_GuiBeacon,0,"PowerButton"], 0, ["$drawButtonForegroundLayer", $rt_wrapFunction2(nmcgi_GuiBeacon$PowerButton_drawButtonForegroundLayer)], cgcc_Maps$1, 0, cgcc_UnmodifiableIterator, [], 0, 0, 0, 0, ["$hasNext", $rt_wrapFunction0(cgcc_Maps$1_hasNext), "$next", $rt_wrapFunction0(cgcc_Maps$1_next)], @@ -1420463,8 +1422754,8 @@ nmu_Vec3i$makeModData$lambda$_5_2, 0, jl_Object, [nea_BaseData$IntCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmu_Vec3i$makeModData$lambda$_5_2_onCallback$exported$0)], nmu_Vec3i$makeModData$lambda$_5_3, 0, jl_Object, [nea_BaseData$DataIntCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_Vec3i$makeModData$lambda$_5_3_onCallback$exported$0)], nmu_Vec3i$makeModData$lambda$_5_4, 0, jl_Object, [nea_BaseData$IntCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmu_Vec3i$makeModData$lambda$_5_4_onCallback$exported$0)], - nmu_Vec3i$makeModData$lambda$_5_5, 0, jl_Object, [nea_BaseData$IntCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmu_Vec3i$makeModData$lambda$_5_5_onCallback$exported$0)]]); - $rt_metadata([nmu_Vec3i$makeModData$lambda$_5_6, 0, jl_Object, [nea_BaseData$IntCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmu_Vec3i$makeModData$lambda$_5_6_onCallback$exported$0)], + nmu_Vec3i$makeModData$lambda$_5_5, 0, jl_Object, [nea_BaseData$IntCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmu_Vec3i$makeModData$lambda$_5_5_onCallback$exported$0)], + nmu_Vec3i$makeModData$lambda$_5_6, 0, jl_Object, [nea_BaseData$IntCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmu_Vec3i$makeModData$lambda$_5_6_onCallback$exported$0)], nmu_Vec3i$makeModData$lambda$_5_7, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_Vec3i$makeModData$lambda$_5_7_onCallback$exported$0)], nmu_Vec3i$makeModData$lambda$_5_8, 0, jl_Object, [nea_BaseData$DataDoubleCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_Vec3i$makeModData$lambda$_5_8_onCallback$exported$0)], nmu_Vec3i$makeModData$lambda$_5_9, 0, jl_Object, [nea_BaseData$DataDoubleCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_Vec3i$makeModData$lambda$_5_9_onCallback$exported$0)], @@ -1420477,8 +1422768,8 @@ var_3, var_4, var_5, var_6, var_7, var_8); }], nmu_AxisAlignedBB$makeModData$lambda$_22_0, 0, jl_Object, [nea_BaseData$VoidCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmu_AxisAlignedBB$makeModData$lambda$_22_0_onCallback$exported$0)], nmu_AxisAlignedBB$makeModData$lambda$_22_1, 0, jl_Object, [nea_BaseData$ObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$00", $rt_wrapFunction0(nmu_AxisAlignedBB$makeModData$lambda$_22_1_onCallback$exported$0)], - nmu_AxisAlignedBB$makeModData$lambda$_22_2, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_AxisAlignedBB$makeModData$lambda$_22_2_onCallback$exported$0)], - nmu_AxisAlignedBB$makeModData$lambda$_22_3, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_AxisAlignedBB$makeModData$lambda$_22_3_onCallback$exported$0)], + nmu_AxisAlignedBB$makeModData$lambda$_22_2, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_AxisAlignedBB$makeModData$lambda$_22_2_onCallback$exported$0)]]); + $rt_metadata([nmu_AxisAlignedBB$makeModData$lambda$_22_3, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_AxisAlignedBB$makeModData$lambda$_22_3_onCallback$exported$0)], nmu_AxisAlignedBB$makeModData$lambda$_22_4, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_AxisAlignedBB$makeModData$lambda$_22_4_onCallback$exported$0)], nmu_AxisAlignedBB$makeModData$lambda$_22_5, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_AxisAlignedBB$makeModData$lambda$_22_5_onCallback$exported$0)], nmu_AxisAlignedBB$makeModData$lambda$_22_6, 0, jl_Object, [nea_BaseData$DataObjectCallback], 0, 3, 0, 0, ["$onCallback$exported$0", $rt_wrapFunction1(nmu_AxisAlignedBB$makeModData$lambda$_22_6_onCallback$exported$0)], @@ -1420515,9 +1422806,8 @@ cgcc_Multiset$Entry, "Multiset$Entry", 3, jl_Object, [], 3, 3, 0, 0, 0, cgcc_RegularImmutableMultiset, 0, cgcc_ImmutableMultiset, [], 0, 0, 0, 0, ["$size0", $rt_wrapFunction0(cgcc_RegularImmutableMultiset_size)], nlevm_EaglerFolderResourcePack$lambda$loadRemoteResourcePack$2$lambda$_14_0, 0, jl_Object, [jl_Runnable], 0, 3, 0, 0, ["$run", $rt_wrapFunction0(nlevm_EaglerFolderResourcePack$lambda$loadRemoteResourcePack$2$lambda$_14_0_run)], - nmb_BlockHugeMushroom$1, 0, jl_Object, [], 32, 0, 0, nmb_BlockHugeMushroom$1_$callClinit, 0, - nmwc_Chunk$1, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmwc_Chunk$1_call)]]); - $rt_metadata([cgcc_Count, "Count", 3, jl_Object, [ji_Serializable], 4, 0, [0,0,0], 0, ["$hashCode0", $rt_wrapFunction0(cgcc_Count_hashCode), "$equals0", $rt_wrapFunction1(cgcc_Count_equals), "$toString", $rt_wrapFunction0(cgcc_Count_toString)], + nmwc_Chunk$1, 0, jl_Object, [juc_Callable], 0, 0, 0, 0, ["$call", $rt_wrapFunction0(nmwc_Chunk$1_call)], + cgcc_Count, "Count", 3, jl_Object, [ji_Serializable], 4, 0, [0,0,0], 0, ["$hashCode0", $rt_wrapFunction0(cgcc_Count_hashCode), "$equals0", $rt_wrapFunction1(cgcc_Count_equals), "$toString", $rt_wrapFunction0(cgcc_Count_toString)], cgcc_ImmutableMultiset$1, 0, cgcc_UnmodifiableIterator, [], 0, 0, 0, 0, 0, cgcc_Multisets$EntrySet, 0, cgcc_Sets$ImprovedAbstractSet, [], 1, 0, 0, 0, 0, cgcc_AbstractMultiset$EntrySet, 0, cgcc_Multisets$EntrySet, [], 0, 0, 0, 0, ["$iterator", $rt_wrapFunction0(cgcc_AbstractMultiset$EntrySet_iterator), "$size0", $rt_wrapFunction0(cgcc_AbstractMultiset$EntrySet_size)], @@ -1420648,7 +1422938,7 @@ "No fallback 32-bit HDR (floating point) texture support is available on this device", "Unknown format: ", "GL_RGB16F isn\'t supported specifically in WebGL 2.0 for some goddamn reason", "32-bit HDR (floating point) textures are not supported on this device", "No fallback 16-bit HDR (floating point) texture support is available on this device", "GL_RGB32F isn\'t supported specifically in WebGL 2.0 for some goddamn reason", "16-bit HDR render target support: false", "16-bit HDR render target support: true", "32-bit HDR render target support: false", "32-bit HDR render target support: true", "32-bit HDR linear filter support: false", "32-bit HDR linear filter support: true", "No HDR render target support was detected! Shaders will be disabled.", "/assets/eagler/glsl/texture_blit.vsh", "TextureCopyUtil shader \"/assets/eagler/glsl/texture_blit.vsh\" is missing!", "/assets/eagler/glsl/texture_blit.fsh", "TextureCopyUtil shader \"/assets/eagler/glsl/texture_blit.fsh\" is missing!", "#version 300 es\n", "Failed to compile GL_VERTEX_SHADER \"/assets/eagler/glsl/texture_blit.vsh\" for TextureCopyUtil!", "Vertex shader \"/assets/eagler/glsl/texture_blit.vsh\" could not be compiled!", "(\\r\\n|\\r|\\n)", "[VERT] {}", "EaglercraftGPU", "root", "/assets/minecraft/lang/en_US.lang", "Setting user: ", "ws://", "wss://", "EagRuntime Version: ", "srp", "textures/font/ascii.png", "textures/font/ascii_sga.png", "Pre startup", "Startup", "textures", "Post startup", "settings", "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%", "NATIVE BROWSER EXCEPTION:", "", - "Caught error stitching, removing all assigned resourcepacks", "Unable to parse metadata section of resourcepack: ", "Unable to load logo: ", "logo", "singleplayer.busy.stoppingIntegratedServer", "singleplayer.failed.stoppingIntegratedServer", "########## GL ERROR ##########", "@ ", "Stopping!", "scheduledExecutables", "tick", "preRenderErrors", "Pre render", "sound", "render", "EaglercraftGPU_optimize", "Post render", "display", "%d fps (%d chunk update%s) T: %s%s%s%s", "s", "inf", " vsync", " fast", " fancy-clouds", + "Caught error stitching, removing all assigned resourcepacks", "Unable to parse metadata section of resourcepack: ", "logo", "Unable to load logo: ", "singleplayer.busy.stoppingIntegratedServer", "singleplayer.failed.stoppingIntegratedServer", "########## GL ERROR ##########", "@ ", "Stopping!", "scheduledExecutables", "tick", "preRenderErrors", "Pre render", "sound", "render", "EaglercraftGPU_optimize", "Post render", "display", "%d fps (%d chunk update%s) T: %s%s%s%s", "s", "inf", " vsync", " fast", " fancy-clouds", " fast-clouds", "gameRenderer", "fpslimit_wait", "display_update", "unspecified", "##0.00", "[0] ", "ROOT ", "] ", "[?] ", "Null returned as \'hitResult\', this shouldn\'t happen!", "gui", "eaglerVoice", "lanServer.relayDisconnected", "gameMode", "Updating screen events", "mouse", "Ticking screen", "Affected screen", "Screen name", "keyboard", "Exception in world tick", "animateTick", "pendingConnection", "levelRenderer", "level", "particles", "Manually triggered debug crash", "Affected level", "Problem", "Level is null!", "iFuckingHateWebworkers", "weather:false", "weather:true", "[EagX]", " ---------------------------------------", " This server appears to be using version ", " of the EaglerXBungee plugin which is outdated", " If you are the admin update to ", " or newer", " Click: ", "smoothWorld:false", "smoothWorld:true", "ofTrees:", "graphics:", "fullbright:", "Connecting to ", "singleplayer.busy.startingIntegratedServer", "singleplayer.failed.startingIntegratedServer", "BlockEntityTag", "Owner", "(+NBT)", "Lore", "SkullOwner", "Launched Version", "LWJGL", "OpenGL", "Is Modded", "Type", "Resource Packs", "Current Language", "Profiler Position", "screenshot_", ".png", "Saved Screenshot As: ", "textures/gui/title/mojang.png", "Patter is null", "Failed to rename world \"{}\"!", "Data", "LevelName", "Deleting level ", "Attempt ", "...", "singleplayer.busy.deleting", "Unsuccessful in deleting contents.", "Couldn\'t delete file ", "player", "[\\./\"]", "_", "singleplayer.busy.duplicating", "worlds_list.txt", ", ", @@ -1420679,7 +1422969,7 @@ "Vertex shader \"/assets/eagler/glsl/accel_particle.vsh\" could not be compiled!", "Failed to link shader program for InstancedParticleRenderer!", "Fragment shader \"/assets/eagler/glsl/accel_particle.fsh\" could not be compiled!", "u_texCoordSize2f_particleSize1f", "u_transformParam_1_2_3_4_f", "u_transformParam_5_f", "u_lightmapTexture", "Shader program for InstancedParticleRenderer could not be linked!", "InstancedParticleRenderer", "/assets/eagler/glsl/post_fxaa.fsh", "EffectPipelineFXAA shader \"/assets/eagler/glsl/post_fxaa.fsh\" is missing!", "Failed to compile GL_FRAGMENT_SHADER \"/assets/eagler/glsl/post_fxaa.fsh\" for EffectPipelineFXAA!", "u_screenSize2f", "Failed to link shader program for EffectPipelineFXAA!", "Fragment shader \"/assets/eagler/glsl/post_fxaa.fsh\" could not be compiled!", "u_screenTexture", "Shader program for EffectPipelineFXAA could not be linked!", "EffectPipelineFXAA", "#define COMPILE_PIXEL_ALIGNMENT\n", "#define COMPILE_BLIT_DEPTH\n", "Failed to compile GL_FRAGMENT_SHADER \"/assets/eagler/glsl/texture_blit.fsh\" for TextureCopyUtil!", "Failed to link shader program for TextureCopyUtil!", "Fragment shader \"/assets/eagler/glsl/texture_blit.fsh\" could not be compiled!", "u_srcCoords4f", "u_dstCoords4f", "u_pixelAlignmentSizes4f", "u_pixelAlignmentOffset2f", "Shader program for TextureCopyUtil could not be linked!", "TextureCopyUtil", "__", "en", "CA", "fr", "zh", "CN", "FR", "de", "DE", "it", "IT", "ja", "JP", "ko", "KR", "TW", "GB", "US", "Something\'s taking too long! \'", "\' took aprox ", " ms", "Metadata section name cannot be null", - "Don\'t know how to handle metadata section \'", "Invalid metadata for \'", "\' - expected object, found ", "arraySize", "initialArraySize", "%s", "%(\\d+\\$)?[\\d\\.]*[df]", "/assets/", "minecraft", "STDERR", "STDOUT", "stat.mineBlock.", "stat.mineBlock", "Recieved a packet with type ", "Failed to process socket frame {}! It\'ll be skipped for debug purposes.", "Recieved packet type ", "Recieved {} byte fragment of unknown type: {}", " which is invalid!", "This is an EaglercraftX 1.8 LAN world!", " which is undefined in state ", + "Don\'t know how to handle metadata section \'", "Invalid metadata for \'", "\' - expected object, found ", "arraySize", "initialArraySize", "%s", "%(\\d+\\$)?[\\d\\.]*[df]", "/assets/", "minecraft", "STDERR", "STDOUT", "stat.mineBlock.", "stat.mineBlock", "Recieved a packet with type ", "Failed to process socket frame {}! It\'ll be skipped for debug purposes.", "Recieved {} byte fragment of unknown type: {}", " which is invalid!", "This is an EaglercraftX 1.8 LAN world!", "Recieved packet type ", " which is undefined in state ", "Failed to read packet type \'", "Recieved unsuppoorted connection from an Eaglercraft 1.5.2 client!", "Failed to process {}! It\'ll be skipped for debug purposes.", "Incorrect packet for state: {}", "Failed to write packet {}!", "Failed to compress packet {}!", "NetworkManager", "eagler/skulls", "server owner: ", "Starting integrated eaglercraft server version 1.8.8", "TPS: ", "/20", "Chunks: ", "Entities: ", "R: ", ", G: ", ", W: ", "TU: ", ", LU: ", "Players: ", " (while deserializing \'", ",", "IPCInputStream buffer underflow", "\')", " no bytes remaining", " tried to read ", " when there are only ", " bytes remaining", "End of stream reached", "Malformed UTF-8 sequence", "UTF Error", "Unable to allocate array size: ", "Input array too big, the output array would be bigger (", ") than the specified maximum size of ", "lineSeparator must not contain base64 characters: [", "Impossible modulus ", "Strict decoding: Last encoded character (before the paddings if any) is a valid base 64 alphabet but not a possible encoding. Decoding requires at least two trailing 6-bit characters to create bytes.", "Strict decoding: Last encoded character (before the paddings if any) is a valid base 64 alphabet but not a possible encoding. Expected the discarded bits from the character to be zero.", "offset ", " and length ", " are out of bounds for a ", " long arraybuffer", " array", "buffer size must be greater than 0", "Stream closed", "negative skip length", "footer is not found", "Unexpected end of ZLIB input stream", "Zero length BigInteger", "Negative bit address", "Negative exponent", "BigInteger divide by zero", @@ -1420732,9 +1423022,9 @@ "random.bow", "pulling_0", "pulling_1", "pulling_2", "item.coal", "item.charcoal", "Weapon modifier", "minecraft:items/empty_armor_slot_helmet", "minecraft:items/empty_armor_slot_chestplate", "minecraft:items/empty_armor_slot_leggings", "minecraft:items/empty_armor_slot_boots", "LEATHER", "CHAIN", "chainmail", "iron", "gold", "DIAMOND", "The validated expression is false", "Facing", "TileX", "TileY", "TileZ", "Direction", "Dir", "Motive", "doEntityDrops", "**:**", "speed", "potion.moveSpeed", "91AEAA56-376B-4498-935B-2F7F68070635", "slowness", "potion.moveSlowdown", "7107DE5E-7CE8-4030-940E-514C1F160890", "haste", "potion.digSpeed", "mining_fatigue", "potion.digSlowDown", "strength", "potion.damageBoost", "648D7064-6A60-4F59-8ABE-C2C23A6DD7A9", "instant_health", "potion.heal", "instant_damage", "potion.harm", "jump_boost", "potion.jump", "nausea", "potion.confusion", "regeneration", "potion.regeneration", "resistance", "potion.resistance", "fire_resistance", "potion.fireResistance", "water_breathing", "potion.waterBreathing", "invisibility", "potion.invisibility", "blindness", "potion.blindness", "night_vision", "potion.nightVision", "hunger", "potion.hunger", "weakness", "potion.weakness", "22653B89-116E-49DC-9B6B-9971489B5BE5", "poison", "potion.poison", "wither", "potion.wither", "health_boost", "potion.healthBoost", "5D6F0BA2-1186-46AC-B896-C61C5CEE99CC", "absorption", "potion.absorption", "saturation", "potion.saturation", "RIDEABLE", "MinecartRideable", "CHEST", "MinecartChest", "FURNACE", "MinecartFurnace", "TNT", "MinecartTNT", "SPAWNER", - "MinecartSpawner", "HOPPER", "MinecartHopper", "COMMAND_BLOCK", "MinecartCommandBlock", "mob.horse.leather", "+0-1+2+3+13&4-4", "cooked", "raw", "map_", "map_is_scaling", "Unknown map", "Scaling at 1:", "(Level ", "/4)", "CustomPotionEffects", "item.emptyPotion.name", "potion.prefix.grenade", ".postfix", "potion.empty", "potion.effects.whenDrank", "potion.potency.", "attribute.modifier.plus.", "attribute.modifier.take.", "attribute.name.", "Stronghold", "item.fireCharge.use", "pages", "title", "author", + "MinecartSpawner", "HOPPER", "MinecartHopper", "COMMAND_BLOCK", "MinecartCommandBlock", "mob.horse.leather", "+0-1+2+3+13&4-4", "cooked", "raw", "map_", "map_is_scaling", "Unknown map", "Scaling at 1:", "(Level ", "/4)", "CustomPotionEffects", "item.emptyPotion.name", "potion.prefix.grenade", ".postfix", "potion.empty", "potion.effects.whenDrank", "potion.potency.", "attribute.modifier.plus.", "attribute.name.", "attribute.modifier.take.", "Stronghold", "item.fireCharge.use", "pages", "title", "author", "generation", "book.generation.", "book.byAuthor", "resolved", "frame-", "Item", "ItemRotation", "ItemDropChance", "item.skull.player.name", "skeleton", "char", "creeper", "Fireworks", "Flight", "item.fireworks.flight", "Explosions", "Colors", "Explosion", "item.fireworksCharge.type.", "item.fireworksCharge.type", "FadeColors", "item.fireworksCharge.customColor", "Trail", "item.fireworksCharge.fadeTo", "Flicker", "item.fireworksCharge.trail", "item.fireworksCharge.flicker", "item.fireworksCharge.", "StoredEnchantments", - "lvl", "EntityTag", "item.banner.", "Color", "Pattern", "records.", "item.record.", ".desc", "itemId", "itemFrame", "canDestroyCacheBlock", "canPlaceOnCacheBlock", "minecraft:air", "Count", "Damage", "tag", "Unbreakable", "ench", ")", "HideFlags", " #", "#%04d%s", "#%04d/%d%s", "CanDestroy", "item.unbreakable", "item.dyed", "CanPlaceOn", "Color: #", "Durability: ", " / ", "item.canBreak", "NBT: ", " tag(s)", "item.canPlace", "missingno", "RepairCost", "AttributeModifiers", "AttributeName", "[", "]", "#.###", + "lvl", "EntityTag", "item.banner.", "Color", "Pattern", "records.", "item.record.", ".desc", "itemId", "itemFrame", "canDestroyCacheBlock", "canPlaceOnCacheBlock", "minecraft:air", "Count", "Damage", "tag", "Unbreakable", "ench", ")", "HideFlags", " #", "#%04d%s", "#%04d/%d%s", "CanDestroy", "CanPlaceOn", "item.unbreakable", "item.dyed", "Color: #", "Durability: ", " / ", "item.canBreak", "NBT: ", " tag(s)", "item.canPlace", "missingno", "RepairCost", "AttributeModifiers", "AttributeName", "[", "]", "#.###", "WHITE", "white", "ORANGE", "orange", "MAGENTA", "magenta", "LIGHT_BLUE", "light_blue", "lightBlue", "YELLOW", "yellow", "LIME", "lime", "PINK", "pink", "GRAY", "gray", "SILVER", "silver", "CYAN", "cyan", "PURPLE", "purple", "BLUE", "blue", "BROWN", "brown", "GREEN", "green", "RED", "red", "BLACK", "black", "achievement.openInventory", "openInventory", "achievement.mineWood", "mineWood", "achievement.buildWorkBench", "buildWorkBench", "achievement.buildPickaxe", "buildPickaxe", "achievement.buildFurnace", "buildFurnace", "achievement.acquireIron", "acquireIron", "achievement.buildHoe", "buildHoe", "achievement.makeBread", "makeBread", "achievement.bakeCake", "bakeCake", "achievement.buildBetterPickaxe", "buildBetterPickaxe", "achievement.cookFish", "cookFish", "achievement.onARail", "onARail", "achievement.buildSword", "buildSword", "achievement.killEnemy", "killEnemy", "achievement.killCow", "killCow", "achievement.flyPig", "flyPig", "achievement.snipeSkeleton", "snipeSkeleton", "achievement.diamonds", "diamonds", "achievement.diamondsToYou", "diamondsToYou", "achievement.portal", "achievement.ghast", "ghast", "achievement.blazeRod", "achievement.potion", "achievement.theEnd", "theEnd", "achievement.theEnd2", "theEnd2", "achievement.enchantments", "enchantments", "achievement.overkill", "overkill", "achievement.bookcase", "bookcase", "achievement.breedCow", "breedCow", "achievement.spawnWither", "spawnWither", "achievement.killWither", "killWither", "achievement.fullBeacon", "fullBeacon", "achievement.exploreAllBiomes", @@ -1420746,11 +1423036,11 @@ "TerrainPopulated", "LightPopulated", "InhabitedTime", "Biomes", "Entities", "Blocks", "TileEntities", "Add", "BlockLight", "SkyLight", "TileTicks", "i", "t", "Could not set level chunk heightmap, array length is ", " instead of ", "Could not set level chunk sections, array length is ", "AnvilChunkLoader", "EaglerChunkLoader", ".epk", "yyyy", "MM/dd/yyyy", "hh:mm:ss aa", "\n\n # Eagler EPK v2.0 (c) ", "\n # export: on ", "\n\n # world name: ", "Crc mismatch", "Size mismatch", "Entry already exists: ", "Name too long: ", "No active entry", "level.dat_new", "Failed to write level.dat!", "Invalid skin request packet recieved from player {}!", "Invalid skin request packet recieved!", "Invalid skin data packet recieved from player {}!", "Invalid skin data packet recieved!", "command.skull.nopermission", "0123456789abcdef", "skin-", "eagler://", "EaglerSkullUUID:", "{\"textures\":{\"SKIN\":{\"url\":\"", "\",\"metadata\":{\"model\":\"default\"}}}}", "Value", "Properties", "Custom Eaglercraft Skull", "command.skull.feedback", "random.pop", "IntegratedSkinService", "IntegratedCapeService", ".dat.tmp", "Failed to save player data for {}", "value", "progress", "Couldn\'t save statistic ", ": error serializing progress", "US-ASCII", "ISO-8859-1", "Vector3f[", "CharMatcher.inRange(\'", "\', \'", "CharMatcher.ASCII", "0٠۰߀०০੦૦୦௦౦೦൦๐໐༠၀႐០᠐᥆᧐᭐᮰᱀᱐꘠꣐꤀꩐0", "CharMatcher.DIGIT", "CharMatcher.JAVA_DIGIT", "CharMatcher.JAVA_LETTER", "CharMatcher.JAVA_LETTER_OR_DIGIT", "CharMatcher.JAVA_UPPER_CASE", "CharMatcher.JAVA_LOWER_CASE", "CharMatcher.or(", - "CharMatcher.JAVA_ISO_CONTROL", "CharMatcher.INVISIBLE", "\u0000­؀؜۝܏ ᠎ 
 ⁦⁧⁨⁩ \ud800", "  ­؄؜۝܏ ᠎‏ ⁤⁦⁧⁨⁩ ", "CharMatcher.SINGLE_WIDTH", "\u0000־א׳؀ݐ\u0e00Ḁ℀ﭐﹰ。", "ӹ־ת״ۿݿ\u0e7f₯℺\ufdffᅵ", "CharMatcher.ANY", "CharMatcher.NONE", "  \r…    
\u000b      \t     \u000c     
\n  ", "WHITESPACE", "IGNORE", "REPLACE", "REPORT", "at index ", "Failed to process websocket frame {}! It\'ll be skipped for debug purposes.", "Packet was sent on a closed connection: {}", "disconnect.endOfStream", "Failed to load integrated server: {}", + "CharMatcher.JAVA_ISO_CONTROL", "CharMatcher.INVISIBLE", "\u0000­؀؜۝܏ ᠎ 
 ⁦⁧⁨⁩ \ud800", "  ­؄؜۝܏ ᠎‏ ⁤⁦⁧⁨⁩ ", "CharMatcher.SINGLE_WIDTH", "\u0000־א׳؀ݐ\u0e00Ḁ℀ﭐﹰ。", "ӹ־ת״ۿݿ\u0e7f₯℺﷿ᅵ", "CharMatcher.ANY", "CharMatcher.NONE", "  \r…    
\u000b      \t     \u000c     
\n  ", "WHITESPACE", "IGNORE", "REPLACE", "REPORT", "at index ", "Failed to process websocket frame {}! It\'ll be skipped for debug purposes.", "Packet was sent on a closed connection: {}", "disconnect.endOfStream", "Failed to load integrated server: {}", "Using integrated server at: {}", "Error", "at", "Could not resolve the location of client\'s classes.js!", "Failed to load integrated server from script tag src: {}", "Using integrated server from script tag src: {}", "inline script tag", "Loading integrated server from inline script tag", "Make sure client\'s classes.js is linked/embedded in a dedicated