whoops this is important too
This commit is contained in:
parent
67228d89d1
commit
dee2970ad3
@ -4,6 +4,7 @@ export const DIRECTIONS = {
|
||||
north: {
|
||||
movement: [0, -1],
|
||||
bit: 0x01,
|
||||
action: 'up',
|
||||
left: 'west',
|
||||
right: 'east',
|
||||
opposite: 'south',
|
||||
@ -11,6 +12,7 @@ export const DIRECTIONS = {
|
||||
south: {
|
||||
movement: [0, 1],
|
||||
bit: 0x04,
|
||||
action: 'down',
|
||||
left: 'east',
|
||||
right: 'west',
|
||||
opposite: 'north',
|
||||
@ -18,6 +20,7 @@ export const DIRECTIONS = {
|
||||
west: {
|
||||
movement: [-1, 0],
|
||||
bit: 0x08,
|
||||
action: 'left',
|
||||
left: 'south',
|
||||
right: 'north',
|
||||
opposite: 'east',
|
||||
@ -25,6 +28,7 @@ export const DIRECTIONS = {
|
||||
east: {
|
||||
movement: [1, 0],
|
||||
bit: 0x02,
|
||||
action: 'right',
|
||||
left: 'north',
|
||||
right: 'south',
|
||||
opposite: 'west',
|
||||
|
||||
Loading…
Reference in New Issue
Block a user