-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
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
Bug with tessumod in 1.10.0.4 #40
Comments
here's the latest |
Looks like the updated game code now expects the last parameter, value, to be a a list or tuple, and the marker is the 2nd value in the list/tuple. g_sessionProvider.shared.feedback.onMinimapFeedbackReceived(
FEEDBACK_EVENT_ID.MINIMAP_SHOW_MARKER, self._vehicle_id, self._action) Needs to be this: g_sessionProvider.shared.feedback.onMinimapFeedbackReceived(
FEEDBACK_EVENT_ID.MINIMAP_SHOW_MARKER, self._vehicle_id, (???, self._action)) Not sure what the 1st value should be. Also note that I'm not really finding much time to work on this anymore. So it might take a while before I can fix this. I should probably just mark this mod as unmaintained as I'm not really giving it the attention anymore that it should receive. |
The code in 1.9:
The code in 1.10.1:
I'd assume |
Hi,
There's a bug with the mod in 1.10.0.4:
My guess is the method args needs to be updated?
The text was updated successfully, but these errors were encountered: