-
Notifications
You must be signed in to change notification settings - Fork 298
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: [DNM] first SSplexora commit * fix: add "monkestation edit" comments * fix: dont include prefix for slash command * Update monkestation/code/controllers/subsystem/plexora.dm Co-authored-by: Lucy <lucy@absolucy.moe> * Update monkestation/code/controllers/subsystem/plexora.dm Co-authored-by: Lucy <lucy@absolucy.moe> * fix: make sure they are facing us! * fix: no sanitization for plexora * fix: disable by default * wipfeat: twitch events, jailing * feat: serverrestart * more thingys * feat: more things i dont want to explain * feat: basic who, and notes * shimmy shimmy aye shimmy hey i need to sleep * yippe * fix: mentor honk for external * commiting some shit * fix: linter complaining * ah yes i see. * mentor fixy * feat: add interview things, fix things * weh * fix: name tagging * meow * fix for tming alongside 516 * Fix interview runtime * disable SSplexora during CI, disable firing if init fails * add SSplexora.Recover() * hopefully fix this shit * Some code cleanup * Update stage1.dm * lets get this bread * oops last minute --------- Co-authored-by: Lucy <lucy@absolucy.moe> Co-authored-by: dwasint <82520990+dwasint@users.noreply.github.com>
- Loading branch information
1 parent
006f66f
commit 1fff894
Showing
30 changed files
with
1,286 additions
and
77 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
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,7 @@ | ||
/// Until a condition is true, sleep, or until a certain amount of time has passed. | ||
/// Basically, UNTIL() but with a timeout. | ||
#define UNTIL_OR_TIMEOUT(Condition, Timeout) \ | ||
do { \ | ||
var/__end_time = REALTIMEOFDAY + (Timeout); \ | ||
UNTIL((Condition) || (REALTIMEOFDAY > __end_time)); \ | ||
} while(0) |
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
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.