mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-27 01:05:38 +00:00
Replaced last instances of DarthSalamon with Prozza
This commit is contained in:
parent
87fd8a165c
commit
7d675923db
@ -2,6 +2,6 @@
|
|||||||
|
|
||||||
TotalFreedomMod is a CraftBukkit server plugin designed primarily to support the [Official TotalFreedom Minecraft Server](http://totalfreedom.me/). However, you are more than welcome to adapt the source for your own server.
|
TotalFreedomMod is a CraftBukkit server plugin designed primarily to support the [Official TotalFreedom Minecraft Server](http://totalfreedom.me/). However, you are more than welcome to adapt the source for your own server.
|
||||||
|
|
||||||
This plugin was originally coded by StevenLawson (Madgeek1450), with Jerom van der Sar (DarthSalamon) becoming heavily involved in its development some time later. It consists of over 85 custom coded commands and a large variety of distinguishable features not included in any other plugin. The plugin has since its beginning grown immensely. Together, with the main TotalFreedom server, TotalFreedomMod has a long-standing reputation of effectiveness whilst maintaining a clear feeling of openness towards the administrators and the players themselves.
|
This plugin was originally coded by StevenLawson (Madgeek1450), with Jerom van der Sar (Prozza) becoming heavily involved in its development some time later. It consists of over 85 custom coded commands and a large variety of distinguishable features not included in any other plugin. The plugin has since its beginning grown immensely. Together, with the main TotalFreedom server, TotalFreedomMod has a long-standing reputation of effectiveness whilst maintaining a clear feeling of openness towards the administrators and the players themselves.
|
||||||
|
|
||||||
Please see [CONTRIBUTING.md](CONTRIBUTING.md) if you are interested in developing TotalFreedomMod. For information on how TotalFreedomMod is licensed, please see [LICENSE.md](LICENSE.md).
|
Please see [CONTRIBUTING.md](CONTRIBUTING.md) if you are interested in developing TotalFreedomMod. For information on how TotalFreedomMod is licensed, please see [LICENSE.md](LICENSE.md).
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
ips:
|
ips:
|
||||||
- '192.168.1.254:Notch:DarthSalamon:0:IP ban example'
|
- '192.168.1.254:Notch:Prozza:0:IP ban example'
|
||||||
|
|
||||||
uuids:
|
uuids:
|
||||||
- '245d2f30-61fb-4840-9cd3-298b3920f4a4:Cobrex:DarthSalamon:0:UUID ban example'
|
- '245d2f30-61fb-4840-9cd3-298b3920f4a4:Cobrex:Prozza:0:UUID ban example'
|
@ -43,7 +43,7 @@ public class TFM_Config extends YamlConfiguration // BukkitLib @ https://github.
|
|||||||
*
|
*
|
||||||
* <p>Example:
|
* <p>Example:
|
||||||
* <pre>
|
* <pre>
|
||||||
* YamlConfig config = new YamlConfig(this, new File(plugin.getDataFolder() + "/players", "DarthSalamon.yml"), false);
|
* YamlConfig config = new YamlConfig(this, new File(plugin.getDataFolder() + "/players", "Prozza.yml"), false);
|
||||||
* config.load();
|
* config.load();
|
||||||
* </pre></p>
|
* </pre></p>
|
||||||
*
|
*
|
||||||
|
@ -16,7 +16,7 @@ public class TFM_Ban
|
|||||||
|
|
||||||
static
|
static
|
||||||
{
|
{
|
||||||
// 192.168.1.254:LocalHost:DarthSalamon:0:none
|
// 192.168.1.254:LocalHost:Prozza:0:none
|
||||||
// 127.0.*.*:TestUserName:BannedByNotch:123567:Test reason
|
// 127.0.*.*:TestUserName:BannedByNotch:123567:Test reason
|
||||||
IP_BAN_REGEX = Pattern.compile(
|
IP_BAN_REGEX = Pattern.compile(
|
||||||
"^((?:(?:\\*|(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?))\\.){3}(?:\\*|(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)))"
|
"^((?:(?:\\*|(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?))\\.){3}(?:\\*|(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)))"
|
||||||
@ -24,7 +24,7 @@ public class TFM_Ban
|
|||||||
+ ":([\\w]+)"
|
+ ":([\\w]+)"
|
||||||
+ ":(\\d+)"
|
+ ":(\\d+)"
|
||||||
+ ":([\\s\\S]+)$");
|
+ ":([\\s\\S]+)$");
|
||||||
// 245d2f30-61fb-4840-9cd3-298b3920f4a4:Cobrex:DarthSalamon:0:Example reason
|
// 245d2f30-61fb-4840-9cd3-298b3920f4a4:Cobrex:Prozza:0:Example reason
|
||||||
UUID_BAN_REGEX = Pattern.compile(
|
UUID_BAN_REGEX = Pattern.compile(
|
||||||
"^([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})"
|
"^([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})"
|
||||||
+ ":([\\w\\s]+)"
|
+ ":([\\w\\s]+)"
|
||||||
|
@ -326,7 +326,7 @@ public class TFM_Util
|
|||||||
block.setType(Material.SKULL);
|
block.setType(Material.SKULL);
|
||||||
final Skull skull = (Skull) block.getState();
|
final Skull skull = (Skull) block.getState();
|
||||||
skull.setSkullType(SkullType.PLAYER);
|
skull.setSkullType(SkullType.PLAYER);
|
||||||
skull.setOwner("DarthSalamon");
|
skull.setOwner("Prozza");
|
||||||
skull.update();
|
skull.update();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -77,7 +77,7 @@ public class TotalFreedomMod extends JavaPlugin
|
|||||||
@Override
|
@Override
|
||||||
public void onEnable()
|
public void onEnable()
|
||||||
{
|
{
|
||||||
TFM_Log.info("Made by Madgeek1450 and DarthSalamon");
|
TFM_Log.info("Made by Madgeek1450 and Prozza");
|
||||||
TFM_Log.info("Compiled " + buildDate + " by " + buildCreator);
|
TFM_Log.info("Compiled " + buildDate + " by " + buildCreator);
|
||||||
|
|
||||||
final TFM_Util.MethodTimer timer = new TFM_Util.MethodTimer();
|
final TFM_Util.MethodTimer timer = new TFM_Util.MethodTimer();
|
||||||
|
@ -5,8 +5,8 @@
|
|||||||
clean_threshold_hours: 168
|
clean_threshold_hours: 168
|
||||||
|
|
||||||
admins:
|
admins:
|
||||||
b3c3b05a-a52d-33a6-a9c6-6e5063e00f0a:
|
f9a1982e-252e-4ed3-92ed-52b0506a39c9:
|
||||||
last_login_name: DarthSalamon
|
last_login_name: Prozza
|
||||||
is_activated: true
|
is_activated: true
|
||||||
is_senior_admin: true
|
is_senior_admin: true
|
||||||
is_telnet_admin: true
|
is_telnet_admin: true
|
||||||
|
Loading…
Reference in New Issue
Block a user