Fixes typos
This commit is contained in:
parent
0c29788a31
commit
2fec641d9d
14
README.md
14
README.md
@ -403,7 +403,7 @@ bungeeSign=Teleport to
|
|||||||
#### \[Version 0.7.9.2]
|
#### \[Version 0.7.9.2]
|
||||||
|
|
||||||
- Remove my custom sign class. Stupid Bukkit team.
|
- Remove my custom sign class. Stupid Bukkit team.
|
||||||
- Will work with CB 1.4.5 builds, but now will break randomly due to Bukkit screwup
|
- Will work with CB 1.4.5 builds, but now will break randomly due to Bukkit screw-up
|
||||||
- Update MetricsLite to R6
|
- Update MetricsLite to R6
|
||||||
|
|
||||||
#### \[Version 0.7.9.1]
|
#### \[Version 0.7.9.1]
|
||||||
@ -472,7 +472,7 @@ bungeeSign=Teleport to
|
|||||||
|
|
||||||
#### \[Version 0.7.6.6]
|
#### \[Version 0.7.6.6]
|
||||||
|
|
||||||
- Check move/portal/interact/signchange events for cancellation
|
- Check move/portal/interact/sign-change events for cancellation
|
||||||
|
|
||||||
#### \[Version 0.7.6.5]
|
#### \[Version 0.7.6.5]
|
||||||
|
|
||||||
@ -651,7 +651,7 @@ bungeeSign=Teleport to
|
|||||||
|
|
||||||
#### \[Version 0.6.5]
|
#### \[Version 0.6.5]
|
||||||
|
|
||||||
- Moved printed message config to a seperate file
|
- Moved printed message config to a separate file
|
||||||
- Added permdebug option
|
- Added permdebug option
|
||||||
- Hopefully fix path issues some people were having
|
- Hopefully fix path issues some people were having
|
||||||
- Fixed iConomy creation cost
|
- Fixed iConomy creation cost
|
||||||
@ -702,12 +702,12 @@ bungeeSign=Teleport to
|
|||||||
|
|
||||||
- Updated the teleport method
|
- Updated the teleport method
|
||||||
- Remove always-open gates from lists
|
- Remove always-open gates from lists
|
||||||
- Hopefully stop Stargate and Nether interference
|
- Hopefully stop Stargate and Nether interferenceF
|
||||||
|
|
||||||
#### \[Version 0.4.9]
|
#### \[Version 0.4.9]
|
||||||
|
|
||||||
- Left-click to scroll signs up
|
- Left-click to scroll signs up
|
||||||
- Show "(Not Connected)" on fixed-gates with a non-existant destination
|
- Show "(Not Connected)" on fixed-gates with a non-existent destination
|
||||||
- Added "maxgates" option
|
- Added "maxgates" option
|
||||||
- Removed debug message
|
- Removed debug message
|
||||||
- Started work on disabling damage for lava gates, too much work to finish with the current implementation of
|
- Started work on disabling damage for lava gates, too much work to finish with the current implementation of
|
||||||
@ -816,7 +816,7 @@ bungeeSign=Teleport to
|
|||||||
|
|
||||||
#### \[Version 0.25]
|
#### \[Version 0.25]
|
||||||
|
|
||||||
- Fixed a bug with worlds in subfolders
|
- Fixed a bug with worlds in sub-folders
|
||||||
- Fixed gates being destroyed with explosions
|
- Fixed gates being destroyed with explosions
|
||||||
- Added stargate.destroy.owner
|
- Added stargate.destroy.owner
|
||||||
|
|
||||||
@ -844,7 +844,7 @@ bungeeSign=Teleport to
|
|||||||
|
|
||||||
#### \[Version 0.19]
|
#### \[Version 0.19]
|
||||||
|
|
||||||
- Set button facing on new gates, fixes weirdass button glitch
|
- Set button facing on new gates, fixes weird-ass button glitch
|
||||||
- Beginning of very buggy multi-world support
|
- Beginning of very buggy multi-world support
|
||||||
|
|
||||||
#### \[Version 0.18]
|
#### \[Version 0.18]
|
||||||
|
@ -27,7 +27,7 @@ public class StargateActivateEvent extends StargatePlayerEvent {
|
|||||||
* @param destination <p>The chosen destination to activate</p>
|
* @param destination <p>The chosen destination to activate</p>
|
||||||
*/
|
*/
|
||||||
public StargateActivateEvent(Portal portal, Player player, List<String> destinations, String destination) {
|
public StargateActivateEvent(Portal portal, Player player, List<String> destinations, String destination) {
|
||||||
super("StargatActivateEvent", portal, player);
|
super("StargateActivateEvent", portal, player);
|
||||||
|
|
||||||
this.destinations = destinations;
|
this.destinations = destinations;
|
||||||
this.destination = destination;
|
this.destination = destination;
|
||||||
|
@ -19,7 +19,7 @@ public class StargateDeactivateEvent extends StargateEvent {
|
|||||||
* @param portal <p>The portal which was deactivated</p>
|
* @param portal <p>The portal which was deactivated</p>
|
||||||
*/
|
*/
|
||||||
public StargateDeactivateEvent(Portal portal) {
|
public StargateDeactivateEvent(Portal portal) {
|
||||||
super("StargatDeactivateEvent", portal);
|
super("StargateDeactivateEvent", portal);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -60,13 +60,13 @@ public class VehicleEventListener implements Listener {
|
|||||||
*/
|
*/
|
||||||
private static void teleportVehicle(List<Entity> passengers, Portal entrancePortal, Vehicle vehicle) {
|
private static void teleportVehicle(List<Entity> passengers, Portal entrancePortal, Vehicle vehicle) {
|
||||||
if (!passengers.isEmpty() && passengers.get(0) instanceof Player) {
|
if (!passengers.isEmpty() && passengers.get(0) instanceof Player) {
|
||||||
Stargate.logger.info(Stargate.getString("prefox") + "Found passenger vehicle");
|
Stargate.logger.info(Stargate.getString("prefix") + "Found passenger vehicle");
|
||||||
teleportPlayerAndVehicle(entrancePortal, vehicle, passengers);
|
teleportPlayerAndVehicle(entrancePortal, vehicle, passengers);
|
||||||
} else {
|
} else {
|
||||||
Stargate.logger.info(Stargate.getString("prefox") + "Found empty vehicle");
|
Stargate.logger.info(Stargate.getString("prefix") + "Found empty vehicle");
|
||||||
Portal destinationPortal = entrancePortal.getDestination();
|
Portal destinationPortal = entrancePortal.getDestination();
|
||||||
if (destinationPortal == null) {
|
if (destinationPortal == null) {
|
||||||
Stargate.logger.warning(Stargate.getString("prefox") + "Unable to find portal destination");
|
Stargate.logger.warning(Stargate.getString("prefix") + "Unable to find portal destination");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Stargate.debug("vehicleTeleport", destinationPortal.getWorld() + " " + destinationPortal.getSignLocation());
|
Stargate.debug("vehicleTeleport", destinationPortal.getWorld() + " " + destinationPortal.getSignLocation());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user