Fixes typos

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

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);
}
/**