1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package de.hype.bbsentials.client; import net.minecraft.scoreboard.Scoreboard; public class DebugThread implements Runnable { Scoreboard temp; @Override public void run() { loop(); //place a breakpoint for only this thread here. } public void loop() { } }