Fuuuu- Some code got undid and broke everything. Fixed.
This commit is contained in:
parent
d37adb90ee
commit
1600139c4b
2
README
2
README
@ -79,6 +79,8 @@ gate-folder - The folder containing your .gate files
|
|||||||
=============
|
=============
|
||||||
Changes
|
Changes
|
||||||
=============
|
=============
|
||||||
|
[Version 0.11]
|
||||||
|
- Fuuuu- Some code got undid and broke everything. Fixed.
|
||||||
[Version 0.10]
|
[Version 0.10]
|
||||||
- Hopefully fixed the "No position found" bug.
|
- Hopefully fixed the "No position found" bug.
|
||||||
- If dest > origin, any blocks past origin.size will drop you at dest[0]
|
- If dest > origin, any blocks past origin.size will drop you at dest[0]
|
||||||
|
@ -277,7 +277,7 @@ public class Portal {
|
|||||||
Blox exit = getReverseExits().get(position);
|
Blox exit = getReverseExits().get(position);
|
||||||
// Workaround for different size gates. Just drop them at the first exit block.
|
// Workaround for different size gates. Just drop them at the first exit block.
|
||||||
if (exit == null) {
|
if (exit == null) {
|
||||||
exit = (Blox)getReverseExits().values();
|
exit = (Blox)getReverseExits().values().toArray()[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (exit != null) {
|
if (exit != null) {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
name: Stargate
|
name: Stargate
|
||||||
main: net.TheDgtl.Stargate.Stargate
|
main: net.TheDgtl.Stargate.Stargate
|
||||||
version: 0.10
|
version: 0.11
|
||||||
description: Stargate mod for Bukkit
|
description: Stargate mod for Bukkit
|
||||||
author: Drakia
|
author: Drakia
|
||||||
website: http://www.thedgtl.net
|
website: http://www.thedgtl.net
|
Loading…
Reference in New Issue
Block a user