Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ RimFridge | [![url][steam]](https://steamcommunity.com/sharedfiles/filedetails/?
Rimsential - Spaceports | [![url][steam]](https://steamcommunity.com/sharedfiles/filedetails/?id=2663999215) [![url][repo]](https://github.com/SomewhereOutInSpace/Rimworld-Spaceports)
RPG Style Inventory | [![url][steam]](https://steamcommunity.com/sharedfiles/filedetails/?id=1561221991) [![url][repo]](https://github.com/SandyTheGreat/RPG-Style-Inventory)
RunAndGun | [![url][steam]](https://steamcommunity.com/sharedfiles/filedetails/?id=1204108550) [![url][repo]](https://github.com/rheirman/RunAndGun)
RunAndGun Continued | [![url][steam]](https://steamcommunity.com/sharedfiles/filedetails/?id=3562365100) [![url][repo]](https://github.com/MemeGoddess/RunAndGun)
Search and Destroy | [![url][steam]](https://steamcommunity.com/sharedfiles/filedetails/?id=1467764609) [![url][repo]](https://github.com/rheirman/SearchAndDestroy)
Signs and Comments | [![url][steam]](https://steamcommunity.com/sharedfiles/filedetails/?id=2576219203) [![url][repo]](https://github.com/JTJutajoh/RimWorld.Signs)
Simple Sidearms | [![url][steam]](https://steamcommunity.com/sharedfiles/filedetails/?id=927155256) [![url][repo]](https://github.com/PeteTimesSix/SimpleSidearms)
Expand Down
2 changes: 0 additions & 2 deletions Source/Mods/RunandGun.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@ namespace Multiplayer.Compat
{
/// <summary>RunAndGun by roolo</summary>
/// <see href="https://github.com/rheirman/RunAndGun"/>
/// <see href="https://github.com/MemeGoddess/RunAndGun"/>
/// <see href="https://steamcommunity.com/sharedfiles/filedetails/?id=1204108550"/>
[MpCompatFor("roolo.RunAndGun")]
[MpCompatFor("memegoddess.RunAndGun")]
class RunandGun
{
public RunandGun(ModContentPack mod)
Expand Down
20 changes: 20 additions & 0 deletions Source/Mods/RunandGunContinued.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
using System;
using Verse;
using HarmonyLib;
using Multiplayer.API;

namespace Multiplayer.Compat
{
/// <summary>RunAndGun Continued</summary>
/// <see href="https://github.com/MemeGoddess/RunAndGun"/>
/// <see href="https://steamcommunity.com/sharedfiles/filedetails/?id=3562365100"/>
[MpCompatFor("memegoddess.RunAndGun")]
class RunandGunContinued
{
public RunandGunContinued(ModContentPack mod)
{
MpCompat.RegisterLambdaDelegate("RunAndGun.Harmony.Pawn_DraftController_GetGizmos_Patch", "Postfix", 1);
PatchingUtilities.PatchUnityRand("RunAndGun.Harmony.MentalStateHandler_TryStartMentalState:shouldRunAndGun", false);
}
}
}