Backpacks - Failed to compile: The type or namespace name 'BaseRidableAnimal' could not be found (are you missing a using directive or an assembly reference?) | Line: 1321, Pos: 49
Upcoming issue for 01/05/2025 updates.
Very easy fix if @WhiteThunder does not get around to updating it:
Change line 1321 from this:
?? (container.entityOwner as BaseRidableAnimal)?.lootPanelNameTo this:
?? (container.entityOwner as RidableHorse)?.lootPanelName
With the Rust "Jungle" Update, Facepunch removed BaseRidableAnimal. They replaced ridable animals (specifically horses) with a more vehicle-centric model: RidableHorse, which now inherits from BaseVehicle, not BaseRidableAnimal anymore.
Thank you. Yes i imagine just names changed basically, but the issue i have no clue where to pull out information what changes they did. my skills very low, just basic, common issue just good info source. Would be cool if i know when they change in to what. thanks for sure, for lpw lvl ppl like me, its huge helpStewieVery easy fix if @WhiteThunder does not get around to updating it:
Change line 1321 from this:
?? (container.entityOwner as BaseRidableAnimal)?.lootPanelNameTo this:
?? (container.entityOwner as RidableHorse)?.lootPanelNameWith the Rust "Jungle" Update, Facepunch removed BaseRidableAnimal. They replaced ridable animals (specifically horses) with a more vehicle-centric model: RidableHorse, which now inherits from BaseVehicle, not BaseRidableAnimal anymore.