From 067fa3e40664e0e566fc9451c11e20a5c8fe72a6 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Tue, 22 Oct 2024 04:46:07 -0400 Subject: [PATCH] just yank that from zas/xgm --- code/modules/atmospherics/atmosphere/atmosphere.dm | 2 -- code/modules/atmospherics/environmental/public.dm | 2 -- code/modules/atmospherics/environmental/turf-share.dm | 2 -- code/modules/atmospherics/gasmixtures/_helpers-transfer.dm | 2 -- code/modules/atmospherics/gasmixtures/gas.dm | 2 -- code/modules/atmospherics/gasmixtures/gas_data.dm | 2 -- code/modules/atmospherics/gasmixtures/gas_types/core.dm | 2 -- code/modules/atmospherics/gasmixtures/procedural_gas.dm | 2 -- 8 files changed, 16 deletions(-) diff --git a/code/modules/atmospherics/atmosphere/atmosphere.dm b/code/modules/atmospherics/atmosphere/atmosphere.dm index 6949fcec349e..04b82649b30c 100644 --- a/code/modules/atmospherics/atmosphere/atmosphere.dm +++ b/code/modules/atmospherics/atmosphere/atmosphere.dm @@ -1,5 +1,3 @@ -//* This file is explicitly licensed under the MIT license. *// -//* Copyright (c) 2023 Citadel Station developers. *// /** * system for both diff --git a/code/modules/atmospherics/environmental/public.dm b/code/modules/atmospherics/environmental/public.dm index 761a135b82e1..15729b1a8932 100644 --- a/code/modules/atmospherics/environmental/public.dm +++ b/code/modules/atmospherics/environmental/public.dm @@ -1,5 +1,3 @@ -//* This file is explicitly licensed under the MIT license. *// -//* Copyright (c) 2023 Citadel Station developers. *// // when writing atmos machinery, prefer using these procs // this lets us somewhat separate API from implemenetation of the environmental module. diff --git a/code/modules/atmospherics/environmental/turf-share.dm b/code/modules/atmospherics/environmental/turf-share.dm index 614c36c16093..8b539381aaeb 100644 --- a/code/modules/atmospherics/environmental/turf-share.dm +++ b/code/modules/atmospherics/environmental/turf-share.dm @@ -1,5 +1,3 @@ -//* This file is explicitly licensed under the MIT license. *// -//* Copyright (c) 2024 Citadel Station Developers *// /** * Used to share a certain temperature & heat capacity's thermal energy with us. diff --git a/code/modules/atmospherics/gasmixtures/_helpers-transfer.dm b/code/modules/atmospherics/gasmixtures/_helpers-transfer.dm index 9177bdc04fdd..1a2335a98302 100644 --- a/code/modules/atmospherics/gasmixtures/_helpers-transfer.dm +++ b/code/modules/atmospherics/gasmixtures/_helpers-transfer.dm @@ -1,5 +1,3 @@ -//* This file is explicitly licensed under the MIT license. *// -//* Copyright (c) 2023 Citadel Station developers. *// //-----------------------------------------------------------------------------// /** diff --git a/code/modules/atmospherics/gasmixtures/gas.dm b/code/modules/atmospherics/gasmixtures/gas.dm index be15cbb69df8..514a172c28c3 100644 --- a/code/modules/atmospherics/gasmixtures/gas.dm +++ b/code/modules/atmospherics/gasmixtures/gas.dm @@ -1,5 +1,3 @@ -//* This file is explicitly licensed under the MIT license. *// -//* Copyright (c) 2023 Citadel Station developers. *// /** * Gas datum definitions, inspired by /tg/station LINDA & Baystation XGM. diff --git a/code/modules/atmospherics/gasmixtures/gas_data.dm b/code/modules/atmospherics/gasmixtures/gas_data.dm index 41b92f3391d0..1805c51ae925 100644 --- a/code/modules/atmospherics/gasmixtures/gas_data.dm +++ b/code/modules/atmospherics/gasmixtures/gas_data.dm @@ -1,5 +1,3 @@ -//* This file is explicitly licensed under the MIT license. *// -//* Copyright (c) 2023 Citadel Station developers. *// GLOBAL_REAL(gas_data, /datum/gas_data) = new diff --git a/code/modules/atmospherics/gasmixtures/gas_types/core.dm b/code/modules/atmospherics/gasmixtures/gas_types/core.dm index ab8a4341076c..7e104bd22ee2 100644 --- a/code/modules/atmospherics/gasmixtures/gas_types/core.dm +++ b/code/modules/atmospherics/gasmixtures/gas_types/core.dm @@ -1,5 +1,3 @@ -//* This file is explicitly licensed under the MIT license. *// -//* Copyright (c) 2023 Citadel Station developers. *// /datum/gas/oxygen id = GAS_ID_OXYGEN diff --git a/code/modules/atmospherics/gasmixtures/procedural_gas.dm b/code/modules/atmospherics/gasmixtures/procedural_gas.dm index aff860d8471d..b6460737cc9e 100644 --- a/code/modules/atmospherics/gasmixtures/procedural_gas.dm +++ b/code/modules/atmospherics/gasmixtures/procedural_gas.dm @@ -1,5 +1,3 @@ -//* This file is explicitly licensed under the MIT license. *// -//* Copyright (c) 2024 Citadel Station Developers *// /proc/generate_procedural_gas(path, list/arguments) var/datum/procedural_gas/instance = new path(arglist(arguments))