summaryrefslogtreecommitdiff
path: root/src-11_fix-tacoma-farmfield.patch
blob: 3a3e0acf9fc13933df9ce1418a062d0e34bdd00b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
--- a/src/mission_companion.cpp
+++ b/src/mission_companion.cpp
@@ -940,12 +940,12 @@
 void talk_function::field_build_1( npc &p )
 {
     Character &player_character = get_player_character();
-    if( player_character.cash < 100000 ) {
+    if( g->u.cash < 100000 ) {
         popup( _( "I'm sorry, you don't have enough money." ) );
         return;
     }
     p.set_mutation( trait_NPC_CONSTRUCTION_LEV_1 );
-    player_character.cash += -100000;
+    g->u.cash += -100000;
     const tripoint_abs_omt site =
         overmap_buffer.find_closest( player_character.global_omt_location(), "ranch_camp_63", 20,
                                      false );
@@ -966,12 +966,12 @@
 void talk_function::field_build_2( npc &p )
 {
     Character &player_character = get_player_character();
-    if( player_character.cash < 550000 ) {
+    if( g->u.cash < 550000 ) {
         popup( _( "I'm sorry, you don't have enough money." ) );
         return;
     }
     p.set_mutation( trait_NPC_CONSTRUCTION_LEV_2 );
-    player_character.cash += -550000;
+    g->u.cash += -550000;
     const tripoint_abs_omt site =
         overmap_buffer.find_closest( player_character.global_omt_location(), "ranch_camp_63", 20,
                                      false );