Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
silicons committed Dec 10, 2024
1 parent c4c4081 commit cbc3632
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions code/__DEFINES/__core.dm
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@
/// byond bug https://secure.byond.com/forum/?post=2072419
#define BLOCK_BYOND_BUG_2072419

/// A null statement to guard against EmptyBlock lint without necessitating the use of pass()
/// Used to avoid proc-call overhead. But use sparingly. Probably pointless in most places.
#define EMPTY_BLOCK_GUARD ;

//* Null Handling *//

/// get variable if not null or
Expand Down
2 changes: 1 addition & 1 deletion code/controllers/subsystem/overmaps.dm
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ SUBSYSTEM_DEF(overmaps)
GLOB.overmap_event_handler.create_events((LEGACY_MAP_DATUM).overmap_z, (LEGACY_MAP_DATUM).overmap_size, (LEGACY_MAP_DATUM).overmap_event_areas)
rebuild_helm_computers()
initialize_engines_legacy()
return ..()
return SS_INIT_SUCCESS

/datum/controller/subsystem/overmaps/proc/initialize_engines_legacy()
//! citadel edit - initialize overmaps shuttles here until we rewrite overmaps to not be a dumpster fire god damnit
Expand Down
2 changes: 1 addition & 1 deletion code/game/atoms/movable/defense.dm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//* This file is explicitly licensed under the MIT license. *//
//* Copyright (c) 2024 silicons *//
//* Copyright (c) 2024 Citadel Station Developers *//

/**
* called when we're run over by a shuttle
Expand Down

0 comments on commit cbc3632

Please sign in to comment.