mirror of
https://github.com/FabricMC/fabric.git
synced 2025-09-07 03:39:18 +00:00
Split test mods into client and common. (#3033)
This commit is contained in:
@@ -21,7 +21,10 @@
|
||||
},
|
||||
"description": "Test mod for fabric object builder API v1.",
|
||||
"mixins": [
|
||||
"fabric-object-builder-api-v1-testmod.mixins.json"
|
||||
{
|
||||
"config": "fabric-object-builder-api-v1-testmod.client.mixins.json",
|
||||
"environment": "client"
|
||||
}
|
||||
],
|
||||
"entrypoints": {
|
||||
"main": [
|
||||
|
@@ -21,7 +21,7 @@ import net.minecraft.client.render.block.entity.SignBlockEntityRenderer;
|
||||
|
||||
import net.fabricmc.api.ClientModInitializer;
|
||||
import net.fabricmc.fabric.test.object.builder.TealSignTest;
|
||||
import net.fabricmc.fabric.test.object.builder.mixin.BlockEntityRendererFactoriesAccessor;
|
||||
import net.fabricmc.fabric.test.object.builder.client.mixin.BlockEntityRendererFactoriesAccessor;
|
||||
|
||||
public class TealSignClientTest implements ClientModInitializer {
|
||||
@Override
|
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package net.fabricmc.fabric.test.object.builder.mixin;
|
||||
package net.fabricmc.fabric.test.object.builder.client.mixin;
|
||||
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.gen.Invoker;
|
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"required": true,
|
||||
"package": "net.fabricmc.fabric.test.object.builder.mixin",
|
||||
"package": "net.fabricmc.fabric.test.object.builder.client.mixin",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"client": [
|
||||
"BlockEntityRendererFactoriesAccessor"
|
Reference in New Issue
Block a user