I was going through the BiG World Install.bat to add in "pause"'s so I could let it install to a point, then safely pause my VM, then continue it later (otherwise resuming the VM results in and error writing to the network drive I'm installing on since the network's not immediately connected).
I came across this snippet:
:RULESYST %IFNS%fullplate%IFNIF%tb#tweaks.exe GOTO :MODLIST %.% %.% %.% %.% %.% %.% :: rule system %TXT%@39 %.% %.% %.% %.% %.% set /P X= (FP) - (DD) - (FD) . . . %.% if /I "%X%"=="FP" goto :FULLPLATE if /I "%X%"=="DD" goto :DUNGDRAG if /I "%X%"=="FD" goto :FULLDUNG %.% %.% goto :MODLIST %.% %.% :FULLPLATE type NUL> BWP_FULLPLATE %.% %.% :DUNGDRAG type NUL> BWP_DUNGDRAG %.% %.% :FULLDUNG type NUL> BWP_FULLPLATE type NUL> BWP_DUNGDRAG %.% %.% :MODLIST
Notice how there's no "goto :MODLIST" after "type NUL> BWP_FULLPLATE" or "type NUL> BWP_DUNGDRAG", which results in both BWP_FULLPLATE and BWP_DUNGDRAG getting set.
It looks like it's a bug, but thought I'd ask in case it's deliberate due to some under-the-hood issue between the mods.