Converts ALL typepaths to lowercase (#51642)

* Case of lower

* More changes

* Ruins the nice 420 diff, brainfart when doing the second batch of conversions

* More changes

* Next batch. I think

* Converts even more paths

* Restarts bots

* Capital Free Zone

* Come on travis, do something

* Renames areas

* Bots, please stop dying

* Updates CONTRIBUTING.md and updates a few paths I missed.

* APC recgarftzfvas
/obj/item/computer_hardware/recharger/apc to /obj/item/computer_hardware/recharger/apc_recharger
This commit is contained in:
nemvar
2020-06-17 20:47:57 -03:00
committed by GitHub
parent 60f86ea2ff
commit b87f65d95e
278 changed files with 2586 additions and 2582 deletions
@@ -2,22 +2,22 @@
//Areas
/area/awaymission/BMPship
/area/awaymission/bmpship
name = "BMP Asteroids"
icon_state = "away"
/area/awaymission/BMPship/Aft
/area/awaymission/bmpship/aft
name = "Aft Block"
icon_state = "away1"
requires_power = TRUE
/area/awaymission/BMPship/Midship
/area/awaymission/bmpship/midship
name = "Midship Block"
icon_state = "away2"
requires_power = TRUE
/area/awaymission/BMPship/Fore
/area/awaymission/bmpship/fore
name = "Fore Block"
icon_state = "away3"
requires_power = TRUE
@@ -94,7 +94,7 @@ GLOBAL_VAR_INIT(fscpassword, generate_password())
/////////// AI Laws
/obj/item/aiModule/core/full/cybersun
/obj/item/ai_module/core/full/cybersun
name = "'Cybersun' Core AI Module"
law_id = "cybersun"
@@ -282,22 +282,22 @@ GLOBAL_VAR_INIT(hhmysteryRoomNumber, 1337)
to_chat(user, "<span class='notice'>You peak through the door's bluespace peephole...</span>")
user.reset_perspective(parentSphere)
user.set_machine(src)
var/datum/action/peepholeCancel/PHC = new
var/datum/action/peephole_cancel/PHC = new
user.overlay_fullscreen("remote_view", /obj/screen/fullscreen/impaired, 1)
PHC.Grant(user)
/turf/closed/indestructible/hoteldoor/check_eye(mob/user)
if(get_dist(get_turf(src), get_turf(user)) >= 2)
user.unset_machine()
for(var/datum/action/peepholeCancel/PHC in user.actions)
for(var/datum/action/peephole_cancel/PHC in user.actions)
PHC.Trigger()
/datum/action/peepholeCancel
/datum/action/peephole_cancel
name = "Cancel View"
desc = "Stop looking through the bluespace peephole."
button_icon_state = "cancel_peephole"
/datum/action/peepholeCancel/Trigger()
/datum/action/peephole_cancel/Trigger()
. = ..()
to_chat(owner, "<span class='warning'>You move away from the peephole.</span>")
owner.reset_perspective()