md_5
aa008dff0f
Update to Minecraft 1.9
2016-03-01 09:32:45 +11:00
Thinkofdeath
f27339caf8
SPIGOT-977: Use vanilla's handling for command messages for vanilla commands
...
Fixes gamerules that control the output of those messages
2015-07-08 23:19:21 +01:00
Cory Redmond
7722428895
Add the ability for commandblocks to be sent messages via the API.
2015-04-19 09:15:15 +10:00
Thinkofdeath
a25c96eda7
SPIGOT-742: Throw an exception instead of passing null when the sender cannot be converted
2015-04-13 11:51:04 +01:00
Thinkofdeath
d8a9c7be42
Update to Minecraft 1.8.3
2015-03-04 09:48:58 +00:00
Thinkofdeath
15e81cf551
SPIGOT-449: Fix the wrong caller being used in chain execute commands
2015-01-25 15:17:48 +00:00
Thinkofdeath
5b92dc3d0a
Whoops missed a file
2015-01-04 23:36:55 +00:00
Thinkofdeath
64157d1de5
SPIGOT-189: Remove ListenerWrapper in favour of just doing it in EntityPlayer
2014-12-12 19:27:37 +00:00
Thinkofdeath
54888dfafb
Wrap player's ICommandListener so that our permission system can handle permission
...
for vanilla commands
2014-12-12 10:33:54 +00:00
Thinkofdeath
b13fd35165
Re-enable selectors for players and the console using vanilla commands
2014-12-11 20:05:48 +00:00
Thinkofdeath
14d69f1513
Remove old dev comments
2014-12-11 00:40:25 +00:00
Thinkofdeath
cc2b09de09
Add basic support for executing commands from signs
...
TODO: Wrap the player in to allow for plugins to handle it better
2014-12-05 23:10:47 +00:00
Thinkofdeath
24557bc2b3
Update to Minecraft 1.8
...
For more information please see http://www.spigotmc.org/
2014-11-28 17:16:30 +11:00
Travis Watkins
dbb5e6e3cd
Update CraftBukkit to Minecraft 1.7.10
2014-07-08 14:31:10 -05:00
WolfieMario
4873b12890
Increment loop index whether or not command succeeded. Fixes BUKKIT-5455
...
When VanillaCommandWrapper dispatches a command containing a
PlayerSelector wtih c>-1 (implicitly true for @a), it loops over the
selected players and exectures the command with each player. However, the
loop index is only incremented if the command fails. As a result, a
successful command is repeated on the same player indefinitely, locking up
the server. This commit fixes the issue by incrementing the loop index
regardless of whether the command succeeds, ensuring the command is only
executed once per player identified by the PlayerSelector.
2014-03-22 13:55:20 -06:00
Nate Mortensen
385ace970e
Update CraftBukkit to Minecraft 1.7.5
2014-03-21 23:56:34 -04:00
EvilSeph
8234570795
Rename Minecraft command permission nodes to meet fallback spec.
2014-02-11 00:48:39 -05:00
t00thpick1
553acdf0cd
[Bleeding] Implement Mojang command fallback system. Adds BUKKIT-5385
2014-02-08 03:17:14 -06:00
mbax
2726696652
Update CraftBukkit to Minecraft 1.7.2
2013-11-30 19:26:12 -06:00
Phillip Schichtel
ffcd0f4502
Provide a tab completion handler for JLine. Adds BUKKIT-4168
2013-09-10 20:57:31 -05:00
Nate Mortensen
6c09066e22
Update CraftBukkit to 1.6.1
2013-07-01 12:10:06 -05:00
Travis Watkins
5f089137ee
Cleanup comments, formatting, etc
2013-03-25 00:51:36 -05:00
James Clarke
3ad423af07
ANSI color codes now reset text attributes. Fixes BUKKIT-3508
...
The client resets all formatting after a color code is received, but currently the ANSI codes do not, and so the console does not accurately reflect the appearance of the formatted text. Instead, the ANSI color codes are now set to reset all text attributes.
2013-03-23 00:26:22 -04:00
Travis Watkins
5df704bf5a
Use name given to command block instead of "@". Fixes BUKKIT-3803
2013-03-17 20:19:32 -05:00
Travis Watkins
83d29e461c
Update CraftBukkit to Minecraft 1.5
2013-03-15 13:28:59 -05:00
Travis Watkins
46d7cd1e05
Use BlockCommandSender for dispatching Command block commands
...
Also allow commands that don't start with a / to match vanilla behavior
2012-10-31 06:37:46 -05:00
Travis Watkins
60819c6693
Update CraftBukkit to Minecraft 1.4(.2).
2012-10-27 22:19:03 -04:00
Wesley Wolfe
e2b1514daf
Bulk pending cleanup.
2012-09-09 23:19:28 -05:00
feildmaster
a43d621c01
Update CraftBukkit to Minecraft 1.3.1
2012-08-02 04:58:50 -05:00
Wesley Wolfe
266212f9f8
Fix bold states while printing; Fixes BUKKIT-1716
2012-05-26 15:32:38 -05:00
Wesley Wolfe
25cfdfa05e
Change mapping of Gold from yellow bold to yellow; Addresses BUKKIT-1717
2012-05-26 15:27:55 -05:00
EdGruberman
31d488a386
Update to jline 2. Fixes BUKKIT-717
...
JLine 2 allows for better color matching in the console and support for
colors in console on Windows. Hopefully provides better performance as well.
2012-05-15 23:27:51 -05:00
rmichela
b5e92871eb
[Bleeding] Added ConversationAbandonedEvent and supporting infrastructure. Whenever a conversation exits, the ConversationAbandonedEvent is triggered with details about how the conversation ended and what, if anything caused it to end. Fixes BUKKIT-986
2012-03-08 01:29:49 -05:00
rmichela
1161de3f63
[Bleeding] Added Conversations API. Addresses BUKKIT-864
2012-03-01 04:33:59 -05:00
rmichela
818a61040e
[Bleeding] Added Help API. Addresses BUKKIT-863
2012-03-01 04:33:58 -05:00
Erik Broes
a4ce846d07
Fix formatting.
2012-01-15 10:54:57 +01:00
Nathan Adams
897551e39e
Update to mc-dev rename revision 01
2012-01-12 15:27:39 +00:00
Nathan Adams
3648fb571d
Make rcon .sendMessage each write on a new line. This fixes BUKKIT-353. Thanks to ks07 for the pull req.
2011-12-19 16:22:59 +00:00
Andrew Ardill
4e318dd1c8
Implement new interface ConsoleCommandSender.
...
Also use abstracted ServerCommandSender to reduce complexity! Yay!
2011-12-07 17:46:30 +11:00
Andrew Ardill
93a4a9ba8c
Teach MinecraftServer how to handle Remote Console commands.
...
This fixes BUKKIT-220. Thanks for the help bawoodruff!
2011-12-07 17:45:50 +11:00
Dinnerbone
44136f2e7d
Blocked access to ColouredConsoleSenders constructor, implemented getConsoleSender
2011-09-24 23:14:13 +01:00
EvilSeph
c1e85002b6
Added missed colors to ColouredConsoleSender. Thanks flames!
2011-08-12 21:19:52 -04:00
Erik Broes
9adc03abab
Generic cleanup of the org.bukkit.craftbukkit classes.
2011-06-12 12:51:54 +02:00
stevenh
8b0924bbb4
Fixed duplicate console and player messages when built in server commands where used or an unknown command was issued
2011-05-22 20:30:01 +01:00
Dinnerbone
57338bee52
Much better console interaction. History, no more losing the command, colours, inline editing, etc. Shorter log output to console (but not to file).
2011-02-25 16:12:38 +00:00