-
-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
108 changed files
with
2,700 additions
and
2,297 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
//* This file is explicitly licensed under the MIT license. *// | ||
//* Copyright (c) 2024 Citadel Station Developers *// | ||
|
||
//* flags for /datum/chemical_reaction/var/chemical_reaction_flags *// | ||
|
||
// none yet | ||
|
||
//* flags for /datum/chemical_reaction/var/reaction_guidebook_flags *// | ||
|
||
/// doesn't show in guidebook reaction list | ||
#define REACTION_GUIDEBOOK_UNLISTED (1<<0) | ||
/// can't be pulled up on guidebook at all, other than name | ||
#define REACTION_GUIDEBOOK_HIDDEN (1<<1) | ||
|
||
DEFINE_SHARED_BITFIELD(reaction_guidebook_flags, list( | ||
"reaction_guidebook_flags", | ||
), list( | ||
BITFIELD(REACTION_GUIDEBOOK_UNLISTED), | ||
BITFIELD(REACTION_GUIDEBOOK_HIDDEN), | ||
)) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
//* This file is explicitly licensed under the MIT license. *// | ||
//* Copyright (c) 2024 Citadel Station Developers *// | ||
|
||
//* flags for /datum/reagent/var/reagent_flags *// | ||
|
||
// none yet | ||
|
||
//* flags for /datum/reagent/var/reagent_guidebook_flags *// | ||
|
||
/// doesn't show in guidebook reagent list | ||
#define REAGENT_GUIDEBOOK_UNLISTED (1<<0) | ||
/// can't be pulled up on guidebook at all, other than name | ||
#define REAGENT_GUIDEBOOK_HIDDEN (1<<1) | ||
|
||
DEFINE_SHARED_BITFIELD(reagent_guidebook_flags, list( | ||
"reagent_guidebook_flags", | ||
), list( | ||
BITFIELD(REAGENT_GUIDEBOOK_UNLISTED), | ||
BITFIELD(REAGENT_GUIDEBOOK_HIDDEN), | ||
)) |
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 @@ | ||
//* This file is explicitly licensed under the MIT license. *// | ||
//* Copyright (c) 2024 Citadel Station Developers *// | ||
|
||
//* flags for /datum/reagent_holder/var/reagent_holder_flags *// | ||
|
||
/// currently reacting | ||
#define REAGENT_HOLDER_FLAG_CURRENTLY_REACTING (1<<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
Oops, something went wrong.