Update cubesstuff.js
This commit is contained in:
parent
349ed30dae
commit
fa4a36d9f9
|
|
@ -1533,7 +1533,6 @@ function tryJump(headPixel) {
|
||||||
// Robot elements
|
// Robot elements
|
||||||
elements.robot_head = {
|
elements.robot_head = {
|
||||||
color: "#d9d9d9",
|
color: "#d9d9d9",
|
||||||
behavior: behaviors.SOLID,
|
|
||||||
category: "machines",
|
category: "machines",
|
||||||
tick(pixel) {
|
tick(pixel) {
|
||||||
const body = getPixel(pixel.x, pixel.y + 1);
|
const body = getPixel(pixel.x, pixel.y + 1);
|
||||||
|
|
@ -1572,7 +1571,6 @@ elements.robot_head = {
|
||||||
|
|
||||||
elements.robot_body = {
|
elements.robot_body = {
|
||||||
color: "#b1b1b1",
|
color: "#b1b1b1",
|
||||||
behavior: behaviors.SOLID,
|
|
||||||
category: "machines",
|
category: "machines",
|
||||||
tick(pixel) {
|
tick(pixel) {
|
||||||
const head = getPixel(pixel.x, pixel.y - 1);
|
const head = getPixel(pixel.x, pixel.y - 1);
|
||||||
|
|
@ -1598,7 +1596,6 @@ elements.robot_body = {
|
||||||
// Robot creator element
|
// Robot creator element
|
||||||
elements.robot = {
|
elements.robot = {
|
||||||
color: "#b1b1b1",
|
color: "#b1b1b1",
|
||||||
behavior: behaviors.SOLID,
|
|
||||||
category: "machines",
|
category: "machines",
|
||||||
onSelect() {
|
onSelect() {
|
||||||
promptChoose(
|
promptChoose(
|
||||||
|
|
@ -1845,3 +1842,4 @@ elements.adjustable_cooler = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue