mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 05:00:55 +01:00
Renames files under code/ with naughty characters
Like seriously, don't use spaces in file names, this is a codebase, they're annoying. Hopefully Github will show these renames correctly.
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
/obj/effect/landmark/mapGenerator
|
||||
var/startTurfX = 0
|
||||
var/startTurfY = 0
|
||||
var/startTurfZ = -1
|
||||
var/endTurfX = 0
|
||||
var/endTurfY = 0
|
||||
var/endTurfZ = -1
|
||||
var/mapGeneratorType = /datum/mapGenerator/nature
|
||||
var/datum/mapGenerator/mapGenerator
|
||||
|
||||
/obj/effect/landmark/mapGenerator/New()
|
||||
..()
|
||||
if(startTurfZ < 0)
|
||||
startTurfZ = z
|
||||
if(endTurfZ < 0)
|
||||
endTurfZ = z
|
||||
mapGenerator = new mapGeneratorType()
|
||||
mapGenerator.defineRegion(locate(startTurfX,startTurfY,startTurfZ), locate(endTurfX,endTurfY,endTurfZ))
|
||||
mapGenerator.generate()
|
||||
Reference in New Issue
Block a user