Made type-checking for arguments less trict between bool, int real. Fixes #1816
This commit is contained in:
parent
0995a230f6
commit
bc3c14a76b
|
@ -463,8 +463,8 @@ bool Variant::can_convert_strict(Variant::Type p_type_from,Variant::Type p_type_
|
|||
case BOOL: {
|
||||
|
||||
static const Type valid[]={
|
||||
//INT,
|
||||
//REAL,
|
||||
INT,
|
||||
REAL,
|
||||
//STRING,
|
||||
NIL,
|
||||
};
|
||||
|
@ -474,7 +474,7 @@ bool Variant::can_convert_strict(Variant::Type p_type_from,Variant::Type p_type_
|
|||
case INT: {
|
||||
|
||||
static const Type valid[]={
|
||||
//BOOL,
|
||||
BOOL,
|
||||
REAL,
|
||||
//STRING,
|
||||
NIL,
|
||||
|
@ -486,7 +486,7 @@ bool Variant::can_convert_strict(Variant::Type p_type_from,Variant::Type p_type_
|
|||
case REAL: {
|
||||
|
||||
static const Type valid[]={
|
||||
//BOOL,
|
||||
BOOL,
|
||||
INT,
|
||||
//STRING,
|
||||
NIL,
|
||||
|
|
Loading…
Reference in New Issue