[1.16.1] Do NOT apply removed patches

Should help for #85
This commit is contained in:
Ivan Pekov 2020-08-14 18:27:47 +03:00 committed by GitHub
parent 85db6de3ca
commit 706fdd2117
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -21,7 +21,6 @@ This is an overview over all patches that are currently used.
| server | Add option to disable saving projectiles to disk | William Blake Galbreath | |
| server | Add permission for F3+N debug | William Blake Galbreath | |
| server | Akarin Updated Save json list async | tsao chi | |
| server | Akarin updated Async Path Finding | tsao chi | Bud Gidiere |
| server | Allow to change the piston push limit | tr7zw | |
| server | Alternative Keepalive Handling | William Blake Galbreath | |
| server | Apply advancements async | Mariell Hoversholm | |

View File

@ -7,6 +7,11 @@ function enableCommitSigningIfNeeded {
git config commit.gpgsign true
fi
}
if [ "$2" == "removed" ]; then
exit 0
fi
# Disable GPG signing before AM, slows things down and doesn't play nicely.
# There is also zero rational or logical reason to do so for these sub-repo AMs.
# Calm down kids, it's re-enabled (if needed) immediately after, pass or fail.