Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
05a5fb2160 | |||
d9f535cd07 | |||
62952611b8 |
@ -396,6 +396,10 @@ portalInfoServer=Server: %server%
|
|||||||
|
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
#### \[Version 0.9.3.1] EpicKnarvik97 fork
|
||||||
|
|
||||||
|
- Ignores the type of air when checking if a stargate is valid
|
||||||
|
|
||||||
#### \[Version 0.9.3.0] EpicKnarvik97 fork
|
#### \[Version 0.9.3.0] EpicKnarvik97 fork
|
||||||
|
|
||||||
- Adds support for RGB colors (use hex color codes)
|
- Adds support for RGB colors (use hex color codes)
|
||||||
|
2
pom.xml
2
pom.xml
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
<groupId>net.knarcraft</groupId>
|
<groupId>net.knarcraft</groupId>
|
||||||
<artifactId>Stargate</artifactId>
|
<artifactId>Stargate</artifactId>
|
||||||
<version>0.9.3.0</version>
|
<version>0.9.3.1</version>
|
||||||
|
|
||||||
<licenses>
|
<licenses>
|
||||||
<license>
|
<license>
|
||||||
|
@ -235,7 +235,7 @@ public class Gate {
|
|||||||
Material type = topLeft.getRelativeLocation(entranceVector, yaw).getType();
|
Material type = topLeft.getRelativeLocation(entranceVector, yaw).getType();
|
||||||
|
|
||||||
//Ignore entrance if it's air or water, and we're creating a new gate
|
//Ignore entrance if it's air or water, and we're creating a new gate
|
||||||
if (onCreate && (type == Material.AIR || type == Material.WATER)) {
|
if (onCreate && (type.isAir() || type == Material.WATER)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
name: Stargate
|
name: Stargate
|
||||||
main: net.knarcraft.stargate.Stargate
|
main: net.knarcraft.stargate.Stargate
|
||||||
version: 0.9.3.0
|
version: 0.9.3.1
|
||||||
description: Stargate mod for Bukkit Revived
|
description: Stargate mod for Bukkit Revived
|
||||||
author: EpicKnarvik97
|
author: EpicKnarvik97
|
||||||
authors: [ Drakia, PseudoKnight, EpicKnarvik97 ]
|
authors: [ Drakia, PseudoKnight, EpicKnarvik97 ]
|
||||||
|
Reference in New Issue
Block a user