This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Could not transfer artifact org.inspirenxe:skills:jar:1.0.0-20181005.030034-3 from/to remote (https://oss.sonatype.org/content/repositories/snapshots/): Failed to transfer file: https://oss.sonatype.org/content/repositories/snapshots/org/inspirenxe/skills/1.0.0-SNAPSHOT/skills-1.0.0-20181005.030034-3.jar. Return code is: 401, ReasonPhrase: Unauthorized. | |
Could not transfer artifact org.inspirenxe:skills:pom:1.0.0-20181005.030034-3 from/to remote (https://oss.sonatype.org/content/repositories/snapshots/): Failed to transfer file: https://oss.sonatype.org/content/repositories/snapshots/org/inspirenxe/skills/1.0.0-SNAPSHOT/skills-1.0.0-20181005.030034-3.pom. Return code is: 401, ReasonPhrase: Unauthorized. | |
Could not transfer artifact org.inspirenxe:skills:jar:sources:1.0.0-20181005.030034-3 from/to remote (https://oss.sonatype.org/content/repositories/snapshots/): Failed to transfer file: https://oss.sonatype.org/content/repositories/snapshots/org/inspirenxe/skills/1.0.0-SNAPSHOT/skills-1.0.0-20181005.030034-3-so |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"forge_marker": 1, | |
"defaults": { | |
"model": "almura:grass_path_stairs", | |
"transform": "forge:default-block" | |
}, | |
"variants": { | |
"inventory": [{}], | |
"facing": { | |
"east": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"forge_marker": 1, | |
"defaults": { | |
"model": "almura:normal/letter/0w.obj", | |
"transform": "forge:default-block" | |
}, | |
"variants": { | |
"inventory": [{}], | |
"normal": [{}], | |
"axis": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins { | |
id 'org.spongepowered.plugin' version '0.8.1' | |
} | |
group = pluginGroup | |
version = pluginVersion | |
repositories { | |
mavenCentral() | |
maven { url = 'http://files.minecraftforge.net/maven/' } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void setHourForward(World world, int hour, boolean notify) | |
{ | |
long day = getTime(world) / 24000L * 24000L; | |
long newTime = day + 24000L + hour * 1000; | |
setTime(newTime, world); | |
if (notify) { | |
ServerUtils.sendChatToAll(new TextComponentTranslation("nei.chat.time", new Object[] { Long.valueOf(getTime(world) / 24000L), Integer.valueOf(hour) })); | |
} | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import "theme_variables"; | |
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700); | |
// ###################################### | |
// ### CONFIG | |
// Annoying purple highlight for pinned topic | |
$highlighted_topic_id: 2130; | |
// ###################################### |