File tree 1 file changed +2
-3
lines changed
src/main/java/com/hlysine/create_power_loader/command 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,6 @@ private static void fillReport(ServerLevel level,
99
99
int blue = 0xD3DEDC ;
100
100
int darkBlue = 0x5955A1 ;
101
101
int orange = 0xFFAD60 ;
102
- int darkOrange = 0xB27943 ;
103
102
104
103
List <ChunkLoader > loaders = new LinkedList <>();
105
104
if (mode == null ) {
@@ -165,7 +164,7 @@ private static void fillReport(ServerLevel level,
165
164
Pair <ResourceLocation , BlockPos > carriageLocation = carriageLoader .getLocation ();
166
165
chatRaw .accept (
167
166
text (" Carriage " + (i + 1 ) + " - " , gray )
168
- .append (text (carriageLoader .getLoaderType ().getSerializedName () + " - " , darkOrange ))
167
+ .append (text (carriageLoader .getLoaderType ().getSerializedName () + " - " , orange ))
169
168
.append (text (carriageLoader .getForcedChunks ().size () + " chunks" , colorForCount (carriageLoader .getForcedChunks ().size ())))
170
169
);
171
170
chatRaw .accept (
@@ -178,7 +177,7 @@ private static void fillReport(ServerLevel level,
178
177
chatRaw .accept (
179
178
text (" " , gray )
180
179
.append (text ("Attached - " , gray ))
181
- .append (text (attachment .type ().getSerializedName (), darkOrange ))
180
+ .append (text (attachment .type ().getSerializedName (), orange ))
182
181
);
183
182
chatRaw .accept (
184
183
text (" ↳ " , darkBlue )
You can’t perform that action at this time.
0 commit comments