Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
05a5fb2160 | |||
d9f535cd07 | |||
62952611b8 |
@ -396,6 +396,10 @@ portalInfoServer=Server: %server%
|
||||
|
||||
# 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
|
||||
|
||||
- Adds support for RGB colors (use hex color codes)
|
||||
|
2
pom.xml
2
pom.xml
@ -4,7 +4,7 @@
|
||||
|
||||
<groupId>net.knarcraft</groupId>
|
||||
<artifactId>Stargate</artifactId>
|
||||
<version>0.9.3.0</version>
|
||||
<version>0.9.3.1</version>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
|
@ -235,7 +235,7 @@ public class Gate {
|
||||
Material type = topLeft.getRelativeLocation(entranceVector, yaw).getType();
|
||||
|
||||
//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;
|
||||
}
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
name: Stargate
|
||||
main: net.knarcraft.stargate.Stargate
|
||||
version: 0.9.3.0
|
||||
version: 0.9.3.1
|
||||
description: Stargate mod for Bukkit Revived
|
||||
author: EpicKnarvik97
|
||||
authors: [ Drakia, PseudoKnight, EpicKnarvik97 ]
|
||||
|
Reference in New Issue
Block a user