├── .gitignore ├── README.md ├── pom.xml └── src └── com └── extendedclip └── papi └── expansion └── checkitem └── CheckItemExpansion.java /.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /target/ 3 | /.settings/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaceholderAPI/CheckItem-Expansion/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaceholderAPI/CheckItem-Expansion/HEAD/pom.xml -------------------------------------------------------------------------------- /src/com/extendedclip/papi/expansion/checkitem/CheckItemExpansion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlaceholderAPI/CheckItem-Expansion/HEAD/src/com/extendedclip/papi/expansion/checkitem/CheckItemExpansion.java --------------------------------------------------------------------------------