Skip to content
Snippets Groups Projects
Commit 168b4804 authored by kopareigns's avatar kopareigns
Browse files

one more tweak

parent 96b03249
No related branches found
No related tags found
No related merge requests found
......@@ -156,7 +156,7 @@
<<set _dontDeleteMe = 1>>
<</if>>
<</if>>
<<if _dontDeleteMe == 1>> /* avoid going through this loop if possible */
<<if _dontDeleteMe == 0>> /* avoid going through this loop if possible */
<<for _rasi = 0; _rasi < _SL; _rasi++>>
<<if $slaves[_rasi].ID != $activeSlave.ID && isImpregnatedBy($slaves[_rasi], $activeSlave)>> /* have we impregnated a slave that is not ourself? */
<<set _dontDeleteMe = 1>>
......
......@@ -3043,9 +3043,9 @@ Setting missing slave variables:
<<set _dontDeleteMe = 1>>
<</if>>
<</if>>
<<if _dontDeleteMe == 1>> /* avoid going through this loop if possible */
<<if _dontDeleteMe == 0>> /* avoid going through this loop if possible */
<<for _bci2 = 0; _bci2 < $slaves.length; _bci2++>>
<<if $slaves[_bci2].ID != _Slave.ID && isImpregnatedBy($slaves[_bci2], _Slave)>> /* have we impregnated a slave that is not ourself? */
<<if isImpregnatedBy($slaves[_bci2], _Slave)>> /* have we impregnated a slave on the slaves array? */
<<set _dontDeleteMe = 1>>
<<break>>
<</if>>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment