diff --git a/code/game/area/areas/centcom.dm b/code/game/area/areas/centcom.dm index 35ca71d23291..8ca63ad47e4f 100644 --- a/code/game/area/areas/centcom.dm +++ b/code/game/area/areas/centcom.dm @@ -47,7 +47,7 @@ var/loading_id = "" /area/centcom/supplypod/loading/Initialize() - . = ..() + . = ..() if(!loading_id) CRASH("[type] created without a loading_id") if(GLOB.supplypod_loading_bays[loading_id]) diff --git a/code/modules/buildmode/submodes/tweakcomps.dm b/code/modules/buildmode/submodes/tweakcomps.dm index 230ec4604c14..4072f8dd8f2f 100644 --- a/code/modules/buildmode/submodes/tweakcomps.dm +++ b/code/modules/buildmode/submodes/tweakcomps.dm @@ -10,12 +10,12 @@ ) /datum/buildmode_mode/tweakcomps/change_settings(client/target_client) - var/rating_to_choose = input(target_client, "Enter number of rating", "Number", "1") + var/rating_to_choose = input(target_client, "Enter number of rating", "Number", "1") rating_to_choose = text2num(rating_to_choose) if(!isnum(rating_to_choose)) tgui_alert(target_client, "Input a number.") return - + rating = rating_to_choose /datum/buildmode_mode/tweakcomps/handle_click(client/target_client, params, obj/machinery/object) diff --git a/code/modules/cargo/supplypod.dm b/code/modules/cargo/supplypod.dm index 6dc6d9eb7c3d..314484a5a668 100644 --- a/code/modules/cargo/supplypod.dm +++ b/code/modules/cargo/supplypod.dm @@ -15,7 +15,7 @@ anchored = TRUE //So it cant slide around after landing anchorable = FALSE flags_1 = PREVENT_CONTENTS_EXPLOSION_1 - appearance_flags = KEEP_TOGETHER | PIXEL_SCALE + appearance_flags = KEEP_TOGETHER | PIXEL_SCALE density = FALSE ///List of bitflags for supply pods, see: code\__DEFINES\obj_flags.dm var/pod_flags = NONE