-
-
Notifications
You must be signed in to change notification settings - Fork 438
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
Fix #2965: sourceResourceRoot is incorrect in event handlers #3031
base: master
Are you sure you want to change the base?
Conversation
…dlers Currently MTA is pushing **dynamic** resource root element instead of normal resource root element. Changing it from `GetResourceDynamicEntity` to `GetResourceEntity` fixes the issue
i see one problem with this fix: people may already depend on this bug in their existing resources so now you are breaking them |
maybe its time to stop relying on bugs ¯\(ツ)/¯ |
I guess you can still do that, and it can be pushed to 1.6 branch - because this version already breaks some stuff, see: https://wiki.multitheftauto.com/wiki/Changes_in_1.6 |
I think it's too late to push this with 1.6, maybe next time. |
1.6.1 ? |
It was actually ready for 1.6 but this PR didnt get enough attention 😢 |
It's never too late! |
Marge, or put this in wiki breaking changes? Idk the procedure |
Currently MTA is pushing dynamic resource root element instead of normal resource root element.
Changing it from
GetResourceDynamicEntity
toGetResourceEntity
fixes the issue