Make Result return not okay if @data is nil

This commit is contained in:
2026-04-21 12:12:16 -05:00
parent a79b9cc20e
commit 1c868522b7

View File

@@ -9,7 +9,7 @@ module CyberarmEngine
end end
def okay? def okay?
!@error !error?
end end
def error? def error?
@@ -17,4 +17,3 @@ module CyberarmEngine
end end
end end
end end