refactor(inventory): simplify collected creature details

This commit is contained in:
Alexander Sellite 2026-08-18 21:19:40 -04:00
parent fa57edca83
commit 925bbb79e5
4 changed files with 122 additions and 202 deletions

View file

@ -223,11 +223,10 @@ func _catch_context_text(fish_catch: FishCatch) -> String:
fish_catch.fish.display_name,
fish_catch.quality,
)
return "%s\n%0.2f lb • value %d\n%s" % [
return "%s\n%0.2f lb • value %d" % [
catch_name,
fish_catch.weight_lb,
fish_catch.sale_value,
fish_catch.fish.logbook_fact,
]