mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-21 18:26:35 +01:00
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
19 lines
543 B
Plaintext
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")
|