Skip to content

Commit

Permalink
Improved structure
Browse files Browse the repository at this point in the history
  • Loading branch information
SeaEclipse committed Apr 25, 2020
1 parent fc465fc commit bcd971b
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
File renamed without changes.
Binary file renamed Travertine.jar → TravertineNonPatched.jar
Binary file not shown.
20 changes: 20 additions & 0 deletions flameCordPatchToTravertine.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/usr/bin/env bash

read -p 'Input file to patch -> ' originFile

read -p 'Patch everything or just FlameCord and Bungee-specific classes?(everything/specific) -> ' everspec

if [[ ""$everspec"" = everything ]]; then
jar uf $originFile net/*
jar uf $originFile com/*
jar uf $originFile gnu/*
jar uf $originFile io/*
jar uf $originFile joptsimple/*
jar uf $originFile META-INF/*
jar uf $originFile mojang-translations/*
jar uf $originFile org/*
elif [[ ""$everspec"" = specific ]]; then
jar uf $originFile net/*
jar uf $originFile com/*
jar uf $originFile META-INF/*
fi
Empty file added patchFlameCord.sh
Empty file.

0 comments on commit bcd971b

Please sign in to comment.