Skip to content

Commit

Permalink
Add missing Speed item type
Browse files Browse the repository at this point in the history
  • Loading branch information
ArKaNeMaN committed Oct 2, 2022
1 parent a90ce69 commit 53e49b8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions amxmodx/scripting/VipM-I-Default.sma
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ public VipM_IC_OnInitTypes() {
VipM_IC_RegisterType("RefillBpAmmo");
VipM_IC_RegisterTypeEvent("RefillBpAmmo", ItemType_OnGive, "@OnRefillBpAmmoGive");

VipM_IC_RegisterType("Speed");
VipM_IC_RegisterTypeEvent("Speed", ItemType_OnRead, "@OnSpeedRead");
VipM_IC_RegisterTypeEvent("Speed", ItemType_OnGive, "@OnSpeedGive");

VipM_IC_RegisterType("Money");
VipM_IC_RegisterTypeEvent("Money", ItemType_OnRead, "@OnMoneyRead");
VipM_IC_RegisterTypeEvent("Money", ItemType_OnGive, "@OnMoneyGive");
Expand Down

0 comments on commit 53e49b8

Please sign in to comment.