-
Notifications
You must be signed in to change notification settings - Fork 141
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
[l4d_tank_control_eq] Update #859
base: master
Are you sure you want to change the base?
Conversation
Keep the original logic, add more API to control the tank.
Comments in chinese, excellent =) |
Remove code comments or change the English, otherwise it may not be passed |
Remove chinese comments |
Add missing translations
} | ||
|
||
public int Native_GetWhosHadTank(Handle plugin, int numParams) |
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.
Tag public
can be stripped cuz it's not necessary. Same as other non-forward functions.
public int Native_GetWhosHadTank(Handle plugin, int numParams) | ||
{ | ||
return view_as<int>(CloneHandle(h_whosHadTank, plugin)); |
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.
view_as<int>
in not necessary.
Keep the original logic, add more API to control the tank.