File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed
NebulaPatcher/Patches/Dynamic Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 11## Changelog
22
3+ 0.7.7:
4+
5+ - @starfi5h , @PhantomGamers : Fixed issue where research removed by clients would not be synced.
6+
370.7.6:
48
59- @starfi5h : Added syncing of ray receiver output
Original file line number Diff line number Diff line change @@ -148,5 +148,12 @@ public static bool UnlockTech_Prefix()
148148 //Wait for the authoritative packet for unlocking tech features in multiplayer for clients
149149 return ! Multiplayer . IsActive || Multiplayer . Session . LocalPlayer . IsHost || Multiplayer . Session . History . IsIncomingRequest ;
150150 }
151+
152+ [ HarmonyPrefix ]
153+ [ HarmonyPatch ( nameof ( GameHistoryData . RemoveTechInQueue ) ) ]
154+ public static void RemoveTechInQueue_Prefix ( int index , out int __state )
155+ {
156+ __state = GameMain . history . techQueue [ index ] ;
157+ }
151158 }
152159}
Original file line number Diff line number Diff line change 11{
22 "$schema" : " https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json" ,
3- "version" : " 0.7.6 " ,
3+ "version" : " 0.7.7 " ,
44 "assemblyVersion" : {
55 "precision" : " build"
66 },
You can’t perform that action at this time.
0 commit comments