Update: CC - Snake FS - Entity Loaded (21g30t1e75.js) 0 bytes modified

beta.r3js.org
-=yb4f310 2018-03-24 14:54:09 +01:00
parent 8e3d5420c0
commit 9656472cb2
1 changed files with 7 additions and 7 deletions

View File

@ -11,7 +11,7 @@ GameLib.CustomCode.BODY_TYPE_NORMAL = 0x1;
GameLib.CustomCode.BODY_TYPE_TAIL = 0x2;
GameLib.CustomCode.BODY_TYPE_CORNER = 0x3;
GameLib.CustomCode.GRID_WIDTH = 5;
GameLib.CustomCode.GRID_WIDTH = 4;
GameLib.CustomCode.GRID_HEIGHT = 4;
GameLib.CustomCode.GRID_OFFSET_X = 1;
@ -1612,8 +1612,8 @@ GameLib.Event.Subscribe(
GameLib.CustomCode.OBJECT_TYPE_SNAKE_BODY,
GameLib.CustomCode.BODY_TYPE_BREAD_HEAD,
{
x : 4,
y : 3
x : 3,
y : 2
},
GameLib.CustomCode.ORIENTATION_UP
),
@ -1621,8 +1621,8 @@ GameLib.Event.Subscribe(
GameLib.CustomCode.OBJECT_TYPE_SNAKE_BODY,
GameLib.CustomCode.BODY_TYPE_BREAD_PATTY,
{
x : 4,
y : 2
x : 3,
y : 1
},
GameLib.CustomCode.ORIENTATION_UP
),
@ -1630,8 +1630,8 @@ GameLib.Event.Subscribe(
GameLib.CustomCode.OBJECT_TYPE_SNAKE_BODY,
GameLib.CustomCode.BODY_TYPE_BREAD_TAIL,
{
x : 4,
y : 1
x : 3,
y : 0
},
GameLib.CustomCode.ORIENTATION_UP
)