Releases: Arckenver/MightyLoot
Releases · Arckenver/MightyLoot
MightyLoot v2.1
MightyLoot v2.0
MightyLoot Release v2.0
Targets SpongeAPI v5.0.0
Changelog
- Updated for SpongeAPI 5.0.0 (minecraft 1.10.2)
MightyLoot v1.4
MightyLoot Release v1.4
Targets SpongeAPI v4.2.0
Changelog
- Added
placeAlwaysOnGroundoption in config to specify wether the loot should be forced to spawn on ground - Added
placeGlowstoneBelowLootoption in config to specify wether a glowstone block should be placed below the loot - Added loot guardians feature
MightyLoot v1.3
MightyLoot Release v1.3
Targets SpongeAPI v4.2.0
Changelog
- Added translation support, get translations here
- Added english translation
- Added french translation
With new translation support, some texts may be not where they were meant to be. Please report any text that looks like it was exchanged with another one.
MightyLoot v1.2
MightyLoot Release v1.2
Targets SpongeAPI v4.0.3
Changelog
- Fixed chest not disappearing
- Tried to fix problem of loots spawning away from where it was meant to
- Changed loot spawn area system in config, introducing cylinder areas (see below)
worlds {
world {
frequency=3600
lootTypes {
food=15
goldish=25
material=15
mine=15
mobs=15
nether=15
}
maxX=5000
maxY=50
maxZ=5000
minX=-5000
minY=10
minZ=-5000
}
}
should be changed to
worlds {
world {
area {
maxX=5000
maxY=50
maxZ=5000
minX=-5000
minY=10
minZ=-5000
type=rect
}
frequency=3600
lootTypes {
food=15
goldish=25
material=15
mine=15
mobs=15
nether=15
}
}
}
or, with a cylinder area
worlds {
world {
area {
centerX=0
centerZ=0
maxY=50
minY=10
radius=5000
type=cyl
}
frequency=3600
lootTypes {
food=15
goldish=25
material=15
mine=15
mobs=15
nether=15
}
}
}
MightyLoot v1.1
MightyLoot Release v1.1
Targets SpongeAPI v4.0.3
Changelog
- Fixed issue in
InteractListener
MightyLoot v1.0
MightyLoot Release v1.0
Targets SpongeAPI v4.0.3
This is the very first release of MightyLoot plugin. Please see readme file and report any issue at the official sponge forums thread.