Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
Disable a feature due to (maybe) a bug.

Signed-off-by: 秋雨落 <[email protected]>
  • Loading branch information
qyl27 committed Feb 23, 2024
1 parent c79eb0b commit fad8c3e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ Make cats in Minecraft more fun!

## Todo
- [ ] Forge support.
- [ ] Respawn your cats which was died.
- [ ] NeoForge support.
- [ ] Collect cats soul when your cat dies.
- [ ] Respawn your cat by cat soul.
- [ ] Better cat favorability system.
- [ ] Wishing cat.
- [ ] Make wish to your cat.
- [ ] Cat scratching posts and cat climbing frames for cats to play.
- [ ] Tell me your ideas.
- [ ] Paper box for cats (or cattified players)!
- [ ] More idea? **Feel free to open an issue.**

## About MeowBot233
MeowBot233, the creator of CatsPlus, was passed away on September 16, 2023, due to Ewing's sarcoma.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/cuteneko/catsplus/block/ModBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ public static void register() {
}

public static final RegistrySupplier<Block> CAT_RESURRECTION_STATION_BLOCK = BLOCKS.register("cat_resurrection_station", () -> new CatResurrectionStationBlock(AbstractBlock.Settings.create().hardness(5f)));
public static final RegistrySupplier<Item> CAT_RESURRECTION_STATION = BLOCK_ITEMS.register("cat_resurrection_station", () -> new BlockItem(CAT_RESURRECTION_STATION_BLOCK.get(), new Item.Settings().arch$tab(ModItemGroups.CATS_PLUS)));
public static final RegistrySupplier<Item> CAT_RESURRECTION_STATION = BLOCK_ITEMS.register("cat_resurrection_station", () -> new BlockItem(CAT_RESURRECTION_STATION_BLOCK.get(), new Item.Settings()));
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package cuteneko.catsplus.mixins.mixin.totemeow;
package cuteneko.catsplus.mixins.mixin.favorability;

import cuteneko.catsplus.CatsPlusData;
import net.minecraft.entity.EntityStatuses;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ private void afterDeath(DamageSource damageSource, CallbackInfo ci) {
spirit.setDeathTime(OffsetDateTime.now());
spirit.setDeathMessage(this.getDamageTracker().getDeathMessage());

player.giveItemStack(stack);
// Todo: qyl27: how about player offline?
// player.giveItemStack(stack);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/catsplus-common.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"dancing.AnimalEntityMixin",
"dancing.LivingEntityMixin",
"favorability.EntityMixin",
"totemeow.CatSleepWithOwnerGoal",
"favorability.CatSleepWithOwnerGoal",
"totemeow.LivingEntityMixin",
"totemeow.TamableEntityMixin"
],
Expand Down

0 comments on commit fad8c3e

Please sign in to comment.