Files
Citadel-Station-13-RP/code/modules/procedural/procedural_entity_descriptor.dm
siliconsandGitHub 1fb3828254 ballistic refactor (#7019)
yeah turns out gun refactor wasn't done

- adds proper chamber handling
- fixes a lot of ballistic guns
- temporarily disables a lot of bolt handling
- refactors microbatteries
- fixes shotguns
2025-03-11 21:40:32 +01:00

19 lines
543 B
Plaintext

//* This file is explicitly licensed under the MIT license. *//
//* Copyright (c) 2025 Citadel Station Developers *//
/**
* A system used to spawn procedural entities.
*/
/datum/procedural_entity_descriptor
/**
* @params
* * location - where to spawn the entity
* * seed_unimplemented - just a reserved arg.
*
* @return spawned entity
*/
/datum/procedural_entity_descriptor/proc/instantiate_single(atom/location, seed_unimplemented) as /atom/movable
RETURN_TYPE(/atom/movable)
CRASH("unimplemented instantiation called")