Skip to content

Commit 2c2b779

Browse files
committed
Set version 2.1.0 and update changelog
1 parent 41468ac commit 2c2b779

File tree

4 files changed

+26
-4
lines changed

4 files changed

+26
-4
lines changed

changelog.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
# 2.1.0
2+
3+
**Architectury is now REQUIRED for Forge and Fabric versions of the mod.**
4+
5+
- Ported to Architectury API / Fabric
6+
- Updated mod icon
7+
- Added new moth variants and slightly tweaked model
8+
- Tweaked zotzpyre model
9+
- Added new albino zotzpyre variant
10+
- Reworked Zotzpyre AI entirely, it now flies and swoops at the player
11+
- Hirschgeist flame AoE attack is now projectile-based and uses soul flames
12+
- Added new sounds for the Hirschgeist
13+
- Greatly buffed the Hirschgeist (added armor, health)
14+
- 1/4 of all attacks will now "pass through" the Hirschgeist's ectoplasm layer, indicated by a liquid-like sloshing sound
15+
- Fixed bug where Hirschgeist would sit still for several seconds when attacking with flames
16+
- Added new sounds for the Hidebehind
17+
- Optimized moth pathing, prevent getting stuck inside blocks
18+
- Added a tag for moths targeting held light items
19+
- Added a tag for light sources breakable by moths (torches and soul tourches by default)
20+
- Moths will now target all holdable common light sources in the game when held by the player at night
21+
- Tweaked wisp lantern model
22+
- Cleaned up mod data fields
23+
- 1.17: The Hidebehind and Hirschgeist are immune to freezing and can walk on powdered snow
24+
- Fabric: Added Cloth Config API and Mod Menu compatibility
25+
126
# 2.0.2
227

328
- Add Russian Translation (Credit: Magnaderra)

common/src/main/java/dev/itsmeow/whisperwoods/mixin/EntityMixin.java

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
import org.spongepowered.asm.mixin.injection.At;
1414
import org.spongepowered.asm.mixin.injection.Inject;
1515
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;
16-
import org.spongepowered.asm.mixin.injection.callback.LocalCapture;
1716

1817
import java.util.stream.Stream;
1918

common/src/main/java/dev/itsmeow/whisperwoods/mixin/GroundPathNavigationMixin.java

-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
package dev.itsmeow.whisperwoods.mixin;
22

3-
import dev.itsmeow.whisperwoods.entity.EntityHirschgeist;
43
import dev.itsmeow.whisperwoods.util.IOverrideCollisions;
54
import net.minecraft.core.BlockPos;
6-
import net.minecraft.tags.BlockTags;
75
import net.minecraft.world.entity.Mob;
86
import net.minecraft.world.entity.ai.navigation.GroundPathNavigation;
97
import net.minecraft.world.entity.ai.navigation.PathNavigation;

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Mod Attributes
2-
mod_version = 2.0.2
2+
mod_version = 2.1.0
33
mod_id = whisperwoods
44
maven_group = dev.itsmeow.whisperwoods
55

0 commit comments

Comments
 (0)