Skip to content

Commit

Permalink
Release 0.0.4 (#6)
Browse files Browse the repository at this point in the history
* Version 0.0.4

* Restructured folders.
* New sorting of object files.
* Refined object filters to eliminate more not static objects.

* Updating changelog.md

* Fixed an error in syntax for update script

* Fixing error in  script
  • Loading branch information
LtRipley36706 authored May 6, 2017
1 parent 7e5a565 commit fc3b173
Show file tree
Hide file tree
Showing 117 changed files with 2,928 additions and 1,613 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## ACE-World Specific
#################
Database/combined/*.sql
Database/3-Overwrites/dereth-museum/combined/*.sql
Database/5-Overwrites/dereth-museum/combined/*.sql

#################
## Eclipse
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ ALTER TABLE `ace_portal_object`
--
-- View structure for view `vw_ace_portal_object`
--
DROP TABLE IF EXISTS `vw_ace_portal_object` */;
DROP VIEW IF EXISTS `vw_ace_portal_object` */;
DROP TABLE IF EXISTS `vw_ace_portal_object`;
DROP VIEW IF EXISTS `vw_ace_portal_object`;

CREATE VIEW `vw_ace_portal_object`
AS (select `ao`.`baseAceObjectId` AS `baseAceObjectId`,
Expand Down Expand Up @@ -131,4 +131,4 @@ CREATE VIEW `vw_ace_portal_object`
`apo`.`isTieable` AS `isTieable`,
`apo`.`isRecallable` AS `isRecallable`,
`apo`.`isSummonable` AS `isSummonable`
from (`vw_ace_object` `ao` left outer join `ace_portal_object` `apo` on((`ao`.`weenieClassId` = `apo`.`weenieClassId`))) where typeId = 65536) */;
from (`vw_ace_object` `ao` left outer join `ace_portal_object` `apo` on((`ao`.`weenieClassId` = `apo`.`weenieClassId`))) where typeId = 65536);
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
354 changes: 354 additions & 0 deletions Database/3-Core/objects/BooksStatues_0.sql

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Loading

0 comments on commit fc3b173

Please sign in to comment.