Commit Graph

59 Commits

Author SHA1 Message Date
cac81f0420 Move clearforce into clear and use -f (-force) to forcefully do it.
It does still require the permission `jail.command.jailclearforce` and
if it isn't provided then it will fall back to regular clearing.
2014-07-24 23:29:53 -05:00
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
6b8dec6c7b Work on some unit tests for #7 and reorganize part of the config. 2014-07-22 20:58:05 -05:00
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
1c92f90ccc Update notifications! For dev, stable-dev, and bukkit channels! :) 2014-07-21 18:17:30 -05:00
1181f33693 It is jail createcells not jail cellcreate 2014-07-15 20:19:35 -05:00
8a7a9cefef Make the jail stick manager/creation smarter and fix jailing via jail
sticks, as it wasn't working at all.
2014-07-15 01:05:46 -05:00
a5bf89b07e Don't allow jailing in unloaded worlds and don't allow joining while
jailed in unloaded worlds.
2014-07-14 22:53:48 -05:00
d535b758d4 Add .gitattributes 2014-06-12 10:50:53 -05:00
3e54d79dd3 Try to lower the amount of time spent on each move event as mentioned in
issue #26
2014-05-08 19:30:20 -05:00
f1dadaaae0 Lookup the records by username and get the UUID ourself. 2014-04-30 13:18:56 -05:00
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
ad9c70cbbf Readd the method I removed and also change the cells to uuid. 2014-04-29 10:53:36 -05:00
a3d9a54ff0 First attempt to use UUID, not tested one ounce.
And I imagine the unit tests are going to fail.
2014-04-21 22:58:15 -05:00
4ade1bcf38 Implement Jail Pay, this closes #11 2014-03-20 15:33:42 -05:00
fe7cb9f5a5 Add a new command /jail time which has easy access for add/subtract
time from a prisoner's sentence.

This command could be useful for commandblocks or something else, as it
does not need a player context. This closes Bukkit Dev Ticket:
http://dev.bukkit.org/bukkit-plugins/jail/tickets/432/
2014-03-15 14:40:50 -05:00
c478ef2544 Actually reload the jail sticks when we reload the plugin via command. 2014-03-14 15:20:50 -05:00
060bb125a4 First work on converting the old global config file to the new one.
For #23
2014-03-14 15:15:30 -05:00
ec1e91cda2 Implement the usage of Scoreboards, make the language configurable.
Closes #15
2014-03-13 12:59:47 -05:00
39cc95b96d The jail stick is now usable.
Closes #16.
2014-03-08 23:39:11 -06:00
2ec69c5650 Finish adding the jailrecord command, this closes #12. 2014-03-06 18:10:53 -06:00
e54dbc8a8c Fix the spacing on the listcells 2014-02-16 16:53:41 -06:00
43eb68811b Create cell is not createcells 2014-02-16 16:05:42 -06:00
620c57cdc9 Add a PrePrisonerTransferredEvent #9. 2014-02-15 00:52:25 -06:00
2684fa9bd4 Transferring of prisoners to different jails works, finalizes #5. 2014-02-14 23:38:13 -06:00
47fba5ab79 Allow /jail status and also send them a message when they check it 2014-02-14 23:34:41 -06:00
52456edc6b Finish up the confirmations for #3. 2014-02-14 21:37:39 -06:00
82a40c5d8e Add the confirmation to the clearforce command, continued work on #3. 2014-02-14 18:02:08 -06:00
54bea41d05 Further work on #3, lots of logic work figured out. The clear command
uses the confirmation method now, just need to test it.
2014-02-13 13:40:23 -06:00
2036a311ac Remove the removing cell command, that is replaced with jaildeletecell. 2014-02-13 13:02:15 -06:00
efcd517360 Add the /jail status command. 2014-02-13 12:00:21 -06:00
78cc20c2c1 Add the removing of a jail via the ``/jail delete`` command. 2014-02-13 11:26:42 -06:00
950eb638b8 Add the command to transfer all the prisoners in one jail to another. 2014-02-12 15:52:10 -06:00
b1ca15d10c Jail check is now for one player only, use jail list <jail> for all. 2014-02-12 15:35:29 -06:00
94111955a4 Add deletecell and deletecells.
The deletion of cells is very spammy, might have to change later on down
the road.
2014-02-12 15:31:02 -06:00
5256f05fe3 Fix the no cell found message not being correct. 2014-02-12 13:48:45 -06:00
f774bf335f Send a message to the sender when they transfer someone...hehe whoops.
This finalizes the development piece of #5, just need to test it.
2014-02-12 13:42:45 -06:00
65f4f47cca Convert the transfer jewel using args to arguments, removing 'transfer' 2014-02-12 13:27:22 -06:00
c6988edd4f Check for null on the transfer arguments. 2014-02-12 13:14:32 -06:00
30b148f7ca Don't use the actual args but instead use our faked arguments. 2014-02-12 13:05:21 -06:00
5acfa351d2 Params are not empty any more but null. 2014-02-12 12:58:23 -06:00
48a7435fbe Fix the tests failing and also fix the jail command not doing anything. 2014-02-11 20:44:19 -06:00
58bc007b3e Remove all reference to jcommands and use jewelcli.
This commit also cleans up the jail command to be quicker as the old way
I was doing it just didn't work nor was it good to go for production.
This method also utilizes the CommandInfo's pattern to match
subcommands, like it was meant to be used for. Completely untested.
2014-02-11 20:34:35 -06:00
b9f01dd599 Remove extra space and add mins after the minutes 2014-02-10 15:10:22 -06:00
d8611a51bc Add the missing space between jailer and remaining time 2014-02-10 14:56:25 -06:00
96a58aa3df Fix the header being incorrect when listing prisoners 2014-02-10 14:55:16 -06:00
7ce81c774f Send a message when there are no prisoners in a jail. 2014-02-10 14:50:41 -06:00
508366468a List all the prisoners in a jail if the jail is provided on /jail list 2014-02-10 14:40:27 -06:00
05695ce969 Tell the sender the player's name they sent back if already jailed. 2014-02-10 14:06:22 -06:00
e34c1d0990 Allow usage of -p jail players who's names are subcommands.
/jail -p version -r Having a strange name.
2014-02-10 13:35:43 -06:00