Skip to content

Commit

Permalink
test removal of custom block labels
Browse files Browse the repository at this point in the history
  • Loading branch information
evemartin committed Apr 26, 2024
1 parent fb56ff0 commit 8be873d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions game/static/game/js/blocklyCustomBlocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function initCustomBlocksDescription() {
init: function () {
this.setColour(160);
this.appendDummyInput()
.appendField(Blockly.Msg.MOVE_FORWARDS_TITLE)
.appendField(gettext("test"))
.appendField(
new Blockly.FieldImage(
ocargo.Drawing.imageDir + "actions/forward.svg",
Expand All @@ -49,7 +49,7 @@ function initCustomBlocksDescription() {
);
this.setPreviousStatement(true, "Action");
this.setNextStatement(true, "Action");
this.setTooltip(Blockly.Msg.MOVE_FORWARDS_TOOLTIP);
this.setTooltip(gettext("test"));
},
};

Expand Down

0 comments on commit 8be873d

Please sign in to comment.