|
|
@ -74,8 +74,8 @@ public class VIPService { |
|
|
|
return permitionService.getPermition(steamID); |
|
|
|
} |
|
|
|
|
|
|
|
public void addVIP(SteamID steamID, int amount, VipGiveMethod vipGiveMethod, String extra) { |
|
|
|
int result = 0; |
|
|
|
public int addVIP(SteamID steamID, int amount, VipGiveMethod vipGiveMethod, String extra) { |
|
|
|
int result = 1; |
|
|
|
switch (vipGiveMethod){ |
|
|
|
case FREE -> { |
|
|
|
permitionService.addFreeVIP(steamID, amount); |
|
|
@ -99,6 +99,7 @@ public class VIPService { |
|
|
|
} |
|
|
|
} |
|
|
|
serverService.executeRCONOnAllServers("sm_reloadadmins"); |
|
|
|
return result; |
|
|
|
} |
|
|
|
|
|
|
|
public void publishWebhook(SteamID steamID, int amount, String status, boolean free) { |
|
|
|