├── .gitignore ├── README.md ├── pom.xml └── src └── main ├── java └── me │ └── ciruu │ └── offhandpatch │ └── Offhandpatch.java └── resources └── plugin.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciruu1/OffHandPatchPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciruu1/OffHandPatchPlugin/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciruu1/OffHandPatchPlugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/me/ciruu/offhandpatch/Offhandpatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciruu1/OffHandPatchPlugin/HEAD/src/main/java/me/ciruu/offhandpatch/Offhandpatch.java -------------------------------------------------------------------------------- /src/main/resources/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciruu1/OffHandPatchPlugin/HEAD/src/main/resources/plugin.yml --------------------------------------------------------------------------------