Closed itsdinkd closed 2 years ago
Not a dev for this, but just gonna throw this out there: seems you are more likely having a problem with Industrial Revolution, as the stacktrace points to a "me.steven.indrev" class throwing a null error. As the last line of the log indicates, the class throwing that error is from Industrial Revolution, not this mod.
Maybe a mod incompatibility, but this mod doesn't ever even appear to get brought up in the crash log unless I'm just blatantly missing it.
No. its the mixin... Removed the code in MCDAR and it fixed it.
The suspected mods from NEC is 7/10 wrong.
It is definite on my end. Once I get my computer up and running again (hopefully Monday) I'll be able to fix it
The other issue is that there is a fake player being used by indrev which is causing the conflict, so whilst it is on my end, it is being caused by indrev. So @SalvieMundi is technically correct
@red2blue which mixin? Might be able to fix and do a pr if it's an easy fix, since I'm already working on other fixes for other mods in my modpack I'm making.
@red2blue which mixin? Might be able to fix and do a pr if it's an easy fix, since I'm already working on other fixes for other mods in my modpack I'm making.
Ah. I conceptually understand the problem, but I don't really know enough about modding to fix it. I thought I might be able to add a simple check like "object != null," but that's not likely going to be the case. As the dev said, industrial revolution is using a "fake player" named "slaughter" to perform some actions, and the problem is this mod is trying to interact with that fake player in a way that minecraft doesn't like. I don't really understand enough of what the negative interaction between the two mods is to fix it, so we'll have to wait.
Industrial revolution has a block called Slaughter which is a tile entity that kills entities. There are a lot of mods that use Fake Player, MCDAR would break any mod that utilizes it, the code is incompatible. I know why its happening, lol. But yes, MCDAR does not like Fake Player. it needs to be fixed.
Same thing with the other crash I reported where if you shoot an arrow, the game crashes because of MCDAR. Modloader 0.12.5 is more strict than 0.11.x. in 0.11.x it allowed the incompatibilities on past versions, but now it doesn't. We cannot just blame other mods. That isn't helpful.
Okay, so after mucking about with this for a bit, I need some feedback, @red2blue and @SalvieMundi. It looks like it isn't actually MCDAR, but Indrev's implementation of FakePlayerLib. The error that is happening is that there is an NPE because it cannot find an offhand slot for the slaughter block because of this line of code from indrev:
val swordStack = inventory.inputSlots.map { inventory.getStack(it) }.firstOrNull { it.item is SwordItem }
I've not been able to circumvent this with anything that I've written. Do either of you have any ideas?
Conceptually speaking, there surely must be a way for this mod to check the player entity it is affecting for whether the off hand slot exists. I won't really be able to look into any specifics / code until after the holidays, but my guess is there is probably some check we can do on whatever player entity we're looking at, and just exit the mixin method altogether if the offhand slot is not available, thus bypassing the problem. Or, if we can't check for whether the offhand slot exists, we could probably check some other aspect of the player entity we are dealing with to determine if it is a "real player" or not before executing any further code.
I don't know why I didn't think to just check for an offhand slot, but that makes a heck of a lot of sense. I have been trying to focus on how to determine if it is a real player, but FPL seems to do everything that a real player does 🤷
I really appreciate the feedback and your willingness to look at the code once you have some time, after the holidays. Hopefully I'll get this squared away sooner than that, but your feedback really helps a lot! Thanks! :)
Of course, I love these mods you've made! A lot of work has clearly gone into them. ☺️
Thank you, so much! I'm glad you enjoy them
Well, I stopped the crash; not sure if it was the best way to do it, but it stopped lol
When mob farm kills entity, server crashes due to onPowershakerExplodingKill. Prevents players from joining, they crash within seconds of spawning next to their Mob Farm (Currently, Indrev Slaughter is killing the entities)
latest MCDAR Modloader 0.12.5
---- Minecraft Crash Report ----
C2ME Compatibility Module Notice: Contact C2ME before reporting to mod authors if you encountered issues with the following mods:
charm@3.3.2 You can try disabling compatibility modules for these mods in "c2me-compat.toml" and try reproduce again. Or try reproduce without C2ME.
// I feel sad now :(
Time: 11/16/21, 10:11 PM Description: Ticking block entity
java.lang.NullPointerException: Cannot invoke "net.minecraft.class_1792.method_8389()" because the return value of "java.util.EnumMap.get(Object)" is null at net.minecraft.entity.LivingEntity.handler$fic000$onPowershakerExplodingKill(LivingEntity:46176) at net.minecraft.entity.LivingEntity.onDeath(LivingEntity) at net.minecraft.entity.LivingEntity.damage(LivingEntity:1177) at net.minecraft.entity.mob.ZombieEntity.damage(ZombieEntity:290) at me.steven.indrev.blockentities.farms.SlaughterBlockEntity.machineTick(SlaughterBlockEntity.kt:66) at me.steven.indrev.blockentities.MachineBlockEntity.tick(MachineBlockEntity.kt:116) at me.steven.indrev.blocks.machine.MachineBlock.getTicker$lambda-1(MachineBlock.kt:73) at net.minecraft.world.chunk.WorldChunk$DirectBlockEntityTickInvoker.redirect$bne000$checkProcessTEs(WorldChunk:1010) at net.minecraft.world.chunk.WorldChunk$DirectBlockEntityTickInvoker.tick(WorldChunk:886) at net.minecraft.world.chunk.WorldChunk$WrappedBlockEntityTickInvoker.tick(WorldChunk:941) at net.minecraft.world.World.redirect$fon000$redirectTick(World:15596) at net.minecraft.world.World.tickBlockEntities(World:474) at net.minecraft.server.world.ServerWorld.tick(ServerWorld:422) at net.minecraft.server.MinecraftServer.redirect$cdp000$fixUpdateSuppressionCrashTick(MinecraftServer:7288) at net.minecraft.server.MinecraftServer.tickWorlds(MinecraftServer:891) at net.minecraft.server.dedicated.MinecraftDedicatedServer.tickWorlds(MinecraftDedicatedServer:335) at net.minecraft.server.MinecraftServer.tick(MinecraftServer:831) at net.minecraft.server.MinecraftServer.handler$bnb000$modifiedRunLoop(MinecraftServer:6390) at net.minecraft.server.MinecraftServer.runServer(MinecraftServer:676) at net.minecraft.server.MinecraftServer.method_29739(MinecraftServer:270) at java.lang.Thread.run(Thread.java:831)
A detailed walkthrough of the error, its code path and all known details is as follows:
-- Head -- Thread: Server thread Stacktrace: at net.minecraft.class_1309.handler$fic000$onPowershakerExplodingKill(class_1309.java:46176) at net.minecraft.class_1309.method_6078(class_1309.java) at net.minecraft.class_1309.method_5643(class_1309.java:1177) at net.minecraft.class_1642.method_5643(class_1642.java:290) at me.steven.indrev.blockentities.farms.SlaughterBlockEntity.machineTick(SlaughterBlockEntity.kt:66) at me.steven.indrev.blockentities.MachineBlockEntity.tick(MachineBlockEntity.kt:116) at me.steven.indrev.blocks.machine.MachineBlock.getTicker$lambda-1(MachineBlock.kt:73) at net.minecraft.class_2818$class_5563.redirect$bne000$checkProcessTEs(class_2818.java:1010)
-- Block entity being ticked -- Details: Name: indrev:slaughter_mk4 // me.steven.indrev.blockentities.farms.SlaughterBlockEntity Block: Block{indrev:slaughter_mk4}[facing=north] Block location: World: (2442,106,1741), Section: (at 10,10,13 in 152,6,108; chunk contains blocks 2432,-64,1728 to 2447,319,1743), Region: (4,3; contains chunks 128,96 to 159,127, blocks 2048,-64,1536 to 2559,319,2047) Block: Block{indrev:slaughter_mk4}[facing=north] Block location: World: (2442,106,1741), Section: (at 10,10,13 in 152,6,108; chunk contains blocks 2432,-64,1728 to 2447,319,1743), Region: (4,3; contains chunks 128,96 to 159,127, blocks 2048,-64,1536 to 2559,319,2047) Block Entity NBT: {Energy:46136L,Inventory:[{Count:0b,Slot:0,id:"minecraft:air",tag:{}},{Count:1b,Slot:1,id:"mcdw:spear_cackling_broom",tag:{Damage:150}},{Count:0b,Slot:2,id:"minecraft:air",tag:{Damage:131}},{Count:0b,Slot:3,id:"minecraft:air"},{Count:0b,Slot:4,id:"minecraft:air"},{Count:0b,Slot:5,id:"minecraft:air"},{Count:0b,Slot:6,id:"minecraft:air"},{Count:0b,Slot:7,id:"minecraft:air"},{Count:0b,Slot:8,id:"minecraft:air"},{Count:0b,Slot:9,id:"minecraft:air"},{Count:0b,Slot:10,id:"minecraft:air",tag:{Damage:0}},{Count:1b,Slot:11,id:"indrev:damage_enhancer"},{Count:1b,Slot:12,id:"indrev:damage_enhancer"},{Count:1b,Slot:13,id:"indrev:damage_enhancer"},{Count:0b,Slot:14,id:"minecraft:air",tag:{}}],TransferConfig:{item:{AutoPull:1b,AutoPush:1b,down:"OUTPUT",east:"NONE",north:"NONE",south:"NONE",up:"INPUT",west:"NONE"}},id:"indrev:slaughter_mk4",range:10,x:2442,y:106,z:1741} Stacktrace: at Not Enough Crashes deobfuscated stack trace.(1.17.1+build.52) at java.lang.Thread.getStackTrace(Thread.java:1596) at net.minecraft.util.crash.CrashReportSection.trimStackTraceEnd(CrashReportSection:521) at net.minecraft.util.crash.CrashReport.addElement(CrashReport:198) at net.minecraft.world.World.addDetailsToCrashReport(World:845) at net.minecraft.server.MinecraftServer.tickWorlds(MinecraftServer:894) at net.minecraft.server.dedicated.MinecraftDedicatedServer.tickWorlds(MinecraftDedicatedServer:335) at net.minecraft.server.MinecraftServer.tick(MinecraftServer:831) at net.minecraft.server.MinecraftServer.handler$bnb000$modifiedRunLoop(MinecraftServer:6390) at net.minecraft.server.MinecraftServer.runServer(MinecraftServer:676) at net.minecraft.server.MinecraftServer.method_29739(MinecraftServer:270) at java.lang.Thread.run(Thread.java:831)
-- Affected level -- Details: All players: 4 total; [class_3222['that_different'/620, l='ServerLevel[world]', x=752.69, y=74.00, z=600.92], class_3222['Dres_Tiefling'/860, l='ServerLevel[world]', x=-272.62, y=93.00, z=-118.68], class_3222['Eliotlime'/6230, l='ServerLevel[world]', x=749.54, y=73.00, z=-795.95], class_3222['SlothSlothington'/19666, l='ServerLevel[world]', x=2435.55, y=73.00, z=1805.30]] Chunk stats: 9219 Level dimension: minecraft:overworld Level spawn location: World: (-240,43,194), Section: (at 0,11,2 in -15,2,12; chunk contains blocks -240,-64,192 to -225,319,207), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,-64,0 to -1,319,511) Level time: 36470 game time, 36470 day time Level name: world Level game mode: Game mode: survival (ID 0). Hardcore: false. Cheats: false Level weather: Rain time: 137882 (now: false), thunder time: 876 (now: false) Known server brands: fabric Level was modded: true Level storage version: 0x04ABD - Anvil Stacktrace: at net.minecraft.server.MinecraftServer.method_3813(MinecraftServer.java:891) at net.minecraft.class_3176.method_3813(class_3176.java:335) at net.minecraft.server.MinecraftServer.method_3748(MinecraftServer.java:831) at net.minecraft.server.MinecraftServer.handler$bnb000$modifiedRunLoop(MinecraftServer.java:6390) at net.minecraft.server.MinecraftServer.method_29741(MinecraftServer.java:676) at net.minecraft.server.MinecraftServer.method_29739(MinecraftServer.java:270) at java.base/java.lang.Thread.run(Thread.java:831)
-- System Details -- Details: Minecraft Version: 1.17.1 Minecraft Version ID: 1.17.1 Operating System: Linux (amd64) version 5.10.0-9-amd64 Java Version: 16.0.2, Oracle Corporation Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Oracle Corporation Memory: 4399091480 bytes (4195 MiB) / 11274289152 bytes (10752 MiB) up to 11274289152 bytes (10752 MiB) CPUs: 5 Processor Vendor: AuthenticAMD Processor Name: AMD Ryzen 9 5950X 16-Core Processor Identifier: AuthenticAMD Family 25 Model 33 Stepping 0 Microarchitecture: Zen 3 Frequency (GHz): -0.00 Number of physical packages: 1 Number of physical CPUs: 16 Number of logical CPUs: 32 Graphics card #0 name: unknown Graphics card #0 vendor: unknown Graphics card #0 VRAM (MB): 0.00 Graphics card #0 deviceId: unknown Graphics card #0 versionInfo: unknown Virtual memory max (MB): 159692.41 Virtual memory used (MB): 155172.14 Swap memory total (MB): 95301.00 Swap memory used (MB): 56730.75 JVM Flags: 21 total; -XX:+UseContainerSupport -Xms10750M -Xmx10750M -XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=20 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=15 -XX:G1MixedGCLiveThresholdPercent=90 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1 Fabric Mods: addendum: Addendum 1.0.2 adorn: Adorn 2.3.1+1.17.1 advanced_runtime_resource_pack: Runtime Resource Pack 0.4.3 adventure-platform-fabric: adventure-platform-fabric 4.1.0-SNAPSHOT adventurez: AdventureZ 1.4.2 ae2wtlib: AE2WTLib 9.0.0-beta.8 agape_space: Space Dimensions 0.3.5 alloy_forgery: Alloy Forgery 2.0.6 annotateddi: Annotated DI 2.0.4+1.17.1 antishulkerdupe: Antishulkerdupe 1.0.0 aopalliance_aopalliance: aopalliance 1.0 apoli: Apoli 2.0.5 appleskin: AppleSkin mc1.17.1-2.2.0 appliedenergistics2: Applied Energistics 2 9.0.0-beta.2 aqupdcaracal: Caracal mob 1.17-1.3.11 arcanus: Arcanus 1.23 architects_palette: Architect's Palette Fabric 1.3 architectury: Architectury 2.6.35 artifality: Artifality 0.4.2 artifice: Artifice 0.15.3+21w07a attributefix: Attribute Fix {FABRIC} 1.0.3 autoconfig1u: Auto Config v1 Updated 3.3.1 badstdout: BadStdOut 1.1.0-1.17 balm-fabric: Balm 1.3.0+0 banhammer: BanHammer 0.4.1+1.17.1 battletowers: Battle Towers 3.4.1-1.17.1 bclib: BCLib 0.5.1 beenfo: Beenfo 1.17.1-fabric0.36.1-1.3.2 betterdungeons: YUNG's Better Dungeons 1.17-1.0.2 betterend: Better End 0.12.2 bettermineshafts: YUNG's Better Mineshafts 1.17-1.0.1 betternether: Better Nether 5.3.10 betterstrongholds: YUNG's Better Strongholds 1.17-1.1.2 bewitchment: Bewitchment 1.17-12 bfapi: BFAPI 1.1.10 bitsandchisels: BitsAndChisels 2.5.4 blame: Blame 1.17-4.3.0-fabric blockbot-api: BlockBot Api 1.0.0 blockbot-discord: BlockBot Discord 2.0.0-beta blockshifter: Blockshifter 1.4.0+fabric-1.17.1 blockus: Blockus 2.2.10+1.17.1 bosses_of_mass_destruction: Bosses of Mass Destruction (Beta) 1.3.2-1.17.1 bountiful: Bountiful 1.0.0 box-of-placeholders: Box of Placeholders 1.3.2+1.17.1 buildinggadgets: st'ructure tools 1.0.5 c2me: Concurrent Chunk Management Engine 0.2.0+alpha.5.19 calio: Calio 1.3.0 cardinal-components: Cardinal Components API 3.1.1 cardinal-components-base: Cardinal Components API (base) 3.1.1 cardinal-components-block: Cardinal Components API (blocks) 3.1.1 cardinal-components-chunk: Cardinal Components API (chunks) 3.1.1 cardinal-components-entity: Cardinal Components API (entities) 3.1.1 cardinal-components-item: Cardinal Components API (items) 3.1.1 cardinal-components-level: Cardinal Components API (world saves) 3.1.1 cardinal-components-scoreboard: Cardinal Components API (scoreboard) 3.1.1 cardinal-components-util: Cardinal Components API (utilities) 3.1.1 cardinal-components-world: Cardinal Components API (worlds) 3.1.1 carpet: Carpet Mod 1.4.52 carpet-extra: Carpet Extra 1.4.51 carpet-tis-addition: Carpet TIS Addition 1.24.0+build.742 carrier: Carrier 1.8.1 chalk: Chalk 1.0.2 charm: Charm 3.3.2 cloth-api: Cloth API 2.0.54 cloth-basic-math: cloth-basic-math 0.6.0 cloth-client-events-v0: Cloth Client Events v0 2.0.54 cloth-common-events-v1: Cloth Common Events v1 2.0.54 cloth-config-lite: cloth-config-lite 2.0.6 cloth-config2: Cloth Config v5 5.1.40 cloth-datagen-api-v1: Cloth Datagen v1 2.0.54 cloth-utils-v1: Cloth Utils v1 2.0.54 cloud: Cloud 1.5.0 cloud_commandframeworkcloud-brigadier: cloud-brigadier 1.5.0 cloud_commandframeworkcloud-core: cloud-core 1.5.0 cloud_commandframework_cloud-minecraft-extras: cloud-minecraft-extras 1.5.0 cloud_commandframeworkcloud-services: cloud-services 1.5.0 cmdspy: Command Spy 1.2.3 collective-fabric: Collective (Fabric) 1.62 colorutility: ColorUtility 2.0.1 com_electronwill_night-config_core: core 3.6.2 com_electronwill_night-config_toml: toml 3.6.2 com_eliotlash_mclib_mclib: mclib 18 com_eliotlash_molang_molang: molang 18 com_fasterxml_jackson_dataformat_jackson-dataformat-yaml: jackson-dataformat-yaml 2.12.2 com_flowpowered_flow-math: flow-math 1.0.3 com_github_dimensionaldevelopment_poly2tri_java: poly2tri.java 0.1.1 com_google_inject_guice: guice 5.0.1 com_moandjiezana_toml_toml4j: toml4j 0.7.2 com_typesafe_config: config 1.4.1 com_velocitypowered_velocity-native: velocity-native 1.1.0-SNAPSHOT companion_bats: Companion Bats 1.18.4 compress: Compress 'em [v1.5] conjuring: Conjuring 1.0.15 consistency_plus: Consistency Plus 0.4.1+1.17 cosmetic-armor: Cosmetic Armor 1.1.0 craftingtweaks: Crafting Tweaks 13.0.0+0 creativeonepunch: Creative One-Punch 1.2 crookedcrooks: Crooked Crooks 2.0.1+1.17.1 croparia: Croapria 1.17.1-0.0.4 croptopia: Croptopia 1.6.3 croptosis: Croptosis 1.2.0 crowdin-translate: CrowdinTranslate 1.3+1.17 dark-enchanting: Dark Enchanting 0.4.1-1.17.1 darkpaintings: Dark Paintings 4.0.2 dataattributes: Data Attributes 1.0.6 dimdoors: DimensionalDoors 4.0.0+beta.3-31.10.2021 discerning_furnace: Discerning Furnace 1.0.3+MC1.17-1.17.1 dml-refabricated: Deep Mob Learning: Refabricated 0.4.4-beta dml-refabricated-base: DML: Refabricated - Base 0.4.4-beta dml-refabricated-events: DML: Refabricated - Vanilla Events 0.4.4-beta dml-refabricated-modular-armor: DML: Refabricated - Glitch Armor 0.4.4-beta dml-refabricated-rei: DML: Refabricated - REI Integration 0.4.4-beta dmlsimulacrum: Deep Mob Learning: Simulacrum 1.0.5 doom: Doom Fabric 4.0.32 dragonloot: DragonLoot 1.0.9 dual_riders: DualRiders 1.0.5 dungeons_arise: When Dungeons Arise 2.1.48-fabric ec-core: Essential Commands Core 1.0.0-mc1.17.1 eer: Erroring Entity Remover 1.0.1+1.17.1 eldritch_mobs: Eldritch Mobs 1.9.6 emagnet: E Magnet 1.2.3 enchant_giver: Enchant Giver 1.1.0 enhancedcelestials: Enhanced Celestials 2.0.5 essential_commands: Essential Commands 0.17.0-mc1.17.1 expandedstorage: Expanded Storage 7.2.7 extraalchemy: Extra Alchemy 1.6.1 extragenerators: Extra Generators 1.1-BETA+1.17 extraorigins: Extra Origins 1.17-10 fabric: Fabric API 0.42.1+1.17 fabric-api-base: Fabric API Base 0.4.0+5847535018 fabric-api-lookup-api-v1: Fabric API Lookup API (v1) 1.3.1+5847535018 fabric-biome-api-v1: Fabric Biome API (v1) 3.2.2+5847535018 fabric-command-api-v1: Fabric Command API (v1) 1.1.4+5847535018 fabric-commands-v0: Fabric Commands (v0) 0.2.3+5847535018 fabric-containers-v0: Fabric Containers (v0) 0.1.13+5847535018 fabric-content-registries-v0: Fabric Content Registries (v0) 0.3.1+5847535018 fabric-crash-report-info-v1: Fabric Crash Report Info (v1) 0.1.6+5847535018 fabric-dimensions-v1: Fabric Dimensions API (v1) 2.0.13+5847535018 fabric-entity-events-v1: Fabric Entity Events (v1) 1.3.1+5847535018 fabric-events-interaction-v0: Fabric Events Interaction (v0) 0.4.11+5847535018 fabric-events-lifecycle-v0: Fabric Events Lifecycle (v0) 0.2.2+5847535018 fabric-game-rule-api-v1: Fabric Game Rule API (v1) 1.0.8+5847535018 fabric-item-api-v1: Fabric Item API (v1) 1.2.5+5847535018 fabric-item-groups-v0: Fabric Item Groups (v0) 0.3.1+5847535018 fabric-language-kotlin: Fabric Language Kotlin 1.6.5+kotlin.1.5.31 fabric-language-scala: Fabric Language Scala 1.1.0+scala.2.13.6 fabric-lifecycle-events-v1: Fabric Lifecycle Events (v1) 1.4.5+5847535018 fabric-loot-tables-v1: Fabric Loot Tables (v1) 1.0.5+5847535018 fabric-mining-level-api-v1: Fabric Mining Level API (v1) 1.0.2+6d0fac4218 fabric-mining-levels-v0: Fabric Mining Levels (v0) 0.1.5+6d0fac4218 fabric-networking-api-v1: Fabric Networking API (v1) 1.0.14+5847535018 fabric-networking-blockentity-v0: Fabric Networking Block Entity (v0) 0.2.12+5847535018 fabric-networking-v0: Fabric Networking (v0) 0.3.3+5847535018 fabric-object-builder-api-v1: Fabric Object Builder API (v1) 1.10.11+6d0fac4218 fabric-object-builders-v0: Fabric Object Builders (v0) 0.7.5+6d0fac4218 fabric-particles-v1: Fabric Particles (v1) 0.2.5+5847535018 fabric-permissions-api-v0: fabric-permissions-api 0.1-SNAPSHOT fabric-registry-sync-v0: Fabric Registry Sync (v0) 0.7.13+5847535018 fabric-rendering-data-attachment-v1: Fabric Rendering Data Attachment (v1) 0.1.6+5847535018 fabric-rendering-fluids-v1: Fabric Rendering Fluids (v1) 0.2.1+6d0fac4218 fabric-resource-loader-v0: Fabric Resource Loader (v0) 0.4.9+5847535018 fabric-screen-handler-api-v1: Fabric Screen Handler API (v1) 1.1.9+5847535018 fabric-structure-api-v1: Fabric Structure API (v1) 1.1.14+5847535018 fabric-tag-extensions-v0: Fabric Tag Extensions (v0) 1.2.2+5847535018 fabric-tool-attribute-api-v1: Fabric Tool Attribute API (v1) 1.3.1+eb76084f18 fabric-transfer-api-v1: Fabric Transfer API (v1) 1.5.1+6d0fac4218 fabricenchantments: Fabric Enchantments 0.5.0 fabricloader: Fabric Loader 0.12.5 fabricsit: FabricSit 1.6.4 fabrictailor: Fabric Tailor 1.7.1 factory: Factory 1.17.1-1.4.0 fake-player-api: Fake Player API 0.2.0 fallflyinglib: FallFlyingLib 3.0.0-beta.2 fallingtree: FallingTree 2.14.3 farmersdelight: Farmer's Delight 1.17.1-0.1.2 fastfurnace: FastFurnace 1.17-3.0 fatxporbs: Fat Experience Orbs 1.0.1 fermion: Fermion 2.11.241 fermion-modkeys: Fermion Modifier Keys 1.10.241 ferritecore: FerriteCore 3.1.0 fiber: fiber 0.23.0-2 fireplacelib: Fireplace Lib 6.1.0+1.17.1 flan: Flan 1.17.1-1.6.3 fluidtank: Fluid Tank 17.1.3-fabric flytre-lib-base: Flytre Lib - Base Module 1.3.0 flytre-lib-compat: Flytre Lib - Compat Module 1.0.0 flytre-lib-config: Flytre Lib - Config Module 1.1.0 flytre-lib-event: Flytre Lib - Event Module 1.0.1 flytre-lib-gui: Flytre Lib - GUI Module 1.0.0 flytre-lib-storage: Flytre Lib - Storage Module 2.3.2 flytre_lib: Flytre Lib 1.4.2 geckolib3: Geckolib 3.0.26 givemehats: Give Me Hats! 1.6.5 glassdoor: Glass Doors 1.5.0-1.16 glassential: Glassential 1.17-1.2.0 go-fish: Go Fish 1.3.0-beta-1.17.1 goat: Goat Origin 1.0.0 gobber2: Gobber2 2.4.60 goldenhoppers: Golden Hoppers 1.1.0 golemsgalore: Golems Galore 1.0.3-1.17.1 harvest_scythes: Harvest Scythes 2.1.0 hctm-base: HCTM Base 3.6.2 headindex: Head Index 1.0.3 heartbond: Heartbond 1.1.0 hlandbukkit_c2me-fabric_ver_1_17libs: libs 0.2.0+alpha.5.19 hologram-api: Hologram API 0.2.1+1.17.1 hookshot: Hookshot 22.0 horseinfo: Horse Info 0.3.0-1.17 horsestonks: Horse Stonks 1.0.0 hydrogen: Hydrogen 0.3 impersonate: Impersonate 2.3.5 improved-stations: Improved Stations 2.0.7 incantationem: Incantationem 1.1.2+1.17.1 indrev: Industrial Revolution 1.12.0-BETA inmis: Inmis 2.3.2-1.17.1 invview: InvView 1.4.6-1.17.1+ io_leangen_geantyref_geantyref: geantyref 1.3.11 ironfurnaces: Iron Furnaces 1.17.1-2.7.1-fabric jankson: Jankson 3.0.1+j1.2.0 java: OpenJDK 64-Bit Server VM 16 javax_inject_javax_inject: javax.inject 1 jline4mcdsrv: JLine for Minecraft Dedicated Server 0.2.0 kambrik: Kambrik 1.1.0 kanos_config: Kanos Config 0.1.4+1.14.4-1.17.1 kibe: Kibe 1.9.4-BETA+1.17 kjsextras: KubeJS Extras 1.4.0 krypton: Krypton 0.1.4 ktdatataglib: KtDataTagLib 1.5.4 kubejs: KubeJS 1701.3.10-build.9999 lacrimis: Lacrimis 2.1.3+1.17.1 lapisreserve: Lapis Reserve 1.0.8 ledger: Ledger 1.1.1+build.334 libblockattributes: LibBlockAttributes 0.9.2 libblockattributes_core: LibBlockAttributes (Core) 0.9.2 libblockattributes_fluids: LibBlockAttributes (Fluids) 0.9.2 libblockattributes_items: LibBlockAttributes (Items) 0.9.2 libcd: LibCapableData 3.0.3+1.16.3 libgui: LibGui 4.2.1+1.17.1 libninepatch: LibNinePatch 1.1.0 libra: Libra 0.4.0.1 lightestlamp: Lightest Lamps 0.9.6 lithium: Lithium 0.7.5 lovely_snails: Lovely Snails 1.0.3+1.17 luckperms: LuckPerms 5.3.75 lumiwool: Luminous Wool 1.2.0 maelstrom_library: Maelstrom Library 1.2.2-1.17.1 magicfungi: Magic Fungi 0.5.0-BETA+1.17.1 magna: Magna 0.4.0-1.17.1 matrix: Matrix 1.0.0 maybe-data: Maybe data 1.0.1-1.17 mc_discord_reserializer: MC Discord Reserializer 1.0.0 mcda: MC Dungeons Armors 1.7.15 mcdar: MC Dungeons Artifacts 1.4.2 mcdict: MCDict 2.1.0+1.17.1 mcdw: MC Dungeons Weapons 3.6.0 mcsa: MC Story Mode Armor 2.3.2-1.17 mealapi: Meal API 0.3+1.17 minecraft: Minecraft 1.17.1 minershorizon: Miner's Horizon 1.7.2-1.17.1 minimotd-fabric: MiniMOTD 2.0.4 mm: Manningham Mills 2.3 mo_glass: Mo Glass 1.5-MC1.17.1 mob_proof_crystals: Mob proof crystals 2.2.0 mobz: MobZ 3.2.0 mocolors: Mo' Colors 1.2.2 morebannerfeatures: More Banner Features 1.0.9 morevillagers-fabric: MoreVillagersFabric 2.1.1-SNAPSHOT mostructures: Mo' Structures 1.3.0-pre1-1.17.1 multipart_entities: MultipartEntities 1.1.3-1.17.1 myron: Myron 1.6.1 mysql_mysql-connector-java: mysql-connector-java 8.0.25 mythic-mounts: Mythic Mounts 1.17.1-3.0 mythicmetals: Mythic Metals 0.10.1 naturescompass: Nature's Compass 1.17.1-2.0.1-fabric net_kyori_adventure-api: adventure-api 4.8.1 net_kyori_adventure-key: adventure-key 4.8.1 net_kyori_adventure-platform-api: adventure-platform-api 4.0.0-SNAPSHOT net_kyori_adventure-serializer-configurate4: adventure-serializer-configurate4 4.8.1 net_kyori_adventure-text-feature-pagination: adventure-text-feature-pagination 4.0.0-SNAPSHOT net_kyori_adventure-text-minimessage: adventure-text-minimessage 4.2.0-SNAPSHOT net_kyori_adventure-text-serializer-gson: adventure-text-serializer-gson 4.8.1 net_kyori_adventure-text-serializer-legacy: adventure-text-serializer-legacy 4.8.1 net_kyori_adventure-text-serializer-plain: adventure-text-serializer-plain 4.8.1 net_kyori_examination-api: examination-api 1.1.0 net_kyori_examination-string: examination-string 1.1.0 ninjaphenix_container_lib: NinjaPhenix's Container Library 1.2.4 no_null_processors: No Null Processors - Fabric 1.0.0+1.17.1 notenoughcrashes: Not Enough Crashes 4.0.0+1.17.1 nyfsquivers: Nyf's Quivers Fabric-0.2.6 observable: Observable 0.1.2-1.17 omega-config: OmegaConfig 1.0.8 org_fusesource_jansi_jansi: jansi 1.18 org_jetbrains_kotlin_kotlin-reflect: kotlin-reflect 1.5.31 org_jetbrains_kotlin_kotlin-stdlib: kotlin-stdlib 1.5.31 org_jetbrains_kotlin_kotlin-stdlib-jdk7: kotlin-stdlib-jdk7 1.5.31 org_jetbrains_kotlin_kotlin-stdlib-jdk8: kotlin-stdlib-jdk8 1.5.31 org_jetbrains_kotlinx_kotlinx-coroutines-core-jvm: kotlinx-coroutines-core-jvm 1.5.2 org_jetbrains_kotlinx_kotlinx-coroutines-jdk8: kotlinx-coroutines-jdk8 1.5.2 org_jetbrains_kotlinx_kotlinx-serialization-core-jvm: kotlinx-serialization-core-jvm 1.3.0 org_jetbrains_kotlinx_kotlinx-serialization-json-jvm: kotlinx-serialization-json-jvm 1.3.0 org_jgrapht_jgrapht-core: jgrapht-core 1.1.0 org_jline_jline: jline 3.15.0 org_jline_jline-terminal-jansi: jline-terminal-jansi 3.15.0 org_objenesis_objenesis: objenesis 3.2 org_spongepowered_configurate-core: configurate-core 4.1.1 org_spongepowered_configurate-hocon: configurate-hocon 4.1.1 org_xerial_sqlite-jdbc: sqlite-jdbc 3.36.0 org_yaml_snakeyaml: snakeyaml 1.29 origins: Origins 1.1.4 origins-classes: Origins: Classes 1.2.2 outvoted: Outvoted 1.5.0-beta.3 owo: oωo 0.3.0 packet_tweaker: Packet Tweaker 0.2.0+1.17.1 patchouli: Patchouli 1.17.1-56-FABRIC pehkui: Pehkui 2.5.3+1.14.4-1.18 persistententities: persistent entities 0.0.4 phonos: Phonos 0.1.2+1.17 pipe: Pipe 1.6.0 placeholder-api: Placeholder API 1.1.2+1.17.1 plantinajar: Plant In A Jar 2.2.2 player-data-api: Player Data API 0.1.0+1.17.1 playerabilitylib: Pal 1.4.0 polymer: Polymer 0.1.8+1.17.1 polymorph: Polymorph 0.0.14-1.17.1 prefab: Prefab 2.1.6 pugh_lib: Pugh Lib ${version} pugh_tools: Pugh Tools ${version} qcommon-cfg-core: qcommon-cfg-core 3.3.0 qcommon-croco: Croco 2.1.1 quarrymod: Industial Quarry Mod 0.5.2 ratsmischief: Rat's Mischief 1.3.1 reach-entity-attributes: Reach Entity Attributes 2.1.1 reborncore: Reborn Core 5.0.11-beta redbits: Red Bits 1.10.1 repurposed_structures: Repurposed Structures 2.5.7+1.17.1 reroll: Reroll 1.3.0-1.17.1 resourceful_tools: Resourceful Tools 1.1.22 respawnablepets: Respawnable Pets 1.17-5 rhino: Rhino 1701.1.5-build.71 roughlyenoughitems: Roughly Enough Items 6.1.329 rpgstats: RPGStats 4.2.2+1.17.1 rswires: RSWires 4.11.2 sandwichable: Sandwichable 1.2-rc2+1.17 schmucks: Schmucks 1.4.0 secretrooms: Secret Rooms 1.1.0+1.17 seedy-behavior: Seedy Behavior 1.0.2+1.17.1 server_translations_api: Server Translations API 1.4.8+1.17 servertick: Server Tick 1.5 sgui: sgui 1.0.0-rc5+1.17.1 shulkerboxtooltip: Shulker Box Tooltip 3.0.3+1.17.1 shulkerutils: shulkerutils 1.0.4-1.17 silkspawners: SilkSpawners 1.0.2 skyvillages: Sky Villages 1.0.0-fabric someforgepatchesported: Some Forge Patches Ported 1.0.1 somnus: Somnus API 0.0.14-1.17.1 soulbound: Soulbound 2.0.0 spark: spark 1.6.1 spawnprotectiontweaks: SpawnProtectionTweaks 0.3+1.17.1 stacc: Stacc 1.2.3 staffofbuilding: Staff of Building 1.3.2-1.17 starlight: Starlight 1.0.0+fabric.73f6d37 static-content: Static Content 1.0.2-1.16.2 staticdata: Static Data 1.1.2 step-height-entity-attribute: Step Height Entity Attribute 1.0.0 stonecutter_recipe_tags: Stonecutter Recipe Tags 1.1.0 stoneholm: Stoneholm 1.3 storagecabinet: Storage Cabinet 1.4.1 strawdummy: Straw Dummy 1.5.0 structure-helpers: Structure Helpers 3.2.0 structurized: Structurized 1.3.0 styledchat: Styled Chat 1.2.0 styledplayerlist: Styled Player List 2.1.2 tabtps-fabric: TabTPS 1.3.10 team_reborn_energy: Energy 2.0.0-beta1 techreborn: Tech Reborn 5.0.11-beta tellme: TellMe 0.9.0 terraform-wood-api-v1: Terraform Wood API (v1) 2.0.2 terralith: Terralith for Fabric 1.6.1 things: Things 0.2.6 toms_storage: Tom's Simple Storage Mod 1.1.18 transportables: Transportables 1.0.6 trinkets: Trinkets 3.0.4 truerooms: True Secret Rooms 1.1.5 unforgivingvoid: Unforgiving Void 3.1.0+1.17.1 universal-graves: Universal Graves 1.1.4+1.17.1 untitledduckmod: Untitled Duck Mod 0.3.0 upgradedshulkers: Upgraded Shulkers 1.1.1-1.17 urns: Urns 1.0.1 valley: ValleyCraft 1.3.2 vanish: vanish 1.2.6 veinmining: Vein Mining 0.0.11-1.17.1 villager-hats: Villager Hats Mod 1.2.1 villagerfix: Villager Fix 3.0.0-mc-1.17.1 villagernames: Villager Names 2.0.1 voidtotem: Void Totem (Fabric) 1.17.0-1.0.0 voidz: VoidZ 1.0.5 ward_blocks: Ward Blocks 1.1.9 waystones: Waystones 2.2.1 winged: Winged Mod 1.17.1-3.0.0 wirelessnetworks: Wireless Networks 1.3.1 wrenchable: Wrenchable 1.1.0+1.17 wthit: wthit 3.11.2 xaerominimap: Xaero's Minimap 21.21.0 xaeroworldmap: Xaero's World Map 1.18.2 xlpackets: XLPackets 2.0-1.17 xps: Xp Obelisk 0.2.2.r_for_1.17.x_Fabric yungsapi: YUNG's API 1.17-Fabric-19 zihlaunchpads: ZIHLaunchpads 1.1.1 Player Count: 4 / 10; [class_3222['that_different'/620, l='ServerLevel[world]', x=752.69, y=74.00, z=600.92], class_3222['Dres_Tiefling'/860, l='ServerLevel[world]', x=-272.62, y=93.00, z=-118.68], class_3222['Eliotlime'/6230, l='ServerLevel[world]', x=749.54, y=73.00, z=-795.95], class_3222['SlothSlothington'/19666, l='ServerLevel[world]', x=2435.55, y=73.00, z=1805.30]] Data Packs: vanilla, Fabric Mods, secretrooms:server_pack, file/Repurposed_Structures-Charm.zip, file/doom, file/Repurposed_Structures-Better_Strongholds_Fabric_Beta.zip, file/Repurposed_Structures-Farmers_Delight_Fabric.zip, file/Repurposed_Structures-More_Villagers_Fabric.zip, dimdoors/classic, dimdoors/default, file/1-noblazeborn, file/2-nophantom, file/Salt.zip, file/gobber2_datapack Is Modded: Definitely; Server brand changed to 'fabric' Type: Dedicated Server (map_server.txt) Suspected Mods: Minecraft (minecraft), Industrial Revolution (indrev)