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
# This is the main configuration file for Paper. | |
# As you can see, there's tons to configure. Some options may impact gameplay, so use | |
# with caution, and make sure you know what each option does before configuring. | |
# | |
# If you need help with the configuration or have any questions related to Paper, | |
# join us in our IRC channel. | |
# | |
# IRC: #paper @ irc.spi.gt ( http://irc.spi.gt/iris/?channels=paper ) | |
# Wiki: https://paper.readthedocs.org/ | |
# Paper Forums: https://aquifermc.org/ |
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
<Macro Site $domain> | |
Use Log $domain | |
Use ForceDomain $domain | |
Use GrantAccess / | |
</Macro> | |
<Macro Domain $domain> | |
ServerName $domain | |
ServerAlias www.$domain | |
</Macro> |
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
// | |
// Created by Aikar on 4/2/2023. | |
// | |
#ifndef SAOMEGA_BLUEPRINTCACHE_H | |
#define SAOMEGA_BLUEPRINTCACHE_H | |
#include "includes.h" | |
class BlueprintCache { |
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
/* | |
* Copyright (c) 2016. Starlis LLC / dba Empire Minecraft | |
* | |
* This source code is proprietary software and must not be redistributed without Starlis LLC's approval | |
* | |
*/ | |
package com.empireminecraft.util.serialization; | |
import com.empireminecraft.util.ItemUtil; |
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
/* | |
* Copyright (c) 2016. Starlis LLC / dba Empire Minecraft | |
* | |
* This source code is proprietary software and must not be redistributed without Starlis LLC's approval | |
* | |
*/ | |
package com.empireminecraft.commands; | |
import com.empireminecraft.config.EmpireServer; |
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
/* | |
* TaskChain for Bukkit | |
* | |
* Written by Aikar <aikar@aikar.co> | |
* https://aikar.co | |
* https://starlis.com | |
* | |
* @license MIT | |
*/ |
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
From da976f7ed15b762ef138b55b9c711184363cf364 Mon Sep 17 00:00:00 2001 | |
From: Aikar <aikar@aikar.co> | |
Date: Thu, 30 Aug 2018 22:38:31 -0400 | |
Subject: [PATCH] Async Chunk Loading and Generation | |
--- | |
.../java/net/minecraft/server/ChunkMap.java | 3 +- | |
.../minecraft/server/ChunkProviderServer.java | 24 +- | |
.../minecraft/server/ChunkRegionLoader.java | 2 +- | |
.../minecraft/server/DataPaletteBlock.java | 4 + |
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
#!/bin/bash | |
applied=$(echo $1 | sed 's/.patch$/-applied\.patch/g') | |
if [ "$1" == "--reset" ]; then | |
git am --abort | |
git reset --hard | |
git clean -f | |
exit 0 | |
fi | |
if [ ! -f "$1" ]; then | |
echo "No patch found $1"; |
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
var colors = { | |
0: "\033[0;30m", /* 00 BLACK 0x30 */ | |
1: "\033[0;34m", /* 01 BLUE 0x31 */ | |
2: "\033[0;32m", /* 02 GREEN 0x32 */ | |
3: "\033[0;36m", /* 03 CYAN 0x33 */ | |
4: "\033[0;31m", /* 04 RED 0x34 */ | |
5: "\033[0;35m", /* 05 PURPLE 0x35 */ | |
6: "\033[0;33m", /* 06 GOLD 0x36 */ | |
7: "\033[0;37m", /* 07 GREY 0x37 */ | |
8: "\033[1;30m", /* 08 DGREY 0x38 */ |
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
commit ba4afed44f76c2d0b8ba63439ecc28b6c2212d05 | |
Author: Aikar <aikar@aikar.co> | |
Date: Fri Feb 15 01:08:19 2019 -0500 | |
Allow Saving of Oversized Chunks | |
The Minecraft World Region File format has a hard cap of 1MB per chunk. | |
This is due to the fact that the header of the file format only allocates | |
a single byte for sector count, meaning a maximum of 256 sectors, at 4k per sector. | |
NewerOlder