mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
Remove vlc-log
This commit is contained in:
parent
f2e733679c
commit
193f011619
@ -33,12 +33,12 @@ import net.minecraft.world.World;
|
|||||||
import net.minecraftforge.event.ForgeEventFactory;
|
import net.minecraftforge.event.ForgeEventFactory;
|
||||||
|
|
||||||
public class BossSpawnHandler {
|
public class BossSpawnHandler {
|
||||||
|
|
||||||
//because some dimwit keeps resetting the world rand
|
//because some dimwit keeps resetting the world rand
|
||||||
private static final Random meteorRand = new Random();
|
private static final Random meteorRand = new Random();
|
||||||
|
|
||||||
public static void rollTheDice(World world) {
|
public static void rollTheDice(World world) {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Spawns every 3 hours with a 33% chance if
|
* Spawns every 3 hours with a 33% chance if
|
||||||
* - the player is 3 blocks below the surface
|
* - the player is 3 blocks below the surface
|
||||||
@ -46,117 +46,117 @@ public class BossSpawnHandler {
|
|||||||
* - the player has either crafted or placed an ore acidizer before
|
* - the player has either crafted or placed an ore acidizer before
|
||||||
*/
|
*/
|
||||||
if(MobConfig.enableMaskman) {
|
if(MobConfig.enableMaskman) {
|
||||||
|
|
||||||
if(world.getTotalWorldTime() % MobConfig.maskmanDelay == 0) {
|
if(world.getTotalWorldTime() % MobConfig.maskmanDelay == 0) {
|
||||||
|
|
||||||
if(world.rand.nextInt(MobConfig.maskmanChance) == 0 && !world.playerEntities.isEmpty() && world.provider.isSurfaceWorld()) { //33% chance only if there is a player online
|
if(world.rand.nextInt(MobConfig.maskmanChance) == 0 && !world.playerEntities.isEmpty() && world.provider.isSurfaceWorld()) { //33% chance only if there is a player online
|
||||||
|
|
||||||
EntityPlayer player = (EntityPlayer) world.playerEntities.get(world.rand.nextInt(world.playerEntities.size())); //choose a random player
|
EntityPlayer player = (EntityPlayer) world.playerEntities.get(world.rand.nextInt(world.playerEntities.size())); //choose a random player
|
||||||
int id = Item.getIdFromItem(Item.getItemFromBlock(ModBlocks.machine_crystallizer));
|
int id = Item.getIdFromItem(Item.getItemFromBlock(ModBlocks.machine_crystallizer));
|
||||||
|
|
||||||
StatBase statCraft = StatList.objectCraftStats[id];
|
StatBase statCraft = StatList.objectCraftStats[id];
|
||||||
StatBase statPlace = StatList.objectUseStats[id];
|
StatBase statPlace = StatList.objectUseStats[id];
|
||||||
|
|
||||||
if(!(player instanceof EntityPlayerMP)) return;
|
if(!(player instanceof EntityPlayerMP)) return;
|
||||||
EntityPlayerMP playerMP = (EntityPlayerMP) player;
|
EntityPlayerMP playerMP = (EntityPlayerMP) player;
|
||||||
|
|
||||||
boolean acidizerStat = !GeneralConfig.enableStatReRegistering || (statCraft != null && playerMP.func_147099_x().writeStat(statCraft) > 0)|| (statPlace != null && playerMP.func_147099_x().writeStat(statPlace) > 0);
|
boolean acidizerStat = !GeneralConfig.enableStatReRegistering || (statCraft != null && playerMP.func_147099_x().writeStat(statCraft) > 0)|| (statPlace != null && playerMP.func_147099_x().writeStat(statPlace) > 0);
|
||||||
|
|
||||||
if(acidizerStat && ContaminationUtil.getRads(player) >= MobConfig.maskmanMinRad && (world.getHeightValue((int)player.posX, (int)player.posZ) > player.posY + 3 || !MobConfig.maskmanUnderground)) { //if the player has more than 50 RAD and is underground
|
if(acidizerStat && ContaminationUtil.getRads(player) >= MobConfig.maskmanMinRad && (world.getHeightValue((int)player.posX, (int)player.posZ) > player.posY + 3 || !MobConfig.maskmanUnderground)) { //if the player has more than 50 RAD and is underground
|
||||||
|
|
||||||
player.addChatComponentMessage(new ChatComponentText("The mask man is about to claim another victim.").setChatStyle(new ChatStyle().setColor(EnumChatFormatting.RED)));
|
player.addChatComponentMessage(new ChatComponentText("The mask man is about to claim another victim.").setChatStyle(new ChatStyle().setColor(EnumChatFormatting.RED)));
|
||||||
|
|
||||||
double spawnX = player.posX + world.rand.nextGaussian() * 20;
|
double spawnX = player.posX + world.rand.nextGaussian() * 20;
|
||||||
double spawnZ = player.posZ + world.rand.nextGaussian() * 20;
|
double spawnZ = player.posZ + world.rand.nextGaussian() * 20;
|
||||||
double spawnY = world.getHeightValue((int)spawnX, (int)spawnZ);
|
double spawnY = world.getHeightValue((int)spawnX, (int)spawnZ);
|
||||||
|
|
||||||
trySpawn(world, (float)spawnX, (float)spawnY, (float)spawnZ, new EntityMaskMan(world));
|
trySpawn(world, (float)spawnX, (float)spawnY, (float)spawnZ, new EntityMaskMan(world));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(MobConfig.enableRaids) {
|
if(MobConfig.enableRaids) {
|
||||||
|
|
||||||
if(world.getTotalWorldTime() % MobConfig.raidDelay == 0) {
|
if(world.getTotalWorldTime() % MobConfig.raidDelay == 0) {
|
||||||
|
|
||||||
if(world.rand.nextInt(MobConfig.raidChance) == 0 && !world.playerEntities.isEmpty() && world.provider.isSurfaceWorld()) {
|
if(world.rand.nextInt(MobConfig.raidChance) == 0 && !world.playerEntities.isEmpty() && world.provider.isSurfaceWorld()) {
|
||||||
|
|
||||||
EntityPlayer player = (EntityPlayer) world.playerEntities.get(world.rand.nextInt(world.playerEntities.size()));
|
EntityPlayer player = (EntityPlayer) world.playerEntities.get(world.rand.nextInt(world.playerEntities.size()));
|
||||||
|
|
||||||
if(player.getEntityData().getCompoundTag(player.PERSISTED_NBT_TAG).getLong("fbiMark") < world.getTotalWorldTime()) {
|
if(player.getEntityData().getCompoundTag(player.PERSISTED_NBT_TAG).getLong("fbiMark") < world.getTotalWorldTime()) {
|
||||||
player.addChatComponentMessage(new ChatComponentText("FBI, OPEN UP!").setChatStyle(new ChatStyle().setColor(EnumChatFormatting.RED)));
|
player.addChatComponentMessage(new ChatComponentText("FBI, OPEN UP!").setChatStyle(new ChatStyle().setColor(EnumChatFormatting.RED)));
|
||||||
|
|
||||||
Vec3 vec = Vec3.createVectorHelper(MobConfig.raidAttackDistance, 0, 0);
|
Vec3 vec = Vec3.createVectorHelper(MobConfig.raidAttackDistance, 0, 0);
|
||||||
vec.rotateAroundY((float)(Math.PI * 2) * world.rand.nextFloat());
|
vec.rotateAroundY((float)(Math.PI * 2) * world.rand.nextFloat());
|
||||||
|
|
||||||
for(int i = 0; i < MobConfig.raidAmount; i++) {
|
for(int i = 0; i < MobConfig.raidAmount; i++) {
|
||||||
|
|
||||||
double spawnX = player.posX + vec.xCoord + world.rand.nextGaussian() * 5;
|
double spawnX = player.posX + vec.xCoord + world.rand.nextGaussian() * 5;
|
||||||
double spawnZ = player.posZ + vec.zCoord + world.rand.nextGaussian() * 5;
|
double spawnZ = player.posZ + vec.zCoord + world.rand.nextGaussian() * 5;
|
||||||
double spawnY = world.getHeightValue((int)spawnX, (int)spawnZ);
|
double spawnY = world.getHeightValue((int)spawnX, (int)spawnZ);
|
||||||
|
|
||||||
trySpawn(world, (float)spawnX, (float)spawnY, (float)spawnZ, new EntityFBI(world));
|
trySpawn(world, (float)spawnX, (float)spawnY, (float)spawnZ, new EntityFBI(world));
|
||||||
}
|
}
|
||||||
|
|
||||||
for(int i = 0; i < MobConfig.raidDrones; i++) {
|
for(int i = 0; i < MobConfig.raidDrones; i++) {
|
||||||
|
|
||||||
double spawnX = player.posX + vec.xCoord + world.rand.nextGaussian() * 5;
|
double spawnX = player.posX + vec.xCoord + world.rand.nextGaussian() * 5;
|
||||||
double spawnZ = player.posZ + vec.zCoord + world.rand.nextGaussian() * 5;
|
double spawnZ = player.posZ + vec.zCoord + world.rand.nextGaussian() * 5;
|
||||||
double spawnY = world.getHeightValue((int)spawnX, (int)spawnZ);
|
double spawnY = world.getHeightValue((int)spawnX, (int)spawnZ);
|
||||||
|
|
||||||
trySpawn(world, (float)spawnX, (float)spawnY + 10, (float)spawnZ, new EntityFBIDrone(world));
|
trySpawn(world, (float)spawnX, (float)spawnY + 10, (float)spawnZ, new EntityFBIDrone(world));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(MobConfig.enableElementals) {
|
if(MobConfig.enableElementals) {
|
||||||
|
|
||||||
if(world.getTotalWorldTime() % MobConfig.elementalDelay == 0) {
|
if(world.getTotalWorldTime() % MobConfig.elementalDelay == 0) {
|
||||||
|
|
||||||
if(world.rand.nextInt(MobConfig.elementalChance) == 0 && !world.playerEntities.isEmpty() && world.provider.isSurfaceWorld()) {
|
if(world.rand.nextInt(MobConfig.elementalChance) == 0 && !world.playerEntities.isEmpty() && world.provider.isSurfaceWorld()) {
|
||||||
|
|
||||||
EntityPlayer player = (EntityPlayer) world.playerEntities.get(world.rand.nextInt(world.playerEntities.size()));
|
EntityPlayer player = (EntityPlayer) world.playerEntities.get(world.rand.nextInt(world.playerEntities.size()));
|
||||||
|
|
||||||
if(player.getEntityData().getCompoundTag(player.PERSISTED_NBT_TAG).getBoolean("radMark")) {
|
if(player.getEntityData().getCompoundTag(player.PERSISTED_NBT_TAG).getBoolean("radMark")) {
|
||||||
|
|
||||||
player.addChatComponentMessage(new ChatComponentText("You hear a faint clicking...").setChatStyle(new ChatStyle().setColor(EnumChatFormatting.YELLOW)));
|
player.addChatComponentMessage(new ChatComponentText("You hear a faint clicking...").setChatStyle(new ChatStyle().setColor(EnumChatFormatting.YELLOW)));
|
||||||
player.getEntityData().getCompoundTag(player.PERSISTED_NBT_TAG).setBoolean("radMark", false);
|
player.getEntityData().getCompoundTag(player.PERSISTED_NBT_TAG).setBoolean("radMark", false);
|
||||||
|
|
||||||
Vec3 vec = Vec3.createVectorHelper(MobConfig.raidAttackDistance, 0, 0);
|
Vec3 vec = Vec3.createVectorHelper(MobConfig.raidAttackDistance, 0, 0);
|
||||||
|
|
||||||
for(int i = 0; i < MobConfig.elementalAmount; i++) {
|
for(int i = 0; i < MobConfig.elementalAmount; i++) {
|
||||||
|
|
||||||
vec.rotateAroundY((float)(Math.PI * 2) * world.rand.nextFloat());
|
vec.rotateAroundY((float)(Math.PI * 2) * world.rand.nextFloat());
|
||||||
|
|
||||||
double spawnX = player.posX + vec.xCoord + world.rand.nextGaussian();
|
double spawnX = player.posX + vec.xCoord + world.rand.nextGaussian();
|
||||||
double spawnZ = player.posZ + vec.zCoord + world.rand.nextGaussian();
|
double spawnZ = player.posZ + vec.zCoord + world.rand.nextGaussian();
|
||||||
double spawnY = world.getHeightValue((int)spawnX, (int)spawnZ);
|
double spawnY = world.getHeightValue((int)spawnX, (int)spawnZ);
|
||||||
|
|
||||||
EntityRADBeast rad = new EntityRADBeast(world);
|
EntityRADBeast rad = new EntityRADBeast(world);
|
||||||
|
|
||||||
if(i == 0)
|
if(i == 0)
|
||||||
rad.makeLeader();
|
rad.makeLeader();
|
||||||
|
|
||||||
trySpawn(world, (float)spawnX, (float)spawnY, (float)spawnZ, rad);
|
trySpawn(world, (float)spawnX, (float)spawnY, (float)spawnZ, rad);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(WorldConfig.enableMeteorStrikes && !world.isRemote) {
|
if(WorldConfig.enableMeteorStrikes && !world.isRemote) {
|
||||||
meteorUpdate(world);
|
meteorUpdate(world);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(world.getTotalWorldTime() % 20 == 0) {
|
if(world.getTotalWorldTime() % 20 == 0) {
|
||||||
|
|
||||||
if(world.rand.nextInt(5) == 0 && !world.playerEntities.isEmpty() && world.provider.isSurfaceWorld()) {
|
if(world.rand.nextInt(5) == 0 && !world.playerEntities.isEmpty() && world.provider.isSurfaceWorld()) {
|
||||||
|
|
||||||
EntityPlayer player = (EntityPlayer) world.playerEntities.get(world.rand.nextInt(world.playerEntities.size()));
|
EntityPlayer player = (EntityPlayer) world.playerEntities.get(world.rand.nextInt(world.playerEntities.size()));
|
||||||
|
|
||||||
if(HbmLivingProps.getDigamma(player) > 0) {
|
if(HbmLivingProps.getDigamma(player) > 0) {
|
||||||
Vec3 vec = Vec3.createVectorHelper(75, 0, 0);
|
Vec3 vec = Vec3.createVectorHelper(75, 0, 0);
|
||||||
vec.rotateAroundY((float)(Math.PI * 2) * world.rand.nextFloat());
|
vec.rotateAroundY((float)(Math.PI * 2) * world.rand.nextFloat());
|
||||||
@ -168,14 +168,14 @@ public class BossSpawnHandler {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void trySpawn(World world, float x, float y, float z, EntityLiving e) {
|
private static void trySpawn(World world, float x, float y, float z, EntityLiving e) {
|
||||||
|
|
||||||
e.setLocationAndAngles(x, y, z, world.rand.nextFloat() * 360.0F, 0.0F);
|
e.setLocationAndAngles(x, y, z, world.rand.nextFloat() * 360.0F, 0.0F);
|
||||||
Result canSpawn = ForgeEventFactory.canEntitySpawn(e, world, x, y, z);
|
Result canSpawn = ForgeEventFactory.canEntitySpawn(e, world, x, y, z);
|
||||||
|
|
||||||
if (canSpawn == Result.ALLOW || canSpawn == Result.DEFAULT) {
|
if (canSpawn == Result.ALLOW || canSpawn == Result.DEFAULT) {
|
||||||
|
|
||||||
world.spawnEntityInWorld(e);
|
world.spawnEntityInWorld(e);
|
||||||
ForgeEventFactory.doSpecialSpawn(e, world, x, y, z);
|
ForgeEventFactory.doSpecialSpawn(e, world, x, y, z);
|
||||||
e.onSpawnWithEgg(null);
|
e.onSpawnWithEgg(null);
|
||||||
@ -183,32 +183,32 @@ public class BossSpawnHandler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static void markFBI(EntityPlayer player) {
|
public static void markFBI(EntityPlayer player) {
|
||||||
|
|
||||||
if(!player.worldObj.isRemote)
|
if(!player.worldObj.isRemote)
|
||||||
player.getEntityData().getCompoundTag(player.PERSISTED_NBT_TAG).setLong("fbiMark", player.worldObj.getTotalWorldTime() + 20 * 60 * 20);
|
player.getEntityData().getCompoundTag(player.PERSISTED_NBT_TAG).setLong("fbiMark", player.worldObj.getTotalWorldTime() + 20 * 60 * 20);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static int meteorShower = 0;
|
public static int meteorShower = 0;
|
||||||
private static void meteorUpdate(World world) {
|
private static void meteorUpdate(World world) {
|
||||||
|
|
||||||
if(meteorRand.nextInt(meteorShower > 0 ? WorldConfig.meteorShowerChance : WorldConfig.meteorStrikeChance) == 0) {
|
if(meteorRand.nextInt(meteorShower > 0 ? WorldConfig.meteorShowerChance : WorldConfig.meteorStrikeChance) == 0) {
|
||||||
|
|
||||||
if(!world.playerEntities.isEmpty()) {
|
if(!world.playerEntities.isEmpty()) {
|
||||||
|
|
||||||
EntityPlayer p = (EntityPlayer)world.playerEntities.get(meteorRand.nextInt(world.playerEntities.size()));
|
EntityPlayer p = (EntityPlayer)world.playerEntities.get(meteorRand.nextInt(world.playerEntities.size()));
|
||||||
|
|
||||||
if(p != null && p.dimension == 0) {
|
if(p != null && p.dimension == 0) {
|
||||||
|
|
||||||
boolean repell = false;
|
boolean repell = false;
|
||||||
boolean strike = true;
|
boolean strike = true;
|
||||||
|
|
||||||
for(int i = 0; i < 4; i++) {
|
for(int i = 0; i < 4; i++) {
|
||||||
ItemStack armor = p.getCurrentArmor(i);
|
ItemStack armor = p.getCurrentArmor(i);
|
||||||
if(armor != null && ArmorModHandler.hasMods(armor)) {
|
if(armor != null && ArmorModHandler.hasMods(armor)) {
|
||||||
|
|
||||||
for(int j = 0; j < 8; j++) {
|
for(int j = 0; j < 8; j++) {
|
||||||
ItemStack mod = ArmorModHandler.pryMods(armor)[j];
|
ItemStack mod = ArmorModHandler.pryMods(armor)[j];
|
||||||
|
|
||||||
if(mod != null) {
|
if(mod != null) {
|
||||||
if(mod.getItem() == ModItems.protection_charm) repell = true;
|
if(mod.getItem() == ModItems.protection_charm) repell = true;
|
||||||
if(mod.getItem() == ModItems.meteor_charm) strike = false;
|
if(mod.getItem() == ModItems.meteor_charm) strike = false;
|
||||||
@ -216,19 +216,19 @@ public class BossSpawnHandler {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(strike)
|
if(strike)
|
||||||
spawnMeteorAtPlayer(p, repell);
|
spawnMeteorAtPlayer(p, repell);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(meteorShower > 0) {
|
if(meteorShower > 0) {
|
||||||
meteorShower--;
|
meteorShower--;
|
||||||
if(meteorShower == 0 && GeneralConfig.enableDebugMode)
|
if(meteorShower == 0 && GeneralConfig.enableDebugMode)
|
||||||
MainRegistry.logger.info("Ended meteor shower.");
|
MainRegistry.logger.info("Ended meteor shower.");
|
||||||
}
|
}
|
||||||
|
|
||||||
if(meteorRand.nextInt(WorldConfig.meteorStrikeChance * 100) == 0 && WorldConfig.enableMeteorShowers) {
|
if(meteorRand.nextInt(WorldConfig.meteorStrikeChance * 100) == 0 && WorldConfig.enableMeteorShowers) {
|
||||||
meteorShower = (int)(WorldConfig.meteorShowerDuration * 0.75 + WorldConfig.meteorShowerDuration * 0.25 * meteorRand.nextFloat());
|
meteorShower = (int)(WorldConfig.meteorShowerDuration * 0.75 + WorldConfig.meteorShowerDuration * 0.25 * meteorRand.nextFloat());
|
||||||
|
|
||||||
@ -236,12 +236,12 @@ public class BossSpawnHandler {
|
|||||||
MainRegistry.logger.info("Started meteor shower! Duration: " + meteorShower);
|
MainRegistry.logger.info("Started meteor shower! Duration: " + meteorShower);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void spawnMeteorAtPlayer(EntityPlayer player, boolean repell) {
|
public static void spawnMeteorAtPlayer(EntityPlayer player, boolean repell) {
|
||||||
|
|
||||||
EntityMeteor meteor = new EntityMeteor(player.worldObj);
|
EntityMeteor meteor = new EntityMeteor(player.worldObj);
|
||||||
meteor.setPositionAndRotation(player.posX + meteorRand.nextInt(201) - 100, 384, player.posZ + meteorRand.nextInt(201) - 100, 0, 0);
|
meteor.setPositionAndRotation(player.posX + meteorRand.nextInt(201) - 100, 384, player.posZ + meteorRand.nextInt(201) - 100, 0, 0);
|
||||||
|
|
||||||
Vec3 vec;
|
Vec3 vec;
|
||||||
if(repell) {
|
if(repell) {
|
||||||
vec = Vec3.createVectorHelper(meteor.posX - player.posX, 0, meteor.posZ - player.posZ).normalize();
|
vec = Vec3.createVectorHelper(meteor.posX - player.posX, 0, meteor.posZ - player.posZ).normalize();
|
||||||
@ -253,7 +253,7 @@ public class BossSpawnHandler {
|
|||||||
vec = Vec3.createVectorHelper(meteorRand.nextDouble() - 0.5D, 0, 0);
|
vec = Vec3.createVectorHelper(meteorRand.nextDouble() - 0.5D, 0, 0);
|
||||||
vec.rotateAroundY((float) (Math.PI * meteorRand.nextDouble()));
|
vec.rotateAroundY((float) (Math.PI * meteorRand.nextDouble()));
|
||||||
}
|
}
|
||||||
|
|
||||||
meteor.motionX = vec.xCoord;
|
meteor.motionX = vec.xCoord;
|
||||||
meteor.motionY = -2.5;
|
meteor.motionY = -2.5;
|
||||||
meteor.motionZ = vec.zCoord;
|
meteor.motionZ = vec.zCoord;
|
||||||
|
|||||||
16
vlc-log.txt
16
vlc-log.txt
@ -1,16 +0,0 @@
|
|||||||
-- logger module started --
|
|
||||||
main: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
|
|
||||||
glconv_vaapi_x11 error: vaInitialize: unknown libva error
|
|
||||||
glconv_vaapi_drm error: vaInitialize: unknown libva error
|
|
||||||
glconv_vaapi_drm error: vaInitialize: operation failed
|
|
||||||
avcodec: Using NVIDIA VDPAU Driver Shared Library 580.95.05 Tue Sep 23 09:39:47 UTC 2025 for hardware decoding
|
|
||||||
main error: Timestamp conversion failed for 7671001: no reference clock
|
|
||||||
main error: Could not convert timestamp 0 for FFmpeg
|
|
||||||
-- logger module stopped --
|
|
||||||
-- logger module started --
|
|
||||||
main: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
|
|
||||||
glconv_vaapi_x11 error: vaInitialize: unknown libva error
|
|
||||||
glconv_vaapi_drm error: vaInitialize: unknown libva error
|
|
||||||
glconv_vaapi_drm error: vaInitialize: operation failed
|
|
||||||
avcodec: Using NVIDIA VDPAU Driver Shared Library 580.95.05 Tue Sep 23 09:39:47 UTC 2025 for hardware decoding
|
|
||||||
-- logger module stopped --
|
|
||||||
Loading…
x
Reference in New Issue
Block a user