Again, on the new stage.
A MOD of Minecraft; LittleMaidMob for MC1.9./1.10. Cute and little maid girls will be helpful for your life on Minecraft.
Read LICENSE.md
See Releases
- LittleMaidMob(for MC 1.6.2 or more older) - by MMM
- LittleMaidMobX(for MC 1.7.x) - by EMB4
- LittleMaidMobNX(for MC 1.8.x) - by Verclene
- *Click "Minecraft"->"LittleMaidMobNX"
POST ONE ISSUE FOR EACH REPORT.
I close issues with each fixing bug. And you can see solved or unsolved problems quickly.
- Make your GradleForge workspace multi-project
- Install git
- Run this command on project root:
git clone --recursive https://github.com/Verclene/LittleMaidReengaged.git
WARNING: if you run this on Windows, you have to enable symbolic link before cloning. See: https://github.com/git-for-windows/git/wiki/Symbolic-Links - Add these lines to root/settings.gradle:
includeFlat 'LittleMaidReengaged'
include 'LittleMaidReengaged:EBLib'
- Then run this command on root:
./gradlew setupDecompWorkspace --refresh-dependencies
- Run this command:
./gradlew :LittleMaidReengaged:runClient
or./gradlew :LittleMaidReengaged:runServer
- Or launch GradleStart or GradleStartServer from your IDE.
- To generate changelog, add
-PgenCL
to the program args.
sourceSets.main {
java.srcDirs project.projectDir.name
resources.srcDirs project.projectDir.name
}
jar {
doFirst {
archivesBaseName = "[1.9.4-1.10.x]LittleMaidReengaged"
}
manifest {
attributes 'FMLCorePlugin' : 'net.blacklab.lmr.util.coremod.LMRECoremod'
attributes 'FMLCorePluginContainsFMLMod' : 'true'
}
}
task generateChangeLog << {
exec {
executable "bash"
args '-c', '"git log --date=short --pretty=format:\'%ad %an<%ae>%nHASH=%H%n%s%n%b%n\'' +
' | sed -E \'s/HASH=(.+)/\\* \\1/g\'' +
' | sed -E \'s/(.+)/\\t\\*\\t\\1/g\'' +
' | sed -E \'s/\\t\\*\\t([0-9]+-[0-9]+-[0-9]+.+)/\\1/g\' > ChangeLog"'
}
}
// Set arguments -PgenCL to generate ChangeLog(git configure required)
if (project.hasProperty('genCL')) {
generateChangeLog.execute()
}
tasks.withType(Jar) {compileJava.options.encoding = 'UTF-8'}
tasks.withType(Jar) {compileApiJava.options.encoding = 'UTF-8'}
// Replace ':EBLib***' to the project of EBLib in your workspace
dependencies { compile project(':' + project.name + ':EBLib') }
version = "8.1.4.132"