Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b862de2fdc |
1
.github/CODEOWNERS
vendored
1
.github/CODEOWNERS
vendored
@@ -1 +0,0 @@
|
|||||||
* @WillFP
|
|
||||||
@@ -3,7 +3,7 @@ version = rootProject.version
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compileOnly("io.papermc.paper:paper-api:1.19.3-R0.1-SNAPSHOT")
|
compileOnly("io.papermc.paper:paper-api:1.19.3-R0.1-SNAPSHOT")
|
||||||
compileOnly("com.ticxo.modelengine:api:R3.1.8")
|
compileOnly("com.ticxo.modelengine:api:R3.1.5")
|
||||||
compileOnly("com.github.ben-manes.caffeine:caffeine:3.0.2")
|
compileOnly("com.github.ben-manes.caffeine:caffeine:3.0.2")
|
||||||
|
|
||||||
implementation("com.willfp:ecomponent:1.3.0")
|
implementation("com.willfp:ecomponent:1.3.0")
|
||||||
|
|||||||
@@ -6,7 +6,6 @@ import com.willfp.eco.core.placeholder.PlayerPlaceholder
|
|||||||
import com.willfp.ecopets.commands.CommandEcoPets
|
import com.willfp.ecopets.commands.CommandEcoPets
|
||||||
import com.willfp.ecopets.commands.CommandPets
|
import com.willfp.ecopets.commands.CommandPets
|
||||||
import com.willfp.ecopets.libreforge.ConditionHasActivePet
|
import com.willfp.ecopets.libreforge.ConditionHasActivePet
|
||||||
import com.willfp.ecopets.libreforge.ConditionHasPet
|
|
||||||
import com.willfp.ecopets.libreforge.ConditionHasPetLevel
|
import com.willfp.ecopets.libreforge.ConditionHasPetLevel
|
||||||
import com.willfp.ecopets.libreforge.EffectGivePetXp
|
import com.willfp.ecopets.libreforge.EffectGivePetXp
|
||||||
import com.willfp.ecopets.libreforge.EffectPetXpMultiplier
|
import com.willfp.ecopets.libreforge.EffectPetXpMultiplier
|
||||||
@@ -20,7 +19,6 @@ import com.willfp.ecopets.pets.Pets
|
|||||||
import com.willfp.ecopets.pets.SpawnEggHandler
|
import com.willfp.ecopets.pets.SpawnEggHandler
|
||||||
import com.willfp.ecopets.pets.activePet
|
import com.willfp.ecopets.pets.activePet
|
||||||
import com.willfp.ecopets.pets.activePetLevel
|
import com.willfp.ecopets.pets.activePetLevel
|
||||||
import com.willfp.ecopets.pets.hasPet
|
|
||||||
import com.willfp.ecopets.pets.entity.ModelEnginePetEntity
|
import com.willfp.ecopets.pets.entity.ModelEnginePetEntity
|
||||||
import com.willfp.ecopets.pets.entity.PetEntity
|
import com.willfp.ecopets.pets.entity.PetEntity
|
||||||
import com.willfp.libreforge.SimpleProvidedHolder
|
import com.willfp.libreforge.SimpleProvidedHolder
|
||||||
@@ -49,7 +47,6 @@ class EcoPetsPlugin : LibreforgePlugin() {
|
|||||||
override fun handleEnable() {
|
override fun handleEnable() {
|
||||||
Conditions.register(ConditionHasPetLevel)
|
Conditions.register(ConditionHasPetLevel)
|
||||||
Conditions.register(ConditionHasActivePet)
|
Conditions.register(ConditionHasActivePet)
|
||||||
Conditions.register(ConditionHasPet)
|
|
||||||
Effects.register(EffectPetXpMultiplier)
|
Effects.register(EffectPetXpMultiplier)
|
||||||
Effects.register(EffectGivePetXp)
|
Effects.register(EffectGivePetXp)
|
||||||
Triggers.register(TriggerGainPetXp)
|
Triggers.register(TriggerGainPetXp)
|
||||||
@@ -71,18 +68,6 @@ class EcoPetsPlugin : LibreforgePlugin() {
|
|||||||
this,
|
this,
|
||||||
"pet_id"
|
"pet_id"
|
||||||
) { it.activePet?.id ?: "" }.register()
|
) { it.activePet?.id ?: "" }.register()
|
||||||
|
|
||||||
PlayerPlaceholder(
|
|
||||||
this,
|
|
||||||
"total_pets"
|
|
||||||
) {
|
|
||||||
var pets = 0
|
|
||||||
for (pet in Pets.values()) {
|
|
||||||
if (it.hasPet(pet))
|
|
||||||
pets++
|
|
||||||
}
|
|
||||||
pets.toString()
|
|
||||||
}.register()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun handleReload() {
|
override fun handleReload() {
|
||||||
|
|||||||
@@ -11,7 +11,6 @@ class CommandEcoPets(plugin: EcoPlugin) : PluginCommand(plugin, "ecopets", "ecop
|
|||||||
.addSubcommand(CommandGiveEgg(plugin))
|
.addSubcommand(CommandGiveEgg(plugin))
|
||||||
.addSubcommand(CommandGiveXP(plugin))
|
.addSubcommand(CommandGiveXP(plugin))
|
||||||
.addSubcommand(CommandReset(plugin))
|
.addSubcommand(CommandReset(plugin))
|
||||||
.addSubcommand(CommandGiveCurrentXP(plugin))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onExecute(sender: CommandSender, args: List<String>) {
|
override fun onExecute(sender: CommandSender, args: List<String>) {
|
||||||
|
|||||||
@@ -1,80 +0,0 @@
|
|||||||
package com.willfp.ecopets.commands
|
|
||||||
|
|
||||||
import com.willfp.eco.core.EcoPlugin
|
|
||||||
import com.willfp.eco.core.command.impl.Subcommand
|
|
||||||
import com.willfp.eco.util.StringUtils
|
|
||||||
import com.willfp.eco.util.savedDisplayName
|
|
||||||
import com.willfp.eco.util.toNiceString
|
|
||||||
import com.willfp.ecopets.pets.Pets
|
|
||||||
import com.willfp.ecopets.pets.activePet
|
|
||||||
import com.willfp.ecopets.pets.givePetExperience
|
|
||||||
import com.willfp.ecopets.pets.hasPet
|
|
||||||
import org.bukkit.Bukkit
|
|
||||||
import org.bukkit.command.CommandSender
|
|
||||||
import org.bukkit.entity.Player
|
|
||||||
import org.bukkit.util.StringUtil
|
|
||||||
|
|
||||||
class CommandGiveCurrentXP(plugin: EcoPlugin) : Subcommand(plugin, "givecurrentxp", "ecopets.command.givecurrentxp", false) {
|
|
||||||
override fun onExecute(sender: CommandSender, args: List<String>) {
|
|
||||||
if (args.isEmpty()) {
|
|
||||||
sender.sendMessage(plugin.langYml.getMessage("needs-player"))
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if (args.size == 1) {
|
|
||||||
sender.sendMessage(plugin.langYml.getMessage("needs-amount"))
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
val playerName = args[0]
|
|
||||||
|
|
||||||
val player = Bukkit.getPlayer(playerName)
|
|
||||||
|
|
||||||
if (player == null) {
|
|
||||||
sender.sendMessage(plugin.langYml.getMessage("invalid-player"))
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
val pet = player.activePet
|
|
||||||
|
|
||||||
if (pet == null) {
|
|
||||||
sender.sendMessage(plugin.langYml.getMessage("no-pet"))
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!player.hasPet(pet)) {
|
|
||||||
sender.sendMessage(plugin.langYml.getMessage("doesnt-have-pet"))
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
val amount = args[1].toDoubleOrNull()
|
|
||||||
|
|
||||||
if (amount == null) {
|
|
||||||
sender.sendMessage(plugin.langYml.getMessage("invalid-amount"))
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
player.givePetExperience(
|
|
||||||
pet,
|
|
||||||
amount
|
|
||||||
)
|
|
||||||
|
|
||||||
sender.sendMessage(
|
|
||||||
plugin.langYml.getMessage("gave-current-xp", StringUtils.FormatOption.WITHOUT_PLACEHOLDERS)
|
|
||||||
.replace("%player%", player.savedDisplayName)
|
|
||||||
.replace("%xp%", amount.toNiceString())
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun tabComplete(sender: CommandSender, args: List<String>): List<String> {
|
|
||||||
if (args.size == 1) {
|
|
||||||
return Bukkit.getOnlinePlayers().map { it.name }
|
|
||||||
}
|
|
||||||
|
|
||||||
if (args.size == 2) {
|
|
||||||
return listOf("10", "100", "1000", "10000")
|
|
||||||
}
|
|
||||||
|
|
||||||
return emptyList()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -14,10 +14,9 @@ object ConditionHasActivePet : Condition<NoCompileData>("has_active_pet") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun isMet(player: Player, config: Config, compileData: NoCompileData): Boolean {
|
override fun isMet(player: Player, config: Config, compileData: NoCompileData): Boolean {
|
||||||
return EcoPetsAPI.instance.getActivePet(player) == Pets.getByID(config.getString("pet").lowercase())
|
return EcoPetsAPI.instance.hasPet(
|
||||||
// return EcoPetsAPI.instance.hasPet(
|
player,
|
||||||
// player,
|
Pets.getByID(config.getString("pet").lowercase()) ?: return false
|
||||||
// Pets.getByID(config.getString("pet").lowercase()) ?: return false
|
)
|
||||||
// )
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,17 +0,0 @@
|
|||||||
package com.willfp.ecopets.libreforge
|
|
||||||
|
|
||||||
import com.willfp.eco.core.config.interfaces.Config
|
|
||||||
import com.willfp.ecopets.api.EcoPetsAPI
|
|
||||||
import com.willfp.ecopets.pets.Pets
|
|
||||||
import com.willfp.libreforge.NoCompileData
|
|
||||||
import com.willfp.libreforge.conditions.Condition
|
|
||||||
import org.bukkit.entity.Player
|
|
||||||
|
|
||||||
object ConditionHasPet : Condition<NoCompileData>("has_pet") {
|
|
||||||
override fun isMet(player: Player, config: Config, compileData: NoCompileData): Boolean {
|
|
||||||
return EcoPetsAPI.instance.hasPet(
|
|
||||||
player,
|
|
||||||
Pets.getByID(config.getString("pet").lowercase()) ?: return false
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -363,8 +363,6 @@ class Pet(
|
|||||||
val level = player.getPetLevel(this)
|
val level = player.getPetLevel(this)
|
||||||
val isActive = player.activePet == this
|
val isActive = player.activePet == this
|
||||||
|
|
||||||
val baseLoreLocation = if (level == this.maxLevel) "max-level-lore" else "lore"
|
|
||||||
|
|
||||||
return ItemStackBuilder(base)
|
return ItemStackBuilder(base)
|
||||||
.setDisplayName(
|
.setDisplayName(
|
||||||
plugin.configYml.getFormattedString("gui.pet-icon.name")
|
plugin.configYml.getFormattedString("gui.pet-icon.name")
|
||||||
@@ -372,7 +370,7 @@ class Pet(
|
|||||||
.replace("%pet%", this.name)
|
.replace("%pet%", this.name)
|
||||||
)
|
)
|
||||||
.addLoreLines {
|
.addLoreLines {
|
||||||
injectPlaceholdersInto(plugin.configYml.getStrings("gui.pet-icon.$baseLoreLocation"), player) +
|
injectPlaceholdersInto(plugin.configYml.getStrings("gui.pet-icon.lore"), player) +
|
||||||
if (isActive) plugin.configYml.getStrings("gui.pet-icon.active-lore") else
|
if (isActive) plugin.configYml.getStrings("gui.pet-icon.active-lore") else
|
||||||
plugin.configYml.getStrings("gui.pet-icon.not-active-lore")
|
plugin.configYml.getStrings("gui.pet-icon.not-active-lore")
|
||||||
}
|
}
|
||||||
@@ -381,9 +379,6 @@ class Pet(
|
|||||||
|
|
||||||
fun getPetInfoIcon(player: Player): ItemStack {
|
fun getPetInfoIcon(player: Player): ItemStack {
|
||||||
val base = baseItem.clone()
|
val base = baseItem.clone()
|
||||||
|
|
||||||
val prefix = if (player.getPetLevel(this) == this.maxLevel) "max-level-" else ""
|
|
||||||
|
|
||||||
return ItemStackBuilder(base)
|
return ItemStackBuilder(base)
|
||||||
.setDisplayName(
|
.setDisplayName(
|
||||||
plugin.configYml.getFormattedString("gui.pet-info.active.name")
|
plugin.configYml.getFormattedString("gui.pet-info.active.name")
|
||||||
@@ -391,7 +386,7 @@ class Pet(
|
|||||||
.replace("%pet%", this.name)
|
.replace("%pet%", this.name)
|
||||||
)
|
)
|
||||||
.addLoreLines {
|
.addLoreLines {
|
||||||
injectPlaceholdersInto(plugin.configYml.getStrings("gui.pet-info.active.${prefix}lore"), player)
|
injectPlaceholdersInto(plugin.configYml.getStrings("gui.pet-info.active.lore"), player)
|
||||||
}
|
}
|
||||||
.build()
|
.build()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,8 +35,6 @@ class PetLevelGUI(
|
|||||||
override fun getLevelItem(player: Player, menu: Menu, level: Int, levelState: LevelState): ItemStack {
|
override fun getLevelItem(player: Player, menu: Menu, level: Int, levelState: LevelState): ItemStack {
|
||||||
val key = levelState.name.lowercase().replace("_", "-")
|
val key = levelState.name.lowercase().replace("_", "-")
|
||||||
|
|
||||||
val prefix = if (player.getPetLevel(pet) == pet.maxLevel) "max-level-" else ""
|
|
||||||
|
|
||||||
return ItemStackBuilder(Items.lookup(plugin.configYml.getString("level-gui.progression-slots.$key.item")))
|
return ItemStackBuilder(Items.lookup(plugin.configYml.getString("level-gui.progression-slots.$key.item")))
|
||||||
.setDisplayName(
|
.setDisplayName(
|
||||||
plugin.configYml.getFormattedString("level-gui.progression-slots.$key.name")
|
plugin.configYml.getFormattedString("level-gui.progression-slots.$key.name")
|
||||||
@@ -46,7 +44,7 @@ class PetLevelGUI(
|
|||||||
)
|
)
|
||||||
.addLoreLines(
|
.addLoreLines(
|
||||||
pet.injectPlaceholdersInto(
|
pet.injectPlaceholdersInto(
|
||||||
plugin.configYml.getFormattedStrings("level-gui.progression-slots.$key.${prefix}lore"),
|
plugin.configYml.getFormattedStrings("level-gui.progression-slots.$key.lore"),
|
||||||
player,
|
player,
|
||||||
forceLevel = level
|
forceLevel = level
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -3,11 +3,6 @@
|
|||||||
# by Auxilor
|
# by Auxilor
|
||||||
#
|
#
|
||||||
|
|
||||||
# Even if eco is set up to use a database, you can
|
|
||||||
# force EcoPets to save to local storage to disable
|
|
||||||
# cross-server sync.
|
|
||||||
use-local-storage: false
|
|
||||||
|
|
||||||
discover-recipes: true
|
discover-recipes: true
|
||||||
|
|
||||||
gui:
|
gui:
|
||||||
@@ -69,20 +64,6 @@ gui:
|
|||||||
- ""
|
- ""
|
||||||
- "&eClick to view Level Progression!"
|
- "&eClick to view Level Progression!"
|
||||||
|
|
||||||
# By default, the lore for the max level is the same,
|
|
||||||
# but you can change this if you want.
|
|
||||||
max-level-lore:
|
|
||||||
- "%description%"
|
|
||||||
- "&f"
|
|
||||||
- "&fEffects:"
|
|
||||||
- "%effects%"
|
|
||||||
- ""
|
|
||||||
- "&fProgress:"
|
|
||||||
- "&8» &e%percentage_progress%%"
|
|
||||||
- "&8» &e%current_xp%&8/&7%required_xp% &fXP"
|
|
||||||
- ""
|
|
||||||
- "&eClick to view Level Progression!"
|
|
||||||
|
|
||||||
pet-icon:
|
pet-icon:
|
||||||
name: "%pet% &fLvl. &a%level%"
|
name: "%pet% &fLvl. &a%level%"
|
||||||
lore:
|
lore:
|
||||||
@@ -95,18 +76,6 @@ gui:
|
|||||||
- "&8» &e%percentage_progress%%"
|
- "&8» &e%percentage_progress%%"
|
||||||
- "&8» &e%current_xp%&8/&7%required_xp% &fXP"
|
- "&8» &e%current_xp%&8/&7%required_xp% &fXP"
|
||||||
|
|
||||||
# By default, the lore for the max level is the same,
|
|
||||||
# but you can change this if you want.
|
|
||||||
max-level-lore:
|
|
||||||
- "%description%"
|
|
||||||
- "&f"
|
|
||||||
- "&fEffects:"
|
|
||||||
- "%effects%"
|
|
||||||
- ""
|
|
||||||
- "&fProgress:"
|
|
||||||
- "&8» &e%percentage_progress%%"
|
|
||||||
- "&8» &e%current_xp%&8/&7%required_xp% &fXP"
|
|
||||||
|
|
||||||
active-lore:
|
active-lore:
|
||||||
- ""
|
- ""
|
||||||
- "&cThis pet is already active!"
|
- "&cThis pet is already active!"
|
||||||
@@ -229,17 +198,6 @@ level-gui:
|
|||||||
- "&fProgress:"
|
- "&fProgress:"
|
||||||
- "&8» &e%percentage_progress%%"
|
- "&8» &e%percentage_progress%%"
|
||||||
- "&8» &e%current_xp%&8/&7%required_xp% &fXP"
|
- "&8» &e%current_xp%&8/&7%required_xp% &fXP"
|
||||||
|
|
||||||
# By default, the lore for the max level is the same,
|
|
||||||
# but you can change this if you want.
|
|
||||||
max-level-lore:
|
|
||||||
- "&f"
|
|
||||||
- "&fRewards:"
|
|
||||||
- "%rewards%"
|
|
||||||
- "&f"
|
|
||||||
- "&fProgress:"
|
|
||||||
- "&8» &e%percentage_progress%%"
|
|
||||||
- "&8» &e%current_xp%&8/&7%required_xp% &fXP"
|
|
||||||
locked:
|
locked:
|
||||||
item: red_stained_glass_pane
|
item: red_stained_glass_pane
|
||||||
name: "%pet% &fLvl. &a%level%"
|
name: "%pet% &fLvl. &a%level%"
|
||||||
|
|||||||
@@ -7,8 +7,6 @@ messages:
|
|||||||
|
|
||||||
needs-player: "&cYou must specify a player!"
|
needs-player: "&cYou must specify a player!"
|
||||||
gave-xp: "&fYou have given &a%xp% &fXP to %player%&f's %pet%&f!"
|
gave-xp: "&fYou have given &a%xp% &fXP to %player%&f's %pet%&f!"
|
||||||
gave-current-xp: "&fYou have given &a%xp% &fXP to %player%&f's currently active pet!"
|
|
||||||
no-pet: "&cThe player doesn't have a pet active!"
|
|
||||||
reset-xp: "&fYou have reset %player%&f's %pet%&f XP!"
|
reset-xp: "&fYou have reset %player%&f's %pet%&f XP!"
|
||||||
needs-pet: "&cYou must specify a pet!"
|
needs-pet: "&cYou must specify a pet!"
|
||||||
need-amount: "&cYou must specify a amount!"
|
need-amount: "&cYou must specify a amount!"
|
||||||
|
|||||||
@@ -33,7 +33,6 @@ permissions:
|
|||||||
ecopets.command.give: true
|
ecopets.command.give: true
|
||||||
ecopets.command.giveegg: true
|
ecopets.command.giveegg: true
|
||||||
ecopets.command.givexp: true
|
ecopets.command.givexp: true
|
||||||
ecopets.command.givecurrentxp: true
|
|
||||||
ecopets.command.reset: true
|
ecopets.command.reset: true
|
||||||
ecopets.command.activate: true
|
ecopets.command.activate: true
|
||||||
ecopets.command.deactivate: true
|
ecopets.command.deactivate: true
|
||||||
@@ -56,9 +55,6 @@ permissions:
|
|||||||
ecopets.command.givexp:
|
ecopets.command.givexp:
|
||||||
description: Allows the use of /ecopets givexp.
|
description: Allows the use of /ecopets givexp.
|
||||||
default: op
|
default: op
|
||||||
ecopets.command.givecurrentxp:
|
|
||||||
description: Allows the use of /ecopets givecurrentxp.
|
|
||||||
default: op
|
|
||||||
ecopets.command.reset:
|
ecopets.command.reset:
|
||||||
description: Allows the use of /ecopets reset.
|
description: Allows the use of /ecopets reset.
|
||||||
default: op
|
default: op
|
||||||
|
|||||||
@@ -35,7 +35,6 @@ permissions:
|
|||||||
ecopets.command.give: true
|
ecopets.command.give: true
|
||||||
ecopets.command.giveegg: true
|
ecopets.command.giveegg: true
|
||||||
ecopets.command.givexp: true
|
ecopets.command.givexp: true
|
||||||
ecopets.command.givecurrentxp: true
|
|
||||||
ecopets.command.reset: true
|
ecopets.command.reset: true
|
||||||
ecopets.command.activate: true
|
ecopets.command.activate: true
|
||||||
ecopets.command.deactivate: true
|
ecopets.command.deactivate: true
|
||||||
@@ -58,9 +57,6 @@ permissions:
|
|||||||
ecopets.command.givexp:
|
ecopets.command.givexp:
|
||||||
description: Allows the use of /ecopets givexp.
|
description: Allows the use of /ecopets givexp.
|
||||||
default: op
|
default: op
|
||||||
ecopets.command.givecurrentxp:
|
|
||||||
description: Allows the use of /ecopets givecurrentxp.
|
|
||||||
default: op
|
|
||||||
ecopets.command.reset:
|
ecopets.command.reset:
|
||||||
description: Allows the use of /ecopets reset.
|
description: Allows the use of /ecopets reset.
|
||||||
default: op
|
default: op
|
||||||
@@ -72,14 +68,14 @@ permissions:
|
|||||||
default: true
|
default: true
|
||||||
|
|
||||||
ecopets.xpmultiplier.50percent:
|
ecopets.xpmultiplier.50percent:
|
||||||
description: Gives the player 50% more skill experience
|
description: Gives the player 50% more pet experience
|
||||||
default: false
|
default: false
|
||||||
ecopets.xpmultiplier.double:
|
ecopets.xpmultiplier.double:
|
||||||
description: Gives the player 2x skill experience
|
description: Gives the player 2x pet experience
|
||||||
default: false
|
default: false
|
||||||
ecopets.xpmultiplier.triple:
|
ecopets.xpmultiplier.triple:
|
||||||
description: Gives the player 3x skill experience
|
description: Gives the player 3x pet experience
|
||||||
default: false
|
default: false
|
||||||
ecopets.xpmultiplier.quadruple:
|
ecopets.xpmultiplier.quadruple:
|
||||||
description: Gives the player 4x skill experience
|
description: Gives the player 4x pet experience
|
||||||
default: false
|
default: false
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#libreforge-updater
|
#libreforge-updater
|
||||||
#Sat Nov 11 17:59:04 GMT 2023
|
#Sat Jun 10 13:32:44 BST 2023
|
||||||
kotlin.code.style=official
|
kotlin.code.style=official
|
||||||
libreforge-version=4.42.0
|
libreforge-version=4.19.0
|
||||||
version=2.42.0
|
version=2.18.0
|
||||||
|
|||||||
Reference in New Issue
Block a user