mirror of
https://github.com/eaglerforge/EaglerForgeInjector
synced 2025-07-23 14:11:16 -09:00
add warnings
This commit is contained in:
parent
85ac018b34
commit
f20ae021e9
@ -44,7 +44,7 @@ function registerSteveClientSide() {
|
|||||||
ModAPI.util.str("steve")
|
ModAPI.util.str("steve")
|
||||||
);
|
);
|
||||||
blockClass.staticMethods.registerBlock0.method(
|
blockClass.staticMethods.registerBlock0.method(
|
||||||
198, //use blockid 198
|
198, //use blockid 198. MAKE SURE TO CHANGE IF YOU ARE MAKING A MOD USING THIS, MAXIMUM BLOCK ID IS 4095.
|
||||||
ModAPI.util.str("steve"),
|
ModAPI.util.str("steve"),
|
||||||
block_of_steve
|
block_of_steve
|
||||||
);
|
);
|
||||||
@ -112,7 +112,7 @@ function registerSteveServerSide() {
|
|||||||
ModAPI.util.str("steve")
|
ModAPI.util.str("steve")
|
||||||
);
|
);
|
||||||
blockClass.staticMethods.registerBlock0.method(
|
blockClass.staticMethods.registerBlock0.method(
|
||||||
198,
|
198, //use blockid 198. MAKE SURE TO CHANGE IF YOU ARE MAKING A MOD USING THIS, MAXIMUM BLOCK ID IS 4095.
|
||||||
ModAPI.util.str("steve"),
|
ModAPI.util.str("steve"),
|
||||||
block_of_steve
|
block_of_steve
|
||||||
);
|
);
|
||||||
|
@ -26,7 +26,7 @@ function registerSteveClientSide() {
|
|||||||
ModAPI.util.str("steve")
|
ModAPI.util.str("steve")
|
||||||
).$setCreativeTab(creativeBlockTab);
|
).$setCreativeTab(creativeBlockTab);
|
||||||
blockClass.staticMethods.registerBlock0.method(
|
blockClass.staticMethods.registerBlock0.method(
|
||||||
198, //use blockid 198
|
198, //use blockid 198. MAKE SURE TO CHANGE IF YOU ARE MAKING A MOD USING THIS, MAXIMUM BLOCK ID IS 4095.
|
||||||
ModAPI.util.str("steve"),
|
ModAPI.util.str("steve"),
|
||||||
block_of_steve
|
block_of_steve
|
||||||
);
|
);
|
||||||
@ -98,7 +98,7 @@ function registerSteveServerSide() {
|
|||||||
ModAPI.util.str("steve")
|
ModAPI.util.str("steve")
|
||||||
).$setCreativeTab(creativeBlockTab);
|
).$setCreativeTab(creativeBlockTab);
|
||||||
blockClass.staticMethods.registerBlock0.method(
|
blockClass.staticMethods.registerBlock0.method(
|
||||||
198,
|
198, //use blockid 198. MAKE SURE TO CHANGE IF YOU ARE MAKING A MOD USING THIS, MAXIMUM BLOCK ID IS 4095.
|
||||||
ModAPI.util.str("steve"),
|
ModAPI.util.str("steve"),
|
||||||
block_of_steve
|
block_of_steve
|
||||||
);
|
);
|
||||||
|
@ -56,7 +56,7 @@
|
|||||||
ModAPI.util.str("unluckiness")
|
ModAPI.util.str("unluckiness")
|
||||||
);
|
);
|
||||||
blockClass.staticMethods.registerBlock0.method(
|
blockClass.staticMethods.registerBlock0.method(
|
||||||
544,
|
544, //use blockid 544. MAKE SURE TO CHANGE IF YOU ARE MAKING A MOD USING THIS, MAXIMUM BLOCK ID IS 4095.
|
||||||
ModAPI.util.str("unluckiness"),
|
ModAPI.util.str("unluckiness"),
|
||||||
block_of_unluckiness
|
block_of_unluckiness
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user