Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion DMCompiler/DMStandard/Types/Atoms/Movable.dm
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/atom/movable
var/screen_loc


var/loc // Re-declared as atom.loc is a const, but movable.loc isnt.

var/animate_movement = FORWARD_STEPS as opendream_unimplemented
var/list/locs = null as opendream_unimplemented
var/glide_size = 0
Expand Down
2 changes: 1 addition & 1 deletion DMCompiler/DMStandard/Types/Atoms/_Atom.dm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
var/tmp/list/vis_locs = null as opendream_unimplemented
var/list/vis_contents = null

var/tmp/atom/loc
var/tmp/atom/loc as opendream_compiletimereadonly
var/dir = SOUTH
var/tmp/x = 0
var/tmp/y = 0
Expand Down
Loading