Add inventory and logbook player menu

This commit is contained in:
Alexander Sellite 2026-07-25 16:02:34 -04:00
parent bd2768b676
commit ad89c22cca
12 changed files with 719 additions and 50 deletions

View file

@ -68,6 +68,7 @@ func create_catch(fish: FishDataType) -> FishCatchType:
var caught_fish := FishCatchType.new()
caught_fish.fish = fish
caught_fish.fish_id = fish.id
caught_fish.ensure_identity()
caught_fish.weight_lb = _rng.randf_range(
fish.get_minimum_weight(),
fish.get_maximum_weight()