We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
this was fixed in SitStand.pm changing from:
unless ($self->{mode} eq 'sit' xor $self->{actor}{sitting}) {
to:
unless ($self->{mode} eq 'sit' xor $char->{sitting}) {
my guess is, this task receive a copy of $char var and not a $char reference
The text was updated successfully, but these errors were encountered:
No branches or pull requests
5e8e300
All
Task SitStand lost char reference
Sometimes the Task SitStand lost the char reference and don't know if char is sitting/stand and enter in a infinity loop
screenshot:
this was fixed in SitStand.pm changing from:
to:
my guess is, this task receive a copy of $char var and not a $char reference
The text was updated successfully, but these errors were encountered: