-
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 #313 from lokka30/3.2-dev
3.2 dev
- Loading branch information
Showing
17 changed files
with
456 additions
and
158 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
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
24 changes: 24 additions & 0 deletions
24
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package me.lokka30.levelledmobs.commands.subcommands; | ||
|
||
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 { | ||
public SummonMobOptions(@NotNull final LivingEntityPlaceHolder lmPlaceHolder, final CommandSender sender){ | ||
this.lmPlaceHolder = lmPlaceHolder; | ||
this.sender = sender; | ||
} | ||
|
||
@NotNull | ||
public final LivingEntityPlaceHolder lmPlaceHolder; | ||
public final CommandSender sender; | ||
public SummonSubcommand.SummonType summonType; | ||
public int amount; | ||
public RequestedLevel requestedLevel; | ||
public Player player; | ||
public boolean override; | ||
public String nbtData; | ||
} |
Oops, something went wrong.