mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Created a global list to track base turfs for explosions/shuttle moves. Remaps the asteroid to be a moonlet. Tidies up some references to 'asteroid', removes moonbase from the accessible z level list.
18 lines
243 B
Plaintext
18 lines
243 B
Plaintext
var/maze_cell_count = 0
|
|
|
|
/datum/maze_cell
|
|
var/name
|
|
var/uid
|
|
var/x
|
|
var/y
|
|
var/ox
|
|
var/oy
|
|
|
|
/datum/maze_cell/New(var/nx,var/ny,var/nox,var/noy)
|
|
maze_cell_count++
|
|
uid = maze_cell_count
|
|
name = "cell #[uid]"
|
|
x = nx
|
|
y = ny
|
|
ox = nox
|
|
oy = noy |