Add missing /party kick in /party help

This commit is contained in:
Zughy 2023-10-20 14:47:17 +02:00
parent 92d759cefa
commit e73b1c0d0e
7 changed files with 14 additions and 7 deletions

View File

@ -33,11 +33,12 @@ No answer from @1...=Keine Antwort von @1 …
##[ src/commands.lua ]##
Do '/party help' to see all the subcommands=
COMMANDS=
disbands your party=
player=
invites a player to join your party. It creates one if there is none=
accepts an invitation. If you've received more than one, specify 'player'=
kicks a player from the party=
leaves the party you're in=
disbands your party=
message=
sends a message in the party chat=
manage parties=

View File

@ -34,11 +34,12 @@ No answer from @1...=Sin respuesta de @1...
# commands.lua
Do '/party help' to see all the subcommands=Escribe /party help' para ver todos los subcomandos
COMMANDS=COMANDOS
disbands your party=disolve el grupo
player=jugador
invites a player to join your party. It creates one if there is none=invita a un jugador en tu grupo. Crea uno si no existe
accepts an invitation. If you've received more than one, specify 'player'=acepta una invitación. Si has recibido más de una, especifica 'jugador'
kicks a player from the party=
leaves the party you're in=abandona el grupo en el que estás
disbands your party=disolve el grupo
message=mensaje
sends a message in the party chat=envía un mensaje en el chat grupal
manage parties=comando para los grupos

View File

@ -33,11 +33,12 @@ No answer from @1...=@1-től nincs válasz...
##[ src/commands.lua ]##
Do '/party help' to see all the subcommands=
COMMANDS=
disbands your party=
player=
invites a player to join your party. It creates one if there is none=
accepts an invitation. If you've received more than one, specify 'player'=
kicks a player from the party=
leaves the party you're in=
disbands your party=
message=
sends a message in the party chat=
manage parties=

View File

@ -34,11 +34,12 @@ No answer from @1...=Nessuna risposta da @1...
# commands.lua
Do '/party help' to see all the subcommands=Fai '/party help' per vedere tutti i sottocomandi
COMMANDS=COMANDI
disbands your party=sciogli il gruppo
player=giocatorə
invites a player to join your party. It creates one if there is none=invita unə giocatorə nel tuo gruppo. Ne crea uno se non esiste
accepts an invitation. If you've received more than one, specify 'player'=accetta un invito. Se ne hai ricevuti più di uno, specifica 'giocatorə'
kicks a player from the party=caccia unə giocatorə dal gruppo
leaves the party you're in=abbandona il gruppo in cui ti trovi
disbands your party=sciogli il gruppo
message=messaggio
sends a message in the party chat=invia un messaggio nella chat di gruppo
manage parties=gestisce i gruppi

View File

@ -33,11 +33,12 @@ No answer from @1...=Brak odpowiedzi od @1...
##[ src/commands.lua ]##
Do '/party help' to see all the subcommands=
COMMANDS=
disbands your party=
player=
invites a player to join your party. It creates one if there is none=
accepts an invitation. If you've received more than one, specify 'player'=
kicks a player from the party=
leaves the party you're in=
disbands your party=
message=
sends a message in the party chat=
manage parties=

View File

@ -34,11 +34,12 @@ No answer from @1...=
# commands.lua
Do '/party help' to see all the subcommands=
COMMANDS=
disbands your party=
player=
invites a player to join your party. It creates one if there is none=
accepts an invitation. If you've received more than one, specify 'player'=
kicks a player from the party=
leaves the party you're in=
disbands your party=
message=
sends a message in the party chat=
manage parties=

View File

@ -12,10 +12,11 @@ ChatCmdBuilder.new("party", function(cmd)
cmd:sub("help", function(sender)
minetest.chat_send_player(sender,
minetest.colorize("#ffff00", S("COMMANDS")) .. "\n"
.. minetest.colorize("#00ffff", "/party disband") .. ": " .. S("disbands your party") .. "\n"
.. minetest.colorize("#00ffff", "/party invite") .. " <" .. S("player") .. ">: " .. S("invites a player to join your party. It creates one if there is none") .. "\n"
.. minetest.colorize("#00ffff", "/party join") .. " (<" .. S("player") .. ">): " .. S("accepts an invitation. If you've received more than one, specify 'player'") .. "\n"
.. minetest.colorize("#00ffff", "/party kick") .. " <" .. S("player") .. ">: " .. S("kicks a player from the party") .. "\n"
.. minetest.colorize("#00ffff", "/party leave") .. ": " .. S("leaves the party you're in") .. "\n"
.. minetest.colorize("#00ffff", "/party disband") .. ": " .. S("disbands your party") .. "\n"
.. minetest.colorize("#00ffff", "/p") .. " <" .. S("message") .. ">: " .. S("sends a message in the party chat"))
end)