Updated project files to reflect name change, changed description, and more

This commit is contained in:
W13R 2022-10-01 13:11:52 +02:00
parent c55fba438f
commit f9b6a44f97
6 changed files with 14 additions and 14 deletions

View file

@ -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.

View file

@ -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;

View file

@ -1,4 +1,4 @@
package com.vesui.peasymode.mixin;
package net.w13r.soothed.mixin;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityType;

View file

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Before After
Before After

View file

@ -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": {

View file

@ -1,7 +1,7 @@
{
"required": true,
"minVersion": "0.8",
"package": "com.vesui.peasymode.mixin",
"package": "net.w13r.soothed.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
"ModHostileEntity",