mirror of
				https://github.com/DarkflameUniverse/DarkflameServer.git
				synced 2025-11-04 06:32:00 +00:00 
			
		
		
		
	Merge branch 'DarkflameUniverse:main' into main
This commit is contained in:
		
							
								
								
									
										1
									
								
								.github/ISSUE_TEMPLATE/bug_report.yaml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								.github/ISSUE_TEMPLATE/bug_report.yaml
									
									
									
									
										vendored
									
									
								
							@@ -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.
 | 
			
		||||
 
 | 
			
		||||
@@ -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.
 | 
			
		||||
 
 | 
			
		||||
@@ -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).
 | 
			
		||||
 
 | 
			
		||||
@@ -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.
 | 
			
		||||
 
 | 
			
		||||
@@ -289,10 +289,10 @@ Here is a summary of the commands available in-game. All commands are prefixed b
 | 
			
		||||
  </tr>
 | 
			
		||||
  <tr>
 | 
			
		||||
    <td>
 | 
			
		||||
      instance-info
 | 
			
		||||
      instanceinfo
 | 
			
		||||
    </td>
 | 
			
		||||
    <td>
 | 
			
		||||
      /instance-info
 | 
			
		||||
      /instanceinfo
 | 
			
		||||
    </td>
 | 
			
		||||
    <td>
 | 
			
		||||
      Displays in the chat the current zone, clone, and instance id. 
 | 
			
		||||
 
 | 
			
		||||
@@ -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.");
 | 
			
		||||
@@ -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);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user