From e58af90c8b620c2aa4a88243f4feec21971a70e3 Mon Sep 17 00:00:00 2001 From: ash Date: Tue, 14 Dec 2021 21:45:35 +0000 Subject: [PATCH 1/4] Correct documentation for /instanceinfo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f3cb6cd..190bfab 100644 --- a/README.md +++ b/README.md @@ -289,10 +289,10 @@ Here is a summary of the commands available in-game. All commands are prefixed b - instance-info + instanceinfo - /instance-info + /instanceinfo Displays in the chat the current zone, clone, and instance id. From a2ed772417fc8160a1d9117eca16720cff9db1f4 Mon Sep 17 00:00:00 2001 From: Avery Date: Tue, 14 Dec 2021 18:51:41 -0800 Subject: [PATCH 2/4] setMinifig -> setminifig --- dGame/dUtilities/SlashCommandHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dGame/dUtilities/SlashCommandHandler.cpp b/dGame/dUtilities/SlashCommandHandler.cpp index adcd5c3..28b9713 100644 --- a/dGame/dUtilities/SlashCommandHandler.cpp +++ b/dGame/dUtilities/SlashCommandHandler.cpp @@ -407,7 +407,7 @@ void SlashCommandHandler::HandleChatCommand(const std::u16string& command, Entit stmt->execute(); delete stmt; - if (chatCommand == "setMinifig" && args.size() == 2 && entity->GetGMLevel() >= GAME_MASTER_LEVEL_FORUM_MODERATOR) { // could break characters so only allow if GM > 0 + if (chatCommand == "setminifig" && args.size() == 2 && entity->GetGMLevel() >= GAME_MASTER_LEVEL_FORUM_MODERATOR) { // could break characters so only allow if GM > 0 int32_t minifigItemId; if (!GeneralUtils::TryParse(args[1], minifigItemId)) { ChatPackets::SendSystemMessage(sysAddr, u"Invalid Minifig Item Id ID."); From 58229a922ebb2abb931c1db2fb66cc0d49ee371c Mon Sep 17 00:00:00 2001 From: Avery Date: Tue, 14 Dec 2021 18:55:05 -0800 Subject: [PATCH 3/4] setminifig shirt -> setminifig shirtcolor --- dGame/dUtilities/SlashCommandHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dGame/dUtilities/SlashCommandHandler.cpp b/dGame/dUtilities/SlashCommandHandler.cpp index 28b9713..c5951fd 100644 --- a/dGame/dUtilities/SlashCommandHandler.cpp +++ b/dGame/dUtilities/SlashCommandHandler.cpp @@ -434,7 +434,7 @@ void SlashCommandHandler::HandleChatCommand(const std::u16string& command, Entit charComp->m_Character->SetMouth(minifigItemId); } else if (lowerName == "righthand") { charComp->m_Character->SetRightHand(minifigItemId); - } else if (lowerName == "shirt") { + } else if (lowerName == "shirtcolor") { charComp->m_Character->SetShirtColor(minifigItemId); } else if (lowerName == "hands") { charComp->m_Character->SetLeftHand(minifigItemId); From 9f761a9ea5ceeb20508c5c3c87b4df925931c041 Mon Sep 17 00:00:00 2001 From: Mick Vermeulen Date: Wed, 15 Dec 2021 22:32:02 +0100 Subject: [PATCH 4/4] Fix issue templates GitHub updated their issue template format, checklists now also need a label attribute. --- .github/ISSUE_TEMPLATE/bug_report.yaml | 1 + .github/ISSUE_TEMPLATE/documentation_improvement.yaml | 2 ++ .github/ISSUE_TEMPLATE/installation_issue.yaml | 1 + .github/ISSUE_TEMPLATE/performance_issue.yaml | 1 + 4 files changed, 5 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 3d0c5cc..1865c67 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -7,6 +7,7 @@ body: - type: checkboxes id: checks attributes: + label: "Make sure you've done the following:" options: - label: > I have checked that this issue has not already been reported. diff --git a/.github/ISSUE_TEMPLATE/documentation_improvement.yaml b/.github/ISSUE_TEMPLATE/documentation_improvement.yaml index 12d4cb4..e79a6a3 100644 --- a/.github/ISSUE_TEMPLATE/documentation_improvement.yaml +++ b/.github/ISSUE_TEMPLATE/documentation_improvement.yaml @@ -5,7 +5,9 @@ labels: ["docs", "triage"] body: - type: checkboxes + id: checks attributes: + label: "Make sure you've done the following:" options: - label: > I have checked that this issue has not already been reported. diff --git a/.github/ISSUE_TEMPLATE/installation_issue.yaml b/.github/ISSUE_TEMPLATE/installation_issue.yaml index f5cfb56..2fd9a84 100644 --- a/.github/ISSUE_TEMPLATE/installation_issue.yaml +++ b/.github/ISSUE_TEMPLATE/installation_issue.yaml @@ -7,6 +7,7 @@ body: - type: checkboxes id: checks attributes: + label: "Make sure you've done the following:" options: - label: > I have read the [installation guide](https://github.com/DarkflameUniverse/DarkflameServer/blob/main/README.md). diff --git a/.github/ISSUE_TEMPLATE/performance_issue.yaml b/.github/ISSUE_TEMPLATE/performance_issue.yaml index f9fe494..420a538 100644 --- a/.github/ISSUE_TEMPLATE/performance_issue.yaml +++ b/.github/ISSUE_TEMPLATE/performance_issue.yaml @@ -7,6 +7,7 @@ body: - type: checkboxes id: checks attributes: + label: "Make sure you've done the following:" options: - label: > I have checked that this issue has not already been reported.