Skip to content

Commit

Permalink
Merge pull request #1409 from elanthia-online/foreach-v1.0.6
Browse files Browse the repository at this point in the history
[foreach.lic] v1.0.6 remove experimental feature
  • Loading branch information
mrhoribu authored Jan 6, 2024
2 parents 40b06bc + 9f3731e commit ce0e96c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions scripts/foreach.lic
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@
game: Gemstone
tags: utility, inventory,
required: Lich > 5.0.1
version: 1.0.5
version: 1.0.6
changelog:
1.0.6 (2024-01-06)
Remove experimental feature, no longer used
1.0.5 (2024-01-05)
Rubocop cleanup
Fix for constant variables
Expand Down Expand Up @@ -927,7 +929,7 @@ module ForeachScript

def self.first_time_setup(force = false)
return if GameSettings['version'] == CONFIG_VERSION and not force
return if EXPERIMENTAL_EXPIRES
# return if EXPERIMENTAL_EXPIRES

send = "#{$lich_char}send to #{@script.name}"

Expand Down Expand Up @@ -2155,6 +2157,7 @@ if defined?(GameObj.type_data)
end
end

=begin
if EXPERIMENTAL_EXPIRES
if EXPERIMENTAL_EXPIRES > Time.now
echo "** This is an EXPERIMENTAL foreach build. It should be updated by #{EXPERIMENTAL_EXPIRES}."
Expand All @@ -2164,5 +2167,6 @@ if EXPERIMENTAL_EXPIRES
sleep 2 # Minor annoyances.
end
end
=end

ForeachScript.run(script)

0 comments on commit ce0e96c

Please sign in to comment.