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.
|
||||
|
||||
Compatible with Minecraft 1.19.2 and Fabric.
|
||||
Make all Minecraft mobs peaceful.
|
||||
Compatible with Minecraft 1.19 and Fabric.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package com.vesui.peasymode.mixin;
|
||||
package net.w13r.soothed.mixin;
|
||||
|
||||
import net.minecraft.entity.mob.HostileEntity;
|
||||
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.EntityType;
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
@ -1,18 +1,19 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "peasymode",
|
||||
"id": "soothed",
|
||||
"version": "${version}",
|
||||
|
||||
"name": "Peasy Mode",
|
||||
"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.",
|
||||
"name": "Soothed",
|
||||
"description": "Makes all Minecraft mobs peaceful.",
|
||||
"authors": [
|
||||
"Vesui"
|
||||
"Vesui",
|
||||
"W13R"
|
||||
],
|
||||
"contact": {
|
||||
},
|
||||
|
||||
"license": "CC0-1.0",
|
||||
"icon": "assets/peasymode/icon.png",
|
||||
"license": "GPL-3.0",
|
||||
"icon": "assets/soothed/icon.png",
|
||||
|
||||
"environment": "*",
|
||||
"entrypoints": {
|
||||
|
@ -20,7 +21,7 @@
|
|||
]
|
||||
},
|
||||
"mixins": [
|
||||
"peasymode.mixins.json"
|
||||
"soothed.mixins.json"
|
||||
],
|
||||
|
||||
"depends": {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"required": true,
|
||||
"minVersion": "0.8",
|
||||
"package": "com.vesui.peasymode.mixin",
|
||||
"package": "net.w13r.soothed.mixin",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"mixins": [
|
||||
"ModHostileEntity",
|
Reference in a new issue