remove the ? since its just a float

This commit is contained in:
JohnCorby 2022-10-09 15:06:49 -07:00
parent 723b550b70
commit fb8b09fb3e

View File

@ -38,7 +38,7 @@ namespace NewHorizons.Builder.Props
raftController._riverFluid = null;
raftController._sector = sector;
raftController._acceleration = info?.acceleration ?? 5f;
raftController._acceleration = info.acceleration;
sector.OnOccupantEnterSector += raftController.OnOccupantEnterSector;
sector.OnOccupantExitSector += raftController.OnOccupantExitSector;