Last active
September 5, 2021 15:04
-
-
Save renb0/1a7bdf693a1622fb5960321b53159e3c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Credit goes to KornyAlex | |
# Source: https://steamcommunity.com/app/493900/discussions/0/1737758859958843340/?ctp=2#c4348747794031248217 | |
# Go to Dungeons 3 | |
cd ~/Library/Application\ Support/Steam/steamapps/common/Dungeons\ 3/Dungeons3.app | |
# Copy and remove signatures | |
cp Contents/Plugins/RakNet.bundle/Contents/MacOS/RakNet Contents/Frameworks/MonoEmbedRuntime/osx/libRakNet | |
cp Contents/Plugins/RenderingSupport.bundle/Contents/MacOS/RenderingSupport Contents/Frameworks/MonoEmbedRuntime/osx/libRenderingSupport | |
codesign --remove-signature Contents/Frameworks/MonoEmbedRuntime/osx/libRakNet | |
codesign --remove-signature Contents/Frameworks/MonoEmbedRuntime/osx/libRenderingSupport | |
# Enable steam or campaign will not load | |
codesign --remove-signature --deep --verbose Contents/Plugins/CSteamworks.bundle/Contents/MacOS/* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment