Bump agp, add missing AT
This commit is contained in:
parent
19d2ba1c9a
commit
e9b2fdd181
@ -25,6 +25,7 @@ arclight {
|
|||||||
wipeVersion = true
|
wipeVersion = true
|
||||||
reobfVersion = false
|
reobfVersion = false
|
||||||
accessTransformer = project.file('bukkit.at')
|
accessTransformer = project.file('bukkit.at')
|
||||||
|
packageName = 'spigot'
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8'
|
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8'
|
||||||
@ -70,6 +71,12 @@ remapSpigotJar {
|
|||||||
includes.add('net/minecraft/tileentity/LecternTileEntity$LecternInventory')
|
includes.add('net/minecraft/tileentity/LecternTileEntity$LecternInventory')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
processMapping {
|
||||||
|
process { csrg, srg ->
|
||||||
|
csrg.classes.put('net/minecraft/world/level/ColorResolver', "net/minecraft/server/$bukkitVersion/ColorResolver".toString())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
generateArclightMeta {
|
generateArclightMeta {
|
||||||
doFirst {
|
doFirst {
|
||||||
throw new StopExecutionException()
|
throw new StopExecutionException()
|
||||||
|
|||||||
@ -438,3 +438,6 @@ public net.minecraft.item.ItemUseContext <init>(Lnet/minecraft/world/World;Lnet/
|
|||||||
public net.minecraft.server.MinecraftServer field_240767_f_
|
public net.minecraft.server.MinecraftServer field_240767_f_
|
||||||
public net.minecraft.block.SoundType field_185862_o
|
public net.minecraft.block.SoundType field_185862_o
|
||||||
public net.minecraft.block.SoundType field_185865_r
|
public net.minecraft.block.SoundType field_185865_r
|
||||||
|
public net.minecraft.entity.LivingEntity func_241353_q_()V
|
||||||
|
public net.minecraft.entity.monster.DrownedEntity field_204717_b
|
||||||
|
public net.minecraft.entity.monster.DrownedEntity field_204716_a
|
||||||
@ -26,6 +26,7 @@ arclight {
|
|||||||
wipeVersion = true
|
wipeVersion = true
|
||||||
reobfVersion = true
|
reobfVersion = true
|
||||||
accessTransformer = project(':arclight-common').file('bukkit.at')
|
accessTransformer = project(':arclight-common').file('bukkit.at')
|
||||||
|
packageName = 'spigot'
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8'
|
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8'
|
||||||
@ -141,6 +142,12 @@ remapSpigotJar {
|
|||||||
includes.add('net/minecraft/tileentity/LecternTileEntity$LecternInventory')
|
includes.add('net/minecraft/tileentity/LecternTileEntity$LecternInventory')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
processMapping {
|
||||||
|
process { csrg, srg ->
|
||||||
|
csrg.classes.put('net/minecraft/world/level/ColorResolver', "net/minecraft/server/$bukkitVersion/ColorResolver".toString())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
mixin {
|
mixin {
|
||||||
add sourceSets.main, 'mixins.arclight.impl.refmap.1_16.json'
|
add sourceSets.main, 'mixins.arclight.impl.refmap.1_16.json'
|
||||||
}
|
}
|
||||||
|
|||||||
@ -3,7 +3,7 @@ allprojects {
|
|||||||
version '1.0.19-SNAPSHOT'
|
version '1.0.19-SNAPSHOT'
|
||||||
|
|
||||||
ext {
|
ext {
|
||||||
agpVersion = '1.16'
|
agpVersion = '1.17'
|
||||||
minecraftVersion = '1.16.5'
|
minecraftVersion = '1.16.5'
|
||||||
forgeVersion = '36.1.24'
|
forgeVersion = '36.1.24'
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user