-
Notifications
You must be signed in to change notification settings - Fork 736
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
Code cleanup of Kestrel 4500 module #2152
Conversation
_year = _year - 1; | ||
}; | ||
(_year + floor(_year/4) - floor(_year/100) + floor(_year/400) + (_table select (_month - 1)) + _day) % 7 | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can those 2 functions be in separate files as all other functions are?
Update some Comments Fixing Spelling Issue
* | ||
* Public: No | ||
*/ | ||
params ["_slot", "_value"]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Missing include
- Probably enter some empty line between params and the header.
- I don't see any reason for this code to be a global function, it could very well stay within the file where it came from, as it's not being used anywhere else apart from in
fnc_collectData.sqf
I can't open the Kestrel in-game. Might be due to the missing include: #2152 (comment) |
Fixed |
Code cleanup of Kestrel 4500 module
Code cleanup of Kestrel 4500 module.