Updated project files to reflect name change, changed description, and more
This commit is contained in:
parent
c55fba438f
commit
f9b6a44f97
6 changed files with 14 additions and 14 deletions
|
@ -1,5 +1,4 @@
|
||||||
# Soothed Hostiles
|
# Soothed
|
||||||
|
|
||||||
Make hostlile Minecraft mobs neutral.
|
Make all Minecraft mobs peaceful.
|
||||||
|
Compatible with Minecraft 1.19 and Fabric.
|
||||||
Compatible with Minecraft 1.19.2 and Fabric.
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package com.vesui.peasymode.mixin;
|
package net.w13r.soothed.mixin;
|
||||||
|
|
||||||
import net.minecraft.entity.mob.HostileEntity;
|
import net.minecraft.entity.mob.HostileEntity;
|
||||||
import org.spongepowered.asm.mixin.Mixin;
|
import org.spongepowered.asm.mixin.Mixin;
|
|
@ -1,4 +1,4 @@
|
||||||
package com.vesui.peasymode.mixin;
|
package net.w13r.soothed.mixin;
|
||||||
|
|
||||||
import net.minecraft.entity.Entity;
|
import net.minecraft.entity.Entity;
|
||||||
import net.minecraft.entity.EntityType;
|
import net.minecraft.entity.EntityType;
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
@ -1,18 +1,19 @@
|
||||||
{
|
{
|
||||||
"schemaVersion": 1,
|
"schemaVersion": 1,
|
||||||
"id": "peasymode",
|
"id": "soothed",
|
||||||
"version": "${version}",
|
"version": "${version}",
|
||||||
|
|
||||||
"name": "Peasy Mode",
|
"name": "Soothed",
|
||||||
"description": "Hostile mobs will no longer target you in easy mode. Allows you to get hostile mob drops but keep the difficulty of peaceful mode.",
|
"description": "Makes all Minecraft mobs peaceful.",
|
||||||
"authors": [
|
"authors": [
|
||||||
"Vesui"
|
"Vesui",
|
||||||
|
"W13R"
|
||||||
],
|
],
|
||||||
"contact": {
|
"contact": {
|
||||||
},
|
},
|
||||||
|
|
||||||
"license": "CC0-1.0",
|
"license": "GPL-3.0",
|
||||||
"icon": "assets/peasymode/icon.png",
|
"icon": "assets/soothed/icon.png",
|
||||||
|
|
||||||
"environment": "*",
|
"environment": "*",
|
||||||
"entrypoints": {
|
"entrypoints": {
|
||||||
|
@ -20,7 +21,7 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"mixins": [
|
"mixins": [
|
||||||
"peasymode.mixins.json"
|
"soothed.mixins.json"
|
||||||
],
|
],
|
||||||
|
|
||||||
"depends": {
|
"depends": {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"required": true,
|
"required": true,
|
||||||
"minVersion": "0.8",
|
"minVersion": "0.8",
|
||||||
"package": "com.vesui.peasymode.mixin",
|
"package": "net.w13r.soothed.mixin",
|
||||||
"compatibilityLevel": "JAVA_17",
|
"compatibilityLevel": "JAVA_17",
|
||||||
"mixins": [
|
"mixins": [
|
||||||
"ModHostileEntity",
|
"ModHostileEntity",
|
Reference in a new issue