this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

asd

+21 -15
-8
.idea/artifacts/SSISAuth_jar.xml
··· 1 - <component name="ArtifactManager"> 2 - <artifact type="jar" name="SSISAuth:jar"> 3 - <output-path>$PROJECT_DIR$/out/artifacts/SSISAuth_jar</output-path> 4 - <root id="archive" name="SSISAuth.jar"> 5 - <element id="module-output" name="SSISAuth" /> 6 - </root> 7 - </artifact> 8 - </component>
+15
.idea/artifacts/ssisauth_jar.xml
··· 1 + <component name="ArtifactManager"> 2 + <artifact type="jar" name="ssisauth:jar"> 3 + <output-path>$PROJECT_DIR$/out/artifacts/ssisauth_jar</output-path> 4 + <root id="archive" name="ssisauth.jar"> 5 + <element id="module-output" name="ssisauth" /> 6 + <element id="extracted-dir" path="$MAVEN_REPOSITORY$/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar" path-in-jar="/" /> 7 + <element id="extracted-dir" path="$MAVEN_REPOSITORY$/org/checkerframework/checker-qual/3.21.0/checker-qual-3.21.0.jar" path-in-jar="/" /> 8 + <element id="extracted-dir" path="$MAVEN_REPOSITORY$/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar" path-in-jar="/" /> 9 + <element id="extracted-dir" path="$MAVEN_REPOSITORY$/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar" path-in-jar="/" /> 10 + <element id="extracted-dir" path="$MAVEN_REPOSITORY$/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar" path-in-jar="/" /> 11 + <element id="extracted-dir" path="$MAVEN_REPOSITORY$/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar" path-in-jar="/" /> 12 + <element id="extracted-dir" path="$MAVEN_REPOSITORY$/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1.jar" path-in-jar="/" /> 13 + </root> 14 + </artifact> 15 + </component>
+1 -1
.idea/misc.xml
··· 13 13 </list> 14 14 </option> 15 15 </component> 16 - <component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="17" project-jdk-type="JavaSDK"> 16 + <component name="ProjectRootManager" version="2" languageLevel="JDK_19" default="true" project-jdk-name="17" project-jdk-type="JavaSDK"> 17 17 <output url="file://$PROJECT_DIR$/out" /> 18 18 </component> 19 19 </project>
SSISAuth.jar

This is a binary file and will not be displayed.

out/artifacts/SSISAuth_jar/SSISAuth.jar

This is a binary file and will not be displayed.

+2 -3
src/main/java/com/keii/ssisauth/SSISAuth.java
··· 9 9 import org.bukkit.plugin.java.JavaPlugin; 10 10 11 11 public class SSISAuth extends JavaPlugin { 12 - //public static String apiip = "https://mc.ssis.nu"; 13 - public static String apiip = "http://192.168.147.230:8080"; 12 + public static String apiip = "https://mc.ssis.nu"; 14 13 15 14 @Override 16 15 public void onEnable() { ··· 19 18 this.getCommand("reloadusers").setExecutor(new CommandReloadUsers()); 20 19 this.getCommand("helpop").setExecutor(new CommandHelpop()); 21 20 getServer().getPluginManager().registerEvents(new PlayerJoin(), this); 22 - getServer().getConsoleSender().sendMessage(ChatColor.GREEN + "SSISAuth Enabled"); 21 + getServer().getConsoleSender().sendMessage(ChatColor.GREEN + "SSISAuth Enabled!"); 23 22 getServer().dispatchCommand(getServer().getConsoleSender(), "reloadusers"); 24 23 } 25 24
+1 -1
src/main/java/com/keii/ssisauth/commands/CommandReloadUsers.java
··· 39 39 40 40 responseText = response.body(); 41 41 } catch (Exception error) { 42 - player.kick(Component.text().content("§cOj! Ser ut som att APIet har lite problem. Kontakta 22widi@stockholmscience.se").build()); 42 + player.kick(Component.text().content("§cOj! Ser ut som att APIet har lite problem. Kontakta 22widi@stockholmscience.se" + error.getMessage()).build()); 43 43 return true; 44 44 } 45 45
+1 -1
src/main/java/com/keii/ssisauth/commands/CommandWho.java
··· 34 34 35 35 responseText = response.body(); 36 36 } catch(Exception error) { 37 - sender.sendMessage(Component.text().content("§cOj! Ser ut som att APIet har lite problem. Kontakta 22widi@stockholmscience.se").build()); 37 + sender.sendMessage(Component.text().content("§cOj! Ser ut som att APIet har lite problem. Kontakta 22widi@stockholmscience.se" + error.getMessage()).build()); 38 38 return true; 39 39 } 40 40
+1 -1
src/main/java/com/keii/ssisauth/events/PlayerJoin.java
··· 44 44 45 45 responseText = response.body(); 46 46 } catch(Exception error) { 47 - e.getPlayer().kick(Component.text().content("§cOj! Ser ut som att APIet har lite problem. Kontakta 22widi@stockholmscience.se").build()); 47 + e.getPlayer().kick(Component.text().content("§cOj! Ser ut som att APIet har lite problem. Kontakta 22widi@stockholmscience.se. " + error.getMessage()).build()); 48 48 return; 49 49 } 50 50