Skip to content

Commit

Permalink
1.19.4
Browse files Browse the repository at this point in the history
  • Loading branch information
MORIMORI0317 committed Mar 25, 2023
1 parent b3c42c5 commit 02dd262
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Changelog to track updates for this mod.
### Added

### Changed

- Port MC1.19.4
### Deprecated

### Removed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ protected void tickDeath() {
this.playSound(soundevent, this.getSoundVolume() * 1.5f, this.getVoicePitch());
} else if (this.deathTime == MAX_WITHER_DEATH_TIME) {
this.lastHurtByPlayerTime = Math.max(lastHurtByPlayerTime, 1);
var dmg = lastDeathDamageSource == null ? DamageSource.OUT_OF_WORLD : lastDeathDamageSource;
var dmg = lastDeathDamageSource == null ? level.damageSources().outOfWorld() : lastDeathDamageSource;
dropAllDeathLoot(dmg);

this.level.broadcastEntityEvent(this, (byte) 60);
Expand Down
2 changes: 1 addition & 1 deletion fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
],
"depends": {
"fabric": "*",
"minecraft": ">=1.19.3"
"minecraft": ">=1.19.4"
}
}
12 changes: 10 additions & 2 deletions forge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
modLoader = "javafml"
loaderVersion = "[43,)"
loaderVersion = "[45,)"
issueTrackerURL = "https://github.com/MORIMORI0317/BEStyleWither/issues"
license = "GNU LGPLv3"

Expand All @@ -15,5 +15,13 @@ This mod brings the behavior of Wither closer to Bedrock Edition.
The ikisugi wither mod...
'''
logoFile = "icon.png"

[modproperties.bestylewither]
catalogueImageIcon = "icon.png"
catalogueImageIcon = "icon.png"

[[dependencies.bestylewither]]
modId = "forge"
mandatory = true
versionRange = "[45,)"
ordering = "NONE"
side = "BOTH"
4 changes: 3 additions & 1 deletion forge/src/main/resources/pack.mcmeta
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"pack": {
"description": "BE Style Wither",
"pack_format": 9
"pack_format": 12,
"forge:resource_pack_format": 12,
"forge:data_pack_format": 10
}
}
13 changes: 6 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
#Gradle setting
org.gradle.jvmargs=-Xmx6142M
#Minecraft
minecraft_version=1.19.3
support_versions=1.19.3
minecraft_version=1.19.4
support_versions=1.19.4
enabled_platforms=fabric,forge
#Mod
archives_base_name=bestylewither
mod_display_name=BEStyleWither
mod_version=1.4.2
mod_version=1.5.0
maven_group=net.morimori0317
#Dependencies
architectury_version=7.0.64
fabric_loader_version=0.14.11
fabric_api_version=0.68.1+1.19.3
forge_version=1.19.3-44.0.0
fabric_loader_version=0.14.17
fabric_api_version=0.76.0+1.19.4
forge_version=1.19.4-45.0.9
#Upload
curesforge_id=636003
modrinth_id=OkmRZ5fH
Expand Down

0 comments on commit 02dd262

Please sign in to comment.