forked from NebulaSS13/Nebula
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from MistakeNot4892/poldev
Updating from Neb dev.
- Loading branch information
Showing
2,254 changed files
with
26,717 additions
and
77,002 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
--- | ||
name: Issue report | ||
about: Create a report about a bug or other issue | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
<!-- | ||
Anything inside tags like these is a comment and will not be displayed in the final issue. | ||
Be careful not to write inside them! | ||
Every field other than 'specific information for locating' is required. | ||
If you do not fill out the 'specific information' field, please delete the header. | ||
/!\ Omitting or not answering a required field will result in your issue being closed. /!\ | ||
Repeated violation of this rule, or joke or spam issues, will result in punishment. | ||
PUT YOUR ANSWERS ON THE BLANK LINES BELOW THE HEADERS | ||
(The lines with four #'s) | ||
Don't edit them or delete them - it's part of the formatting | ||
--> | ||
|
||
#### Description of issue | ||
|
||
|
||
|
||
#### Difference between expected and actual behavior | ||
|
||
|
||
|
||
#### Steps to reproduce | ||
|
||
|
||
|
||
#### Specific information for locating | ||
<!-- e.g. an object name, paste specific message outputs... --> | ||
|
||
|
||
|
||
#### Length of time in which bug has been known to occur | ||
<!-- | ||
Be specific if you approximately know the time it's been occurring | ||
for—this can speed up finding the source. If you're not sure | ||
about it, tell us too! | ||
--> | ||
|
||
|
||
|
||
#### Client version, Server revision & Game ID | ||
<!-- Found with the "Show server revision" verb in the OOC tab in game. --> | ||
|
||
|
||
|
||
#### Issue bingo | ||
<!-- Check these by writing an x inside the [ ] (like this: [x])--> | ||
<!-- Don't forget to remove the space between the brackets, or it won't work! --> | ||
- [ ] Issue could be reproduced at least once | ||
- [ ] Issue could be reproduced by different players | ||
- [ ] Issue could be reproduced in multiple rounds | ||
- [ ] Issue happened in a recent (less than 7 days ago) round | ||
- [ ] [Couldn't find an existing issue about this](https://github.com/NebulaSS13/Nebula/issues) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// If REFTRACK_IN_CI is defined, the reftracker will run in CI. | ||
#define REFTRACK_IN_CI | ||
#if defined(REFTRACK_IN_CI) && defined(UNIT_TEST) && !defined(SPACEMAN_DMM) | ||
#define REFTRACKING_ENABLED | ||
#define GC_FAILURE_HARD_LOOKUP | ||
#define FIND_REF_NO_CHECK_TICK | ||
#endif | ||
|
||
// parity with previous behavior where TESTING enabled reftracking | ||
#ifdef TESTING | ||
#define REFTRACKING_ENABLED | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Intent bitflags for use in check_intent() | ||
#define I_FLAG_HELP BITFLAG(0) | ||
#define I_FLAG_DISARM BITFLAG(1) | ||
#define I_FLAG_GRAB BITFLAG(2) | ||
#define I_FLAG_HARM BITFLAG(3) | ||
#define I_FLAG_ALL (I_FLAG_HELP|I_FLAG_DISARM|I_FLAG_GRAB|I_FLAG_HARM) | ||
|
||
//NOTE: INTENT_HOTKEY_* defines are not actual intents! | ||
//they are here to support hotkeys | ||
#define INTENT_HOTKEY_LEFT "left" | ||
#define INTENT_HOTKEY_RIGHT "right" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Identifiers for various categories of item effects. | ||
#define IE_CAT_DAMAGE "weff_damage" | ||
#define IE_CAT_STRIKE "weff_strike" | ||
#define IE_CAT_PARRY "weff_parry" | ||
#define IE_CAT_USED "weff_used" | ||
#define IE_CAT_WIELDED "weff_wield" | ||
#define IE_CAT_VISUAL "weff_visual" | ||
#define IE_CAT_LISTENER "weff_listener" | ||
#define IE_CAT_EXAMINE "weff_visible" | ||
#define IE_CAT_RANGED "weff_ranged" | ||
#define IE_CAT_PROCESS "weff_process" | ||
|
||
// Identifiers for parameters for item effects. | ||
#define IE_PAR_USES "uses" | ||
#define IE_PAR_MAX_USES "max_uses" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.