summaryrefslogtreecommitdiffstats
path: root/src/main/java/org
Commit message (Collapse)AuthorAgeLines
* Apply setLastDamageCause after processing events and the event has not been ↵feildmaster2012-07-02-1/+6
| | | | | | | | canceled. Fixes BUKKIT-1881 This allows previous causes to be available during the event, as well as making the damage cause a valid one. If EntityDamageEvent is canceled, then it's not the last DamageCause. Also prevents setting DamageCause involuntarily through construction.
* Treat ComplexParts as proxies for setLastDamageCause. Fixes BUKKIT-1821feildmaster2012-07-02-0/+11
|
* Clean entity.damage functions. Fixes BUKKIT-1822feildmaster2012-07-02-22/+7
|
* Fix deprecated spawnCreature. Fixes BUKKIT-1880Wesley Wolfe2012-07-02-1/+1
|
* Mark entities as invalid when they get despawned. Addresses BUKKIT-810Travis Watkins2012-06-28-0/+4
|
* Implement LivingEntity.hasLineOfSight. Addresses BUKKIT-1255TomyLobo2012-06-23-0/+5
|
* Deprecate spawnCreature and add spawnEntity. Addresses BUKKIT-1168V10lator2012-06-23-6/+6
|
* Trigger EntityBlockChangeEvent for Silverfish. Adds BUKKIT-1560 and BUKKIT-1593feildmaster2012-06-23-0/+7
|
* Implement plugin channel events. Addresses BUKKIT-1844Wesley Wolfe2012-06-21-2/+8
|
* Fire PlayerItemBreakEvent. Addresses BUKKIT-1600Travis Ralston2012-06-21-0/+6
|
* Clear animal owner when untamed. Fixes BUKKIT-1482Ammar Askar2012-06-20-0/+3
|
* Add query-plugins setting. Addresses BUKKIT-1781H31IX2012-06-20-0/+4
|
* Changes '/whitelist list' to ignore comments. Addresses BUKKIT-1804Jeff Wardian2012-06-14-0/+3
|
* Preserve whitelist ordering. Addresses BUKKIT-1805Jeff Wardian2012-06-14-1/+2
|
* Fire NotePlayEvent. Fixes BUKKIT-1779obnoxint2012-06-14-0/+6
|
* Support asynchronous events; Addresses BUKKIT-1212Wesley Wolfe2012-06-13-0/+4
|
* Check world before checking distance. Fixes BUKKIT-1792Wesley Wolfe2012-06-12-0/+4
|
* Launch fireballs at eye location. Fixes BUKKIT-1155feildmaster2012-06-03-2/+4
|
* Make log-strip-color a simple flag instead of a boolean.Travis Watkins2012-06-02-5/+1
|
* Resize UnsafeList to initial capacity when cleared and implement clone.Travis Watkins2012-06-01-6/+20
|
* Fix bold states while printing; Fixes BUKKIT-1716Wesley Wolfe2012-05-26-8/+8
|
* Change mapping of Gold from yellow bold to yellow; Addresses BUKKIT-1717Wesley Wolfe2012-05-26-1/+1
|
* Removed AnimalTamer cache, fixes BUKKIT-1628Wesley Wolfe2012-05-24-18/+7
|
* Fixed broken hashCode()Wesley Wolfe2012-05-24-5/+2
|
* Add in checks for potential NPEs. Fixes BUKKIT-1706 and BUKKIT-1590.Travis Watkins2012-05-24-1/+13
|
* Re-implement World.getTemperature and World.getHumidityScore_Under2012-05-23-2/+2
|
* Replace TextWrapper with simple newline splitting. Fixes BUKKIT-1662Travis Watkins2012-05-16-79/+16
| | | | | | | | | | | TextWrapper used to try to ensure a message would wrap correctly on the client by counting the width of the characters in pixels and wrapping before hitting that limit. This was needed because the client would lose color information when wrapping and could not handle long lines of text. Now that both of these problems are solved in the client we can replace TextWrapper with simple code to split the message into multiple packets on newlines and ensure chat colors carry across to the new packet.
* Fix block place protection using a larger radius. Fixes BUKKIT-1617feildmaster2012-05-16-1/+1
|
* Add option to strip color codes from server.log fileTravis Watkins2012-05-16-0/+6
|
* Update to jline 2. Fixes BUKKIT-717EdGruberman2012-05-15-28/+35
| | | | | JLine 2 allows for better color matching in the console and support for colors in console on Windows. Hopefully provides better performance as well.
* Revert "Fix potential NPE in vanish API. Fixes BUKKIT-1541"feildmaster2012-04-27-8/+0
| | | | | | This reverts commit ebf121800bd3161e4af0f6d9229ccb39c31fc278. If the handle ever becomes null we need to know about it so we can debug it further.
* Remove Player cache and edit CraftPlayer.equals to account for EntityID. ↵feildmaster2012-04-27-42/+20
| | | | Fixes BUKKIT-1541 and Addresses BUKKIT-761
* Update players when potion effects are moved from them. Fixes BUKKIT-789Travis Watkins2012-04-24-0/+5
|
* Fix potential NPE in vanish API. Fixes BUKKIT-1541Travis Watkins2012-04-24-0/+8
|
* Remove legacy Chunk cache. Fixes BUKKIT-1400feildmaster2012-04-24-20/+6
|
* We build for Java 1.5.EvilSeph2012-04-23-1/+1
|
* Add per-world spawn limits with fallback to server-wide bukkit.yml settings.Travis Watkins2012-04-23-0/+60
| | | | Fixes BUKKIT-1565
* Avoid doing unnecessary range checks when we're looping from start to end.Travis Watkins2012-04-23-0/+154
| | | | | | | | | | | | | | | | | | Make EntityLiving call AI logic every tick again. Rework PathfinderGoalSelector logic. Adds UnsafeList for use in places where we use ArrayList and know we won't get index out of range errors. Added usage to World's tickEntities, Chunk's entitySlices to speed up searching for entities, and to PathfinderGoalSelector to speed up dealing with AI goals. Reworked logic in PathfinderGoalSelector with help from fullwall. This code no longer uses an extra ArrayList for setting up goals and only updates which goals should be run every other time it is called. Removed only calling PathfinderGoalSelector every other tick from EntityLiving as we now only setup new goals every other tick. This ensures existing goals run every tick to properly update mob movement.
* Made permissions.yml registration easier; Addresses BUKKIT-1499Wesley Wolfe2012-04-15-5/+5
| | | | The permissions.yml now behaves similar to a plugin.yml
* Properly call EntityDeathEvent for mobs. Fixes BUKKIT-1519feildmaster2012-04-15-0/+5
|
* Persist PlayerDeathEvent values. Fixes BUKKIT-1521feildmaster2012-04-14-3/+16
|
* SpawnRadius should only apply to main world. Fixes BUKKIT-1427feildmaster2012-04-02-0/+1
|
* Add BlockRedstoneEvent to Redstone Lamps, Addresses BUKKIT-1431feildmaster2012-04-02-0/+6
|
* Fixed interacting with Air returning a false block.feildmaster2012-04-01-1/+1
|
* Fixed breaking at world height in creative. Fixes BUKKIT-997feildmaster2012-03-31-1/+1
|
* Reverting the Drop API for now, we need to re-evalute this as it is causing ↵Warren Loo2012-03-27-49/+1
| | | | | | | | | | | | | | | | | | too many issues and blocking releases. This reverts commits: - d2d03afc8854394aeefb40ea5ebf224c8032b19f - 6245746e91123dd8ef70e5f15b7cdfc7e36d8e8c - 41fae5c613e9e69a8f6bdf33b23bb09d7f407433 - c34bdecab42cf4098054a5ea43e1c2958d44ae92 - d7445084ac9a90fa0b66d8b050b8d0d2a062eaf3 - 6a6ed2e6ae2328a8a791bcc6857c44dc6c6a7030 - a783bc4dc95da8e26c673abe48fad96b550aba28 - cb50fd68766df8e07631ba5be85759f8257e8068 - 34dfff2ad5c407c712b2783f02960aac5e8649f2 - f33b513820de987b49a4338e85df80968217a601 - 5fd9fdfde055e6eb6a83db246d009b69377b7c94 - 2795b116f40d06551fbb7b96d1963c0ddbeac384
* [Bleeding] Allow CraftItem to be backed by non-EntityItems. Fixes BUKKIT-1351feildmaster2012-03-26-7/+7
|
* [Bleeding] Fixed potions throwing double events. Fixes BUKKIT-1332feildmaster2012-03-26-4/+7
|
* Refactor code to be more efficient.feildmaster2012-03-25-10/+9
|
* [Bleeding] Fixed item duping in certain occasions. Fixes BUKKIT-1310feildmaster2012-03-25-5/+6
|