Skip to content

Commit

Permalink
reee
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkSuckerberg committed Sep 13, 2023
1 parent afc1639 commit b762307
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion code/game/area/areas/centcom.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down
4 changes: 2 additions & 2 deletions code/modules/buildmode/submodes/tweakcomps.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/cargo/supplypod.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b762307

Please sign in to comment.