diff options
Diffstat (limited to 'jc_npc-eat-from-further-camp.patch')
-rw-r--r-- | jc_npc-eat-from-further-camp.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/jc_npc-eat-from-further-camp.patch b/jc_npc-eat-from-further-camp.patch new file mode 100644 index 0000000..ed1442d --- /dev/null +++ b/jc_npc-eat-from-further-camp.patch @@ -0,0 +1,11 @@ +--- a/src/npcmove.cpp ++++ b/src/npcmove.cpp +@@ -3817,7 +3817,7 @@ + Character &player_character = get_player_character(); + cata::optional<basecamp *> potential_bc; + for( const tripoint_abs_omt &camp_pos : player_character.camps ) { +- if( rl_dist( camp_pos, global_omt_location() ) < 3 ) { ++ if( rl_dist( camp_pos, global_omt_location() ) < 6 ) { + potential_bc = overmap_buffer.find_camp( camp_pos.xy() ); + if( potential_bc ) { + break; |