├── .gitignore ├── .idea ├── .name ├── SlapperRotation.iml ├── modules.xml ├── php.xml ├── vcs.xml └── workspace.xml ├── README.md ├── plugin.yml ├── resources └── config.yml └── src └── SlapperRotation └── Main.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | SlapperRotation -------------------------------------------------------------------------------- /.idea/SlapperRotation.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoe77777/SlapperRotation/HEAD/.idea/SlapperRotation.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoe77777/SlapperRotation/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoe77777/SlapperRotation/HEAD/.idea/php.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoe77777/SlapperRotation/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoe77777/SlapperRotation/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoe77777/SlapperRotation/HEAD/README.md -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoe77777/SlapperRotation/HEAD/plugin.yml -------------------------------------------------------------------------------- /resources/config.yml: -------------------------------------------------------------------------------- 1 | max-distance: 16 -------------------------------------------------------------------------------- /src/SlapperRotation/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoe77777/SlapperRotation/HEAD/src/SlapperRotation/Main.php --------------------------------------------------------------------------------