Tags
Creators
Details
Licensed MIT
Published 5 years ago
All versions
2.0.0+1.21-neoforge
Release
Glow Banners NeoForge 2.0.0+1.212 years ago 2,062
Compatibility
Minecraft: Java Edition
1.21–1.21.1
Platform
NeoForge
Supported environments
Client and server
Changes
- Updated mod to utilise the multiloader template, for both Fabric and NeoForge.
- Banners may now have an ink sac used on them to remove all glowing from it.
- Cauldrons will now remove the latest glow of the layer as well as removing the latest layer instead of just removing the entire glow.
- Banners may now accept using a glow ink sac in a loom, to apply the glow to the latest layer, and an ink sac in a loom to remove the glow from the latest layer.
- Changed how tooltips render, instead of the
Glowingtooltip at the end, your banner layers will be prefixed with "Glowing". - Changed internal glow banner NBT.
- Fabric:
"cardinal_components": {"glowingbanners:banner_glow": "all_glow": 0b, "glowing_layers": []} - NeoForge:
"neoforge:attachments": {"glowingbanners:banner_glow": "all_glow": 0b, "glowing_layers": []} - On items, it's the exact same NBT but it is instead stored inside the
BlockEntityTagnbt. all_glowis a boolean value that determines whether all layers and future layers should glow, just like the old versions.glowing_layersaccepts ints from 0 up to the maximum layer index.- This update was done in PR #7 by @MerchantPug
- Fabric:
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:r7G43arb:rHebalFG"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:r7G43arb:rHebalFG"
}
