31 lines
1.1 KiB
Java
31 lines
1.1 KiB
Java
package net.minecraft.client.telemetry.events;
|
|
|
|
import java.time.Duration;
|
|
import javax.annotation.Nullable;
|
|
import net.minecraft.client.telemetry.TelemetryEventSender;
|
|
import net.minecraft.client.telemetry.TelemetryEventType;
|
|
import net.minecraft.client.telemetry.TelemetryProperty;
|
|
import net.minecraft.client.telemetry.TelemetryPropertyMap;
|
|
import net.minecraftforge.api.distmarker.Dist;
|
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
|
|
|
@OnlyIn(Dist.CLIENT)
|
|
public class WorldLoadTimesEvent {
|
|
private final boolean newWorld;
|
|
@Nullable
|
|
private final Duration worldLoadDuration;
|
|
|
|
public WorldLoadTimesEvent(boolean p_262182_, @Nullable Duration p_261732_) {
|
|
this.worldLoadDuration = p_261732_;
|
|
this.newWorld = p_262182_;
|
|
}
|
|
|
|
public void send(TelemetryEventSender p_261879_) {
|
|
if (this.worldLoadDuration != null) {
|
|
p_261879_.send(TelemetryEventType.WORLD_LOAD_TIMES, p_261740_ -> {
|
|
p_261740_.put(TelemetryProperty.WORLD_LOAD_TIME_MS, (int)this.worldLoadDuration.toMillis());
|
|
p_261740_.put(TelemetryProperty.NEW_WORLD, this.newWorld);
|
|
});
|
|
}
|
|
}
|
|
} |