Skip to content

Commit

Permalink
feat. Update Module and fix. Misc (#40)
Browse files Browse the repository at this point in the history
* feat. Update Module and fix. Misc

* fatal error: unused parameter 'map'
  • Loading branch information
pangolp authored Jul 18, 2023
1 parent 78107f9 commit 293dde9
Show file tree
Hide file tree
Showing 11 changed files with 722 additions and 641 deletions.
49 changes: 0 additions & 49 deletions .git_commit_template

This file was deleted.

72 changes: 72 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: Bug report
description: Create a bug report to help us improve.
title: "Bug: "
body:
- type: textarea
id: current
attributes:
label: Current Behaviour
description: |
Description of the problem or issue here.
Include entries of affected creatures / items / quests / spells etc.
If this is a crash, post the crashlog (upload to https://gist.github.com/) and include the link here.
Never upload files! Use GIST for text and YouTube for videos!
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected Behaviour
description: |
Tell us what should happen instead.
validations:
required: true
- type: textarea
id: reproduce
attributes:
label: Steps to reproduce the problem
description: |
What does someone else need to do to encounter the same bug?
placeholder: |
1. Step 1
2. Step 2
3. Step 3
validations:
required: true
- type: textarea
id: extra
attributes:
label: Extra Notes
description: |
Do you have any extra notes that can help solve the issue that does not fit any other field?
placeholder: |
None
validations:
required: false
- type: textarea
id: commit
attributes:
label: AC rev. hash/commit
description: |
Copy the result of the `.server debug` command (if you need to run it from the client get a prat addon)
validations:
required: true
- type: input
id: os
attributes:
label: Operating system
description: |
The Operating System the Server is running on.
i.e. Windows 11 x64, Debian 10 x64, macOS 12, Ubuntu 20.04
validations:
required: true
- type: textarea
id: custom
attributes:
label: Custom changes or Modules
description: |
List which custom changes or modules you have applied, i.e. Eluna module, etc.
placeholder: |
None
validations:
required: false
33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Feature request
description: Suggest an idea for this project
title: "Feature: "
body:
- type: markdown
attributes:
value: |
Thank you for taking your time to fill out a feature request. Remember to fill out all fields including the title above.
An issue that is not properly filled out will be closed.
- type: textarea
id: description
attributes:
label: Describe your feature request or suggestion in detail
description: |
A clear and concise description of what you want to happen.
validations:
required: true
- type: textarea
id: solution
attributes:
label: Describe a possible solution to your feature or suggestion in detail
description: |
A clear and concise description of any alternative solutions or features you've considered.
validations:
required: false
- type: textarea
id: additional
attributes:
label: Additional context
description: |
Add any other context or screenshots about the feature request here.
validations:
required: false
9 changes: 7 additions & 2 deletions README.md → .github/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# ![logo](https://raw.githubusercontent.com/azerothcore/azerothcore.github.io/master/images/logo-github.png) AzerothCore

## mod-solocraft
- Latest build status with azerothcore: [![Build Status](https://github.com/azerothcore/mod-solocraft/workflows/core-build/badge.svg?branch=master&event=push)](https://github.com/azerothcore/mod-solocraft)

- Latest build status with azerothcore:

[![Build Status](https://github.com/azerothcore/mod-solocraft/workflows/core-build/badge.svg?branch=master&event=push)](https://github.com/azerothcore/mod-solocraft)

## Description

Expand All @@ -23,7 +26,6 @@

- AzerothCore v1.0.1+


## Installation

```
Expand All @@ -37,13 +39,16 @@
If you need to change the module configuration, go to your server configuration folder (where your worldserver or worldserver.exe is), copy Solocraft.conf.dist to Solocraft.conf and edit that new file.

### Data ###

------------------------------------------------------------------------------------------------------------------

- Type: Server/Player
- Script: Solocraft
- Config: Yes
- SQL: Yes

### Credits ###

------------------------------------------------------------------------------------------------------------------
- [DavidMacalaster](https://github.com/DavidMacalaster/Solocraft)
- [Blizzard Entertainment](http://blizzard.com)
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/core-build.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: core-build
on:
push:
branches:
- 'master'
pull_request:
workflow_dispatch:

jobs:
build:
Expand Down
Empty file added data/.gitkeep
Empty file.
Empty file added data/sql/.gitkeep
Empty file.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
-- Structure for table custom_solocraft_character_stats
CREATE TABLE IF NOT EXISTS `custom_solocraft_character_stats` (
`GUID` bigint unsigned NOT NULL,
`Difficulty` float NOT NULL,
Expand All @@ -7,6 +6,3 @@ CREATE TABLE IF NOT EXISTS `custom_solocraft_character_stats` (
`Stats` float NOT NULL DEFAULT '100',
PRIMARY KEY (`GUID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;


-- Data exporting was unselected.
25 changes: 25 additions & 0 deletions pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!-- First of all, THANK YOU for your contribution. -->

## Changes Proposed:
-
-

## Issues Addressed:
<!-- If your fix has a relating issue, link it below -->
- Closes

## SOURCE:
<!-- If you can, include a source that can strengthen your claim -->

## Tests Performed:
<!-- Does it build without errors? Did you test in-game? What did you test? On which OS did you test? Describe any other tests performed -->
-
-


## How to Test the Changes:
<!-- Describe in a detailed step-by-step order how to test the changes -->

1.
2.
3.
4 changes: 0 additions & 4 deletions setup_git_commit_template.sh

This file was deleted.

Loading

0 comments on commit 293dde9

Please sign in to comment.