File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ public void Process()
7474
7575 string [ ] ba2Archives = Directory . GetFiles ( $ "{ GetFallout76Path ( ) } \\ Data\\ ", "*.ba2" ) ;
7676
77- Console . WriteLine ( $ "Detected { ba2Archives . Length } mods." ) ;
77+ int modsCount = 0 ;
7878
7979 foreach ( string ba2Archive in ba2Archives )
8080 {
@@ -84,6 +84,8 @@ public void Process()
8484 continue ;
8585 }
8686
87+ modsCount += 1 ;
88+
8789 BA2 ba2 = new BA2 ( ba2Archive ) ;
8890
8991 foreach ( ArchiveEntry file in ba2 . Files )
@@ -110,6 +112,8 @@ public void Process()
110112 }
111113
112114 WriteFallout76Customs ( sResourceArchive2List , sResourceStartUpArchiveList ) ;
115+
116+ Console . WriteLine ( $ "Enabled { modsCount } mods.") ;
113117 }
114118
115119 void WriteFallout76Customs ( string sResourceArchive2List , string sResourceStartUpArchiveList )
Original file line number Diff line number Diff line change 3232// by using the '*' as shown below:
3333// [assembly: AssemblyVersion("1.0.*")]
3434[ assembly: AssemblyVersion ( "1.0.0.0" ) ]
35- [ assembly: AssemblyFileVersion ( "1.1.0 " ) ]
35+ [ assembly: AssemblyFileVersion ( "1.1.1 " ) ]
You can’t perform that action at this time.
0 commit comments