Links
Tags
Creators
Details
1.0.1
Compatibility
Required content
Changes
Bugs
FIX: a message line was incorrectly written
FIX: you cannot send multiple TPA requests to the same person if there is a valid one, so you cannot spam requests anymore
Added
/tpatoggle
/tpacancel
/hammer - shows the current version number now
This version also adds these new configuration options:
NOTE: This is not how the actual config file looks like.
general:
riddenMobsFollows: true - if the player is riding an entity (like a horse or boat), it'll also get teleported. cannot go across dimensions even if crossDimensionTeleport is enabled (due to it being annoying to implement properly + moving mobs from dimensions becomes easy)
crossDimensionTeleport:
enabled: true - if it should be allowed to TPA across dimensions (eg, between end and overworld, both players must be in end if false, opposite if true)
defaultAllow: false - if dimensions not listed should default to allowing tpa to them or not
goingTo: - this is so for example, you can tpa from the overworld to the end, but you cannot tpa from the end to the overworld
minecraft:the_end: true
minecraft:the_nether: true
minecraft:overworld: false
mycustommod:customDimensionHere: false
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:Bozgqtr2:UkJRqpsR"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:Bozgqtr2:UkJRqpsR"
}

