m1jordanallen / 1.19OceanSurvival

Ocean Survival Modpack
3 stars 0 forks source link

7/25/23 stream crashes #18

Closed CedKilleur closed 1 year ago

CedKilleur commented 1 year ago

crash-2023-07-25_12.51.21-server.txt crash-2023-07-25_12.06.23-server.txt This is caused by the SophisticatedBackpacks mod. I looked into their code and it's caused by monsters trying to spawn with backpacks. There seems to have a config to enable/disable backpacks for monster.

CedKilleur commented 1 year ago

Found the config in sophisticatedbackpacks-server.toml


    [server.entityBackpackAdditions]
        #Chance of an entity spawning with Backpack
        #Range: 0.0 ~ 1.0
        chance = 0.01
        #Turns on/off addition of loot into backpacks
        addLoot = true
        #Turns on/off buffing the entity that wears backpack with potion effects. These are scaled based on how much loot is added.
        buffWithPotionEffects = true
        #Turns on/off buffing the entity that wears backpack with additional health. Health is scaled based on backpack tier the mob wears.
        buffHealth = true
        #Turns on/off equiping the entity that wears backpack with armor. What armor material and how enchanted is scaled based on backpack tier the mob wears.
        equipWithArmor = true
        #Map of entities that can spawn with backpack and related loot tables (if adding a loot is enabled) in format of "EntityRegistryName|LootTableName"
        entityLootTableList = ["minecraft:creeper|minecraft:chests/desert_pyramid", "minecraft:drowned|minecraft:chests/shipwreck_treasure", "minecraft:enderman|minecraft:chests/end_city_treasure", "minecraft:evoker|minecraft:chests/woodland_mansion", "minecraft:husk|minecraft:chests/desert_pyramid", "minecraft:piglin|minecraft:chests/bastion_bridge", "minecraft:piglin_brute|minecraft:chests/bastion_treasure", "minecraft:pillager|minecraft:chests/pillager_outpost", "minecraft:skeleton|minecraft:chests/simple_dungeon", "minecraft:stray|minecraft:chests/igloo_chest", "minecraft:vex|minecraft:chests/woodland_mansion", "minecraft:vindicator|minecraft:chests/woodland_mansion", "minecraft:witch|minecraft:chests/buried_treasure", "minecraft:wither_skeleton|minecraft:chests/nether_bridge", "minecraft:zombie|minecraft:chests/simple_dungeon", "minecraft:zombie_villager|minecraft:chests/village/village_armorer", "minecraft:zombified_piglin|minecraft:chests/bastion_other"]
        #List of music discs that are not supposed to be played by entities
        discBlockList = ["botania:record_gaia_1", "botania:record_gaia_2"]
        #Turns on/off a chance that the entity that wears backpack gets jukebox upgrade and plays a music disc.
        playJukebox = true
        #Determines whether backpack drops to fake players if killed by them in addition to real ones that it always drops to
        dropToFakePlayers = false
        #Chance of mob dropping backpack when killed by player
        #Range: 0.0 ~ 1.0
        backpackDropChance = 0.085
        #Chance increase per looting level of mob dropping backpack
        #Range: 0.0 ~ 0.2
        lootingChanceIncreasePerLevel = 0.01```
m1jordanallen commented 1 year ago

This seems to have been resolved with updating forge and some mods