Skip to content

Commit

Permalink
Fix errors in LimboUtility
Browse files Browse the repository at this point in the history
  • Loading branch information
limbonaut committed Nov 19, 2023
1 parent c48eeef commit 3108a9d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions util/limbo_utility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ String LimboUtility::get_operation_string(Operation p_operation) const {
return "^";
} break;
}
return "";
}

Variant LimboUtility::perform_operation(Operation p_operation, const Variant &left_value, const Variant &right_value) {
Expand Down Expand Up @@ -229,6 +230,7 @@ Variant LimboUtility::perform_operation(Operation p_operation, const Variant &le
return Variant::evaluate(Variant::OP_BIT_XOR, left_value, right_value);
} break;
}
return Variant();
}

void LimboUtility::_bind_methods() {
Expand Down

0 comments on commit 3108a9d

Please sign in to comment.