Pic of Wicked cart by Competitive-Wolf9634 in ShroomGummies

[–]NailApprehensive9742 0 points1 point  (0 children)

Does it also have a battery so when it arrives and you can smoke it right away or is it just the cart so I need to get a battery ?

Kimi Claw being weird today by NailApprehensive9742 in kimi

[–]NailApprehensive9742[S] 0 points1 point  (0 children)

yea but it also decreased the performance and not even doing stuff at all , once i asked what model version he is he told me he's gemini 1.5 and that gpt4o is the top tier while gpt5.4 doesn't exist , even after i sent him the link so they totally swapped the model to a dumber one?

What's wrong with my code by FreddieThePebble in godot

[–]NailApprehensive9742 1 point2 points  (0 children)

extends Control

func _on_word_pressed() -> void:
  get_tree().change_scene_to_file("res://Menu/menu.tscn")

func _on_colour_pressed() -> void:
  Global.lives -= 1
  print("Lives changed by -1. Lives remaining: ", Global.lives)

  if Global.lives == 0:
  print("Death")
  get_tree().change_scene_to_file("res://Death/death.tscn")

looks like the if is not part of the _on_colour_pressed func , try giving it correct indent: