Fix incorrect class_name declarations being swapped with extends

This was caused by an automatic text replacement issue.
This commit is contained in:
Hugo Locurcio
2024-06-03 20:13:24 +02:00
parent bac1e69164
commit 9a0c857131
6 changed files with 12 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
class_name Node
extends WebSocketClient
class_name WebSocketClient
extends Node
@export var handshake_headers: PackedStringArray
@export var supported_protocols: PackedStringArray

View File

@@ -1,5 +1,5 @@
class_name Node
extends WebSocketServer
class_name NWebSocketServer
extends Node
signal message_received(peer_id: int, message: String)
signal client_connected(peer_id: int)