Skip to content

Commit

Permalink
v4.1.4.1 b78
Browse files Browse the repository at this point in the history
* fix error when an incomplete `/lm spawner-egg` command is used
* rename a few field descriptions when using `/lm rules show-rule`
  • Loading branch information
stumper66 committed Nov 24, 2024
1 parent 5c50d03 commit c6cc2a3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = 4.1.4.1 b77
version = 4.1.4.1 b78
description = The Ultimate RPG Mob Levelling Solution
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ object SpawnerEggCommand : SpawnerBaseClass() {
sender: CommandSender,
input: String
){
this.commandSender = sender
val args = Utils.splitStringWithQuotes(input)

var hasGivePlayer = false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,11 @@ class RuleInfo(
var mobNBTData: MergeableStringList? = null
@field:RuleFieldInfo("skylight level", RuleType.CONDITION)
var conditionsSkyLightLevel: MinAndMax? = null
@field:RuleFieldInfo("allowed worlds", RuleType.CONDITION)
@field:RuleFieldInfo("worlds", RuleType.CONDITION)
var conditionsWorlds: CachedModalList<String>? = null
@field:RuleFieldInfo("allowed entities", RuleType.CONDITION)
@field:RuleFieldInfo("entities", RuleType.CONDITION)
var conditionsEntities: CachedModalList<String>? = null
@field:RuleFieldInfo("allowed biomes", RuleType.CONDITION)
@field:RuleFieldInfo("biomes", RuleType.CONDITION)
var conditionsBiomes: CachedModalList<Biome>? = null
@field:RuleFieldInfo("external plugins", RuleType.CONDITION)
var conditionsExternalPlugins: CachedModalList<String>? = null
Expand Down

0 comments on commit c6cc2a3

Please sign in to comment.