Skip to content

Commit d339bfc

Browse files
committed
Cleanup mid-line comments
1 parent 42363c4 commit d339bfc

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

scripts_src/ncr/scslvgrd.ssl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ procedure critter_p_proc begin
165165
if (map_var(MVAR_Slavers_Attack) == 1) then begin
166166
set_local_var(LVAR_Hostile, 2);
167167
end else begin
168-
if (/*onPatrol and */seep) then begin
168+
if (seep) then begin
169169
if (tile_in_tile_rect(13725, 12485, 19125, 19085, dude_tile)) then begin
170170
set_map_var(MVAR_Slavers_Attack, 1);
171171
end

scripts_src/newreno/ncrenesc.ssl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -822,10 +822,10 @@ procedure Node042 begin
822822
end else if (get_glasses == glasses_freebie) then begin
823823
NOption(244, Node066, 004);
824824
end
825-
// There is no point to check for knowing him since his mouse over says his name.
825+
// There is no point to check "know_renesco" since his mouseover says his name.
826826
// Plus, depending upon what dialogue tree you go through when first meeting him, you might not ever set this variable
827827
// Could be fixed by tweaking the dialogue so that he always ends up introducing himself, but it is not worth it. -killap
828-
if (/*(know_renesco) and */ ((mine_reward_cash) or (mine_reward_free)) and (gave_mine_tool == false)) then begin
828+
if (((mine_reward_cash) or (mine_reward_free)) and (gave_mine_tool == false)) then begin
829829
NOption(710, Node990, 004);
830830
end
831831
NOption(711, Node036, 008);

scripts_src/sanfran/fccrocke.ssl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ procedure talk_p_proc begin
211211
gSay_End;
212212
end_dialogue;
213213
end
214-
end else if (/*armor_flag(ARMOR_SOLDFUELTANKER) or */armor_flag(ARMOR_SOLDMONEY)) then begin //killap's fix: commented out since this is the tanker variable and in addition, the elron variable is not needed since the fuel was requested for the spaceship and not Crocke (why would he get mad then?)
214+
end else if (armor_flag(ARMOR_SOLDMONEY)) then begin // killap's fix: commented out armor_flag(ARMOR_SOLDFUELTANKER) since this is the tanker variable and in addition, the elron variable is not needed since the fuel was requested for the spaceship and not Crocke (why would he get mad then?)
215215
start_gdialog(NAME,self_obj,4,-1,-1);
216216
gSay_Start;
217217
call Node021;

scripts_src/sanfran/fcronmey.ssl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ procedure talk_p_proc begin
191191

192192
if (san_fran_flag(SF_PUNKS_ENEMY)) then begin
193193
call Node014;
194-
end else if ( /*(not good_critter_reaction) and */(not local_var(LVAR_Girl_Reaction)) and (not local_var(LVAR_Spleen_Reaction))) then begin
194+
end else if ((not local_var(LVAR_Girl_Reaction)) and (not local_var(LVAR_Spleen_Reaction))) then begin
195195
call Node001;
196196
end else begin
197197
start_gdialog(NAME,self_obj,4,-1,-1);

0 commit comments

Comments
 (0)