mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-09 16:09:15 +00:00
* TGU - 3/14/2024 * a * nanite source fix * Fixes Cargo * Fix polling mutating its target's plane and layer * Fixing cargo 2 --------- Co-authored-by: JohnFulpWillard <53777086+JohnFulpWillard@users.noreply.github.com>
11 lines
530 B
Plaintext
11 lines
530 B
Plaintext
// This file is included right at the start of the DME.
|
|
// Its purpose is to enable multiple lints (pragmas) that are supported by OpenDream to better validate the codebase
|
|
// These are essentially nitpicks the DM compiler should pick up on but doesnt
|
|
|
|
#if !defined(SPACEMAN_DMM) && defined(OPENDREAM)
|
|
// This is in a separate file as a hack to avoid SpacemanDMM
|
|
// evaluating the #pragma lines, even if its outside a block it cares about
|
|
// (Also so people can code-own it. Shoutout to AA)
|
|
#include "tools/ci/od_lints.dm"
|
|
#endif
|