mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 21:18:37 +01:00
additional fixes
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
spans = list(SPAN_ROBOT)
|
||||
secret = TRUE
|
||||
|
||||
/datum/language/ratvar/scramble_sentence(input, user.get_partially_understood_languages())
|
||||
/datum/language/ratvar/scramble_sentence(input, list/mutual_languages)
|
||||
return text2ratvar(input)
|
||||
|
||||
//Regexes used to alter english to ratvarian style
|
||||
|
||||
@@ -45,6 +45,7 @@
|
||||
)
|
||||
atom_storage.allow_big_nesting = TRUE // Lets the pouch work
|
||||
AddElement(/datum/element/update_icon_updates_onmob)
|
||||
PopulateContents()
|
||||
|
||||
//Overrides normal dumping code to instead dump from the pouch item inside
|
||||
/datum/storage/belt/crusader/dump_content_at(atom/dest_object, mob/dumping_mob)
|
||||
|
||||
@@ -26,7 +26,7 @@ ADMIN_VERB(spawn_mob_spawner, R_ADMIN, "Spawn mob spawner", "Spawns a mob spawne
|
||||
)
|
||||
)
|
||||
|
||||
var/list/returned_prefs = present_pref_like_picker(usr, "Spawn mob spawner", "Spawn mob spawner", StealFocus = 1, Timeout = 0, settings=settings)
|
||||
var/list/returned_prefs = present_pref_like_picker(usr, "Spawn mob spawner", "Spawn mob spawner", steal_focus = TRUE, timeout = 0, settings=settings)
|
||||
|
||||
if (isnull(returned_prefs))
|
||||
return FALSE
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
/obj/item/clothing/head/utility/welding,
|
||||
/obj/item/clothing/glasses/welding,
|
||||
),
|
||||
list = list(),
|
||||
list(),
|
||||
list(/obj/item/clothing/head/utility/welding,
|
||||
)
|
||||
)
|
||||
|
||||
@@ -22,10 +22,6 @@
|
||||
time = 30
|
||||
category = CAT_CLOTHING
|
||||
|
||||
/datum/crafting_recipe/crusader_belt/on_craft_completion(mob/user, atom/result)
|
||||
var/obj/item/storage/belt/crusader/crusader_belt = result
|
||||
crusader_belt.PopulateContents()
|
||||
|
||||
/datum/crafting_recipe/crusader_satchel
|
||||
name = "Crusader Satchel"
|
||||
result = /obj/item/storage/backpack/satchel/crusader
|
||||
|
||||
@@ -316,9 +316,11 @@
|
||||
UnregisterSignal(mod.wearer, COMSIG_LIVING_HEALTH_UPDATE)
|
||||
|
||||
/obj/item/mod/module/auto_doc/on_install()
|
||||
. = ..()
|
||||
RegisterSignal(mod, COMSIG_ATOM_ITEM_INTERACTION, PROC_REF(on_item_interact))
|
||||
|
||||
/obj/item/mod/module/auto_doc/on_uninstall(deleting)
|
||||
. = ..()
|
||||
UnregisterSignal(mod, COMSIG_ATOM_ATTACKBY)
|
||||
|
||||
/obj/item/mod/module/auto_doc/attackby(obj/item/attacking_item, mob/user, params)
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
/// List of species that this quirk is valid for, or empty if it's valid for all species. Only use species ids here.
|
||||
var/list/species_whitelist = list()
|
||||
|
||||
/datum/quirk/add_to_holder(mob/living/new_holder, quirk_transfer, client/client_source)
|
||||
/datum/quirk/add_to_holder(mob/living/new_holder, quirk_transfer, client/client_source, unique)
|
||||
if(!can_add(new_holder))
|
||||
CRASH("Attempted to add quirk to holder that can't have it.")
|
||||
. = ..()
|
||||
|
||||
Reference in New Issue
Block a user