You are viewing a potentially older version of this package. View all versions.
Harb-LighterPatcher-1.0.1 icon

LighterPatcher

Preloading optimisation for mods.

Date uploaded 4 years ago
Version 1.0.1
Download link Harb-LighterPatcher-1.0.1.zip
Downloads 3625
Dependency string Harb-LighterPatcher-1.0.1

This mod requires the following mods to function

bbepis-BepInExPack-5.3.1 icon
bbepis-BepInExPack

Unified BepInEx all-in-one modding pack - plugin framework, detour library

Preferred version: 5.3.1

README

LighterPatcher is an adaptation of @xiaoxiao921's LighterHook. It aims to reduce the weight of MonoMod RuntimeDetour's generated MMHook file as a BepInEx patcher.

Talk simple to me

MMHOOK_Assembly-CSharp.dll sometimes makes games slow. This patcher makes MMHOOK_Assembly-CSharp the smallest it can be.

Talk simpler to me

Thing make computer go zoom, maybe.

Installation:

Put the LighterPatcher.dll into BepInEx\Patchers folder.

Talk advanced to me

First, the patcher scans all dll files in the BepInEx\Plugins folder, and when it finds a mod with a reference to MMHOOK_Assembly-CSharp.dll, it scans all methods of that dll for calls to On.* and IL.*. Then it backs up the original MMHOOK_Assembly-CSharp.dll to MMHOOK_Assembly-CSharp.dll.backup. Finally, it sorts all types needed, and all types present. Then it does a modified mergesort to remove all types no longer needed.

Changelog:

  • 1.0.1

    • Fix case where patcher would fail to backup the mmhook because it already existed.
  • 1.0.0

    • initial release