From 1f8b9e336153751058b311d33a0b55e6334270e7 Mon Sep 17 00:00:00 2001 From: "Ryan P. McKinnon" <15917743+mrhoribu@users.noreply.github.com> Date: Sun, 17 Dec 2023 18:14:39 -0500 Subject: [PATCH 1/3] [kswole.lic] v1.0.3 strandweaver addition Adding support for strandweaver in The Hive --- scripts/kswole.lic | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/kswole.lic b/scripts/kswole.lic index 78a35cf19..d05ff80d0 100644 --- a/scripts/kswole.lic +++ b/scripts/kswole.lic @@ -19,12 +19,14 @@ name: kswole game: Gemstone tags: kroderine soul, feat absorb, feat dispel - version: 1.0.2 + version: 1.0.3 Help Contribute: https://github.com/elanthia-online/scripts Version Control: Major_change.feature_addition.bugfix + v1.0.3 (2023-12-17) + - Adding support for strandweaver in The Hive v1.0.2 (2023-12-09) - Adding support for Faethyl Bog in Ta'Vaalor - Adding support for The Hive in Zul Logoth @@ -159,6 +161,7 @@ class KSwole /^(?:.*) whispers an inhuman entreaty, and the shadows grow frenized and green-tinged around (?:him|her)\./, # The Hive, Zul Logoth /^(?:.*) clumsily twists (?:her|his) palsied hands into a spell form, (?:her|his) fingers trailing waves of psionic energy\./, + /^(?:.*) weaves complex threads of raw mana with (?:her|his) pale legs\./, ) @dispelable_debuffs = [ From b96a92364edc35fa184f5c47a9a5b08aaa29e024 Mon Sep 17 00:00:00 2001 From: "Ryan P. McKinnon" <15917743+mrhoribu@users.noreply.github.com> Date: Sun, 17 Dec 2023 19:12:31 -0500 Subject: [PATCH 2/3] [gameobj] HW undansormr egg typo fix --- type_data/migrations/45_hinterwilds.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/type_data/migrations/45_hinterwilds.rb b/type_data/migrations/45_hinterwilds.rb index 0cda54f87..bcaea1094 100644 --- a/type_data/migrations/45_hinterwilds.rb +++ b/type_data/migrations/45_hinterwilds.rb @@ -46,6 +46,7 @@ insert(:name, %{dull griseous mournstone}) insert(:name, %{faceted wyrm's-heart sapphire}) insert(:name, %{fossilized undandsormr egg}) + insert(:name, %{fossilized undansormr egg}) insert(:name, %{frosted pale violet amethyst}) insert(:name, %{gold-banded onyx}) insert(:name, %{gold-green auroral emerald}) From ce119d2255a83b9a65440703b42f8f13eaec740b Mon Sep 17 00:00:00 2001 From: "Ryan P. McKinnon" <15917743+mrhoribu@users.noreply.github.com> Date: Sun, 17 Dec 2023 19:18:30 -0500 Subject: [PATCH 3/3] Update publish.yml fix for Ruby 2.7 gem bundler version needing to be specific --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 26df09a9f..c5517d423 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -27,7 +27,7 @@ jobs: run: sudo apt-get install libxml2-utils - name: Install ruby gem dependencies with bundler run: | - gem install bundler + gem install bundler -v 2.4.22 bundle config path vendor/bundle bundle install --jobs 4 --retry 3 - name: Run type data migrations to create gameobj-data.xml