Logo, version change
This commit is contained in:
parent
d8ec7ed6b9
commit
102df40e6a
4 changed files with 47 additions and 47 deletions
|
@ -8,7 +8,7 @@
|
||||||
loader_version = 0.10.1+build.209
|
loader_version = 0.10.1+build.209
|
||||||
|
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
mod_version = 1.0.0
|
mod_version = 0.1.0-alpha
|
||||||
maven_group = ru.betterend
|
maven_group = ru.betterend
|
||||||
archives_base_name = better-end
|
archives_base_name = better-end
|
||||||
|
|
||||||
|
|
|
@ -157,7 +157,7 @@ public class EntityDragonfly extends AnimalEntity implements Flutterer {
|
||||||
if (isInVoid(airPos)) {
|
if (isInVoid(airPos)) {
|
||||||
for (int i = 0; i < 8; i++) {
|
for (int i = 0; i < 8; i++) {
|
||||||
airPos = TargetFinder.findAirTarget(EntityDragonfly.this, 16, 7, rotation, MHelper.PI2, 2, 1);
|
airPos = TargetFinder.findAirTarget(EntityDragonfly.this, 16, 7, rotation, MHelper.PI2, 2, 1);
|
||||||
if (!isInVoid(airPos)) {
|
if (airPos != null && !isInVoid(airPos)) {
|
||||||
return airPos;
|
return airPos;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 453 B After Width: | Height: | Size: 25 KiB |
|
@ -1,45 +1,45 @@
|
||||||
{
|
{
|
||||||
"schemaVersion": 1,
|
"schemaVersion": 1,
|
||||||
"id": "betterend",
|
"id": "betterend",
|
||||||
"version": "${version}",
|
"version": "${version}",
|
||||||
|
|
||||||
"name": "Better End",
|
"name": "Better End",
|
||||||
"description": "More content for The End",
|
"description": "More content for The End",
|
||||||
"authors": [
|
"authors": [
|
||||||
"paulevs",
|
"paulevs",
|
||||||
"Bulldog83"
|
"Bulldog83"
|
||||||
],
|
],
|
||||||
"contact": {
|
"contact": {
|
||||||
"homepage": "",
|
"homepage": "",
|
||||||
"sources": ""
|
"sources": "https://github.com/paulevsGitch/BetterEnd"
|
||||||
},
|
},
|
||||||
|
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"icon": "assets/modid/icon.png",
|
"icon": "assets/betterend/icon.png",
|
||||||
|
|
||||||
"environment": "*",
|
"environment": "*",
|
||||||
"entrypoints": {
|
"entrypoints": {
|
||||||
"main": [
|
"main": [
|
||||||
"ru.betterend.BetterEnd"
|
"ru.betterend.BetterEnd"
|
||||||
],
|
],
|
||||||
"client": [
|
"client": [
|
||||||
"ru.betterend.client.BetterEndClient"
|
"ru.betterend.client.BetterEndClient"
|
||||||
],
|
],
|
||||||
"rei_plugins": [
|
"rei_plugins": [
|
||||||
"ru.betterend.compat.REIPlugin"
|
"ru.betterend.compat.REIPlugin"
|
||||||
],
|
],
|
||||||
"rei_containers": [
|
"rei_containers": [
|
||||||
"ru.betterend.compat.REIContainer"
|
"ru.betterend.compat.REIContainer"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"mixins": [
|
"mixins": [
|
||||||
"betterend.mixins.common.json",
|
"betterend.mixins.common.json",
|
||||||
"betterend.mixins.client.json"
|
"betterend.mixins.client.json"
|
||||||
],
|
],
|
||||||
|
|
||||||
"depends": {
|
"depends": {
|
||||||
"fabricloader": ">=0.7.4",
|
"fabricloader": ">=0.7.4",
|
||||||
"fabric": "*",
|
"fabric": "*",
|
||||||
"minecraft": "1.16.x"
|
"minecraft": "1.16.x"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue