Add freshwater habitats and saltwater tide ribbons
This commit is contained in:
parent
53fdc9ef21
commit
69b7969e25
40 changed files with 1323 additions and 148 deletions
|
|
@ -2,6 +2,7 @@ class_name FishingContext
|
|||
extends RefCounted
|
||||
|
||||
var location_tags: Array[StringName] = []
|
||||
var water_type: WaterType.Type = WaterType.Type.FRESH_WATER
|
||||
var active_event_tags: Array[StringName] = []
|
||||
var active_bait_tags: Array[StringName] = []
|
||||
var is_night: bool = false
|
||||
|
|
|
|||
|
|
@ -1110,6 +1110,7 @@ func _build_fishing_context(
|
|||
) -> FishingContextType:
|
||||
var context := FishingContextType.new()
|
||||
context.location_tags = region.location_tags.duplicate()
|
||||
context.water_type = region.water_type
|
||||
context.active_event_tags = context_event_tags.duplicate()
|
||||
context.active_bait_tags = context_bait_tags.duplicate()
|
||||
context.is_night = context_is_night
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue