mirror of
https://github.com/ClassiCube/MCGalaxy.git
synced 2025-09-15 18:28:11 -04:00
Release 1.8.7.4
This commit is contained in:
parent
f2c9112a44
commit
31f81410f6
@ -1,3 +1,25 @@
|
||||
v 1.8.7.4
|
||||
Added: /server backup table [name], for only backing up a particular table in the database
|
||||
Added: /server backup lite, which backs up everything except undo and blockdb files
|
||||
Added: Can use + before a skin name in /skin to retrieve skin from minecraft.net's skin server instead
|
||||
Added: Can change colour and display name of bots with /color bot [name] and /nick bot [name]
|
||||
Added: /ignore titles and /ignore nicks for chat
|
||||
Added: Add /sphere circle which draws a circle
|
||||
Fixed: /highlight not showing changes after the player has previously been undone
|
||||
Fixed: Being unable to use spaces in team name
|
||||
Fixed: Failing to backup one file in /server backup crashing the whole server
|
||||
Fixed: /color not updating your own name tag colour
|
||||
Fixed: rank/rankup item vanishing from economy after server restart
|
||||
Fixed: Custom colours > 6 characters being truncated in database on mysql backend
|
||||
Fixed: Being unable to do certain /os sub-commands when the perbuild is higher than your rank
|
||||
Improved: Level sending optimised to be more responsive after /goto is first done
|
||||
Improved: Help for /os cleaned up
|
||||
Improved: Can use command aliases from IRC and console now
|
||||
Improved: Show relative time in /seen in addition to absolute time
|
||||
Improved: /centre places multiple blocks if axis length is even.
|
||||
Removed: /setpass and /resetpass, they are now part of /pass with /pass set and /pass reset
|
||||
Removed: /ozone, made it part of /zone with /zone map.
|
||||
|
||||
v 1.8.7.3
|
||||
Added: Review queue shows to appropriate staff on joining
|
||||
Added: Multiple commands in a single /mb block
|
||||
|
@ -69,7 +69,7 @@ namespace MCGalaxy.Commands {
|
||||
foreach (Group grp in Group.GroupList) {
|
||||
if (grp.Permission >= LevelPermission.Nobody) continue; // Note that -1 means max undo. Undo anything and everything.
|
||||
int count = grp.playerList.Count;
|
||||
Player.Message(p, "{0} ({1}) %S- Cmd: {2}, Undo: {3}, Perm: {4}",
|
||||
Player.Message(p, "{0} %S- Cmd: {2}, Undo: {3}, Perm: {4}",
|
||||
grp.ColoredName, count, grp.maxBlocks,
|
||||
grp.maxUndo == -1 ? "max" : grp.maxUndo.ToString(), (int)grp.Permission);
|
||||
}
|
||||
|
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
1.8.7.3
|
||||
1.8.7.4
|
@ -37,7 +37,7 @@ using System.Runtime.InteropServices;
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
[assembly: Guid("24d9085c-78ba-4f53-b69c-f2b52153683f")]
|
||||
|
||||
[assembly: AssemblyVersion("1.8.7.3")]
|
||||
[assembly: AssemblyVersion("1.8.7.4")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
|
Loading…
x
Reference in New Issue
Block a user