Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cosmic ascension Star Gazer improvements #1906

Merged
merged 3 commits into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions code/modules/antagonists/heretic/knowledge/cosmic_lore.dm
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,7 @@
var/static/list/star_gazer_commands = list(
/datum/pet_command/idle,
/datum/pet_command/free,
/datum/pet_command/protect_owner, // monkestation edit: allow star gazers to passively protect their summoner
/datum/pet_command/follow,
/datum/pet_command/point_targeting/attack/star_gazer
)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/mob/living/basic/heretic/star_gazer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
BB_PET_TARGETING_STRATEGY = /datum/targeting_strategy/basic/not_friends/attack_closed_turfs,
)

ai_movement = /datum/ai_movement/basic_avoidance
ai_movement = /datum/ai_movement/jps // monkestation edit: use JPS movement for star gazers
idle_behavior = /datum/idle_behavior/idle_random_walk
planning_subtrees = list(
/datum/ai_planning_subtree/attack_obstacle_in_path/pet_target/star_gazer,
Expand Down
Loading