Update cubesstuff.js

This commit is contained in:
Cube14yt 2025-08-18 22:31:32 +08:00 committed by GitHub
parent 349ed30dae
commit fa4a36d9f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 3 deletions

View File

@ -1533,7 +1533,6 @@ function tryJump(headPixel) {
// Robot elements
elements.robot_head = {
color: "#d9d9d9",
behavior: behaviors.SOLID,
category: "machines",
tick(pixel) {
const body = getPixel(pixel.x, pixel.y + 1);
@ -1572,7 +1571,6 @@ elements.robot_head = {
elements.robot_body = {
color: "#b1b1b1",
behavior: behaviors.SOLID,
category: "machines",
tick(pixel) {
const head = getPixel(pixel.x, pixel.y - 1);
@ -1598,7 +1596,6 @@ elements.robot_body = {
// Robot creator element
elements.robot = {
color: "#b1b1b1",
behavior: behaviors.SOLID,
category: "machines",
onSelect() {
promptChoose(
@ -1845,3 +1842,4 @@ elements.adjustable_cooler = {
}
};