- Joined
- Jan 28, 2026
- Messages
- 45
- Reaction score
- 35
- Location
- US
- What state or country do you live in
- New Jersey
First yes I have 2 pistol shrimps in the tank a candycane and tiger, no mantis shrimp that I know of
It seems to happen more at night I hear either a weird Click or a double click . The timing of the clicks
appears to be random as there could be a long delay or short delay. I also hear the sound more at night but sometimes
i hear it during the day but the sound doesnt sound the same.
Its not a RedSea and its a braced tank. The sound always appear to be coming from the top of the tank. I dont see any water
seepage but this clicking sound is worrying a little.
Is there anything near the braces i should be looking for? Thanks
@rpc("any_peer", "call_local", "reliable")
func request_pickup_item(target_pos: Vector2):
if not multiplayer.is_server(): return
rpc_delete_item.rpc(target_pos)
@rpc("authority", "call_local", "reliable")
func rpc_delete_item(target_pos: Vector2):
var possible_items = get_tree().current_scene.get_children()
for item in possible_items:
if item.has_method("pick_up") and item.global_position.distance_to(target_pos) < 16.0:
item.queue_free()
break
It seems to happen more at night I hear either a weird Click or a double click . The timing of the clicks
appears to be random as there could be a long delay or short delay. I also hear the sound more at night but sometimes
i hear it during the day but the sound doesnt sound the same.
Its not a RedSea and its a braced tank. The sound always appear to be coming from the top of the tank. I dont see any water
seepage but this clicking sound is worrying a little.
Is there anything near the braces i should be looking for? Thanks
@rpc("any_peer", "call_local", "reliable")
func request_pickup_item(target_pos: Vector2):
if not multiplayer.is_server(): return
rpc_delete_item.rpc(target_pos)
@rpc("authority", "call_local", "reliable")
func rpc_delete_item(target_pos: Vector2):
var possible_items = get_tree().current_scene.get_children()
for item in possible_items:
if item.has_method("pick_up") and item.global_position.distance_to(target_pos) < 16.0:
item.queue_free()
break
