Examples of addEntityCrashInfo()


Examples of appeng.me.cache.helpers.TickTracker.addEntityCrashInfo()

    }
    catch( Throwable t )
    {
          CrashReport crashreport = CrashReport.makeCrashReport(t, "Ticking GridNode");
          CrashReportCategory crashreportcategory = crashreport.makeCategory( tt.gt.getClass().getSimpleName() + " being ticked." );
            tt.addEntityCrashInfo(crashreportcategory);
            throw new ReportedException(crashreport);
    }
  }

  private void addToQueue(TickTracker tt)
View Full Code Here

Examples of appeng.parts.AEBasePart.addEntityCrashInfo()

  public void addEntityCrashInfo(CrashReportCategory crashreportcategory)
  {
    if ( gt instanceof AEBasePart )
    {
      AEBasePart part = (AEBasePart)gt;
      part.addEntityCrashInfo( crashreportcategory );
    }
   
    crashreportcategory.addCrashSection( "CurrentTickRate", current_rate );
    crashreportcategory.addCrashSection( "MinTickRate", request.minTickRate );
    crashreportcategory.addCrashSection( "MaxTickRate", request.maxTickRate );
View Full Code Here

Examples of net.minecraft.entity.Entity.addEntityCrashInfo()

          try {
            updateEntity(weatherEffect);
          } catch (Throwable var7) {
            var4 = CrashReport.makeCrashReport(var7, "Ticking entity");
            var5 = var4.makeCategory("Entity being ticked");
            weatherEffect.addEntityCrashInfo(var5);

            throw new ReportedException(var4);
          }
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.