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,7 +2,7 @@
// Mostly for better caves
// Should probably move these up and refactor modules so these can be mixed with other ones
/datum/mapGenerator/ca
/datum/map_generator/ca
var/list/b_rule = list() // 0 -> 1, 1 -> 1
var/list/s_rule = list() // 0 -> 0, 1 -> 1
var/iterations = 1
@@ -15,7 +15,7 @@
var/list/type_map = list(/turf/open/floor/plating, /turf/closed/wall)
var/turf/start = null
/datum/mapGenerator/ca/defineRegion(turf/Start, turf/End, replace = 0)
/datum/map_generator/ca/defineRegion(turf/Start, turf/End, replace = 0)
. = ..()
var/min_x = min(Start.x,End.x)
@@ -28,7 +28,7 @@
//We assume 2D everywhere anyway
start = locate(min_x,min_y,Start.z)
/datum/mapGenerator/ca/proc/initialize()
/datum/map_generator/ca/proc/initialize()
old_state = new/list(width)
for(var/i = 1,i<=width,i++)
old_state[i] = new/list(height)
@@ -37,7 +37,7 @@
current_state = old_state.Copy()
/datum/mapGenerator/ca/generate()
/datum/map_generator/ca/generate()
//Abandon all hope for efficency all who enter here
//Maybe some less basic implemetation later, but this is just simple admin tool
initialize()
@@ -55,7 +55,7 @@
if(T)
T.ChangeTurf(type_map[current_state[i][j]+1])
/datum/mapGenerator/ca/proc/apply_rule(i,j)
/datum/map_generator/ca/proc/apply_rule(i,j)
var/value = 0
for(var/dx=-1,dx<=1,dx++)
for(var/dy=-1,dy<=1,dy++)
@@ -83,13 +83,13 @@
return old_state[i][j]
return 0
/datum/mapGenerator/ca/caves
/datum/map_generator/ca/caves
b_rule = list(5,6,7,8)
s_rule = list(4)
type_map = list(/turf/open/floor/plating/asteroid/basalt, /turf/closed/mineral/volcanic)
iterations = 5
/datum/mapGenerator/ca/maze
/datum/map_generator/ca/maze
b_rule = list(3)
s_rule = list(1,2,3,4,5)
iterations = 20