Rebase fixes and changelog

This commit is contained in:
Sam 2023-05-13 09:38:10 -04:00
parent ca070f7ae8
commit 20a8788eee
3 changed files with 4 additions and 2 deletions

View File

@ -49,6 +49,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Airships can now have sprites, which can be interacted with. - Airships can now have sprites, which can be interacted with.
- Some sprites can be sat on. - Some sprites can be sat on.
- Pet birds can now sit on the player's shoulder as they explore the world. - Pet birds can now sit on the player's shoulder as they explore the world.
- Adlet caves
### Changed ### Changed

View File

@ -657,11 +657,11 @@ impl SpriteKind {
| SpriteKind::Gravestone | SpriteKind::Gravestone
| SpriteKind::MagicalBarrier | SpriteKind::MagicalBarrier
| SpriteKind::Helm | SpriteKind::Helm
| SpriteKind::DoorWide, | SpriteKind::DoorWide
| SpriteKind::BoneKeyhole | SpriteKind::BoneKeyhole
| SpriteKind::BoneKeyDoor | SpriteKind::BoneKeyDoor
| SpriteKind::IceCrystal | SpriteKind::IceCrystal
| SpriteKind::GlowIceCrystal | SpriteKind::GlowIceCrystal,
) )
} }
} }

View File

@ -618,6 +618,7 @@ fn mount_point(body: &Body) -> Vec3<f32> {
(Huskbrute, _) => (0.0, 3.0, 3.0), (Huskbrute, _) => (0.0, 3.0, 3.0),
(Tursus, _) => (0.0, 2.0, 3.0), (Tursus, _) => (0.0, 2.0, 3.0),
(Gigasfrost, _) => (1.0, 2.0, 4.0), (Gigasfrost, _) => (1.0, 2.0, 4.0),
(AdletElder, _) => (0.0, 0.0, -1.0),
} }
.into() .into()
} }