Go to file
RoboMWM b7162823e8 Allow portal rescue feature to work regardless if claims are enabled in the world
Seems like this check was intended for the
"portalCreationRequiresPermission," so when he threw in the portal trap
check, he didn't account for this check possibly breaking in worlds
where claims aren't enabled.
2016-10-02 01:59:30 -07:00
src/me/ryanhamshire/GriefPrevention Allow portal rescue feature to work regardless if claims are enabled in the world 2016-10-02 01:59:30 -07:00
.gitignore Ignore snowballs, etc. from triggering PvP timer 2016-09-16 00:12:03 -07:00
.travis.yml Add travis 2016-09-22 13:30:10 -07:00
plugin.yml Remove /undorescue 2016-10-02 01:12:13 -07:00
pom.xml Use fancy new player#setPortalCooldown 2016-10-02 01:00:54 -07:00
README 3.2 2012-03-29 17:27:12 -07:00
README.md Update README.md 2016-09-21 12:45:37 -07:00

Adding GriefPrevention as a gradle/maven/sbt/leiningen dependency

Apparently there's this neat thing called JitPack that makes a public maven repo for public Github repos on the fly. According to it, this is all you need to do to add this to your maven project:

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>
	<dependency>
	    <groupId>com.github.TechFortress</groupId>
	    <artifactId>GriefPrevention</artifactId>
	    <version>master-SNAPSHOT</version>
	</dependency>

You can also add it to gradle/sbt/leiningen projects: https://jitpack.io/#TechFortress/GriefPrevention/master-SNAPSHOT