issues
search
DragonBox
/
u3d
U3d is a cross-platform set of tools to interact with Unity3D from command line.
MIT License
361
stars
33
forks
source link
fix: replace usage of nonexistent UI.info method
#431
Closed
jlsalmon
closed
2 years ago
jlsalmon
commented
2 years ago
Pull Request Checklist
[x] My pull request has been rebased on master
[x] I ran
bundle exec rspec
to make sure that my PR didn't break any test
[x] I ran
bundle exec rubocop
to make sure that my PR is inline with our code style
[x] I have read the
code of conduct
Pull Request Description
416 seems to have introduced a bug where an attempt is made to call a method named
info
on the UI interface, but this method doesn't exist. This PR simply changes the call to
UI.message
instead.
Fixes #430
Pull Request Checklist
bundle exec rspec
to make sure that my PR didn't break any testbundle exec rubocop
to make sure that my PR is inline with our code stylePull Request Description
416 seems to have introduced a bug where an attempt is made to call a method named
info
on the UI interface, but this method doesn't exist. This PR simply changes the call toUI.message
instead.Fixes #430