We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d61b89a commit e83fe95Copy full SHA for e83fe95
cstrike/addons/amxmodx/scripting/map_manager_core.sma
@@ -750,6 +750,10 @@ public show_votemenu(id)
750
new item_data[ItemStruct], custom_item_data[CustomItemStruct];
751
752
for(new i, size = ArraySize(g_aMenuItems); i < size; i++) {
753
+ if(g_bCanExtend && i == g_iPushPos) {
754
+ len += formatex(menu[len], charsmax(menu) - len, "^n");
755
+ }
756
+
757
ArrayGetArray(g_aMenuItems, i, item_data);
758
if(item_data[is_type] == it_custom) {
759
ArrayGetArray(g_aCustomItems, item_data[is_custom_index], custom_item_data);
0 commit comments