Browse Source

report hype v8

master
gsd 10 months ago
parent
commit
4369d50093
  1. 2
      ext/sourcepawn-client/Facti13Reports.sp
  2. 2
      src/main/java/app/entities/report/ReportPermition.java

2
ext/sourcepawn-client/Facti13Reports.sp

@ -404,7 +404,7 @@ stock ReportProcessing(int cid, const char[] Reason){
static void Report_Callback(HTTPResponse response, any value){
int cid_author = GetClientOfUserId(value);
if (response.Status > 200 && response.Status < 210){
if (response.Status == 200){
PrintToChat(cid_author, "Репорт отправлен!");
return;
} else {

2
src/main/java/app/entities/report/ReportPermition.java

@ -13,7 +13,9 @@ public enum ReportPermition {
if (this.equals(DONT_HAVE)) return "";
if (this.equals(UNKNOWN)) return "";
return new StringBuilder(" | ")
.append("[")
.append(toString().toUpperCase())
.append("]")
.toString();
}
}

Loading…
Cancel
Save