Fixes typos

This commit is contained in:
Kristian Knarvik 2021-10-08 23:23:06 +02:00
parent 0c29788a31
commit 2fec641d9d
4 changed files with 12 additions and 12 deletions

View File

@ -403,7 +403,7 @@ bungeeSign=Teleport to
#### \[Version 0.7.9.2]
- 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
#### \[Version 0.7.9.1]
@ -472,7 +472,7 @@ bungeeSign=Teleport to
#### \[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]
@ -651,7 +651,7 @@ bungeeSign=Teleport to
#### \[Version 0.6.5]
- Moved printed message config to a seperate file
- Moved printed message config to a separate file
- Added permdebug option
- Hopefully fix path issues some people were having
- Fixed iConomy creation cost
@ -702,12 +702,12 @@ bungeeSign=Teleport to
- Updated the teleport method
- Remove always-open gates from lists
- Hopefully stop Stargate and Nether interference
- Hopefully stop Stargate and Nether interferenceF
#### \[Version 0.4.9]
- 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
- Removed debug message
- 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]
- Fixed a bug with worlds in subfolders
- Fixed a bug with worlds in sub-folders
- Fixed gates being destroyed with explosions
- Added stargate.destroy.owner
@ -844,7 +844,7 @@ bungeeSign=Teleport to
#### \[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
#### \[Version 0.18]

View File

@ -27,7 +27,7 @@ public class StargateActivateEvent extends StargatePlayerEvent {
* @param destination <p>The chosen destination to activate</p>
*/
public StargateActivateEvent(Portal portal, Player player, List<String> destinations, String destination) {
super("StargatActivateEvent", portal, player);
super("StargateActivateEvent", portal, player);
this.destinations = destinations;
this.destination = destination;

View File

@ -19,7 +19,7 @@ public class StargateDeactivateEvent extends StargateEvent {
* @param portal <p>The portal which was deactivated</p>
*/
public StargateDeactivateEvent(Portal portal) {
super("StargatDeactivateEvent", portal);
super("StargateDeactivateEvent", portal);
}
/**

View File

@ -60,13 +60,13 @@ public class VehicleEventListener implements Listener {
*/
private static void teleportVehicle(List<Entity> passengers, Portal entrancePortal, Vehicle vehicle) {
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);
} else {
Stargate.logger.info(Stargate.getString("prefox") + "Found empty vehicle");
Stargate.logger.info(Stargate.getString("prefix") + "Found empty vehicle");
Portal destinationPortal = entrancePortal.getDestination();
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;
}
Stargate.debug("vehicleTeleport", destinationPortal.getWorld() + " " + destinationPortal.getSignLocation());