Skip to content

Commit

Permalink
Fixed error with home area
Browse files Browse the repository at this point in the history
  • Loading branch information
havietisov committed Dec 13, 2018
1 parent 77f71cd commit 02d020c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CooperateRim/CooperateRimming.cs
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ static void InitBullshit()
SerializationService.AppendSurrogate(typeof(Thing), new ThingSurrogate());
SerializationService.AppendSurrogate(typeof(Area), new AreaSurrogate());
SerializationService.AppendSurrogate(typeof(Area_Allowed), new AreaSurrogate());
SerializationService.AppendSurrogate(typeof(Area_Home), new AreaSurrogate());
SerializationService.AppendSurrogate(typeof(AreaManager), new AreaManaegerSurrogate());
SerializationService.AppendSurrogate(typeof(Bill_Production), new BillProductionSurrogate());
SerializationService.AppendSurrogate(typeof(Bill_ProductionWithUft), new Bill_ProductionWithUft_surrogate());
Expand Down
2 changes: 1 addition & 1 deletion ModFolder/RimAlong/About/About.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
<author>6opoDuJIo</author>
<url>http://rimworldgame.com</url>
<targetVersion>1.0.0</targetVersion>
<description>Map cooperative mod. Build 0.2.6921.40652 </description>
<description>Map cooperative mod. Build 0.2.6921.41159 </description>
</ModMetaData>
2 changes: 1 addition & 1 deletion RimLauncher/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Program

static void Main(string[] args)
{
p = Process.Start(new ProcessStartInfo() { FileName = @"D:\SteamLibrary\steamapps\common\RimWorld\RimWorldWin64.exe", Arguments = "network_launch" });
p = Process.Start(new ProcessStartInfo() { FileName = @"G:\SteamLibrary\steamapps\common\RimWorld\RimWorldWin64.exe", Arguments = "network_launch" });
ChildProcessTracker.AddProcess(p);
System.Threading.Thread.Sleep(5000);
SetWindowText(p.MainWindowHandle, "Rimworld launched by 6opoDuJIo launcher to handle OBS mess!");
Expand Down

0 comments on commit 02d020c

Please sign in to comment.