This file contains 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 net.minecraft.item.ItemArmor; | |
import net.minecraft.item.ItemStack; | |
/** | |
* @author Alpvax | |
* | |
*/ | |
public class ItemInvisArmour extends ItemArmor | |
{ |
This file contains 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
@SideOnly(Side.CLIENT) | |
public class OpenGuiTask implements Runnable { | |
private String modId; | |
private int guiId; | |
public OpenGuiTask(String modId, int guiId) { | |
this.modId = modId; | |
this.guiId = guiId; | |
} | |
This file contains 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
let objconsole = new Proxy(function(strs, ...args) { | |
let ret = strs.reduce((a, c, i) => { | |
if(c) a.concat(c); | |
if(i < args.length) a.concat(args[i]); | |
return a; | |
}, []); | |
return ret; | |
}, new Proxy({}, { | |
get(handler, trapkey) { | |
if(trapkey === "apply") { |
This file contains 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
export const enum ModifyType {BASE_ADD, BASE_MULTIPLY, STACKING_MULTIPLY}; | |
interface Modifier<T extends ModifyType> { | |
amount: number; | |
modType: T; | |
}; | |
interface ChangeListener { | |
(attributeInstance: Attribute, oldValue: number): void; | |
} |
This file contains 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
[29Jul2019 23:38:08.877] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--gameDir, ., --launchTarget, fmlserver, --fml.forgeVersion, 28.0.14, --fml.mcpVersion, 20190719.225934, --fml.mcVersion, 1.14.4, --fml.forgeGroup, net.minecraftforge, nogui] | |
[29Jul2019 23:38:08.881] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 3.0.2+57+a2bc918 starting: java version 1.8.0_222 by Oracle Corporation | |
[29Jul2019 23:38:08.887] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [minecraft,testharness,fmlclient,fmlserver] | |
[29Jul2019 23:38:08.895] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [] | |
[29Jul2019 23:38:08.902] [main/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [eventbus,object_holder_definalize,runtime_enum_extender,field_redirect_net.minecraft.potion.PotionEffect/Lnet/minecraft/potion/Potion;,accesstransformer,capability_injec |
This file contains 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
{ | |
"subscribed": true, | |
"ignored": false, | |
"reason": null, | |
"created_at": "2019-07-18T14:23:47Z", | |
"url": "https://api.github.com/repos/Alpvax/GoProne/subscription", | |
"repository_url": "https://api.github.com/repos/Alpvax/GoProne" | |
} |