-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #411 from lokka30/3.7-dev
3.7 dev
- Loading branch information
Showing
6 changed files
with
69 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 11 additions & 8 deletions
19
src/main/java/me/lokka30/levelledmobs/commands/subcommands/SummonMobOptions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,28 @@ | ||
package me.lokka30.levelledmobs.commands.subcommands; | ||
|
||
import me.lokka30.levelledmobs.misc.LivingEntityPlaceHolder; | ||
import me.lokka30.levelledmobs.misc.LivingEntityPlaceholder; | ||
import me.lokka30.levelledmobs.misc.LivingEntityPlaceholder; | ||
import me.lokka30.levelledmobs.misc.RequestedLevel; | ||
import org.bukkit.command.CommandSender; | ||
import org.bukkit.entity.Player; | ||
import org.jetbrains.annotations.NotNull; | ||
|
||
public class SummonMobOptions { | ||
|
||
SummonMobOptions(@NotNull final LivingEntityPlaceHolder lmPlaceHolder, | ||
final CommandSender sender) { | ||
this.lmPlaceHolder = lmPlaceHolder; | ||
SummonMobOptions( | ||
@NotNull final LivingEntityPlaceholder lmPlaceholder, | ||
@NotNull final CommandSender sender | ||
) { | ||
this.lmPlaceholder = lmPlaceholder; | ||
this.sender = sender; | ||
} | ||
|
||
@NotNull final LivingEntityPlaceHolder lmPlaceHolder; | ||
public final LivingEntityPlaceholder lmPlaceholder; | ||
public final CommandSender sender; | ||
SummonSubcommand.SummonType summonType; | ||
public SummonSubcommand.SummonType summonType; | ||
public int amount; | ||
RequestedLevel requestedLevel; | ||
public RequestedLevel requestedLevel; | ||
public Player player; | ||
public boolean override; | ||
String nbtData; | ||
public String nbtData; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters