You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
removed duplicated functions in class hierarchy that were bound more than once
added a check to detect this case in the future
This commit is contained in:
@@ -206,7 +206,7 @@ Error FileAccessNetworkClient::connect(const String& p_host,int p_port,const Str
|
||||
}
|
||||
|
||||
DEBUG_PRINT("IP: "+String(ip)+" port "+itos(p_port));
|
||||
Error err = client->connect(ip,p_port);
|
||||
Error err = client->connect_to_host(ip,p_port);
|
||||
ERR_FAIL_COND_V(err,err);
|
||||
while(client->get_status()==StreamPeerTCP::STATUS_CONNECTING) {
|
||||
//DEBUG_PRINT("trying to connect....");
|
||||
|
||||
Reference in New Issue
Block a user