fixed typo - forg -> org

This commit is contained in:
walterhiggins 2013-03-09 22:13:36 +00:00
parent 66abbfc142
commit 89b2dca496
2 changed files with 1 additions and 3 deletions

View file

@ -231,7 +231,6 @@ The refresh() function will ...
See [issue #69][issue69] for more information.
[issue69]: https://github.com/walterhiggins/ScriptCraft/issues/69
Drone.spiral_stairs() method
============================
Constructs a spiral staircase with slabs at each corner.

View file

@ -665,11 +665,10 @@ The refresh() function will ...
See [issue #69][issue69] for more information.
[issue69]: https://github.com/walterhiggins/ScriptCraft/issues/69
***/
global.refresh = function(){
__plugin.pluginLoader.disablePlugin(__plugin);
forg.bukkit.event.HandlerList["unregisterAll(org.bukkit.plugin.Plugin)"](__plugin);
org.bukkit.event.HandlerList["unregisterAll(org.bukkit.plugin.Plugin)"](__plugin);
__plugin.pluginLoader.enablePlugin(__plugin);
};