summaryrefslogtreecommitdiff
path: root/game/instruction_popup.gd
diff options
context:
space:
mode:
authorHenrique Alves <henrique.alves@itsjungle.xyz>2024-01-28 15:36:18 +0200
committerHenrique Alves <henrique.alves@itsjungle.xyz>2024-01-28 15:36:18 +0200
commit77dfeb0afae6937600d2bfd847e0151c9214e36d (patch)
tree2a963ea845a96e0ead6a5748a9bfca4a139b6b20 /game/instruction_popup.gd
parent39c5ed20a2eed5e5f358e2f00956f833ba60373b (diff)
downloadgamejam-ggj-2024-77dfeb0afae6937600d2bfd847e0151c9214e36d.tar.gz
gamejam-ggj-2024-77dfeb0afae6937600d2bfd847e0151c9214e36d.tar.bz2
gamejam-ggj-2024-77dfeb0afae6937600d2bfd847e0151c9214e36d.zip
Add instruction label
Diffstat (limited to 'game/instruction_popup.gd')
-rw-r--r--game/instruction_popup.gd1
1 files changed, 0 insertions, 1 deletions
diff --git a/game/instruction_popup.gd b/game/instruction_popup.gd
index 8bcad5e..6107e5b 100644
--- a/game/instruction_popup.gd
+++ b/game/instruction_popup.gd
@@ -18,7 +18,6 @@ func play_instruction(type: Microgame.MICROGAME_CONTROL):
func get_instruction(type: Microgame.MICROGAME_CONTROL) -> InstructionResource:
for instruction in instructions:
- print(instruction.type)
if instruction.type == type:
return instruction
return null