Skip to content

Commit c9c7469

Browse files
committed
Merge branch 'master' into 2.4_Lite
2 parents 53b25bb + 2338faa commit c9c7469

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

scripts_src/ncr/scduppo.ssl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ procedure map_enter_p_proc begin
139139

140140
//added by killap
141141
if (new_run and repeatable_brahmin_drive and not(cattle_drive(HAL_DEAD))) then begin
142-
if (cattle_drive(CATTLE_FINISHED) or cattle_drive(CATTLE_MISSED)) then begin
143-
set_global_var(GVAR_NCR_CATTLE_DRIVE,0);
142+
if (cattle_drive(CATTLE_FINISHED) or cattle_drive(CATTLE_MISSED)) then begin
143+
set_global_var(GVAR_NCR_CATTLE_DRIVE,0);
144144
end
145145
end
146146
//added by killap
@@ -215,8 +215,8 @@ procedure talk_p_proc begin
215215
set_local_var(LVAR_Herebefore, 1);
216216

217217
move_obj_inven_to_obj(self_obj, i_duppo_table);
218-
self_caps_adjust(item_caps_total(i_duppo_table));
219-
item_caps_adjust(i_duppo_table, -self_caps);
218+
//self_caps_adjust(item_caps_total(i_duppo_table)); -comment out by NovaRain (expansion)
219+
//item_caps_adjust(i_duppo_table, -self_caps); -comment out by NovaRain (expansion)
220220
end
221221

222222
/* This procedure gets called only on the death of this NPC. Special things like

scripts_src/sanfran/fcgunmer.ssl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,12 +193,12 @@ procedure talk_p_proc begin
193193
GetReaction;
194194

195195
//set_local_var(LVAR_Money, self_caps); -comment out by killap (expansion)
196-
//item_caps_adjust(self_obj, -local_var(LVAR_Money)); -comment out by killap (expansion)
196+
//self_caps_adjust(-local_var(LVAR_Money)); -comment out by killap (expansion)
197197

198198
move_obj_inven_to_obj(self_obj, swap_obj);
199199
move_obj_inven_to_obj(i_table_swap, self_obj);
200200

201-
//item_caps_adjust(self_obj, local_var(LVAR_Money)); -comment out by killap (expansion)
201+
//self_caps_adjust(local_var(LVAR_Money)); -comment out by killap (expansion)
202202
//set_local_var(LVAR_Money, 0); -comment out by killap (expansion)
203203

204204
if (san_fran_flag(SF_SHI_ENEMY)) then begin
@@ -230,7 +230,7 @@ procedure talk_p_proc begin
230230
end
231231

232232
//set_local_var(LVAR_Money, self_caps); -comment out by killap (expansion)
233-
//item_caps_adjust(self_obj, -local_var(LVAR_Money)); -comment out by killap (expansion)
233+
//self_caps_adjust(-local_var(LVAR_Money)); -comment out by killap (expansion)
234234

235235
move_obj_inven_to_obj(self_obj, i_table_swap);
236236
move_obj_inven_to_obj(swap_obj, self_obj);

0 commit comments

Comments
 (0)