You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
Fix index out of range error in string.Extension()
This commit is contained in:
@@ -225,7 +225,7 @@ namespace Godot
|
||||
if (pos < 0)
|
||||
return instance;
|
||||
|
||||
return instance.Substring(pos + 1, instance.Length);
|
||||
return instance.Substring(pos + 1);
|
||||
}
|
||||
|
||||
// <summary>
|
||||
|
||||
Reference in New Issue
Block a user