Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reorganize files into module and feature-level folders #4826

Merged
Merged
2 changes: 1 addition & 1 deletion code/game/objects/effects/decals/Cleanable/humans.dm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
persistent = TRUE
appearance_flags = NO_CLIENT_COLOR
cleanable_scent = "blood"
scent_descriptor = SCENT_DESC_ODOR
scent_descriptor = "odour"

var/base_icon = 'icons/effects/blood.dmi'
var/basecolor=COLOR_BLOOD_HUMAN // Color when wet.
Expand Down
2 changes: 1 addition & 1 deletion code/game/objects/effects/decals/cleanable.dm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
var/cleanable_scent
var/scent_type = /datum/extension/scent/custom
var/scent_intensity = /decl/scent_intensity/normal
var/scent_descriptor = SCENT_DESC_SMELL
var/scent_descriptor = "smell"
var/scent_range = 2

/obj/effect/decal/cleanable/Initialize(var/ml, var/_age)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
/* Teleportation devices.
* Contains:
* Locator
* Hand-tele
*/

/*
* Locator
*/
/obj/item/locator
name = "locator"
desc = "Used to track those with locater implants."
desc = "Used to track those with locator implants."
icon = 'icons/obj/items/device/locator.dmi'
icon_state = ICON_STATE_WORLD
var/temp = null
Expand Down
Loading
Loading