544286bd5e
Updates .jar to 1.18, fixes formatting and fixes some warnings
2022-03-11 01:33:20 +01:00
d5296c4314
Improves formatting, removes broken comments and updates version to 1.17
2021-10-21 15:13:55 +02:00
Bradley Hilton
36f515864f
Update to 1.13
2019-04-15 11:00:17 -05:00
Bradley Hilton
72ab3dae5d
Update to the latest Minecraft version
2017-06-15 12:21:03 -05:00
graywolf336
9452bcb5a3
Fix #118 , armor being duplicated.
2016-04-02 13:40:18 -05:00
graywolf336
92e6f5e641
Fix #91 , fix #109 , and fix #100 .
...
This should work around a lot of the plugins out there which handle
inventories per world. I might have missed a few things here and there,
but that's what testing by others is for. :)
2016-03-22 12:21:20 -05:00
graywolf336
0aba5e1569
Closes #110 , add three additional variables
...
Adds %player%, %uuid%, and %reason%
2016-03-21 18:22:40 -05:00
graywolf336
f9035baa35
More work on javadoc...disable the lint for now
...
Will be enabled again when I have more time
2015-08-18 09:19:37 -05:00
graywolf336
63b43d1191
Fix javadoc build errors and fix #90
...
Attempt one at trying to fix the javadoc errors.
2015-08-18 08:49:50 -05:00
graywolf336
c4c2b30820
After transferring update the signs.
2015-06-30 14:27:44 -05:00
graywolf336
2373338770
Fix #83 , transfers failing due to various errors
...
The transfers were failing due to errors. Also fixed an api issue where
the method wasn't very descriptive.
2015-06-30 14:15:35 -05:00
graywolf336
312fe5105b
Don't throw the async jail exception, we run it sync
2015-06-10 15:31:42 -05:00
graywolf336
806176ca1c
Add the missing files, Github for windows missed it
2015-06-05 18:02:02 -05:00
graywolf336
2e492ebe74
Semantic update on the a util method
...
The name of the method(s) says the string we are checking goes first, so
make it that way.
2015-06-04 17:18:22 -05:00
graywolf336
fd2e69cb77
Broadcast now requires a permission node, fixes #54
...
The permission node is granted to everyone by default, take it away from
groups you don't want it enabled on: jail.see.broadcast
2015-06-03 00:07:21 -05:00
graywolf336
e92ec67ec9
No more async jailing, fixes #73 throws Exception
...
Added some custom exceptions to be thrown when conditions aren't met.
This might break a lot several things, will test after this build
completes but the unit tests all seemed to run fine.
2015-06-02 22:14:06 -05:00
graywolf336
ea50ecea6b
Even more javadoc fixes.
2015-05-27 12:38:44 -05:00
graywolf336
8c98977bd1
Fix some JavaDoc issues
2015-05-27 12:33:54 -05:00
graywolf336
9f6c0c4e49
Comment on why we clear cell's chest
...
Let people know in the source code why we clear out a cell's chest when
a prisoner in there is released.
2015-05-26 16:17:31 -05:00
graywolf336
25835a1702
Clear inventory only when storing, fixes #57
...
We shouldn't be clearing a prisoner's inventory on getting released from
jail if we aren't supposed to be storing it.
And update the readme file
2015-05-26 16:16:30 -05:00
graywolf336
9255141631
Explain why the gamemode setting is problematic #73
...
We should output what is problematic about it and then give them the
options available to them, since spectator was added more recently.
2015-05-26 11:39:19 -05:00
graywolf336
a5b1591dcb
Whoops, forgot this file in the previous commit.
...
Fixed!
2015-05-22 15:42:49 -05:00
graywolf336
550c7d5368
Pass the jail name and cell name to the broadcast messages, fixes #53
2015-02-25 10:13:32 -06:00
graywolf336
566c596f07
Add the reason why someone was jailed to the broadcast message, #53
2015-02-24 16:26:02 -06:00
graywolf336
88cc080f60
Add set to the jail time command and unit test it.
2015-02-20 23:10:05 -06:00
graywolf336
3570a4b0ee
Protect some of the constructors since we don't need more than one.
2015-02-13 14:34:38 -06:00
graywolf336
b23bdaa89b
Sign updates are done via the event listeners.
2015-02-10 12:16:45 -06:00
graywolf336
71a60e6ee3
Fix the spacing and clean it up.
2014-07-27 14:46:25 -05:00
graywolf336
1898121643
Simplify the language system and the language calls, also fix the
...
language system not copying over the new values when new values were
added.
2014-07-24 21:16:57 -05:00
graywolf336
709a06f330
Add an API class and also add some testing for it.
2014-07-23 16:39:45 -05:00
graywolf336
b63773c7a9
Move the timer to be async if we're using bukkit's timer.
...
This should improve the performance of the plugin even more, because it
won't do any database calls while inside the loop which is what was
usually the hang up time.
This is completely untested and possibly could throw tons of errors.
2014-07-21 19:11:12 -05:00
graywolf336
c9b0fc8480
Fix the blacklist not working or sometimes erroring out.
2014-07-14 23:47:36 -05:00
graywolf336
9e0722c218
Remove all of the types from a player's inventory when jailed and an
...
item is in their inventory.
2014-07-14 23:30:37 -05:00
graywolf336
3226515107
Don't allow players to keep their inventory from jail.
2014-07-14 23:28:01 -05:00
graywolf336
9ca8e14e29
Add a black list to storing the player's inventory.
2014-07-14 23:16:05 -05:00
graywolf336
27b557991e
Add some debugging to the jailing of a player.
2014-07-14 21:19:12 -05:00
graywolf336
049ea63102
Send a message to the unjailer when they unjail someone.
2014-07-14 21:11:46 -05:00
graywolf336
d535b758d4
Add .gitattributes
2014-06-12 10:50:53 -05:00
graywolf336
7ad5fedfd1
Work on the tests and change up some performance issues.
...
1. In the player move event we looped through the jailed players more
than once which really is an issue when you have several hundred jailed
and since the move event is called several times a second, that was a
huge performance hit.
2. Don't save the prisoner data as soon as they are jailed, we take care
of that else where with the shutting down and counting down time.
2014-05-30 15:54:11 -05:00
graywolf336
c5720ec84d
Move the handcuffing to store data per uuid.
2014-05-30 11:12:08 -05:00
graywolf336
4d4f609b82
Finish using the UUID, we are still using blocking methods.
...
I want to get fully away from blocking methods and instead make the
user/player/prisoner/whatever wait to get an answer while we retrieve
the uuid information asynchronously.
2014-04-29 13:20:33 -05:00
graywolf336
ad9c70cbbf
Readd the method I removed and also change the cells to uuid.
2014-04-29 10:53:36 -05:00
graywolf336
63e117ac72
Build will fail. Started work on converting to using uuid's internally.
...
While doing this I deleted one method that I shouldn't have, so going to
revert that. Next I have to build a method or two which will allow me to
do last known names lookups, etc. Might switch to using a library to
handle getting names async so we don't block the server up, doing this
will result in us having to recode some of the commands internally.
If you have any suggestions or questions, I'm open.
2014-04-28 23:52:52 -05:00
graywolf336
4ade1bcf38
Implement Jail Pay, this closes #11
2014-03-20 15:33:42 -05:00
graywolf336
126c1576c4
Add the jail name to the scoreboard's title.
2014-03-16 16:13:40 -05:00
graywolf336
060bb125a4
First work on converting the old global config file to the new one.
...
For #23
2014-03-14 15:15:30 -05:00
graywolf336
ec1e91cda2
Implement the usage of Scoreboards, make the language configurable.
...
Closes #15
2014-03-13 12:59:47 -05:00
graywolf336
1399f8d260
Fix some of the JavaDoc.
2014-03-11 13:03:11 -05:00
graywolf336
2027331540
When forcefully removing a prisoner, check for a cell. This closes #17
2014-03-06 11:33:24 -06:00
graywolf336
ac2c99eac3
Throw the PrisonerTransferredEvent after a player is transferred, #9 .
2014-02-15 01:01:48 -06:00