Skip to content

Commit

Permalink
Revert "fixed #1 (Extension part)"
Browse files Browse the repository at this point in the history
This reverts commit 9c73df5
  • Loading branch information
hugeBlack committed Feb 24, 2021
1 parent 9c73df5 commit 8e96540
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx1G
loader_version=0.11.0

# Mod Properties
mod_version = 1.0.3
mod_version = 1.0.2
maven_group = com.aigch.hugeblack
archives_base_name = mcfdebugger

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ public abstract class CommandFunctionManagerHook {
MinecraftServer server;
@Shadow
@Final
ArrayDeque<CommandFunctionManager.Entry> chain;
ArrayDeque<CommandFunctionManager.Entry> chain = new ArrayDeque();
@Shadow
@Final
List<CommandFunctionManager.Entry> pending;
List<CommandFunctionManager.Entry> pending = Lists.newArrayList();
@Shadow
FunctionLoader field_25333;

Expand Down

0 comments on commit 8e96540

Please sign in to comment.