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 {
|
||||
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")
|
||||
|
||||
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.CommandPets
|
||||
import com.willfp.ecopets.libreforge.ConditionHasActivePet
|
||||
import com.willfp.ecopets.libreforge.ConditionHasPet
|
||||
import com.willfp.ecopets.libreforge.ConditionHasPetLevel
|
||||
import com.willfp.ecopets.libreforge.EffectGivePetXp
|
||||
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.activePet
|
||||
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.PetEntity
|
||||
import com.willfp.libreforge.SimpleProvidedHolder
|
||||
@@ -30,9 +28,7 @@ import com.willfp.libreforge.filters.Filters
|
||||
import com.willfp.libreforge.loader.LibreforgePlugin
|
||||
import com.willfp.libreforge.loader.configs.ConfigCategory
|
||||
import com.willfp.libreforge.registerHolderProvider
|
||||
import com.willfp.libreforge.registerSpecificHolderProvider
|
||||
import com.willfp.libreforge.triggers.Triggers
|
||||
import org.bukkit.entity.Player
|
||||
import org.bukkit.event.Listener
|
||||
|
||||
class EcoPetsPlugin : LibreforgePlugin() {
|
||||
@@ -51,16 +47,15 @@ class EcoPetsPlugin : LibreforgePlugin() {
|
||||
override fun handleEnable() {
|
||||
Conditions.register(ConditionHasPetLevel)
|
||||
Conditions.register(ConditionHasActivePet)
|
||||
Conditions.register(ConditionHasPet)
|
||||
Effects.register(EffectPetXpMultiplier)
|
||||
Effects.register(EffectGivePetXp)
|
||||
Triggers.register(TriggerGainPetXp)
|
||||
Triggers.register(TriggerLevelUpPet)
|
||||
Filters.register(FilterPet)
|
||||
|
||||
registerSpecificHolderProvider<Player> {
|
||||
it.activePetLevel?.let { p ->
|
||||
listOf(SimpleProvidedHolder(p))
|
||||
|
||||
registerHolderProvider {
|
||||
it.activePetLevel?.let { l ->
|
||||
listOf(SimpleProvidedHolder(l))
|
||||
} ?: emptyList()
|
||||
}
|
||||
|
||||
@@ -73,18 +68,6 @@ class EcoPetsPlugin : LibreforgePlugin() {
|
||||
this,
|
||||
"pet_id"
|
||||
) { 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() {
|
||||
|
||||
@@ -11,7 +11,6 @@ class CommandEcoPets(plugin: EcoPlugin) : PluginCommand(plugin, "ecopets", "ecop
|
||||
.addSubcommand(CommandGiveEgg(plugin))
|
||||
.addSubcommand(CommandGiveXP(plugin))
|
||||
.addSubcommand(CommandReset(plugin))
|
||||
.addSubcommand(CommandGiveCurrentXP(plugin))
|
||||
}
|
||||
|
||||
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()
|
||||
}
|
||||
}
|
||||
@@ -3,12 +3,9 @@ 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.Dispatcher
|
||||
import com.willfp.libreforge.NoCompileData
|
||||
import com.willfp.libreforge.ProvidedHolder
|
||||
import com.willfp.libreforge.arguments
|
||||
import com.willfp.libreforge.conditions.Condition
|
||||
import com.willfp.libreforge.get
|
||||
import org.bukkit.entity.Player
|
||||
|
||||
object ConditionHasActivePet : Condition<NoCompileData>("has_active_pet") {
|
||||
@@ -16,14 +13,10 @@ object ConditionHasActivePet : Condition<NoCompileData>("has_active_pet") {
|
||||
require("pet", "You must specify the pet!")
|
||||
}
|
||||
|
||||
override fun isMet(
|
||||
dispatcher: Dispatcher<*>,
|
||||
config: Config,
|
||||
holder: ProvidedHolder,
|
||||
compileData: NoCompileData
|
||||
): Boolean {
|
||||
val player = dispatcher.get<Player>() ?: return false
|
||||
|
||||
return EcoPetsAPI.instance.getActivePet(player) == Pets.getByID(config.getString("pet").lowercase())
|
||||
override fun isMet(player: Player, config: Config, compileData: NoCompileData): Boolean {
|
||||
return EcoPetsAPI.instance.hasPet(
|
||||
player,
|
||||
Pets.getByID(config.getString("pet").lowercase()) ?: return false
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,27 +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.Dispatcher
|
||||
import com.willfp.libreforge.NoCompileData
|
||||
import com.willfp.libreforge.ProvidedHolder
|
||||
import com.willfp.libreforge.conditions.Condition
|
||||
import com.willfp.libreforge.get
|
||||
import org.bukkit.entity.Player
|
||||
|
||||
object ConditionHasPet : Condition<NoCompileData>("has_pet") {
|
||||
override fun isMet(
|
||||
dispatcher: Dispatcher<*>,
|
||||
config: Config,
|
||||
holder: ProvidedHolder,
|
||||
compileData: NoCompileData
|
||||
): Boolean {
|
||||
val player = dispatcher.get<Player>() ?: return false
|
||||
|
||||
return EcoPetsAPI.instance.hasPet(
|
||||
player,
|
||||
Pets.getByID(config.getString("pet").lowercase()) ?: return false
|
||||
)
|
||||
}
|
||||
}
|
||||
@@ -4,13 +4,9 @@ import com.willfp.eco.core.config.interfaces.Config
|
||||
import com.willfp.ecopets.api.EcoPetsAPI
|
||||
import com.willfp.ecopets.api.event.PlayerPetLevelUpEvent
|
||||
import com.willfp.ecopets.pets.Pets
|
||||
import com.willfp.libreforge.Dispatcher
|
||||
import com.willfp.libreforge.NoCompileData
|
||||
import com.willfp.libreforge.ProvidedHolder
|
||||
import com.willfp.libreforge.arguments
|
||||
import com.willfp.libreforge.conditions.Condition
|
||||
import com.willfp.libreforge.get
|
||||
import com.willfp.libreforge.toDispatcher
|
||||
import com.willfp.libreforge.updateEffects
|
||||
import org.bukkit.entity.Player
|
||||
import org.bukkit.event.EventHandler
|
||||
@@ -24,17 +20,10 @@ object ConditionHasPetLevel : Condition<NoCompileData>("has_pet_level") {
|
||||
|
||||
@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
|
||||
fun handle(event: PlayerPetLevelUpEvent) {
|
||||
event.player.toDispatcher().updateEffects()
|
||||
event.player.updateEffects()
|
||||
}
|
||||
|
||||
override fun isMet(
|
||||
dispatcher: Dispatcher<*>,
|
||||
config: Config,
|
||||
holder: ProvidedHolder,
|
||||
compileData: NoCompileData
|
||||
): Boolean {
|
||||
val player = dispatcher.get<Player>() ?: return false
|
||||
|
||||
override fun isMet(player: Player, config: Config, compileData: NoCompileData): Boolean {
|
||||
return EcoPetsAPI.instance.getPetLevel(
|
||||
player,
|
||||
Pets.getByID(config.getString("pet").lowercase()) ?: return false
|
||||
|
||||
@@ -4,7 +4,6 @@ import com.willfp.ecopets.api.event.PlayerPetExpGainEvent
|
||||
import com.willfp.ecopets.pets.Pet
|
||||
import com.willfp.ecopets.pets.Pets
|
||||
import com.willfp.libreforge.effects.templates.MultiMultiplierEffect
|
||||
import com.willfp.libreforge.toDispatcher
|
||||
import org.bukkit.event.EventHandler
|
||||
|
||||
object EffectPetXpMultiplier : MultiMultiplierEffect<Pet>("pet_xp_multiplier") {
|
||||
@@ -22,6 +21,6 @@ object EffectPetXpMultiplier : MultiMultiplierEffect<Pet>("pet_xp_multiplier") {
|
||||
fun handle(event: PlayerPetExpGainEvent) {
|
||||
val player = event.player
|
||||
|
||||
event.amount *= getMultiplier(player.toDispatcher(), event.pet)
|
||||
event.amount *= getMultiplier(player, event.pet)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
package com.willfp.ecopets.libreforge
|
||||
|
||||
import com.willfp.ecopets.api.event.PlayerPetExpGainEvent
|
||||
import com.willfp.libreforge.toDispatcher
|
||||
import com.willfp.libreforge.triggers.Trigger
|
||||
import com.willfp.libreforge.triggers.TriggerData
|
||||
import com.willfp.libreforge.triggers.TriggerParameter
|
||||
@@ -19,7 +18,7 @@ object TriggerGainPetXp : Trigger("gain_pet_xp") {
|
||||
val player = event.player
|
||||
|
||||
this.dispatch(
|
||||
player.toDispatcher(),
|
||||
player,
|
||||
TriggerData(
|
||||
player = player,
|
||||
location = player.location,
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
package com.willfp.ecopets.libreforge
|
||||
|
||||
import com.willfp.ecopets.api.event.PlayerPetLevelUpEvent
|
||||
import com.willfp.libreforge.toDispatcher
|
||||
import com.willfp.libreforge.triggers.Trigger
|
||||
import com.willfp.libreforge.triggers.TriggerData
|
||||
import com.willfp.libreforge.triggers.TriggerParameter
|
||||
@@ -19,7 +18,7 @@ object TriggerLevelUpPet : Trigger("level_up_pet") {
|
||||
val player = event.player
|
||||
|
||||
this.dispatch(
|
||||
player.toDispatcher(),
|
||||
player,
|
||||
TriggerData(
|
||||
player = player,
|
||||
location = player.location,
|
||||
|
||||
@@ -363,8 +363,6 @@ class Pet(
|
||||
val level = player.getPetLevel(this)
|
||||
val isActive = player.activePet == this
|
||||
|
||||
val baseLoreLocation = if (level == this.maxLevel) "max-level-lore" else "lore"
|
||||
|
||||
return ItemStackBuilder(base)
|
||||
.setDisplayName(
|
||||
plugin.configYml.getFormattedString("gui.pet-icon.name")
|
||||
@@ -372,7 +370,7 @@ class Pet(
|
||||
.replace("%pet%", this.name)
|
||||
)
|
||||
.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
|
||||
plugin.configYml.getStrings("gui.pet-icon.not-active-lore")
|
||||
}
|
||||
@@ -381,9 +379,6 @@ class Pet(
|
||||
|
||||
fun getPetInfoIcon(player: Player): ItemStack {
|
||||
val base = baseItem.clone()
|
||||
|
||||
val prefix = if (player.getPetLevel(this) == this.maxLevel) "max-level-" else ""
|
||||
|
||||
return ItemStackBuilder(base)
|
||||
.setDisplayName(
|
||||
plugin.configYml.getFormattedString("gui.pet-info.active.name")
|
||||
@@ -391,7 +386,7 @@ class Pet(
|
||||
.replace("%pet%", this.name)
|
||||
)
|
||||
.addLoreLines {
|
||||
injectPlaceholdersInto(plugin.configYml.getStrings("gui.pet-info.active.${prefix}lore"), player)
|
||||
injectPlaceholdersInto(plugin.configYml.getStrings("gui.pet-info.active.lore"), player)
|
||||
}
|
||||
.build()
|
||||
}
|
||||
|
||||
@@ -35,8 +35,6 @@ class PetLevelGUI(
|
||||
override fun getLevelItem(player: Player, menu: Menu, level: Int, levelState: LevelState): ItemStack {
|
||||
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")))
|
||||
.setDisplayName(
|
||||
plugin.configYml.getFormattedString("level-gui.progression-slots.$key.name")
|
||||
@@ -46,7 +44,7 @@ class PetLevelGUI(
|
||||
)
|
||||
.addLoreLines(
|
||||
pet.injectPlaceholdersInto(
|
||||
plugin.configYml.getFormattedStrings("level-gui.progression-slots.$key.${prefix}lore"),
|
||||
plugin.configYml.getFormattedStrings("level-gui.progression-slots.$key.lore"),
|
||||
player,
|
||||
forceLevel = level
|
||||
)
|
||||
|
||||
@@ -3,11 +3,6 @@
|
||||
# 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
|
||||
|
||||
gui:
|
||||
@@ -69,20 +64,6 @@ gui:
|
||||
- ""
|
||||
- "&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:
|
||||
name: "%pet% &fLvl. &a%level%"
|
||||
lore:
|
||||
@@ -95,18 +76,6 @@ gui:
|
||||
- "&8» &e%percentage_progress%%"
|
||||
- "&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:
|
||||
- ""
|
||||
- "&cThis pet is already active!"
|
||||
@@ -229,17 +198,6 @@ level-gui:
|
||||
- "&fProgress:"
|
||||
- "&8» &e%percentage_progress%%"
|
||||
- "&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:
|
||||
item: red_stained_glass_pane
|
||||
name: "%pet% &fLvl. &a%level%"
|
||||
|
||||
@@ -7,8 +7,6 @@ messages:
|
||||
|
||||
needs-player: "&cYou must specify a player!"
|
||||
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!"
|
||||
needs-pet: "&cYou must specify a pet!"
|
||||
need-amount: "&cYou must specify a amount!"
|
||||
|
||||
@@ -33,7 +33,6 @@ permissions:
|
||||
ecopets.command.give: true
|
||||
ecopets.command.giveegg: true
|
||||
ecopets.command.givexp: true
|
||||
ecopets.command.givecurrentxp: true
|
||||
ecopets.command.reset: true
|
||||
ecopets.command.activate: true
|
||||
ecopets.command.deactivate: true
|
||||
@@ -56,9 +55,6 @@ permissions:
|
||||
ecopets.command.givexp:
|
||||
description: Allows the use of /ecopets givexp.
|
||||
default: op
|
||||
ecopets.command.givecurrentxp:
|
||||
description: Allows the use of /ecopets givecurrentxp.
|
||||
default: op
|
||||
ecopets.command.reset:
|
||||
description: Allows the use of /ecopets reset.
|
||||
default: op
|
||||
|
||||
@@ -35,7 +35,6 @@ permissions:
|
||||
ecopets.command.give: true
|
||||
ecopets.command.giveegg: true
|
||||
ecopets.command.givexp: true
|
||||
ecopets.command.givecurrentxp: true
|
||||
ecopets.command.reset: true
|
||||
ecopets.command.activate: true
|
||||
ecopets.command.deactivate: true
|
||||
@@ -58,9 +57,6 @@ permissions:
|
||||
ecopets.command.givexp:
|
||||
description: Allows the use of /ecopets givexp.
|
||||
default: op
|
||||
ecopets.command.givecurrentxp:
|
||||
description: Allows the use of /ecopets givecurrentxp.
|
||||
default: op
|
||||
ecopets.command.reset:
|
||||
description: Allows the use of /ecopets reset.
|
||||
default: op
|
||||
@@ -72,14 +68,14 @@ permissions:
|
||||
default: true
|
||||
|
||||
ecopets.xpmultiplier.50percent:
|
||||
description: Gives the player 50% more skill experience
|
||||
description: Gives the player 50% more pet experience
|
||||
default: false
|
||||
ecopets.xpmultiplier.double:
|
||||
description: Gives the player 2x skill experience
|
||||
description: Gives the player 2x pet experience
|
||||
default: false
|
||||
ecopets.xpmultiplier.triple:
|
||||
description: Gives the player 3x skill experience
|
||||
description: Gives the player 3x pet experience
|
||||
default: false
|
||||
ecopets.xpmultiplier.quadruple:
|
||||
description: Gives the player 4x skill experience
|
||||
description: Gives the player 4x pet experience
|
||||
default: false
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#libreforge-updater
|
||||
#Thu Nov 23 13:21:50 GMT 2023
|
||||
#Sat Jun 10 13:32:44 BST 2023
|
||||
kotlin.code.style=official
|
||||
libreforge-version=4.45.0
|
||||
version=2.45.0
|
||||
libreforge-version=4.19.0
|
||||
version=2.18.0
|
||||
|
||||
Reference in New Issue
Block a user