diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 2569cec74c..c5c3260153 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -31,7 +31,7 @@ jobs: - name: Build 🔧 run: | - make dist/classic/.dirstamp + make dist/sod/.dirstamp - name: Test run: | @@ -41,5 +41,5 @@ jobs: uses: JamesIves/github-pages-deploy-action@4.1.5 with: branch: gh-pages - folder: dist/classic/sod + folder: dist/sod single-commit: true \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 872572701c..46d13ea1cb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -62,8 +62,8 @@ jobs: artifacts: | wowsimcli-amd64-linux.zip wowsimcli-windows.exe.zip - wowsimclassic-amd64-darwin.zip - wowsimclassic-arm64-darwin.zip - wowsimclassic-amd64-linux.zip - wowsimclassic-windows.exe.zip + wowsimsod-amd64-darwin.zip + wowsimsod-arm64-darwin.zip + wowsimsod-amd64-linux.zip + wowsimsod-windows.exe.zip diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 5bbc4cd6ab..71bb606f05 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -31,7 +31,7 @@ jobs: - name: Build 🔧 run: | - make dist/classic/sod/.dirstamp + make dist/sod/.dirstamp - name: Test run: | diff --git a/.gitignore b/.gitignore index 477dc22cde..9fb5588c82 100644 --- a/.gitignore +++ b/.gitignore @@ -21,7 +21,7 @@ google-chrome* .dockerignore /classic/ *.code-workspace -wowsimclassic +wowsimsod # old result file TestAPL.results @@ -33,6 +33,6 @@ TestAPL.results tmp/ # lib -wowsimclassic*.so -wowsimclassic*.dll -wowsimclassic*.h +wowsimsod*.so +wowsimsod*.dll +wowsimsod*.h diff --git a/Dockerfile b/Dockerfile index 8ad95bbdff..ba0428b3b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM golang:1.21 -WORKDIR /classic/sod +WORKDIR /sod COPY . . COPY gitconfig /etc/gitconfig diff --git a/README.md b/README.md index 445d68a55e..fba023eb86 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ The primary goal of this project is to provide a framework that makes it easy to This project is licensed with MIT license. We request that anyone using this software in their own project to make sure there is a user visible link back to the original project. -[Live sims can be found here.](https://wowsims.github.io/classic/sod "https://wowsims.github.io/classic/sod") +[Live sims can be found here.](https://wowsims.github.io/sod "https://wowsims.github.io/sod") [Support our devs via Patreon.](https://www.patreon.com/wowsims) @@ -100,8 +100,8 @@ make test make update-tests # Host a local version of the UI at http://localhost:8080. Visit it by pointing a browser to -# http://localhost:8080/classic/sod/YOUR_SPEC_HERE, where YOUR_SPEC_HERE is the directory under ui/ with your custom code. -# Recompiles the entire client before launching using `make dist/classic/sod` +# http://localhost:8080/sod/YOUR_SPEC_HERE, where YOUR_SPEC_HERE is the directory under ui/ with your custom code. +# Recompiles the entire client before launching using `make dist/sod` make host # With file-watching so the server auto-restarts and recompiles on Go or TS changes: @@ -113,7 +113,7 @@ make clean # Recompiles the ts only for the given spec (e.g. make host_elemental_shaman) make host_$spec -# Recompiles the `wowsimclassic` server binary and runs it, hosting /dist directory at http://localhost:3333/classic. +# Recompiles the `wowsimsod` server binary and runs it, hosting /dist directory at http://localhost:3333/classic. # This is the fastest way to iterate on core go simulator code so you don't have to wait for client rebuilds. # To rebuild client for a spec just do 'make $spec' and refresh browser. make rundevserver @@ -121,16 +121,16 @@ make rundevserver # With file-watching so the server auto-restarts and recompiles on Go or TS changes: WATCH=1 make rundevserver -# Creates the 'wowsimclassic' binary that can host the UI and run simulations natively (instead of with wasm). +# Creates the 'wowsimsod' binary that can host the UI and run simulations natively (instead of with wasm). # Builds the UI and the compiles it into the binary so that you can host the sim as a server instead of wasm on the client. # It does this by first doing make dist/classic and then copying all those files to binary_dist/classic and loading all the files in that directory into its binary on compile. -make wowsimclassic +make wowsimsod # Using the --usefs flag will instead of hosting the client built into the binary, it will host whatever code is found in the /dist directory. # Use --wasm to host the client with the wasm simulator. # The server also disables all caching so that refreshes should pickup any changed files in dist/. The client will still call to the server to run simulations so you can iterate more quickly on client changes. -# make dist/classic && ./wowsimclassic --usefs would rebuild the whole client and host it. (you would have had to run `make devserver` to build the wowsimclassic binary first.) -./wowsimclassic --usefs +# make dist/classic && ./wowsimsod --usefs would rebuild the whole client and host it. (you would have had to run `make devserver` to build the wowsimsod binary first.) +./wowsimsod --usefs # Generate code for items. Only necessary if you changed the items generator. make items @@ -167,7 +167,7 @@ The UI and sim can be done in either order, but it is generally recommended to b No .html is needed, it will be generated based on `ui/index_template.html` and the `$SPEC` name. -When you're ready to try out the site, run `make host` and navigate to `http://localhost:8080/classic/$SPEC`. +When you're ready to try out the site, run `make host` and navigate to `http://localhost:8080/sod/$SPEC`. ## Implement the Sim This step is where most of the magic happens. A few highlights to start understanding the sim code: diff --git a/assets/database/loader.go b/assets/database/loader.go index 20f9a01a97..be82d0baad 100644 --- a/assets/database/loader.go +++ b/assets/database/loader.go @@ -3,7 +3,7 @@ package database import ( _ "embed" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" googleProto "google.golang.org/protobuf/proto" ) diff --git a/cmd/wowsimcli/cli_main.go b/cmd/wowsimcli/cli_main.go index 79896847b1..24b3faefbb 100644 --- a/cmd/wowsimcli/cli_main.go +++ b/cmd/wowsimcli/cli_main.go @@ -1,8 +1,8 @@ package main import ( - "github.com/wowsims/classic/sod/cmd/wowsimcli/cmd" - "github.com/wowsims/classic/sod/sim" + "github.com/wowsims/sod/cmd/wowsimcli/cmd" + "github.com/wowsims/sod/sim" ) func init() { diff --git a/cmd/wowsimcli/cmd/basic_sim.go b/cmd/wowsimcli/cmd/basic_sim.go index 0f5f3df8b7..61f5f2201b 100644 --- a/cmd/wowsimcli/cmd/basic_sim.go +++ b/cmd/wowsimcli/cmd/basic_sim.go @@ -6,8 +6,8 @@ import ( "os" "github.com/spf13/cobra" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" "google.golang.org/protobuf/encoding/protojson" ) diff --git a/cmd/wowsimcli/cmd/bulk_replace.go b/cmd/wowsimcli/cmd/bulk_replace.go index ce59744f4e..62d5e40080 100644 --- a/cmd/wowsimcli/cmd/bulk_replace.go +++ b/cmd/wowsimcli/cmd/bulk_replace.go @@ -10,8 +10,8 @@ import ( "time" "github.com/spf13/cobra" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" "google.golang.org/protobuf/encoding/protojson" ) diff --git a/cmd/wowsimcli/cmd/decode_link.go b/cmd/wowsimcli/cmd/decode_link.go index d75dc2d235..10c3d0995f 100644 --- a/cmd/wowsimcli/cmd/decode_link.go +++ b/cmd/wowsimcli/cmd/decode_link.go @@ -9,7 +9,7 @@ import ( "strings" "github.com/spf13/cobra" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" "google.golang.org/protobuf/encoding/protojson" goproto "google.golang.org/protobuf/proto" ) diff --git a/go.mod b/go.mod index 8aa5f933bc..dea9a2223e 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/wowsims/classic/sod +module github.com/wowsims/sod go 1.21 diff --git a/makefile b/makefile index d2b63c85d9..2c3d52ab6b 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,4 @@ -BASE_DIR := classic/sod +BASE_DIR := sod OUT_DIR := dist/$(BASE_DIR) TS_CORE_SRC := $(shell find ui/core -name '*.ts' -type f) ASSETS_INPUT := $(shell find assets/ -type f) @@ -66,11 +66,11 @@ ui/core/index.ts: $(TS_CORE_SRC) clean: rm -rf ui/core/proto/*.ts \ sim/core/proto/*.pb.go \ - wowsimclassic \ - wowsimclassic-windows.exe \ - wowsimclassic-amd64-darwin \ - wowsimclassic-arm64-darwin \ - wowsimclassic-amd64-linux \ + wowsimsod \ + wowsimsod-windows.exe \ + wowsimsod-amd64-darwin \ + wowsimsod-arm64-darwin \ + wowsimsod-amd64-linux \ dist \ binary_dist \ ui/core/index.ts \ @@ -148,12 +148,12 @@ proto: sim/core/proto/api.pb.go ui/core/proto/api.ts # Builds the web server with the compiled client. .PHONY: wowsimwclassic -wowsimclassic: binary_dist devserver +wowsimsod: binary_dist devserver .PHONY: devserver devserver: sim/core/proto/api.pb.go sim/web/main.go binary_dist/dist.go @echo "Starting server compile now..." - @if go build -o wowsimclassic ./sim/web/main.go; then \ + @if go build -o wowsimsod ./sim/web/main.go; then \ printf "\033[1;32mBuild Completed Successfully\033[0m\n"; \ else \ printf "\033[1;31mBUILD FAILED\033[0m\n"; \ @@ -172,30 +172,30 @@ endif rundevserver: air devserver ifeq ($(WATCH), 1) npx vite build -m development --watch & - ulimit -n 10240 && air -tmp_dir "/tmp" -build.include_ext "go,proto" -build.args_bin "--usefs=true --launch=false" -build.bin "./wowsimclassic" -build.cmd "make devserver" -build.exclude_dir "assets,dist,node_modules,ui,tools" + ulimit -n 10240 && air -tmp_dir "/tmp" -build.include_ext "go,proto" -build.args_bin "--usefs=true --launch=false" -build.bin "./wowsimsod" -build.cmd "make devserver" -build.exclude_dir "assets,dist,node_modules,ui,tools" else - ./wowsimclassic --usefs=true --launch=false --host=":3333" + ./wowsimsod --usefs=true --launch=false --host=":3333" endif -wowsimclassic-windows.exe: wowsimclassic +wowsimsod-windows.exe: wowsimsod # go build only considers syso files when invoked without specifying .go files: https://github.com/golang/go/issues/16090 cp ./assets/favicon_io/icon-windows_amd64.syso ./sim/web/icon-windows_amd64.syso - cd ./sim/web/ && GOOS=windows GOARCH=amd64 GOAMD64=v2 go build -o wowsimclassic-windows.exe -ldflags="-X 'main.Version=$(VERSION)' -s -w" + cd ./sim/web/ && GOOS=windows GOARCH=amd64 GOAMD64=v2 go build -o wowsimsod-windows.exe -ldflags="-X 'main.Version=$(VERSION)' -s -w" cd ./cmd/wowsimcli && GOOS=windows GOARCH=amd64 GOAMD64=v2 go build -o wowsimcli-windows.exe --tags=with_db -ldflags="-X 'main.Version=$(VERSION)' -s -w" rm ./sim/web/icon-windows_amd64.syso - mv ./sim/web/wowsimclassic-windows.exe ./wowsimclassic-windows.exe + mv ./sim/web/wowsimsod-windows.exe ./wowsimsod-windows.exe mv ./cmd/wowsimcli/wowsimcli-windows.exe ./wowsimcli-windows.exe -release: wowsimclassic wowsimclassic-windows.exe - GOOS=darwin GOARCH=amd64 GOAMD64=v2 go build -o wowsimclassic-amd64-darwin -ldflags="-X 'main.Version=$(VERSION)' -s -w" ./sim/web/main.go - GOOS=darwin GOARCH=arm64 go build -o wowsimclassic-arm64-darwin -ldflags="-X 'main.Version=$(VERSION)' -s -w" ./sim/web/main.go - GOOS=linux GOARCH=amd64 GOAMD64=v2 go build -o wowsimclassic-amd64-linux -ldflags="-X 'main.Version=$(VERSION)' -s -w" ./sim/web/main.go +release: wowsimsod wowsimsod-windows.exe + GOOS=darwin GOARCH=amd64 GOAMD64=v2 go build -o wowsimsod-amd64-darwin -ldflags="-X 'main.Version=$(VERSION)' -s -w" ./sim/web/main.go + GOOS=darwin GOARCH=arm64 go build -o wowsimsod-arm64-darwin -ldflags="-X 'main.Version=$(VERSION)' -s -w" ./sim/web/main.go + GOOS=linux GOARCH=amd64 GOAMD64=v2 go build -o wowsimsod-amd64-linux -ldflags="-X 'main.Version=$(VERSION)' -s -w" ./sim/web/main.go GOOS=linux GOARCH=amd64 GOAMD64=v2 go build -o wowsimcli-amd64-linux --tags=with_db -ldflags="-X 'main.Version=$(VERSION)' -s -w" ./cmd/wowsimcli/cli_main.go # Now compress into a zip because the files are getting large. - zip wowsimclassic-windows.exe.zip wowsimclassic-windows.exe - zip wowsimclassic-amd64-darwin.zip wowsimclassic-amd64-darwin - zip wowsimclassic-arm64-darwin.zip wowsimclassic-arm64-darwin - zip wowsimclassic-amd64-linux.zip wowsimclassic-amd64-linux + zip wowsimsod-windows.exe.zip wowsimsod-windows.exe + zip wowsimsod-amd64-darwin.zip wowsimsod-amd64-darwin + zip wowsimsod-arm64-darwin.zip wowsimsod-arm64-darwin + zip wowsimsod-amd64-linux.zip wowsimsod-amd64-linux zip wowsimcli-amd64-linux.zip wowsimcli-amd64-linux zip wowsimcli-windows.exe.zip wowsimcli-windows.exe @@ -205,15 +205,15 @@ sim/core/proto/api.pb.go: proto/*.proto # Only useful for building the lib on a host platform that matches the target platform .PHONY: locallib locallib: sim/core/proto/api.pb.go - go build -buildmode=c-shared -o wowsimclassic.so --tags=with_db ./sim/lib/library.go + go build -buildmode=c-shared -o wowsimsod.so --tags=with_db ./sim/lib/library.go .PHONY: nixlib nixlib: sim/core/proto/api.pb.go - GOOS=linux GOARCH=amd64 GOAMD64=v2 go build -buildmode=c-shared -o wowsimclassic-linux.so --tags=with_db ./sim/lib/library.go + GOOS=linux GOARCH=amd64 GOAMD64=v2 go build -buildmode=c-shared -o wowsimsod-linux.so --tags=with_db ./sim/lib/library.go .PHONY: winlib winlib: sim/core/proto/api.pb.go - GOOS=windows GOARCH=amd64 GOAMD64=v2 CGO_ENABLED=1 CC=x86_64-w64-mingw32-gcc go build -buildmode=c-shared -o wowsimclassic-windows.dll --tags=with_db ./sim/lib/library.go + GOOS=windows GOARCH=amd64 GOAMD64=v2 CGO_ENABLED=1 CC=x86_64-w64-mingw32-gcc go build -buildmode=c-shared -o wowsimsod-windows.dll --tags=with_db ./sim/lib/library.go .PHONY: items items: sim/core/items/all_items.go sim/core/proto/api.pb.go diff --git a/package.json b/package.json index fc40fbab6f..150e863957 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "wotlk", + "name": "sod", "version": "0.1.0", "private": true, "devDependencies": { diff --git a/sim/_hunter/aimed_shot.go b/sim/_hunter/aimed_shot.go index f583f90113..218cbfa6ba 100644 --- a/sim/_hunter/aimed_shot.go +++ b/sim/_hunter/aimed_shot.go @@ -3,8 +3,8 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (hunter *Hunter) registerAimedShotSpell(timer *core.Timer) { diff --git a/sim/_hunter/arcane_shot.go b/sim/_hunter/arcane_shot.go index 51be9487a6..048546ceb8 100644 --- a/sim/_hunter/arcane_shot.go +++ b/sim/_hunter/arcane_shot.go @@ -3,8 +3,8 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (hunter *Hunter) registerArcaneShotSpell(timer *core.Timer) { diff --git a/sim/_hunter/aspects.go b/sim/_hunter/aspects.go index e492f3eb67..9dbd949daa 100644 --- a/sim/_hunter/aspects.go +++ b/sim/_hunter/aspects.go @@ -3,9 +3,9 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func (hunter *Hunter) registerAspectOfTheDragonhawkSpell() { diff --git a/sim/_hunter/black_arrow.go b/sim/_hunter/black_arrow.go index f34fd33a1d..5412ca6c93 100644 --- a/sim/_hunter/black_arrow.go +++ b/sim/_hunter/black_arrow.go @@ -3,8 +3,8 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/stats" ) func (hunter *Hunter) registerBlackArrowSpell(timer *core.Timer) { diff --git a/sim/_hunter/chimera_shot.go b/sim/_hunter/chimera_shot.go index 74f1a1acdc..bb7fa036fa 100644 --- a/sim/_hunter/chimera_shot.go +++ b/sim/_hunter/chimera_shot.go @@ -3,8 +3,8 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (hunter *Hunter) registerChimeraShotSpell() { diff --git a/sim/_hunter/explosive_shot.go b/sim/_hunter/explosive_shot.go index 8ff03d72a6..16001bc583 100644 --- a/sim/_hunter/explosive_shot.go +++ b/sim/_hunter/explosive_shot.go @@ -4,8 +4,8 @@ import ( "fmt" "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (hunter *Hunter) registerExplosiveShotSpell(timer *core.Timer) { diff --git a/sim/_hunter/explosive_trap.go b/sim/_hunter/explosive_trap.go index d325906b98..17c879a9f7 100644 --- a/sim/_hunter/explosive_trap.go +++ b/sim/_hunter/explosive_trap.go @@ -3,8 +3,8 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (hunter *Hunter) registerExplosiveTrapSpell(timer *core.Timer) { diff --git a/sim/_hunter/hunter.go b/sim/_hunter/hunter.go index 7e8cdc4b12..2246735652 100644 --- a/sim/_hunter/hunter.go +++ b/sim/_hunter/hunter.go @@ -3,10 +3,10 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/common" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/common" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) var TalentTreeSizes = [3]int{26, 27, 28} diff --git a/sim/_hunter/hunter_test.go b/sim/_hunter/hunter_test.go index ccf2670c09..f5e5669e40 100644 --- a/sim/_hunter/hunter_test.go +++ b/sim/_hunter/hunter_test.go @@ -3,9 +3,9 @@ package hunter import ( "testing" - _ "github.com/wowsims/classic/sod/sim/common" // imported to get item effects included. - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + _ "github.com/wowsims/sod/sim/common" // imported to get item effects included. + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func init() { diff --git a/sim/_hunter/items.go b/sim/_hunter/items.go index e38c478254..79c0c0f917 100644 --- a/sim/_hunter/items.go +++ b/sim/_hunter/items.go @@ -3,8 +3,8 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/stats" ) var ItemSetGronnstalker = core.NewItemSet(core.ItemSet{ diff --git a/sim/_hunter/kill_command.go b/sim/_hunter/kill_command.go index ae3078bb99..a23f7d47b5 100644 --- a/sim/_hunter/kill_command.go +++ b/sim/_hunter/kill_command.go @@ -3,7 +3,7 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (hunter *Hunter) registerKillCommandCD() { diff --git a/sim/_hunter/kill_shot.go b/sim/_hunter/kill_shot.go index 3a29234e49..2e39cb882c 100644 --- a/sim/_hunter/kill_shot.go +++ b/sim/_hunter/kill_shot.go @@ -3,8 +3,8 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (hunter *Hunter) registerKillShotSpell() { diff --git a/sim/_hunter/multi_shot.go b/sim/_hunter/multi_shot.go index 8533c98400..8a6b6dc8a0 100644 --- a/sim/_hunter/multi_shot.go +++ b/sim/_hunter/multi_shot.go @@ -3,8 +3,8 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (hunter *Hunter) registerMultiShotSpell(timer *core.Timer) { diff --git a/sim/_hunter/pet.go b/sim/_hunter/pet.go index 5a4d3fb45b..eb07e86079 100644 --- a/sim/_hunter/pet.go +++ b/sim/_hunter/pet.go @@ -1,9 +1,9 @@ package hunter import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) type HunterPet struct { diff --git a/sim/_hunter/pet_abilities.go b/sim/_hunter/pet_abilities.go index 9605a6da4c..6abe17d669 100644 --- a/sim/_hunter/pet_abilities.go +++ b/sim/_hunter/pet_abilities.go @@ -4,8 +4,8 @@ import ( "math" "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/stats" ) type PetAbilityType int diff --git a/sim/_hunter/pet_talents.go b/sim/_hunter/pet_talents.go index b4d2ebdfe4..206ee4ae2e 100644 --- a/sim/_hunter/pet_talents.go +++ b/sim/_hunter/pet_talents.go @@ -3,8 +3,8 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/stats" ) func (hp *HunterPet) ApplyTalents() { diff --git a/sim/_hunter/rapid_fire.go b/sim/_hunter/rapid_fire.go index d4aa1de483..733c6c5732 100644 --- a/sim/_hunter/rapid_fire.go +++ b/sim/_hunter/rapid_fire.go @@ -3,8 +3,8 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (hunter *Hunter) registerRapidFireCD() { diff --git a/sim/_hunter/raptor_strike.go b/sim/_hunter/raptor_strike.go index c3bc81b977..71ceb0fa8d 100644 --- a/sim/_hunter/raptor_strike.go +++ b/sim/_hunter/raptor_strike.go @@ -3,7 +3,7 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (hunter *Hunter) registerRaptorStrikeSpell() { diff --git a/sim/_hunter/rotation.go b/sim/_hunter/rotation.go index 8c2cd394ac..3ccde10d10 100644 --- a/sim/_hunter/rotation.go +++ b/sim/_hunter/rotation.go @@ -3,9 +3,9 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/common" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/common" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (hunter *Hunter) OnAutoAttack(sim *core.Simulation, spell *core.Spell) { diff --git a/sim/_hunter/scorpid_sting.go b/sim/_hunter/scorpid_sting.go index f70614c0cc..520510083b 100644 --- a/sim/_hunter/scorpid_sting.go +++ b/sim/_hunter/scorpid_sting.go @@ -1,7 +1,7 @@ package hunter import ( - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (hunter *Hunter) registerScorpidStingSpell() { diff --git a/sim/_hunter/serpent_sting.go b/sim/_hunter/serpent_sting.go index c4ad57fc7e..d24d534c4b 100644 --- a/sim/_hunter/serpent_sting.go +++ b/sim/_hunter/serpent_sting.go @@ -3,8 +3,8 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (hunter *Hunter) registerSerpentStingSpell() { diff --git a/sim/_hunter/silencing_shot.go b/sim/_hunter/silencing_shot.go index a269c397a2..f3325e8dc0 100644 --- a/sim/_hunter/silencing_shot.go +++ b/sim/_hunter/silencing_shot.go @@ -3,7 +3,7 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (hunter *Hunter) registerSilencingShotSpell() { diff --git a/sim/_hunter/steady_shot.go b/sim/_hunter/steady_shot.go index 108bf061ce..1e96559015 100644 --- a/sim/_hunter/steady_shot.go +++ b/sim/_hunter/steady_shot.go @@ -3,7 +3,7 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (hunter *Hunter) registerSteadyShotSpell() { diff --git a/sim/_hunter/talents.go b/sim/_hunter/talents.go index 471409dca6..8aa982a821 100644 --- a/sim/_hunter/talents.go +++ b/sim/_hunter/talents.go @@ -3,9 +3,9 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func (hunter *Hunter) ApplyTalents() { diff --git a/sim/_hunter/volley.go b/sim/_hunter/volley.go index 89e10aa27e..c394293be5 100644 --- a/sim/_hunter/volley.go +++ b/sim/_hunter/volley.go @@ -3,8 +3,8 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (hunter *Hunter) registerVolleySpell() { diff --git a/sim/_hunter/wotlk_items.go b/sim/_hunter/wotlk_items.go index 699e9bacb8..309d64175f 100644 --- a/sim/_hunter/wotlk_items.go +++ b/sim/_hunter/wotlk_items.go @@ -3,9 +3,9 @@ package hunter import ( "time" - "github.com/wowsims/classic/sod/sim/common/wotlk" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/common/wotlk" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/stats" ) var ItemSetGladiatorsPursuit = core.NewItemSet(core.ItemSet{ diff --git a/sim/_paladin/avengers_shield.go b/sim/_paladin/avengers_shield.go index 93b61f67b3..7ef5573cfa 100644 --- a/sim/_paladin/avengers_shield.go +++ b/sim/_paladin/avengers_shield.go @@ -3,8 +3,8 @@ package paladin import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (paladin *Paladin) registerAvengersShieldSpell() { diff --git a/sim/_paladin/avenging_wrath.go b/sim/_paladin/avenging_wrath.go index 8b82844a05..deb62a6ade 100644 --- a/sim/_paladin/avenging_wrath.go +++ b/sim/_paladin/avenging_wrath.go @@ -3,8 +3,8 @@ package paladin import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (paladin *Paladin) RegisterAvengingWrathCD() { diff --git a/sim/_paladin/consecration.go b/sim/_paladin/consecration.go index 9acd216afc..2537b2194d 100644 --- a/sim/_paladin/consecration.go +++ b/sim/_paladin/consecration.go @@ -3,8 +3,8 @@ package paladin import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) // Maybe could switch "rank" parameter type to some proto thing. Would require updates to proto files. diff --git a/sim/_paladin/crusader_strike.go b/sim/_paladin/crusader_strike.go index ae975376b5..22681e476a 100644 --- a/sim/_paladin/crusader_strike.go +++ b/sim/_paladin/crusader_strike.go @@ -3,8 +3,8 @@ package paladin import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (paladin *Paladin) registerCrusaderStrikeSpell() { diff --git a/sim/_paladin/divine_plea.go b/sim/_paladin/divine_plea.go index a49aae6468..4b5b9ef6fd 100644 --- a/sim/_paladin/divine_plea.go +++ b/sim/_paladin/divine_plea.go @@ -3,8 +3,8 @@ package paladin import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (paladin *Paladin) registerDivinePleaSpell() { diff --git a/sim/_paladin/divine_protection.go b/sim/_paladin/divine_protection.go index ab5b2ddaa2..cebf08d945 100644 --- a/sim/_paladin/divine_protection.go +++ b/sim/_paladin/divine_protection.go @@ -3,7 +3,7 @@ package paladin import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (paladin *Paladin) registerDivineProtectionSpell() { diff --git a/sim/_paladin/divine_storm.go b/sim/_paladin/divine_storm.go index 8361ec0225..4d8576bb24 100644 --- a/sim/_paladin/divine_storm.go +++ b/sim/_paladin/divine_storm.go @@ -3,7 +3,7 @@ package paladin import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (paladin *Paladin) registerDivineStormSpell() { diff --git a/sim/_paladin/exorcism.go b/sim/_paladin/exorcism.go index 25df0d68fb..9dc9a5b2e5 100644 --- a/sim/_paladin/exorcism.go +++ b/sim/_paladin/exorcism.go @@ -3,8 +3,8 @@ package paladin import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (paladin *Paladin) registerExorcismSpell() { diff --git a/sim/_paladin/hammer_of_the_righteous.go b/sim/_paladin/hammer_of_the_righteous.go index 3b62abdd4c..9d8e8f4b22 100644 --- a/sim/_paladin/hammer_of_the_righteous.go +++ b/sim/_paladin/hammer_of_the_righteous.go @@ -3,8 +3,8 @@ package paladin import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (paladin *Paladin) registerHammerOfTheRighteousSpell() { diff --git a/sim/_paladin/hammer_of_wrath.go b/sim/_paladin/hammer_of_wrath.go index ff4ee9ed0e..d0f069cbda 100644 --- a/sim/_paladin/hammer_of_wrath.go +++ b/sim/_paladin/hammer_of_wrath.go @@ -3,8 +3,8 @@ package paladin import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (paladin *Paladin) registerHammerOfWrathSpell() { diff --git a/sim/_paladin/hand_of_reckoning.go b/sim/_paladin/hand_of_reckoning.go index e077ddca15..8ad123d3b6 100644 --- a/sim/_paladin/hand_of_reckoning.go +++ b/sim/_paladin/hand_of_reckoning.go @@ -3,8 +3,8 @@ package paladin import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (paladin *Paladin) registerHandOfReckoningSpell() { diff --git a/sim/_paladin/holy/holy.go b/sim/_paladin/holy/holy.go index ef1a24ec4b..39d3a57bc6 100644 --- a/sim/_paladin/holy/holy.go +++ b/sim/_paladin/holy/holy.go @@ -1,9 +1,9 @@ package holy import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/paladin" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/paladin" ) func RegisterHolyPaladin() { diff --git a/sim/_paladin/holy/holy_test.go b/sim/_paladin/holy/holy_test.go index da2cdb34ed..60a03dfd1e 100644 --- a/sim/_paladin/holy/holy_test.go +++ b/sim/_paladin/holy/holy_test.go @@ -3,9 +3,9 @@ package holy import ( "testing" - _ "github.com/wowsims/classic/sod/sim/common" // imported to get item effects included. - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + _ "github.com/wowsims/sod/sim/common" // imported to get item effects included. + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func init() { diff --git a/sim/_paladin/holy/rotation.go b/sim/_paladin/holy/rotation.go index ce1dfe657a..085bdd49c0 100644 --- a/sim/_paladin/holy/rotation.go +++ b/sim/_paladin/holy/rotation.go @@ -3,7 +3,7 @@ package holy import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (holy *HolyPaladin) OnGCDReady(sim *core.Simulation) { diff --git a/sim/_paladin/holy_shield.go b/sim/_paladin/holy_shield.go index 4100ee27c7..5cd52e18f6 100644 --- a/sim/_paladin/holy_shield.go +++ b/sim/_paladin/holy_shield.go @@ -3,8 +3,8 @@ package paladin import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/stats" ) func (paladin *Paladin) registerHolyShieldSpell() { diff --git a/sim/_paladin/holy_wrath.go b/sim/_paladin/holy_wrath.go index 9e72ab4ff6..323381dd3b 100644 --- a/sim/_paladin/holy_wrath.go +++ b/sim/_paladin/holy_wrath.go @@ -3,8 +3,8 @@ package paladin import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (paladin *Paladin) registerHolyWrathSpell() { diff --git a/sim/_paladin/items.go b/sim/_paladin/items.go index 8b449eabc7..6e04b822ec 100644 --- a/sim/_paladin/items.go +++ b/sim/_paladin/items.go @@ -3,8 +3,8 @@ package paladin import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/stats" ) // Tier 6 ret diff --git a/sim/_paladin/judgement.go b/sim/_paladin/judgement.go index fb2d5be7e5..98abe9a95b 100644 --- a/sim/_paladin/judgement.go +++ b/sim/_paladin/judgement.go @@ -3,7 +3,7 @@ package paladin import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) // const JudgementDuration = time.Second * 20 diff --git a/sim/_paladin/paladin.go b/sim/_paladin/paladin.go index 3a86648719..a2cd114666 100644 --- a/sim/_paladin/paladin.go +++ b/sim/_paladin/paladin.go @@ -1,9 +1,9 @@ package paladin import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) const ( diff --git a/sim/_paladin/protection/protection.go b/sim/_paladin/protection/protection.go index 1845c31f4d..2ac9bdf37b 100644 --- a/sim/_paladin/protection/protection.go +++ b/sim/_paladin/protection/protection.go @@ -3,9 +3,9 @@ package protection import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/paladin" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/paladin" ) func RegisterProtectionPaladin() { diff --git a/sim/_paladin/protection/protection_test.go b/sim/_paladin/protection/protection_test.go index 72a87fbe09..b844451e13 100644 --- a/sim/_paladin/protection/protection_test.go +++ b/sim/_paladin/protection/protection_test.go @@ -3,9 +3,9 @@ package protection import ( "testing" - _ "github.com/wowsims/classic/sod/sim/common" // imported to get item effects included. - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + _ "github.com/wowsims/sod/sim/common" // imported to get item effects included. + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func init() { diff --git a/sim/_paladin/protection/rotation.go b/sim/_paladin/protection/rotation.go index d4e79cac87..044711a683 100644 --- a/sim/_paladin/protection/rotation.go +++ b/sim/_paladin/protection/rotation.go @@ -4,8 +4,8 @@ import ( "math" "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (prot *ProtectionPaladin) OnGCDReady(sim *core.Simulation) { diff --git a/sim/_paladin/retribution/retribution.go b/sim/_paladin/retribution/retribution.go index 1d53f7b526..0d8a42431e 100644 --- a/sim/_paladin/retribution/retribution.go +++ b/sim/_paladin/retribution/retribution.go @@ -3,9 +3,9 @@ package retribution import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/paladin" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/paladin" ) func RegisterRetributionPaladin() { diff --git a/sim/_paladin/retribution/retribution_test.go b/sim/_paladin/retribution/retribution_test.go index a8abdc0269..90336ad627 100644 --- a/sim/_paladin/retribution/retribution_test.go +++ b/sim/_paladin/retribution/retribution_test.go @@ -3,9 +3,9 @@ package retribution import ( "testing" - _ "github.com/wowsims/classic/sod/sim/common" // imported to get item effects included. - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + _ "github.com/wowsims/sod/sim/common" // imported to get item effects included. + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func init() { diff --git a/sim/_paladin/retribution/rotation.go b/sim/_paladin/retribution/rotation.go index e346be1e7a..4677e1b1ab 100644 --- a/sim/_paladin/retribution/rotation.go +++ b/sim/_paladin/retribution/rotation.go @@ -4,8 +4,8 @@ import ( "math" "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (ret *RetributionPaladin) OnAutoAttack(sim *core.Simulation, _ *core.Spell) { diff --git a/sim/_paladin/righteous_fury.go b/sim/_paladin/righteous_fury.go index 879a0f3952..97f50b6c99 100644 --- a/sim/_paladin/righteous_fury.go +++ b/sim/_paladin/righteous_fury.go @@ -1,7 +1,7 @@ package paladin import ( - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (paladin *Paladin) ActivateRighteousFury() { diff --git a/sim/_paladin/shield_of_righteousness.go b/sim/_paladin/shield_of_righteousness.go index c64427f76d..2974799163 100644 --- a/sim/_paladin/shield_of_righteousness.go +++ b/sim/_paladin/shield_of_righteousness.go @@ -3,8 +3,8 @@ package paladin import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/stats" ) func (paladin *Paladin) registerShieldOfRighteousnessSpell() { diff --git a/sim/_paladin/soc.go b/sim/_paladin/soc.go index f1a6f0e386..0f75d49ef4 100644 --- a/sim/_paladin/soc.go +++ b/sim/_paladin/soc.go @@ -1,8 +1,8 @@ package paladin import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (paladin *Paladin) registerSealOfCommandSpellAndAura() { diff --git a/sim/_paladin/sor.go b/sim/_paladin/sor.go index 170263cd79..e11485e25b 100644 --- a/sim/_paladin/sor.go +++ b/sim/_paladin/sor.go @@ -1,7 +1,7 @@ package paladin import ( - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (paladin *Paladin) registerSealOfRighteousnessSpellAndAura() { diff --git a/sim/_paladin/sov.go b/sim/_paladin/sov.go index 05ff8d8cb7..90345e20bc 100644 --- a/sim/_paladin/sov.go +++ b/sim/_paladin/sov.go @@ -3,9 +3,9 @@ package paladin import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func (paladin *Paladin) registerSealOfVengeanceSpellAndAura() { diff --git a/sim/_paladin/spiritual_attunement.go b/sim/_paladin/spiritual_attunement.go index 841b8fe815..ccd7bdb358 100644 --- a/sim/_paladin/spiritual_attunement.go +++ b/sim/_paladin/spiritual_attunement.go @@ -1,7 +1,7 @@ package paladin import ( - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (paladin *Paladin) registerSpiritualAttunement() { diff --git a/sim/_paladin/talents.go b/sim/_paladin/talents.go index 1650927bf0..c60af26df7 100644 --- a/sim/_paladin/talents.go +++ b/sim/_paladin/talents.go @@ -3,9 +3,9 @@ package paladin import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) // TODO: diff --git a/sim/_rogue/ambush.go b/sim/_rogue/ambush.go index 503d3649de..2d6d0cf6f9 100644 --- a/sim/_rogue/ambush.go +++ b/sim/_rogue/ambush.go @@ -3,7 +3,7 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (rogue *Rogue) registerAmbushSpell() { diff --git a/sim/_rogue/backstab.go b/sim/_rogue/backstab.go index ec37f60db8..4346573c84 100644 --- a/sim/_rogue/backstab.go +++ b/sim/_rogue/backstab.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (rogue *Rogue) registerBackstabSpell() { diff --git a/sim/_rogue/envenom.go b/sim/_rogue/envenom.go index 0e65536487..1a92ee836d 100644 --- a/sim/_rogue/envenom.go +++ b/sim/_rogue/envenom.go @@ -3,7 +3,7 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (rogue *Rogue) registerEnvenom() { diff --git a/sim/_rogue/eviscerate.go b/sim/_rogue/eviscerate.go index 0375ca9e4b..d1e8aeccb6 100644 --- a/sim/_rogue/eviscerate.go +++ b/sim/_rogue/eviscerate.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (rogue *Rogue) registerEviscerate() { diff --git a/sim/_rogue/expose_armor.go b/sim/_rogue/expose_armor.go index 4e7d8bd1e9..52594a7ec2 100644 --- a/sim/_rogue/expose_armor.go +++ b/sim/_rogue/expose_armor.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (rogue *Rogue) registerExposeArmorSpell() { diff --git a/sim/_rogue/fan_of_knives.go b/sim/_rogue/fan_of_knives.go index 66f5aeb2ed..62bebc1202 100644 --- a/sim/_rogue/fan_of_knives.go +++ b/sim/_rogue/fan_of_knives.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) const FanOfKnivesSpellID int32 = 51723 diff --git a/sim/_rogue/feint.go b/sim/_rogue/feint.go index 5de7d7c8fa..68d28cc2ab 100644 --- a/sim/_rogue/feint.go +++ b/sim/_rogue/feint.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (rogue *Rogue) registerFeintSpell() { diff --git a/sim/_rogue/garrote.go b/sim/_rogue/garrote.go index 8ab538bac5..3f24ebe066 100644 --- a/sim/_rogue/garrote.go +++ b/sim/_rogue/garrote.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (rogue *Rogue) registerGarrote() { diff --git a/sim/_rogue/ghostly_strike.go b/sim/_rogue/ghostly_strike.go index 997e27022d..8bbff35083 100644 --- a/sim/_rogue/ghostly_strike.go +++ b/sim/_rogue/ghostly_strike.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (rogue *Rogue) registerGhostlyStrikeSpell() { diff --git a/sim/_rogue/hack_and_slash.go b/sim/_rogue/hack_and_slash.go index 494fd6680a..c424ac3689 100644 --- a/sim/_rogue/hack_and_slash.go +++ b/sim/_rogue/hack_and_slash.go @@ -3,7 +3,7 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (rogue *Rogue) registerHackAndSlash(mask core.ProcMask) { diff --git a/sim/_rogue/hemorrhage.go b/sim/_rogue/hemorrhage.go index 241129f7df..689a221b1b 100644 --- a/sim/_rogue/hemorrhage.go +++ b/sim/_rogue/hemorrhage.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (rogue *Rogue) registerHemorrhageSpell() { diff --git a/sim/_rogue/items.go b/sim/_rogue/items.go index 20647ce028..a37aa4c31e 100644 --- a/sim/_rogue/items.go +++ b/sim/_rogue/items.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/stats" ) var Arena = core.NewItemSet(core.ItemSet{ diff --git a/sim/_rogue/killing_spree.go b/sim/_rogue/killing_spree.go index 123d0b3c08..82f2e46d72 100644 --- a/sim/_rogue/killing_spree.go +++ b/sim/_rogue/killing_spree.go @@ -4,8 +4,8 @@ import ( "math" "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (rogue *Rogue) registerKillingSpreeSpell() { diff --git a/sim/_rogue/master_of_subtlety.go b/sim/_rogue/master_of_subtlety.go index 8f18e241b3..52961cd322 100644 --- a/sim/_rogue/master_of_subtlety.go +++ b/sim/_rogue/master_of_subtlety.go @@ -3,7 +3,7 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) // Each rank is a different ID. 31223 is 3/3 diff --git a/sim/_rogue/mutilate.go b/sim/_rogue/mutilate.go index 26733d8d9f..8712f93fed 100644 --- a/sim/_rogue/mutilate.go +++ b/sim/_rogue/mutilate.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) var MutilateSpellID int32 = 48666 diff --git a/sim/_rogue/overkill.go b/sim/_rogue/overkill.go index 927d59d829..7eefc91215 100644 --- a/sim/_rogue/overkill.go +++ b/sim/_rogue/overkill.go @@ -3,7 +3,7 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) var OverkillActionID = core.ActionID{SpellID: 58426} diff --git a/sim/_rogue/poisons.go b/sim/_rogue/poisons.go index 5bfe42346e..425f78fa17 100644 --- a/sim/_rogue/poisons.go +++ b/sim/_rogue/poisons.go @@ -4,8 +4,8 @@ import ( "strconv" "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (rogue *Rogue) applyPoisons() { diff --git a/sim/_rogue/premeditation.go b/sim/_rogue/premeditation.go index d77d7f4125..7b96d5e8f3 100644 --- a/sim/_rogue/premeditation.go +++ b/sim/_rogue/premeditation.go @@ -3,7 +3,7 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (rogue *Rogue) registerPremeditation() { diff --git a/sim/_rogue/preparation.go b/sim/_rogue/preparation.go index 5f56504c0f..30acb88ad5 100644 --- a/sim/_rogue/preparation.go +++ b/sim/_rogue/preparation.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (rogue *Rogue) registerPreparationCD() { diff --git a/sim/_rogue/rogue.go b/sim/_rogue/rogue.go index 3ed10115a1..f9c6d3bc83 100644 --- a/sim/_rogue/rogue.go +++ b/sim/_rogue/rogue.go @@ -4,9 +4,9 @@ import ( "math" "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func RegisterRogue() { diff --git a/sim/_rogue/rogue_test.go b/sim/_rogue/rogue_test.go index 47a0cead06..7e96441318 100644 --- a/sim/_rogue/rogue_test.go +++ b/sim/_rogue/rogue_test.go @@ -3,9 +3,9 @@ package rogue import ( "testing" - _ "github.com/wowsims/classic/sod/sim/common" // imported to get item effects included. - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + _ "github.com/wowsims/sod/sim/common" // imported to get item effects included. + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func init() { diff --git a/sim/_rogue/rotation.go b/sim/_rogue/rotation.go index 42acdf4253..517e1a1d4e 100644 --- a/sim/_rogue/rotation.go +++ b/sim/_rogue/rotation.go @@ -1,7 +1,7 @@ package rogue import ( - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) type rotation interface { diff --git a/sim/_rogue/rotation_assassination.go b/sim/_rogue/rotation_assassination.go index 38699e1fc4..7f13be8469 100644 --- a/sim/_rogue/rotation_assassination.go +++ b/sim/_rogue/rotation_assassination.go @@ -5,8 +5,8 @@ import ( "slices" "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) type rotation_assassination struct { diff --git a/sim/_rogue/rotation_combat.go b/sim/_rogue/rotation_combat.go index 0edc6f85b0..3ac4f61edd 100644 --- a/sim/_rogue/rotation_combat.go +++ b/sim/_rogue/rotation_combat.go @@ -5,8 +5,8 @@ import ( "slices" "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) type rotation_combat struct { diff --git a/sim/_rogue/rotation_generic.go b/sim/_rogue/rotation_generic.go index fc3b8dcc4e..5d3c3c2ecf 100644 --- a/sim/_rogue/rotation_generic.go +++ b/sim/_rogue/rotation_generic.go @@ -5,8 +5,8 @@ import ( "slices" "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) type rotation_generic struct { diff --git a/sim/_rogue/rotation_multi.go b/sim/_rogue/rotation_multi.go index 33151a721b..cc5cc83b75 100644 --- a/sim/_rogue/rotation_multi.go +++ b/sim/_rogue/rotation_multi.go @@ -4,8 +4,8 @@ import ( "math" "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) type rogueRotationItem struct { diff --git a/sim/_rogue/rotation_subtlety.go b/sim/_rogue/rotation_subtlety.go index 7c35918161..ff59eb9478 100644 --- a/sim/_rogue/rotation_subtlety.go +++ b/sim/_rogue/rotation_subtlety.go @@ -5,8 +5,8 @@ import ( "slices" "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) type rotation_subtlety struct { diff --git a/sim/_rogue/rupture.go b/sim/_rogue/rupture.go index 51a756abb6..af618a6c35 100644 --- a/sim/_rogue/rupture.go +++ b/sim/_rogue/rupture.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) const RuptureEnergyCost = 25.0 diff --git a/sim/_rogue/shadow_dance.go b/sim/_rogue/shadow_dance.go index 56dd9c0fc6..efd7637454 100644 --- a/sim/_rogue/shadow_dance.go +++ b/sim/_rogue/shadow_dance.go @@ -3,9 +3,9 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (rogue *Rogue) registerShadowDanceCD() { diff --git a/sim/_rogue/shadowstep.go b/sim/_rogue/shadowstep.go index 58e1e898cf..81673a7266 100644 --- a/sim/_rogue/shadowstep.go +++ b/sim/_rogue/shadowstep.go @@ -3,7 +3,7 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (rogue *Rogue) registerShadowstepCD() { diff --git a/sim/_rogue/shiv.go b/sim/_rogue/shiv.go index 4d7ff3dd33..2f390fcc8e 100644 --- a/sim/_rogue/shiv.go +++ b/sim/_rogue/shiv.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (rogue *Rogue) registerShivSpell() { diff --git a/sim/_rogue/sinister_strike.go b/sim/_rogue/sinister_strike.go index 90ae327601..f8bf744ffa 100644 --- a/sim/_rogue/sinister_strike.go +++ b/sim/_rogue/sinister_strike.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (rogue *Rogue) registerSinisterStrikeSpell() { diff --git a/sim/_rogue/slice_and_dice.go b/sim/_rogue/slice_and_dice.go index 140a49eee7..504f46dbf2 100644 --- a/sim/_rogue/slice_and_dice.go +++ b/sim/_rogue/slice_and_dice.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (rogue *Rogue) registerSliceAndDice() { diff --git a/sim/_rogue/stealth.go b/sim/_rogue/stealth.go index 83822d7a03..901dcf38e2 100644 --- a/sim/_rogue/stealth.go +++ b/sim/_rogue/stealth.go @@ -1,7 +1,7 @@ package rogue import ( - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (rogue *Rogue) registerStealthAura() { diff --git a/sim/_rogue/talents.go b/sim/_rogue/talents.go index 3173e1d01e..092ebc3b01 100644 --- a/sim/_rogue/talents.go +++ b/sim/_rogue/talents.go @@ -4,9 +4,9 @@ import ( "math" "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func (rogue *Rogue) ApplyTalents() { diff --git a/sim/_rogue/thistle_tea.go b/sim/_rogue/thistle_tea.go index c9e1e62b5c..1a6921f3b5 100644 --- a/sim/_rogue/thistle_tea.go +++ b/sim/_rogue/thistle_tea.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (rogue *Rogue) registerThistleTeaCD() { diff --git a/sim/_rogue/tricks_of_the_trade.go b/sim/_rogue/tricks_of_the_trade.go index 8938f98eb8..7882a36915 100644 --- a/sim/_rogue/tricks_of_the_trade.go +++ b/sim/_rogue/tricks_of_the_trade.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (rogue *Rogue) registerTricksOfTheTradeSpell() { diff --git a/sim/_rogue/vanish.go b/sim/_rogue/vanish.go index f03861c179..8cdfd3c721 100644 --- a/sim/_rogue/vanish.go +++ b/sim/_rogue/vanish.go @@ -3,7 +3,7 @@ package rogue import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (rogue *Rogue) registerVanishSpell() { diff --git a/sim/_shaman/apl_values.go b/sim/_shaman/apl_values.go index 882860b86d..483fa325cc 100644 --- a/sim/_shaman/apl_values.go +++ b/sim/_shaman/apl_values.go @@ -4,8 +4,8 @@ import ( "fmt" "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (shaman *Shaman) NewAPLValue(rot *core.APLRotation, config *proto.APLValue) core.APLValue { diff --git a/sim/_shaman/bloodlust.go b/sim/_shaman/bloodlust.go index d7c9b6b6c8..d542328d46 100644 --- a/sim/_shaman/bloodlust.go +++ b/sim/_shaman/bloodlust.go @@ -1,7 +1,7 @@ package shaman import ( - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (shaman *Shaman) BloodlustActionID() core.ActionID { diff --git a/sim/_shaman/chain_lightning.go b/sim/_shaman/chain_lightning.go index 5acf6cdded..2ec0aa11b2 100644 --- a/sim/_shaman/chain_lightning.go +++ b/sim/_shaman/chain_lightning.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (shaman *Shaman) registerChainLightningSpell() { diff --git a/sim/_shaman/electric_spell.go b/sim/_shaman/electric_spell.go index 75b704c54c..e178de0de3 100644 --- a/sim/_shaman/electric_spell.go +++ b/sim/_shaman/electric_spell.go @@ -3,7 +3,7 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) // Totem Item IDs diff --git a/sim/_shaman/elemental/elemental.go b/sim/_shaman/elemental/elemental.go index 52623a17c0..6da6db3843 100644 --- a/sim/_shaman/elemental/elemental.go +++ b/sim/_shaman/elemental/elemental.go @@ -1,10 +1,10 @@ package elemental import ( - "github.com/wowsims/classic/sod/sim/common/wotlk" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/shaman" + "github.com/wowsims/sod/sim/common/wotlk" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/shaman" ) func RegisterElementalShaman() { diff --git a/sim/_shaman/elemental/elemental_test.go b/sim/_shaman/elemental/elemental_test.go index 642b2cc96d..371812bb9d 100644 --- a/sim/_shaman/elemental/elemental_test.go +++ b/sim/_shaman/elemental/elemental_test.go @@ -3,9 +3,9 @@ package elemental import ( "testing" - _ "github.com/wowsims/classic/sod/sim/common" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + _ "github.com/wowsims/sod/sim/common" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func init() { diff --git a/sim/_shaman/elemental/rotation.go b/sim/_shaman/elemental/rotation.go index 5d930ad80e..d1da1a5da1 100644 --- a/sim/_shaman/elemental/rotation.go +++ b/sim/_shaman/elemental/rotation.go @@ -3,8 +3,8 @@ package elemental import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) // func (eleShaman *ElementalShaman) GetPresimOptions(_ proto.Player) *core.PresimOptions { diff --git a/sim/_shaman/enhancement/enhancement.go b/sim/_shaman/enhancement/enhancement.go index b1f45c54a3..5cc0dc3b8e 100644 --- a/sim/_shaman/enhancement/enhancement.go +++ b/sim/_shaman/enhancement/enhancement.go @@ -3,10 +3,10 @@ package enhancement import ( "time" - "github.com/wowsims/classic/sod/sim/common" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/shaman" + "github.com/wowsims/sod/sim/common" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/shaman" ) func RegisterEnhancementShaman() { diff --git a/sim/_shaman/enhancement/enhancement_test.go b/sim/_shaman/enhancement/enhancement_test.go index 683087efdc..c79ccff119 100644 --- a/sim/_shaman/enhancement/enhancement_test.go +++ b/sim/_shaman/enhancement/enhancement_test.go @@ -3,9 +3,9 @@ package enhancement import ( "testing" - _ "github.com/wowsims/classic/sod/sim/common" // imported to get item effects included. - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + _ "github.com/wowsims/sod/sim/common" // imported to get item effects included. + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func init() { diff --git a/sim/_shaman/enhancement/priority_rotation.go b/sim/_shaman/enhancement/priority_rotation.go index d83ef33e9c..79bbaf506b 100644 --- a/sim/_shaman/enhancement/priority_rotation.go +++ b/sim/_shaman/enhancement/priority_rotation.go @@ -3,8 +3,8 @@ package enhancement import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) // Default Priority Order diff --git a/sim/_shaman/enhancement/rotation.go b/sim/_shaman/enhancement/rotation.go index 46fadfc83c..6ce9b1f636 100644 --- a/sim/_shaman/enhancement/rotation.go +++ b/sim/_shaman/enhancement/rotation.go @@ -1,7 +1,7 @@ package enhancement import ( - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (enh *EnhancementShaman) OnAutoAttack(sim *core.Simulation, _ *core.Spell) { diff --git a/sim/_shaman/feral_spirit.go b/sim/_shaman/feral_spirit.go index e2f51decaa..868450586b 100644 --- a/sim/_shaman/feral_spirit.go +++ b/sim/_shaman/feral_spirit.go @@ -3,7 +3,7 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (shaman *Shaman) registerFeralSpirit() { diff --git a/sim/_shaman/fire_elemental_pet.go b/sim/_shaman/fire_elemental_pet.go index 7c638669c6..90cf00f478 100644 --- a/sim/_shaman/fire_elemental_pet.go +++ b/sim/_shaman/fire_elemental_pet.go @@ -4,9 +4,9 @@ import ( "math" "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) // Variables that control the Fire Elemental. diff --git a/sim/_shaman/fire_elemental_spells.go b/sim/_shaman/fire_elemental_spells.go index 01da17376e..e8e534e98e 100644 --- a/sim/_shaman/fire_elemental_spells.go +++ b/sim/_shaman/fire_elemental_spells.go @@ -3,7 +3,7 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (fireElemental *FireElemental) registerFireBlast() { diff --git a/sim/_shaman/fire_elemental_totem.go b/sim/_shaman/fire_elemental_totem.go index f175f3a22c..8590abee2e 100644 --- a/sim/_shaman/fire_elemental_totem.go +++ b/sim/_shaman/fire_elemental_totem.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) const fireTotemDuration time.Duration = time.Second * 120 diff --git a/sim/_shaman/fire_totems.go b/sim/_shaman/fire_totems.go index 8e718600ef..f228ef7114 100644 --- a/sim/_shaman/fire_totems.go +++ b/sim/_shaman/fire_totems.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (shaman *Shaman) registerSearingTotemSpell() { diff --git a/sim/_shaman/firenova.go b/sim/_shaman/firenova.go index e4a7d4969d..5dbee6b809 100644 --- a/sim/_shaman/firenova.go +++ b/sim/_shaman/firenova.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (shaman *Shaman) registerFireNovaSpell() { diff --git a/sim/_shaman/heals.go b/sim/_shaman/heals.go index 2e8fde891c..2077ac441d 100644 --- a/sim/_shaman/heals.go +++ b/sim/_shaman/heals.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (shaman *Shaman) registerAncestralHealingSpell() { diff --git a/sim/_shaman/items.go b/sim/_shaman/items.go index a0a81eda1c..bc234a7030 100644 --- a/sim/_shaman/items.go +++ b/sim/_shaman/items.go @@ -3,9 +3,9 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) var ItemSetTidefury = core.NewItemSet(core.ItemSet{ diff --git a/sim/_shaman/items_wotlk.go b/sim/_shaman/items_wotlk.go index ced471305c..d4f7f826e0 100644 --- a/sim/_shaman/items_wotlk.go +++ b/sim/_shaman/items_wotlk.go @@ -4,8 +4,8 @@ import ( "math" "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/stats" ) var ItemSetThrallsRegalia = core.NewItemSet(core.ItemSet{ diff --git a/sim/_shaman/lavaburst.go b/sim/_shaman/lavaburst.go index 3f51ff2fa2..d2eb81f08b 100644 --- a/sim/_shaman/lavaburst.go +++ b/sim/_shaman/lavaburst.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (shaman *Shaman) registerLavaBurstSpell() { diff --git a/sim/_shaman/lavalash.go b/sim/_shaman/lavalash.go index 502d77582c..99165affb1 100644 --- a/sim/_shaman/lavalash.go +++ b/sim/_shaman/lavalash.go @@ -3,9 +3,9 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) // Totem IDs diff --git a/sim/_shaman/lightning_bolt.go b/sim/_shaman/lightning_bolt.go index cdb916483c..db34039e0e 100644 --- a/sim/_shaman/lightning_bolt.go +++ b/sim/_shaman/lightning_bolt.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (shaman *Shaman) registerLightningBoltSpell() { diff --git a/sim/_shaman/lightning_shield.go b/sim/_shaman/lightning_shield.go index 1a99a3ed30..e740385ae6 100644 --- a/sim/_shaman/lightning_shield.go +++ b/sim/_shaman/lightning_shield.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (shaman *Shaman) registerLightningShieldSpell() { diff --git a/sim/_shaman/restoration/restoration.go b/sim/_shaman/restoration/restoration.go index f07062c86c..7042234489 100644 --- a/sim/_shaman/restoration/restoration.go +++ b/sim/_shaman/restoration/restoration.go @@ -3,9 +3,9 @@ package restoration import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/shaman" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/shaman" ) func RegisterRestorationShaman() { diff --git a/sim/_shaman/restoration/restoration_test.go b/sim/_shaman/restoration/restoration_test.go index caf1867d0b..bfe8d80873 100644 --- a/sim/_shaman/restoration/restoration_test.go +++ b/sim/_shaman/restoration/restoration_test.go @@ -3,9 +3,9 @@ package restoration import ( "testing" - _ "github.com/wowsims/classic/sod/sim/common" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + _ "github.com/wowsims/sod/sim/common" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func init() { diff --git a/sim/_shaman/restoration/rotation.go b/sim/_shaman/restoration/rotation.go index 3bfc222b8e..12c93a1c8a 100644 --- a/sim/_shaman/restoration/rotation.go +++ b/sim/_shaman/restoration/rotation.go @@ -3,8 +3,8 @@ package restoration import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (resto *RestorationShaman) OnGCDReady(sim *core.Simulation) { diff --git a/sim/_shaman/shaman.go b/sim/_shaman/shaman.go index d10e53ab5f..a7509329a8 100644 --- a/sim/_shaman/shaman.go +++ b/sim/_shaman/shaman.go @@ -3,9 +3,9 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) var TalentTreeSizes = [3]int{25, 29, 26} diff --git a/sim/_shaman/shamanistic_rage.go b/sim/_shaman/shamanistic_rage.go index 3d1d13f5bb..3404b7ac1b 100644 --- a/sim/_shaman/shamanistic_rage.go +++ b/sim/_shaman/shamanistic_rage.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/stats" ) func (shaman *Shaman) registerShamanisticRageCD() { diff --git a/sim/_shaman/shocks.go b/sim/_shaman/shocks.go index 38325e5598..6b57a6ca57 100644 --- a/sim/_shaman/shocks.go +++ b/sim/_shaman/shocks.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (shaman *Shaman) ShockCD() time.Duration { diff --git a/sim/_shaman/spirit_wolves.go b/sim/_shaman/spirit_wolves.go index 1e2ae9d533..5ca78d51d4 100644 --- a/sim/_shaman/spirit_wolves.go +++ b/sim/_shaman/spirit_wolves.go @@ -5,9 +5,9 @@ import ( "strconv" "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) type SpiritWolf struct { diff --git a/sim/_shaman/stormstrike.go b/sim/_shaman/stormstrike.go index 9f6fe4e859..51112fe24c 100644 --- a/sim/_shaman/stormstrike.go +++ b/sim/_shaman/stormstrike.go @@ -3,9 +3,9 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) var StormstrikeActionID = core.ActionID{SpellID: 17364} diff --git a/sim/_shaman/talents.go b/sim/_shaman/talents.go index c46c39c5b3..7be2b3aa0a 100644 --- a/sim/_shaman/talents.go +++ b/sim/_shaman/talents.go @@ -3,9 +3,9 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func (shaman *Shaman) ApplyTalents() { diff --git a/sim/_shaman/thunderstorm.go b/sim/_shaman/thunderstorm.go index a3856c03ba..c3c52a4c29 100644 --- a/sim/_shaman/thunderstorm.go +++ b/sim/_shaman/thunderstorm.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (shaman *Shaman) registerThunderstormSpell() { diff --git a/sim/_shaman/totems.go b/sim/_shaman/totems.go index eebde50bb2..b4fc699ee7 100644 --- a/sim/_shaman/totems.go +++ b/sim/_shaman/totems.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (shaman *Shaman) newTotemSpellConfig(baseCost float64, spellID int32) core.SpellConfig { diff --git a/sim/_shaman/weapon_imbues.go b/sim/_shaman/weapon_imbues.go index 1951355a07..dd7e0f15d3 100644 --- a/sim/_shaman/weapon_imbues.go +++ b/sim/_shaman/weapon_imbues.go @@ -3,9 +3,9 @@ package shaman import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) var TotemOfTheAstralWinds int32 = 27815 diff --git a/sim/common/custom_rotation.go b/sim/common/custom_rotation.go index d54c6e4631..36277b712a 100644 --- a/sim/common/custom_rotation.go +++ b/sim/common/custom_rotation.go @@ -3,8 +3,8 @@ package common import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) type CustomRotationType byte diff --git a/sim/common/gcd_scheduler.go b/sim/common/gcd_scheduler.go index 754fb5332c..72919ba10a 100644 --- a/sim/common/gcd_scheduler.go +++ b/sim/common/gcd_scheduler.go @@ -6,7 +6,7 @@ import ( "fmt" "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) const Unresolved = time.Duration(-1) diff --git a/sim/common/includes.go b/sim/common/includes.go index a8af121f9f..e0be124289 100644 --- a/sim/common/includes.go +++ b/sim/common/includes.go @@ -1,8 +1,7 @@ package common // Just import other directories, so importing common from elsewhere is enough. -import ( + // TODO: Classic items -// _ "github.com/wowsims/classic/sod/sim/common/tbc" -// _ "github.com/wowsims/classic/sod/sim/common/wotlk" -) +// _ "github.com/wowsims/sod/sim/common/tbc" +// _ "github.com/wowsims/sod/sim/common/wotlk" diff --git a/sim/common/wait.go b/sim/common/wait.go index da23d7dd99..9a43e384b9 100644 --- a/sim/common/wait.go +++ b/sim/common/wait.go @@ -3,8 +3,8 @@ package common import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) type WaitReason byte diff --git a/sim/core/agent.go b/sim/core/agent.go index 900e9bd464..c570e5a4e8 100644 --- a/sim/core/agent.go +++ b/sim/core/agent.go @@ -5,7 +5,7 @@ import ( "strconv" "strings" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) // Agent can be thought of as the 'Player', i.e. the thing controlling the Character. diff --git a/sim/core/api.go b/sim/core/api.go index 7188f752a7..6336e7f248 100644 --- a/sim/core/api.go +++ b/sim/core/api.go @@ -4,8 +4,8 @@ package core import ( "context" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) /** diff --git a/sim/core/apl.go b/sim/core/apl.go index 4a52638499..ab6cbbe6c4 100644 --- a/sim/core/apl.go +++ b/sim/core/apl.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" "google.golang.org/protobuf/encoding/protojson" ) diff --git a/sim/core/apl_action.go b/sim/core/apl_action.go index 2560acee35..14fc31a25e 100644 --- a/sim/core/apl_action.go +++ b/sim/core/apl_action.go @@ -3,7 +3,7 @@ package core import ( "fmt" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type APLAction struct { diff --git a/sim/core/apl_actions_casting.go b/sim/core/apl_actions_casting.go index 8043dfc3b5..b17e3f14f4 100644 --- a/sim/core/apl_actions_casting.go +++ b/sim/core/apl_actions_casting.go @@ -3,7 +3,7 @@ package core import ( "fmt" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type APLActionCastSpell struct { diff --git a/sim/core/apl_actions_misc.go b/sim/core/apl_actions_misc.go index e836cd7fae..bb77ab9ecb 100644 --- a/sim/core/apl_actions_misc.go +++ b/sim/core/apl_actions_misc.go @@ -3,7 +3,7 @@ package core import ( "fmt" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type APLActionChangeTarget struct { diff --git a/sim/core/apl_actions_sequences.go b/sim/core/apl_actions_sequences.go index 14196757fd..9fc2a0dfe7 100644 --- a/sim/core/apl_actions_sequences.go +++ b/sim/core/apl_actions_sequences.go @@ -4,7 +4,7 @@ import ( "fmt" "strings" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type APLActionSequence struct { diff --git a/sim/core/apl_actions_timing.go b/sim/core/apl_actions_timing.go index 376646c1c5..4c0843afc3 100644 --- a/sim/core/apl_actions_timing.go +++ b/sim/core/apl_actions_timing.go @@ -5,7 +5,7 @@ import ( "strings" "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type APLActionWait struct { diff --git a/sim/core/apl_helpers.go b/sim/core/apl_helpers.go index ef64e060d2..189445d4bf 100644 --- a/sim/core/apl_helpers.go +++ b/sim/core/apl_helpers.go @@ -1,7 +1,7 @@ package core import ( - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) // Struct for handling unit references, to account for values that can diff --git a/sim/core/apl_value.go b/sim/core/apl_value.go index 652ae1c352..a03572c390 100644 --- a/sim/core/apl_value.go +++ b/sim/core/apl_value.go @@ -3,7 +3,7 @@ package core import ( "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type APLValue interface { diff --git a/sim/core/apl_values_aura.go b/sim/core/apl_values_aura.go index c7636db49c..103d522f70 100644 --- a/sim/core/apl_values_aura.go +++ b/sim/core/apl_values_aura.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type APLValueAuraIsActive struct { diff --git a/sim/core/apl_values_auto_attacks.go b/sim/core/apl_values_auto_attacks.go index 2b8877c3af..a71d0a3efb 100644 --- a/sim/core/apl_values_auto_attacks.go +++ b/sim/core/apl_values_auto_attacks.go @@ -3,7 +3,7 @@ package core import ( "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type APLValueAutoTimeToNext struct { diff --git a/sim/core/apl_values_core.go b/sim/core/apl_values_core.go index 498b6d6e5f..0222a713a3 100644 --- a/sim/core/apl_values_core.go +++ b/sim/core/apl_values_core.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type APLValueDotIsActive struct { diff --git a/sim/core/apl_values_encounter.go b/sim/core/apl_values_encounter.go index 254eb434f2..40c7c2fe12 100644 --- a/sim/core/apl_values_encounter.go +++ b/sim/core/apl_values_encounter.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type APLValueCurrentTime struct { diff --git a/sim/core/apl_values_gcd.go b/sim/core/apl_values_gcd.go index ffb4ddbf9f..59b37f0d6c 100644 --- a/sim/core/apl_values_gcd.go +++ b/sim/core/apl_values_gcd.go @@ -3,7 +3,7 @@ package core import ( "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type APLValueGCDIsReady struct { diff --git a/sim/core/apl_values_operators.go b/sim/core/apl_values_operators.go index 0e0a3ef4d6..084db28fae 100644 --- a/sim/core/apl_values_operators.go +++ b/sim/core/apl_values_operators.go @@ -6,7 +6,7 @@ import ( "strings" "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type APLValueConst struct { diff --git a/sim/core/apl_values_properties.go b/sim/core/apl_values_properties.go index d7db747436..1ee9de8419 100644 --- a/sim/core/apl_values_properties.go +++ b/sim/core/apl_values_properties.go @@ -3,7 +3,7 @@ package core import ( "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type APLValueChannelClipDelay struct { diff --git a/sim/core/apl_values_resources.go b/sim/core/apl_values_resources.go index 08db6a10da..a8f162c26b 100644 --- a/sim/core/apl_values_resources.go +++ b/sim/core/apl_values_resources.go @@ -3,7 +3,7 @@ package core import ( "fmt" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type APLValueCurrentHealth struct { diff --git a/sim/core/apl_values_sequences.go b/sim/core/apl_values_sequences.go index f2216e6266..c068996a53 100644 --- a/sim/core/apl_values_sequences.go +++ b/sim/core/apl_values_sequences.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type APLValueSequenceIsComplete struct { diff --git a/sim/core/apl_values_spell.go b/sim/core/apl_values_spell.go index ac6c01389b..32293cce0b 100644 --- a/sim/core/apl_values_spell.go +++ b/sim/core/apl_values_spell.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type APLValueSpellCanCast struct { diff --git a/sim/core/apl_values_test.go b/sim/core/apl_values_test.go index 499075233c..2caff348c4 100644 --- a/sim/core/apl_values_test.go +++ b/sim/core/apl_values_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) func TestValueConst(t *testing.T) { diff --git a/sim/core/armor_test.go b/sim/core/armor_test.go index 1f449d6f9d..8c870d6052 100644 --- a/sim/core/armor_test.go +++ b/sim/core/armor_test.go @@ -3,7 +3,7 @@ package core import ( "testing" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/stats" ) func TestSunderArmorStacks(t *testing.T) { diff --git a/sim/core/attack.go b/sim/core/attack.go index 924449e541..01c479a66b 100644 --- a/sim/core/attack.go +++ b/sim/core/attack.go @@ -4,8 +4,8 @@ import ( "slices" "time" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) // ReplaceMHSwing is called right before a main hand auto attack fires. diff --git a/sim/core/aura.go b/sim/core/aura.go index 43030d594b..96daccab1e 100644 --- a/sim/core/aura.go +++ b/sim/core/aura.go @@ -8,8 +8,8 @@ import ( "golang.org/x/exp/constraints" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) const NeverExpires = time.Duration(math.MaxInt64) diff --git a/sim/core/aura_helpers.go b/sim/core/aura_helpers.go index 4f06d0f603..40a69b0034 100644 --- a/sim/core/aura_helpers.go +++ b/sim/core/aura_helpers.go @@ -5,7 +5,7 @@ import ( "math" "time" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/stats" ) type AuraCallback uint16 diff --git a/sim/core/avoid_dr.go b/sim/core/avoid_dr.go index cf27d9fef3..c94ca22fa1 100644 --- a/sim/core/avoid_dr.go +++ b/sim/core/avoid_dr.go @@ -1,7 +1,7 @@ package core import ( - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/stats" ) // Could be in constants.go, but they won't be used anywhere else diff --git a/sim/core/base_stats.go b/sim/core/base_stats.go index 59b0381be7..3a2db98ffd 100644 --- a/sim/core/base_stats.go +++ b/sim/core/base_stats.go @@ -1,8 +1,8 @@ package core import ( - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) type BaseStatsKey struct { diff --git a/sim/core/base_stats_auto_gen.go b/sim/core/base_stats_auto_gen.go index 578be8e931..09c6476130 100644 --- a/sim/core/base_stats_auto_gen.go +++ b/sim/core/base_stats_auto_gen.go @@ -5,8 +5,8 @@ package core // ************************************** import ( - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) const ExpertisePerQuarterPercentReduction = 2.500000 diff --git a/sim/core/buffs.go b/sim/core/buffs.go index 34b645fcb9..7b3dfe9519 100644 --- a/sim/core/buffs.go +++ b/sim/core/buffs.go @@ -6,8 +6,8 @@ import ( googleProto "google.golang.org/protobuf/proto" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) type BuffName int32 diff --git a/sim/core/bulksim.go b/sim/core/bulksim.go index 2324213e32..ead40da426 100644 --- a/sim/core/bulksim.go +++ b/sim/core/bulksim.go @@ -14,7 +14,7 @@ import ( goproto "google.golang.org/protobuf/proto" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) const ( diff --git a/sim/core/bulksim_test.go b/sim/core/bulksim_test.go index 85cc463002..0c805bd8f0 100644 --- a/sim/core/bulksim_test.go +++ b/sim/core/bulksim_test.go @@ -5,7 +5,7 @@ import ( "testing" "github.com/google/go-cmp/cmp" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" "google.golang.org/protobuf/encoding/protojson" ) diff --git a/sim/core/character.go b/sim/core/character.go index 47f32035c3..6abbefba4b 100644 --- a/sim/core/character.go +++ b/sim/core/character.go @@ -7,8 +7,8 @@ import ( "strings" "time" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" "google.golang.org/protobuf/encoding/protowire" "google.golang.org/protobuf/reflect/protoreflect" ) diff --git a/sim/core/consumes.go b/sim/core/consumes.go index 62d33c08e1..4df5f1befe 100644 --- a/sim/core/consumes.go +++ b/sim/core/consumes.go @@ -1,8 +1,8 @@ package core import ( - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) // Registers all consume-related effects to the Agent. diff --git a/sim/core/database.go b/sim/core/database.go index 4badde2489..5c6ea86a3e 100644 --- a/sim/core/database.go +++ b/sim/core/database.go @@ -3,8 +3,8 @@ package core import ( "fmt" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" "google.golang.org/protobuf/encoding/protojson" ) diff --git a/sim/core/database_load.go b/sim/core/database_load.go index 102483e829..7c14b900b6 100644 --- a/sim/core/database_load.go +++ b/sim/core/database_load.go @@ -5,8 +5,8 @@ package core import ( - "github.com/wowsims/classic/sod/assets/database" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/assets/database" + "github.com/wowsims/sod/sim/core/proto" ) func init() { diff --git a/sim/core/debuffs.go b/sim/core/debuffs.go index ad9c754309..eacb3d3245 100644 --- a/sim/core/debuffs.go +++ b/sim/core/debuffs.go @@ -4,8 +4,8 @@ import ( "strconv" "time" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func applyDebuffEffects(target *Unit, targetIdx int, debuffs *proto.Debuffs, raid *proto.Raid) { diff --git a/sim/core/dot_test.go b/sim/core/dot_test.go index 982dc43405..5cb349e656 100644 --- a/sim/core/dot_test.go +++ b/sim/core/dot_test.go @@ -4,8 +4,8 @@ import ( "testing" "time" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func init() { diff --git a/sim/core/energy.go b/sim/core/energy.go index 82688a37b1..bb46c4f489 100644 --- a/sim/core/energy.go +++ b/sim/core/energy.go @@ -6,7 +6,7 @@ import ( "slices" "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) // Time between energy ticks. diff --git a/sim/core/environment.go b/sim/core/environment.go index 4e91993ae5..56356f6fcc 100644 --- a/sim/core/environment.go +++ b/sim/core/environment.go @@ -4,7 +4,7 @@ import ( "slices" "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type EnvironmentState int diff --git a/sim/core/flags.go b/sim/core/flags.go index 2049d3c732..bb1c15e0d7 100644 --- a/sim/core/flags.go +++ b/sim/core/flags.go @@ -4,8 +4,8 @@ import ( "math/bits" "strconv" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) type ProcMask uint32 diff --git a/sim/core/focus.go b/sim/core/focus.go index d8ac07d7e8..8d4324435e 100644 --- a/sim/core/focus.go +++ b/sim/core/focus.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) // Time between focus ticks. diff --git a/sim/core/health.go b/sim/core/health.go index aa56ae1f4e..9ce68842bc 100644 --- a/sim/core/health.go +++ b/sim/core/health.go @@ -3,8 +3,8 @@ package core import ( "time" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) type healthBar struct { diff --git a/sim/core/item_effects.go b/sim/core/item_effects.go index 47f8a57245..d67cce4bea 100644 --- a/sim/core/item_effects.go +++ b/sim/core/item_effects.go @@ -6,8 +6,8 @@ import ( "strconv" "time" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) // Function for applying permanent effects to an Agent. diff --git a/sim/core/item_swaps.go b/sim/core/item_swaps.go index 6b19e81f75..386b4baca6 100644 --- a/sim/core/item_swaps.go +++ b/sim/core/item_swaps.go @@ -3,8 +3,8 @@ package core import ( "time" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) type OnSwapItem func(*Simulation) diff --git a/sim/core/major_cooldown.go b/sim/core/major_cooldown.go index 02c741cded..169d07d846 100644 --- a/sim/core/major_cooldown.go +++ b/sim/core/major_cooldown.go @@ -4,8 +4,8 @@ import ( "slices" "time" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) const ( diff --git a/sim/core/mana.go b/sim/core/mana.go index b8f2843042..539660731f 100644 --- a/sim/core/mana.go +++ b/sim/core/mana.go @@ -5,8 +5,8 @@ import ( "math" "time" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) const ThreatPerManaGained = 0.5 diff --git a/sim/core/metrics_aggregator.go b/sim/core/metrics_aggregator.go index 3228c96b02..3384c97ba0 100644 --- a/sim/core/metrics_aggregator.go +++ b/sim/core/metrics_aggregator.go @@ -4,7 +4,7 @@ import ( "math" "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type ResourceKey struct { diff --git a/sim/core/pet.go b/sim/core/pet.go index 6c8eba595e..e1ee3faf81 100644 --- a/sim/core/pet.go +++ b/sim/core/pet.go @@ -5,8 +5,8 @@ import ( "slices" "time" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) // Extension of Agent interface, for Pets. diff --git a/sim/core/presim.go b/sim/core/presim.go index 46a6488740..23fd3c4b1f 100644 --- a/sim/core/presim.go +++ b/sim/core/presim.go @@ -3,7 +3,7 @@ package core import ( "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" googleProto "google.golang.org/protobuf/proto" ) diff --git a/sim/core/professions.go b/sim/core/professions.go index 37f2296140..a918150eaa 100644 --- a/sim/core/professions.go +++ b/sim/core/professions.go @@ -3,8 +3,8 @@ package core import ( "time" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) // This is just the static bonuses. Most professions are handled elsewhere. diff --git a/sim/core/racials.go b/sim/core/racials.go index 69ef905e71..e0d850f739 100644 --- a/sim/core/racials.go +++ b/sim/core/racials.go @@ -3,8 +3,8 @@ package core import ( "time" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func applyRaceEffects(agent Agent) { diff --git a/sim/core/rage.go b/sim/core/rage.go index 2e69ab82fc..dc34e384b5 100644 --- a/sim/core/rage.go +++ b/sim/core/rage.go @@ -3,7 +3,7 @@ package core import ( "fmt" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) const MaxRage = 100.0 diff --git a/sim/core/raid.go b/sim/core/raid.go index d9250737a6..a247204d31 100644 --- a/sim/core/raid.go +++ b/sim/core/raid.go @@ -3,8 +3,8 @@ package core import ( "slices" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" googleProto "google.golang.org/protobuf/proto" ) diff --git a/sim/core/sim.go b/sim/core/sim.go index 8b017f3e75..1cd1f4003d 100644 --- a/sim/core/sim.go +++ b/sim/core/sim.go @@ -12,7 +12,7 @@ import ( "strings" "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type Task interface { diff --git a/sim/core/spell.go b/sim/core/spell.go index 607e29e270..1d08bd6a29 100644 --- a/sim/core/spell.go +++ b/sim/core/spell.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/stats" ) type ApplySpellResults func(sim *Simulation, target *Unit, spell *Spell) diff --git a/sim/core/spell_outcome.go b/sim/core/spell_outcome.go index 30d449c54e..870dbe8bd3 100644 --- a/sim/core/spell_outcome.go +++ b/sim/core/spell_outcome.go @@ -3,7 +3,7 @@ package core import ( "math/rand" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/stats" ) // This function should do 3 things: diff --git a/sim/core/spell_resistances.go b/sim/core/spell_resistances.go index 04b17ec5fb..b30720d1a8 100644 --- a/sim/core/spell_resistances.go +++ b/sim/core/spell_resistances.go @@ -5,7 +5,7 @@ import ( "math" "strings" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/stats" ) func (result *SpellResult) applyResistances(sim *Simulation, spell *Spell, isPeriodic bool, attackTable *AttackTable) { diff --git a/sim/core/spell_resistances_test.go b/sim/core/spell_resistances_test.go index 06dcbf249b..e3d8da4b88 100644 --- a/sim/core/spell_resistances_test.go +++ b/sim/core/spell_resistances_test.go @@ -4,8 +4,8 @@ import ( "math" "testing" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func Test_PartialResistsVsPlayer(t *testing.T) { diff --git a/sim/core/spell_result.go b/sim/core/spell_result.go index 18c26a8599..2eabae629a 100644 --- a/sim/core/spell_result.go +++ b/sim/core/spell_result.go @@ -4,7 +4,7 @@ import ( "fmt" "math" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/stats" ) type SpellResult struct { diff --git a/sim/core/stats/stats.go b/sim/core/stats/stats.go index 9cd39b03b9..35711e6112 100644 --- a/sim/core/stats/stats.go +++ b/sim/core/stats/stats.go @@ -5,7 +5,7 @@ import ( "strings" "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type Stats [Len]float64 diff --git a/sim/core/stats/stats_test.go b/sim/core/stats/stats_test.go index 0a38e241a8..8db119f534 100644 --- a/sim/core/stats/stats_test.go +++ b/sim/core/stats/stats_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) func TestStatsAdd(t *testing.T) { diff --git a/sim/core/statweight.go b/sim/core/statweight.go index 85a7afb006..2282a98f83 100644 --- a/sim/core/statweight.go +++ b/sim/core/statweight.go @@ -7,8 +7,8 @@ import ( "sync/atomic" "time" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" googleProto "google.golang.org/protobuf/proto" ) diff --git a/sim/core/target.go b/sim/core/target.go index f218d12390..08f430dbd9 100644 --- a/sim/core/target.go +++ b/sim/core/target.go @@ -4,8 +4,8 @@ import ( "strconv" "time" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) type Encounter struct { diff --git a/sim/core/target_ai.go b/sim/core/target_ai.go index 4aac3d5530..33a20d8ff1 100644 --- a/sim/core/target_ai.go +++ b/sim/core/target_ai.go @@ -4,7 +4,7 @@ import ( "fmt" "log" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) type TargetAI interface { diff --git a/sim/core/target_dummy.go b/sim/core/target_dummy.go index 8f0a1ca7ff..9a71903156 100644 --- a/sim/core/target_dummy.go +++ b/sim/core/target_dummy.go @@ -3,8 +3,8 @@ package core import ( "fmt" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) type TargetDummy struct { diff --git a/sim/core/test_generators.go b/sim/core/test_generators.go index eba6884bb0..85f1ebc9ca 100644 --- a/sim/core/test_generators.go +++ b/sim/core/test_generators.go @@ -5,7 +5,7 @@ import ( "slices" "strings" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" googleProto "google.golang.org/protobuf/proto" ) diff --git a/sim/core/test_suite.go b/sim/core/test_suite.go index 1069e61675..1c739979f3 100644 --- a/sim/core/test_suite.go +++ b/sim/core/test_suite.go @@ -8,8 +8,8 @@ import ( "strings" "testing" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" "google.golang.org/protobuf/encoding/prototext" ) diff --git a/sim/core/test_utils.go b/sim/core/test_utils.go index f50caa3577..c6e18db693 100644 --- a/sim/core/test_utils.go +++ b/sim/core/test_utils.go @@ -5,8 +5,8 @@ import ( "os" "testing" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" googleProto "google.golang.org/protobuf/proto" ) diff --git a/sim/core/unit.go b/sim/core/unit.go index e8e44a24bb..abd9b85d11 100644 --- a/sim/core/unit.go +++ b/sim/core/unit.go @@ -3,8 +3,8 @@ package core import ( "time" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) type UnitType int diff --git a/sim/core/utils.go b/sim/core/utils.go index 214dde822b..a75cd547c3 100644 --- a/sim/core/utils.go +++ b/sim/core/utils.go @@ -5,7 +5,7 @@ import ( "math" "time" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) func DurationFromSeconds(numSeconds float64) time.Duration { diff --git a/sim/druid/_demoralizing_roar.go b/sim/druid/_demoralizing_roar.go index cf58729f45..42ed358caa 100644 --- a/sim/druid/_demoralizing_roar.go +++ b/sim/druid/_demoralizing_roar.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (druid *Druid) registerDemoralizingRoarSpell() { diff --git a/sim/druid/_enrage.go b/sim/druid/_enrage.go index 674c775fb1..0288d4ce60 100644 --- a/sim/druid/_enrage.go +++ b/sim/druid/_enrage.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/stats" ) func (druid *Druid) registerEnrageSpell() { diff --git a/sim/druid/_faerie_fire.go b/sim/druid/_faerie_fire.go index ddade92814..6ed6fb2a41 100644 --- a/sim/druid/_faerie_fire.go +++ b/sim/druid/_faerie_fire.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (druid *Druid) registerFaerieFireSpell() { diff --git a/sim/druid/_feral/apl_values.go b/sim/druid/_feral/apl_values.go index 9efdb1a27f..a5b1b3289a 100644 --- a/sim/druid/_feral/apl_values.go +++ b/sim/druid/_feral/apl_values.go @@ -3,8 +3,8 @@ package feral import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (cat *FeralDruid) NewAPLValue(rot *core.APLRotation, config *proto.APLValue) core.APLValue { diff --git a/sim/druid/_feral/feral.go b/sim/druid/_feral/feral.go index b317a275b0..2dde86b891 100644 --- a/sim/druid/_feral/feral.go +++ b/sim/druid/_feral/feral.go @@ -3,9 +3,9 @@ package feral import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/druid" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/druid" ) func RegisterFeralDruid() { diff --git a/sim/druid/_feral/feral_test.go b/sim/druid/_feral/feral_test.go index a06f8b9645..e7e4011c9b 100644 --- a/sim/druid/_feral/feral_test.go +++ b/sim/druid/_feral/feral_test.go @@ -3,9 +3,9 @@ package feral import ( "testing" - _ "github.com/wowsims/classic/sod/sim/common" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + _ "github.com/wowsims/sod/sim/common" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func init() { diff --git a/sim/druid/_feral/pooling_actions.go b/sim/druid/_feral/pooling_actions.go index c98fdbf44a..27ac40d9d7 100644 --- a/sim/druid/_feral/pooling_actions.go +++ b/sim/druid/_feral/pooling_actions.go @@ -4,7 +4,7 @@ import ( "slices" "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) type PoolingAction struct { diff --git a/sim/druid/_feral/rotation.go b/sim/druid/_feral/rotation.go index 42c87c5d8c..94ef75824c 100644 --- a/sim/druid/_feral/rotation.go +++ b/sim/druid/_feral/rotation.go @@ -4,9 +4,9 @@ import ( "math" "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/druid" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/druid" ) func (cat *FeralDruid) OnEnergyGain(sim *core.Simulation) { diff --git a/sim/druid/_feral/rotation_aoe.go b/sim/druid/_feral/rotation_aoe.go index bef47a550c..1968f4161a 100644 --- a/sim/druid/_feral/rotation_aoe.go +++ b/sim/druid/_feral/rotation_aoe.go @@ -4,7 +4,7 @@ import ( "math" "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (cat *FeralDruid) doAoeRotation(sim *core.Simulation) (bool, time.Duration) { diff --git a/sim/druid/_ferocious_bite.go b/sim/druid/_ferocious_bite.go index 1f39f62e46..446d01f41d 100644 --- a/sim/druid/_ferocious_bite.go +++ b/sim/druid/_ferocious_bite.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (druid *Druid) registerFerociousBiteSpell() { diff --git a/sim/druid/_frenzied_regeneration.go b/sim/druid/_frenzied_regeneration.go index 3d61d282d4..597be0f0e9 100644 --- a/sim/druid/_frenzied_regeneration.go +++ b/sim/druid/_frenzied_regeneration.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (druid *Druid) registerFrenziedRegenerationCD() { diff --git a/sim/druid/_hurricane.go b/sim/druid/_hurricane.go index 9ea16e791f..98d3fd258f 100644 --- a/sim/druid/_hurricane.go +++ b/sim/druid/_hurricane.go @@ -3,16 +3,16 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (druid *Druid) registerHurricaneSpell() { druid.HurricaneTickSpell = druid.RegisterSpell(Humanoid|Moonkin, core.SpellConfig{ - ActionID: core.ActionID{SpellID: 48466}, - SpellSchool: core.SpellSchoolNature, - ProcMask: core.ProcMaskProc, - Flags: SpellFlagOmenTrigger, - CritMultiplier: 1, + ActionID: core.ActionID{SpellID: 48466}, + SpellSchool: core.SpellSchoolNature, + ProcMask: core.ProcMaskProc, + Flags: SpellFlagOmenTrigger, + CritMultiplier: 1, DamageMultiplier: 1, ThreatMultiplier: 1, ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { diff --git a/sim/druid/_innervate.go b/sim/druid/_innervate.go index 50a5f02965..0f50cc60d8 100644 --- a/sim/druid/_innervate.go +++ b/sim/druid/_innervate.go @@ -1,7 +1,7 @@ package druid import ( - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) // Returns the time to wait before the next action, or 0 if innervate is on CD diff --git a/sim/druid/_insect_swarm.go b/sim/druid/_insect_swarm.go index 612af68e65..f6ea662d8c 100644 --- a/sim/druid/_insect_swarm.go +++ b/sim/druid/_insect_swarm.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) const CryingWind int32 = 45270 diff --git a/sim/druid/_lacerate.go b/sim/druid/_lacerate.go index 22e62144aa..fec32555ef 100644 --- a/sim/druid/_lacerate.go +++ b/sim/druid/_lacerate.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (druid *Druid) registerLacerateSpell() { diff --git a/sim/druid/_mangle.go b/sim/druid/_mangle.go index 16cfbc2d5d..6e0d37eae1 100644 --- a/sim/druid/_mangle.go +++ b/sim/druid/_mangle.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (druid *Druid) registerMangleBearSpell() { diff --git a/sim/druid/_maul.go b/sim/druid/_maul.go index 9264a3c05c..1522371e10 100644 --- a/sim/druid/_maul.go +++ b/sim/druid/_maul.go @@ -1,8 +1,8 @@ package druid import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (druid *Druid) registerMaulSpell(rageThreshold float64) { diff --git a/sim/druid/_rake.go b/sim/druid/_rake.go index 40624f5f06..4ef8b8ebc8 100644 --- a/sim/druid/_rake.go +++ b/sim/druid/_rake.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (druid *Druid) registerRakeSpell() { diff --git a/sim/druid/_restoration/restoration.go b/sim/druid/_restoration/restoration.go index dcf2bfc86d..b54fde7f7d 100644 --- a/sim/druid/_restoration/restoration.go +++ b/sim/druid/_restoration/restoration.go @@ -1,9 +1,9 @@ package restoration import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/druid" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/druid" ) func RegisterRestorationDruid() { diff --git a/sim/druid/_restoration/restoration_test.go b/sim/druid/_restoration/restoration_test.go index 05e0eca71a..6c2ca51116 100644 --- a/sim/druid/_restoration/restoration_test.go +++ b/sim/druid/_restoration/restoration_test.go @@ -3,9 +3,9 @@ package restoration import ( "testing" - _ "github.com/wowsims/classic/sod/sim/common" // imported to get caster sets included. (we use spellfire here) - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + _ "github.com/wowsims/sod/sim/common" // imported to get caster sets included. (we use spellfire here) + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func init() { diff --git a/sim/druid/_restoration/rotation.go b/sim/druid/_restoration/rotation.go index 506a10da7f..8c5ca2849a 100644 --- a/sim/druid/_restoration/rotation.go +++ b/sim/druid/_restoration/rotation.go @@ -3,7 +3,7 @@ package restoration import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (resto *RestorationDruid) OnGCDReady(sim *core.Simulation) { diff --git a/sim/druid/_rip.go b/sim/druid/_rip.go index 5f7bcbf578..6c6598fe13 100644 --- a/sim/druid/_rip.go +++ b/sim/druid/_rip.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (druid *Druid) registerRipSpell() { diff --git a/sim/druid/_savage_roar.go b/sim/druid/_savage_roar.go index b91ad7b5a1..ea7c372b40 100644 --- a/sim/druid/_savage_roar.go +++ b/sim/druid/_savage_roar.go @@ -3,9 +3,8 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/stats" ) func (druid *Druid) getSavageRoarMultiplier() float64 { diff --git a/sim/druid/_shred.go b/sim/druid/_shred.go index 28bad20b86..75c93604e1 100644 --- a/sim/druid/_shred.go +++ b/sim/druid/_shred.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (druid *Druid) registerShredSpell() { diff --git a/sim/druid/_swipe.go b/sim/druid/_swipe.go index a40596ca55..cc57fa49ff 100644 --- a/sim/druid/_swipe.go +++ b/sim/druid/_swipe.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (druid *Druid) registerSwipeBearSpell() { diff --git a/sim/druid/_tank/rotation.go b/sim/druid/_tank/rotation.go index 2581544d44..f391401b3b 100644 --- a/sim/druid/_tank/rotation.go +++ b/sim/druid/_tank/rotation.go @@ -3,7 +3,7 @@ package tank import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (bear *FeralTankDruid) OnGCDReady(sim *core.Simulation) { diff --git a/sim/druid/_tank/tank.go b/sim/druid/_tank/tank.go index ccec87d6c2..9a97992407 100644 --- a/sim/druid/_tank/tank.go +++ b/sim/druid/_tank/tank.go @@ -1,9 +1,9 @@ package tank import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/druid" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/druid" ) func RegisterFeralTankDruid() { diff --git a/sim/druid/_tank/tank_test.go b/sim/druid/_tank/tank_test.go index 72a3332429..45a2375f64 100644 --- a/sim/druid/_tank/tank_test.go +++ b/sim/druid/_tank/tank_test.go @@ -3,9 +3,9 @@ package tank import ( "testing" - _ "github.com/wowsims/classic/sod/sim/common" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + _ "github.com/wowsims/sod/sim/common" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func init() { diff --git a/sim/druid/_tigers_fury.go b/sim/druid/_tigers_fury.go index 57e6b81720..207d8506f2 100644 --- a/sim/druid/_tigers_fury.go +++ b/sim/druid/_tigers_fury.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (druid *Druid) registerTigersFurySpell() { diff --git a/sim/druid/balance/balance.go b/sim/druid/balance/balance.go index 503959e34c..27628b8310 100644 --- a/sim/druid/balance/balance.go +++ b/sim/druid/balance/balance.go @@ -1,10 +1,10 @@ package balance import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" - "github.com/wowsims/classic/sod/sim/druid" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" + "github.com/wowsims/sod/sim/druid" ) func RegisterBalanceDruid() { diff --git a/sim/druid/balance/balance_test.go b/sim/druid/balance/balance_test.go index 9ca8ad0cf4..b69b0975c8 100644 --- a/sim/druid/balance/balance_test.go +++ b/sim/druid/balance/balance_test.go @@ -3,9 +3,9 @@ package balance import ( "testing" - _ "github.com/wowsims/classic/sod/sim/common" // imported to get caster sets included. (we use spellfire here) - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + _ "github.com/wowsims/sod/sim/common" // imported to get caster sets included. (we use spellfire here) + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func init() { diff --git a/sim/druid/balance/rotation.go b/sim/druid/balance/rotation.go index 399347ecfa..91bd3a5aec 100644 --- a/sim/druid/balance/rotation.go +++ b/sim/druid/balance/rotation.go @@ -1,8 +1,8 @@ package balance import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/druid" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/druid" ) func (moonkin *BalanceDruid) OnGCDReady(sim *core.Simulation) { diff --git a/sim/druid/barkskin.go b/sim/druid/barkskin.go index 64d59186f1..30f8bdc05b 100644 --- a/sim/druid/barkskin.go +++ b/sim/druid/barkskin.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) // TODO: class barkskin physical reduction diff --git a/sim/druid/druid.go b/sim/druid/druid.go index 3b2cbf23f0..8c90c1ade0 100644 --- a/sim/druid/druid.go +++ b/sim/druid/druid.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) const ( diff --git a/sim/druid/forms.go b/sim/druid/forms.go index 9a3e775938..dc5eca0f99 100644 --- a/sim/druid/forms.go +++ b/sim/druid/forms.go @@ -1,9 +1,9 @@ package druid import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) type DruidForm uint8 diff --git a/sim/druid/moonfire.go b/sim/druid/moonfire.go index ed9347a6d2..c34cd09dd0 100644 --- a/sim/druid/moonfire.go +++ b/sim/druid/moonfire.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (druid *Druid) getMoonfireBaseConfig(rank int) core.SpellConfig { diff --git a/sim/druid/runes.go b/sim/druid/runes.go index 6083dc5ae3..993e6c94c9 100644 --- a/sim/druid/runes.go +++ b/sim/druid/runes.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (druid *Druid) ApplyRunes() { diff --git a/sim/druid/starfire.go b/sim/druid/starfire.go index a0e52eca39..56995f3eb4 100644 --- a/sim/druid/starfire.go +++ b/sim/druid/starfire.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (druid *Druid) getStarfireBaseConfig(rank int) core.SpellConfig { diff --git a/sim/druid/talents.go b/sim/druid/talents.go index 6331a9b52e..9891b4c3ff 100644 --- a/sim/druid/talents.go +++ b/sim/druid/talents.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/stats" ) func (druid *Druid) ThickHideMultiplier() float64 { diff --git a/sim/druid/wrath.go b/sim/druid/wrath.go index 2cf8d3d864..a390d5c91f 100644 --- a/sim/druid/wrath.go +++ b/sim/druid/wrath.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (druid *Druid) getWrathBaseConfig(rank int) core.SpellConfig { diff --git a/sim/encounters/default_ai.go b/sim/encounters/default_ai.go index 8ab9de7b98..33d85263b0 100644 --- a/sim/encounters/default_ai.go +++ b/sim/encounters/default_ai.go @@ -3,8 +3,8 @@ package encounters import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) // Default implementation of TargetAI which takes a list of abilities as input diff --git a/sim/encounters/naxxramas/kelthuzad25_ai.go b/sim/encounters/naxxramas/kelthuzad25_ai.go index 707c4c3bf8..ad5cde801b 100644 --- a/sim/encounters/naxxramas/kelthuzad25_ai.go +++ b/sim/encounters/naxxramas/kelthuzad25_ai.go @@ -1,9 +1,9 @@ package naxxramas import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func addKelThuzad25(bossPrefix string) { diff --git a/sim/encounters/naxxramas/loatheb25_ai.go b/sim/encounters/naxxramas/loatheb25_ai.go index 14159fc2b1..dd5faed51f 100644 --- a/sim/encounters/naxxramas/loatheb25_ai.go +++ b/sim/encounters/naxxramas/loatheb25_ai.go @@ -1,9 +1,9 @@ package naxxramas import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func addLoatheb25(bossPrefix string) { diff --git a/sim/encounters/naxxramas/patchwerk10_ai.go b/sim/encounters/naxxramas/patchwerk10_ai.go index 808e0e8df5..50a6cede4b 100644 --- a/sim/encounters/naxxramas/patchwerk10_ai.go +++ b/sim/encounters/naxxramas/patchwerk10_ai.go @@ -3,9 +3,9 @@ package naxxramas import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func addPatchwerk10(bossPrefix string) { diff --git a/sim/encounters/naxxramas/patchwerk25_ai.go b/sim/encounters/naxxramas/patchwerk25_ai.go index 23d817057b..8a7cbdc479 100644 --- a/sim/encounters/naxxramas/patchwerk25_ai.go +++ b/sim/encounters/naxxramas/patchwerk25_ai.go @@ -3,9 +3,9 @@ package naxxramas import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func addPatchwerk25(bossPrefix string) { diff --git a/sim/encounters/naxxramas/thaddius25_ai.go b/sim/encounters/naxxramas/thaddius25_ai.go index d4e7155f79..7a99252bbd 100644 --- a/sim/encounters/naxxramas/thaddius25_ai.go +++ b/sim/encounters/naxxramas/thaddius25_ai.go @@ -1,9 +1,9 @@ package naxxramas import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func addThaddius25(bossPrefix string) { diff --git a/sim/encounters/register_all.go b/sim/encounters/register_all.go index 00b3bfd0f2..7012b5da78 100644 --- a/sim/encounters/register_all.go +++ b/sim/encounters/register_all.go @@ -1,7 +1,7 @@ package encounters import ( - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func init() { diff --git a/sim/lib/library.go b/sim/lib/library.go index d075f5a3c4..754f1da758 100644 --- a/sim/lib/library.go +++ b/sim/lib/library.go @@ -10,9 +10,9 @@ import ( "log" "unsafe" - "github.com/wowsims/classic/sod/sim" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" "google.golang.org/protobuf/encoding/protojson" goproto "google.golang.org/protobuf/proto" ) diff --git a/sim/mage/_arcane_explosion.go b/sim/mage/_arcane_explosion.go index 8d28ddbd37..1428548949 100644 --- a/sim/mage/_arcane_explosion.go +++ b/sim/mage/_arcane_explosion.go @@ -1,8 +1,8 @@ package mage import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (mage *Mage) registerArcaneExplosionSpell() { diff --git a/sim/mage/_blast_wave.go b/sim/mage/_blast_wave.go index abb6b1cedc..3f87912fa4 100644 --- a/sim/mage/_blast_wave.go +++ b/sim/mage/_blast_wave.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (mage *Mage) registerBlastWaveSpell() { diff --git a/sim/mage/_blizzard.go b/sim/mage/_blizzard.go index 955336f127..1aab945a1b 100644 --- a/sim/mage/_blizzard.go +++ b/sim/mage/_blizzard.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (mage *Mage) registerBlizzardSpell() { diff --git a/sim/mage/_flamestrike.go b/sim/mage/_flamestrike.go index 3e1cbb5082..3c6fdc3005 100644 --- a/sim/mage/_flamestrike.go +++ b/sim/mage/_flamestrike.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (mage *Mage) registerFlamestrikeSpell(rank8 bool) *core.Spell { diff --git a/sim/mage/_mana_gems.go b/sim/mage/_mana_gems.go index a90c99341d..0b2c7b344e 100644 --- a/sim/mage/_mana_gems.go +++ b/sim/mage/_mana_gems.go @@ -3,9 +3,9 @@ package mage import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func (mage *Mage) registerManaGemsCD() { diff --git a/sim/mage/_pyroblast.go b/sim/mage/_pyroblast.go index 944cfa3f12..200f7d707f 100644 --- a/sim/mage/_pyroblast.go +++ b/sim/mage/_pyroblast.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (mage *Mage) registerPyroblastSpell() { diff --git a/sim/mage/arcane_blast.go b/sim/mage/arcane_blast.go index 65b0c436df..b0e6bbe16c 100644 --- a/sim/mage/arcane_blast.go +++ b/sim/mage/arcane_blast.go @@ -3,8 +3,8 @@ package mage import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) // TODO: Classic verify Arcane Blast rune numbers diff --git a/sim/mage/arcane_missiles.go b/sim/mage/arcane_missiles.go index cbdfb7d501..4db5865b47 100644 --- a/sim/mage/arcane_missiles.go +++ b/sim/mage/arcane_missiles.go @@ -4,7 +4,7 @@ import ( "strconv" "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (mage *Mage) getArcaneMissilesTickSpell(rank int, numTicks int32, baseDotDamage float64) *core.Spell { diff --git a/sim/mage/fire_blast.go b/sim/mage/fire_blast.go index 1831c1086a..e5d923c68f 100644 --- a/sim/mage/fire_blast.go +++ b/sim/mage/fire_blast.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (mage *Mage) getFireBlastBaseConfig(rank int, cdTimer *core.Timer) core.SpellConfig { diff --git a/sim/mage/fireball.go b/sim/mage/fireball.go index a7a2304e98..1a31fb8d58 100644 --- a/sim/mage/fireball.go +++ b/sim/mage/fireball.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (mage *Mage) getFireballBaseConfig(rank int) core.SpellConfig { diff --git a/sim/mage/frostbolt.go b/sim/mage/frostbolt.go index a6c03a2ecd..565fae0a85 100644 --- a/sim/mage/frostbolt.go +++ b/sim/mage/frostbolt.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (mage *Mage) getFrostboltBaseConfig(rank int) core.SpellConfig { diff --git a/sim/mage/ice_lance.go b/sim/mage/ice_lance.go index 9c0b3a26c3..54242c3128 100644 --- a/sim/mage/ice_lance.go +++ b/sim/mage/ice_lance.go @@ -1,8 +1,8 @@ package mage import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) // TODO: Classic review ice lance numbers on live diff --git a/sim/mage/icy_veins.go b/sim/mage/icy_veins.go index c034806f08..37ae150c60 100644 --- a/sim/mage/icy_veins.go +++ b/sim/mage/icy_veins.go @@ -3,8 +3,8 @@ package mage import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (mage *Mage) registerIcyVeinsCD() { diff --git a/sim/mage/ignite.go b/sim/mage/ignite.go index b29811f8ad..5c7e9221b7 100644 --- a/sim/mage/ignite.go +++ b/sim/mage/ignite.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) // If two spells proc Ignite at almost exactly the same time, the latter diff --git a/sim/mage/living_bomb.go b/sim/mage/living_bomb.go index 33f976c420..3d5c96efa5 100644 --- a/sim/mage/living_bomb.go +++ b/sim/mage/living_bomb.go @@ -3,8 +3,8 @@ package mage import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) // TODO: Classic verify numbers such as aoe caps and base damage diff --git a/sim/mage/living_flame.go b/sim/mage/living_flame.go index 43e1f2ed46..71a50b5e56 100644 --- a/sim/mage/living_flame.go +++ b/sim/mage/living_flame.go @@ -3,8 +3,8 @@ package mage import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) // TODO: Classic verify numbers / snapshot / travel time diff --git a/sim/mage/mage.go b/sim/mage/mage.go index 61be780e93..1b8ef99071 100644 --- a/sim/mage/mage.go +++ b/sim/mage/mage.go @@ -1,8 +1,8 @@ package mage import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) const ( diff --git a/sim/mage/mage_test.go b/sim/mage/mage_test.go index 06dd3f027e..485589cbcf 100644 --- a/sim/mage/mage_test.go +++ b/sim/mage/mage_test.go @@ -1,7 +1,7 @@ package mage import ( - _ "github.com/wowsims/classic/sod/sim/common" + _ "github.com/wowsims/sod/sim/common" ) func init() { diff --git a/sim/mage/rotations.go b/sim/mage/rotations.go index a05754221e..d61c965f8b 100644 --- a/sim/mage/rotations.go +++ b/sim/mage/rotations.go @@ -1,7 +1,7 @@ package mage import ( - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (mage *Mage) OnGCDReady(sim *core.Simulation) { diff --git a/sim/mage/runes.go b/sim/mage/runes.go index 65db2ab2ba..29b8f9edbd 100644 --- a/sim/mage/runes.go +++ b/sim/mage/runes.go @@ -3,9 +3,9 @@ package mage import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func (mage *Mage) ApplyRunes() { diff --git a/sim/mage/scorch.go b/sim/mage/scorch.go index efe3058e34..352db5fe99 100644 --- a/sim/mage/scorch.go +++ b/sim/mage/scorch.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (mage *Mage) getScorchConfig(rank int) core.SpellConfig { diff --git a/sim/mage/talents.go b/sim/mage/talents.go index 7655cbd87c..76ee510fb7 100644 --- a/sim/mage/talents.go +++ b/sim/mage/talents.go @@ -3,8 +3,8 @@ package mage import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/stats" ) func (mage *Mage) ApplyTalents() { diff --git a/sim/priest/binding_heal.go b/sim/priest/binding_heal.go index 933ac3ac67..b8a099ebc6 100644 --- a/sim/priest/binding_heal.go +++ b/sim/priest/binding_heal.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (priest *Priest) registerBindingHealSpell() { diff --git a/sim/priest/circle_of_healing.go b/sim/priest/circle_of_healing.go index c89e9d2c62..facc32d090 100644 --- a/sim/priest/circle_of_healing.go +++ b/sim/priest/circle_of_healing.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (priest *Priest) registerCircleOfHealingSpell() { diff --git a/sim/priest/devouring_plague.go b/sim/priest/devouring_plague.go index 407cfe32d0..30ac5d102c 100644 --- a/sim/priest/devouring_plague.go +++ b/sim/priest/devouring_plague.go @@ -4,8 +4,8 @@ import ( "strconv" "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (priest *Priest) getDevouringPlagueConfig(rank int, cdTimer *core.Timer) core.SpellConfig { diff --git a/sim/priest/flash_heal.go b/sim/priest/flash_heal.go index 03a8edf75a..58a101fdfe 100644 --- a/sim/priest/flash_heal.go +++ b/sim/priest/flash_heal.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (priest *Priest) registerFlashHealSpell() { diff --git a/sim/priest/greater_heal.go b/sim/priest/greater_heal.go index 6dc0df59ee..c704d316e1 100644 --- a/sim/priest/greater_heal.go +++ b/sim/priest/greater_heal.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (priest *Priest) registerGreaterHealSpell() { diff --git a/sim/priest/healing/healing_priest.go b/sim/priest/healing/healing_priest.go index 7550a70aaa..d6f1307e12 100644 --- a/sim/priest/healing/healing_priest.go +++ b/sim/priest/healing/healing_priest.go @@ -1,10 +1,10 @@ package healing import ( - "github.com/wowsims/classic/sod/sim/common" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/priest" + "github.com/wowsims/sod/sim/common" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/priest" ) func RegisterHealingPriest() { diff --git a/sim/priest/healing/healing_priest_test.go b/sim/priest/healing/healing_priest_test.go index a6c42cc668..7600a8567e 100644 --- a/sim/priest/healing/healing_priest_test.go +++ b/sim/priest/healing/healing_priest_test.go @@ -1,8 +1,8 @@ package healing import ( - _ "github.com/wowsims/classic/sod/sim/common" // imported to get caster sets included. - "github.com/wowsims/classic/sod/sim/core/proto" + _ "github.com/wowsims/sod/sim/common" // imported to get caster sets included. + "github.com/wowsims/sod/sim/core/proto" ) func init() { diff --git a/sim/priest/healing/rotation.go b/sim/priest/healing/rotation.go index 6dc63091be..d35bf60778 100644 --- a/sim/priest/healing/rotation.go +++ b/sim/priest/healing/rotation.go @@ -1,9 +1,9 @@ package healing import ( - "github.com/wowsims/classic/sod/sim/common" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/common" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (hpriest *HealingPriest) OnGCDReady(sim *core.Simulation) { diff --git a/sim/priest/holy_fire.go b/sim/priest/holy_fire.go index 9eb62b3090..4c55016f9f 100644 --- a/sim/priest/holy_fire.go +++ b/sim/priest/holy_fire.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (priest *Priest) getHolyFireConfig(rank int) core.SpellConfig { diff --git a/sim/priest/mind_blast.go b/sim/priest/mind_blast.go index f5e47913d5..c426532d01 100644 --- a/sim/priest/mind_blast.go +++ b/sim/priest/mind_blast.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (priest *Priest) getMindBlastBaseConfig(rank int, cdTimer *core.Timer) core.SpellConfig { diff --git a/sim/priest/mind_flay.go b/sim/priest/mind_flay.go index 48e1fc3226..5e5890e066 100644 --- a/sim/priest/mind_flay.go +++ b/sim/priest/mind_flay.go @@ -4,7 +4,7 @@ import ( "strconv" "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (priest *Priest) getMindFlayTickSpell(rank int, numTicks int32, baseDamage float64) *core.Spell { diff --git a/sim/priest/mind_sear.go b/sim/priest/mind_sear.go index a5eae10aff..050a8d23ff 100644 --- a/sim/priest/mind_sear.go +++ b/sim/priest/mind_sear.go @@ -4,7 +4,7 @@ import ( "strconv" "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (priest *Priest) getMindSearBaseConfig() core.SpellConfig { diff --git a/sim/priest/penance.go b/sim/priest/penance.go index 33aae5ad1e..431979fc61 100644 --- a/sim/priest/penance.go +++ b/sim/priest/penance.go @@ -3,8 +3,8 @@ package priest import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (priest *Priest) registerPenanceHealSpell() { diff --git a/sim/priest/power_infusion.go b/sim/priest/power_infusion.go index 90a521db14..cf1bea4807 100644 --- a/sim/priest/power_infusion.go +++ b/sim/priest/power_infusion.go @@ -2,7 +2,7 @@ package priest // "time" -// "github.com/wowsims/classic/sod/sim/core" +// "github.com/wowsims/sod/sim/core" func (priest *Priest) registerPowerInfusionCD() { if !priest.Talents.PowerInfusion { diff --git a/sim/priest/power_word_shield.go b/sim/priest/power_word_shield.go index 792364912c..b563146ad2 100644 --- a/sim/priest/power_word_shield.go +++ b/sim/priest/power_word_shield.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (priest *Priest) registerPowerWordShieldSpell() { diff --git a/sim/priest/prayer_of_healing.go b/sim/priest/prayer_of_healing.go index 536528964c..a6d36f3c33 100644 --- a/sim/priest/prayer_of_healing.go +++ b/sim/priest/prayer_of_healing.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (priest *Priest) registerPrayerOfHealingSpell() { diff --git a/sim/priest/prayer_of_mending.go b/sim/priest/prayer_of_mending.go index 1a6476e418..d6e973f99d 100644 --- a/sim/priest/prayer_of_mending.go +++ b/sim/priest/prayer_of_mending.go @@ -4,7 +4,7 @@ import ( "strconv" "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (priest *Priest) registerPrayerOfMendingSpell() { diff --git a/sim/priest/priest.go b/sim/priest/priest.go index 2310db884d..22091ecfb6 100644 --- a/sim/priest/priest.go +++ b/sim/priest/priest.go @@ -1,8 +1,8 @@ package priest import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) var TalentTreeSizes = [3]int{15, 16, 16} diff --git a/sim/priest/renew.go b/sim/priest/renew.go index ba287a8137..7648a85abd 100644 --- a/sim/priest/renew.go +++ b/sim/priest/renew.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (priest *Priest) registerRenewSpell() { diff --git a/sim/priest/shadow/rotation.go b/sim/priest/shadow/rotation.go index 9540aab03e..fbc0d2c227 100644 --- a/sim/priest/shadow/rotation.go +++ b/sim/priest/shadow/rotation.go @@ -1,7 +1,7 @@ package shadow import ( - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (spriest *ShadowPriest) OnGCDReady(sim *core.Simulation) { diff --git a/sim/priest/shadow/shadow_priest.go b/sim/priest/shadow/shadow_priest.go index 5f379d3578..478af95e13 100644 --- a/sim/priest/shadow/shadow_priest.go +++ b/sim/priest/shadow/shadow_priest.go @@ -3,9 +3,9 @@ package shadow import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/priest" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/priest" ) func RegisterShadowPriest() { diff --git a/sim/priest/shadow/shadow_priest_test.go b/sim/priest/shadow/shadow_priest_test.go index 0a37aa2b65..acc18bc892 100644 --- a/sim/priest/shadow/shadow_priest_test.go +++ b/sim/priest/shadow/shadow_priest_test.go @@ -3,9 +3,9 @@ package shadow import ( "testing" - _ "github.com/wowsims/classic/sod/sim/common" // imported to get caster sets included. - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + _ "github.com/wowsims/sod/sim/common" // imported to get caster sets included. + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func init() { diff --git a/sim/priest/shadow_word_death.go b/sim/priest/shadow_word_death.go index cf5cd3a704..2dd8633501 100644 --- a/sim/priest/shadow_word_death.go +++ b/sim/priest/shadow_word_death.go @@ -3,8 +3,8 @@ package priest import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (priest *Priest) registerShadowWordDeathSpell() { diff --git a/sim/priest/shadow_word_pain.go b/sim/priest/shadow_word_pain.go index 5fd3104002..aabd3797f6 100644 --- a/sim/priest/shadow_word_pain.go +++ b/sim/priest/shadow_word_pain.go @@ -4,7 +4,7 @@ import ( "strconv" "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (priest *Priest) getShadowWordPainConfig(rank int) core.SpellConfig { diff --git a/sim/priest/smite.go b/sim/priest/smite.go index 71f7d3c574..8cee8bea5c 100644 --- a/sim/priest/smite.go +++ b/sim/priest/smite.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (priest *Priest) getSmiteBaseConfig(rank int) core.SpellConfig { diff --git a/sim/priest/talents.go b/sim/priest/talents.go index 19ad29bfe0..31b20e60bf 100644 --- a/sim/priest/talents.go +++ b/sim/priest/talents.go @@ -3,8 +3,8 @@ package priest import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/stats" ) func (priest *Priest) ApplyTalents() { diff --git a/sim/priest/void_plague.go b/sim/priest/void_plague.go index ab2e472af6..ba12e0323a 100644 --- a/sim/priest/void_plague.go +++ b/sim/priest/void_plague.go @@ -4,8 +4,8 @@ import ( "strconv" "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) // https://www.wowhead.com/classic/spell=425204/void-plague diff --git a/sim/raid_bench_test.go b/sim/raid_bench_test.go index be76f0099b..30c82a07a5 100644 --- a/sim/raid_bench_test.go +++ b/sim/raid_bench_test.go @@ -3,9 +3,9 @@ package sim import ( "testing" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) // 1 moonkin, 1 ele shaman, 1 spriest, 2x arcane diff --git a/sim/raid_test.go b/sim/raid_test.go index c3dc14ddfd..7d2c42b086 100644 --- a/sim/raid_test.go +++ b/sim/raid_test.go @@ -3,9 +3,9 @@ package sim import ( "testing" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func init() { diff --git a/sim/register_all.go b/sim/register_all.go index 7bb129d021..01e29da989 100644 --- a/sim/register_all.go +++ b/sim/register_all.go @@ -1,26 +1,27 @@ package sim import ( - _ "github.com/wowsims/classic/sod/sim/common" - "github.com/wowsims/classic/sod/sim/druid/balance" - // "github.com/wowsims/classic/sod/sim/druid/feral" - // restoDruid "github.com/wowsims/classic/sod/sim/druid/restoration" - // feralTank "github.com/wowsims/classic/sod/sim/druid/tank" - // _ "github.com/wowsims/classic/sod/sim/encounters" - // "github.com/wowsims/classic/sod/sim/hunter" - "github.com/wowsims/classic/sod/sim/mage" - // holyPaladin "github.com/wowsims/classic/sod/sim/paladin/holy" - // protectionPaladin "github.com/wowsims/classic/sod/sim/paladin/protection" - // "github.com/wowsims/classic/sod/sim/paladin/retribution" - // healingPriest "github.com/wowsims/classic/sod/sim/priest/healing" - "github.com/wowsims/classic/sod/sim/priest/shadow" - // "github.com/wowsims/classic/sod/sim/rogue" - // "github.com/wowsims/classic/sod/sim/shaman/elemental" - // "github.com/wowsims/classic/sod/sim/shaman/enhancement" - // restoShaman "github.com/wowsims/classic/sod/sim/shaman/restoration" - "github.com/wowsims/classic/sod/sim/warlock" - dpsWarrior "github.com/wowsims/classic/sod/sim/warrior/dps" - // protectionWarrior "github.com/wowsims/classic/sod/sim/warrior/protection" + _ "github.com/wowsims/sod/sim/common" + "github.com/wowsims/sod/sim/druid/balance" + + // "github.com/wowsims/sod/sim/druid/feral" + // restoDruid "github.com/wowsims/sod/sim/druid/restoration" + // feralTank "github.com/wowsims/sod/sim/druid/tank" + // _ "github.com/wowsims/sod/sim/encounters" + // "github.com/wowsims/sod/sim/hunter" + "github.com/wowsims/sod/sim/mage" + // holyPaladin "github.com/wowsims/sod/sim/paladin/holy" + // protectionPaladin "github.com/wowsims/sod/sim/paladin/protection" + // "github.com/wowsims/sod/sim/paladin/retribution" + // healingPriest "github.com/wowsims/sod/sim/priest/healing" + "github.com/wowsims/sod/sim/priest/shadow" + // "github.com/wowsims/sod/sim/rogue" + // "github.com/wowsims/sod/sim/shaman/elemental" + // "github.com/wowsims/sod/sim/shaman/enhancement" + // restoShaman "github.com/wowsims/sod/sim/shaman/restoration" + "github.com/wowsims/sod/sim/warlock" + dpsWarrior "github.com/wowsims/sod/sim/warrior/dps" + // protectionWarrior "github.com/wowsims/sod/sim/warrior/protection" ) var registered = false diff --git a/sim/warlock/_conflagrate.go b/sim/warlock/_conflagrate.go index 51e840350f..51aa1a3c11 100644 --- a/sim/warlock/_conflagrate.go +++ b/sim/warlock/_conflagrate.go @@ -3,8 +3,8 @@ package warlock import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (warlock *Warlock) registerConflagrateSpell() { diff --git a/sim/warlock/_curses.go b/sim/warlock/_curses.go index 7d104451ea..f9c7143523 100644 --- a/sim/warlock/_curses.go +++ b/sim/warlock/_curses.go @@ -3,8 +3,8 @@ package warlock import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (warlock *Warlock) registerCurseOfElementsSpell() { diff --git a/sim/warlock/_dark_pact.go b/sim/warlock/_dark_pact.go index fee1bb8c38..624ffaf4b5 100644 --- a/sim/warlock/_dark_pact.go +++ b/sim/warlock/_dark_pact.go @@ -3,9 +3,9 @@ package warlock import ( "math" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func (warlock *Warlock) registerDarkPactSpell() { diff --git a/sim/warlock/_drain_soul.go b/sim/warlock/_drain_soul.go index 7ad1350c10..0ddd34fcde 100644 --- a/sim/warlock/_drain_soul.go +++ b/sim/warlock/_drain_soul.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warlock *Warlock) registerDrainSoulSpell() { diff --git a/sim/warlock/_haunt.go b/sim/warlock/_haunt.go index 3e3feafb69..37784a1efa 100644 --- a/sim/warlock/_haunt.go +++ b/sim/warlock/_haunt.go @@ -3,8 +3,8 @@ package warlock import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (warlock *Warlock) registerHauntSpell() { diff --git a/sim/warlock/_lifetap.go b/sim/warlock/_lifetap.go index 35060c7520..8b13b64c3c 100644 --- a/sim/warlock/_lifetap.go +++ b/sim/warlock/_lifetap.go @@ -1,8 +1,8 @@ package warlock import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/stats" ) func (warlock *Warlock) registerLifeTapSpell() { diff --git a/sim/warlock/_metamorphosis.go b/sim/warlock/_metamorphosis.go index 0913b8f198..b6179717e4 100644 --- a/sim/warlock/_metamorphosis.go +++ b/sim/warlock/_metamorphosis.go @@ -3,8 +3,8 @@ package warlock import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (warlock *Warlock) registerMetamorphosisSpell() { diff --git a/sim/warlock/_searing_pain.go b/sim/warlock/_searing_pain.go index 36f222b162..9c83cfadb7 100644 --- a/sim/warlock/_searing_pain.go +++ b/sim/warlock/_searing_pain.go @@ -3,8 +3,8 @@ package warlock import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (warlock *Warlock) registerSearingPainSpell() { diff --git a/sim/warlock/_shadowburn.go b/sim/warlock/_shadowburn.go index bae7663cc4..fd94865862 100644 --- a/sim/warlock/_shadowburn.go +++ b/sim/warlock/_shadowburn.go @@ -3,8 +3,8 @@ package warlock import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (warlock *Warlock) registerShadowBurnSpell() { diff --git a/sim/warlock/_soul_fire.go b/sim/warlock/_soul_fire.go index 0836b389e0..e5d405f0b0 100644 --- a/sim/warlock/_soul_fire.go +++ b/sim/warlock/_soul_fire.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warlock *Warlock) registerSoulFireSpell() { diff --git a/sim/warlock/apl_values.go b/sim/warlock/apl_values.go index 40c91d5ecf..925cb5443f 100644 --- a/sim/warlock/apl_values.go +++ b/sim/warlock/apl_values.go @@ -3,8 +3,8 @@ package warlock import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (warlock *Warlock) NewAPLValue(rot *core.APLRotation, config *proto.APLValue) core.APLValue { diff --git a/sim/warlock/chaos_bolt.go b/sim/warlock/chaos_bolt.go index f2f58eb57f..37c25d3aff 100644 --- a/sim/warlock/chaos_bolt.go +++ b/sim/warlock/chaos_bolt.go @@ -3,8 +3,8 @@ package warlock import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) // TODO: Classic warlock verify chaos bolt mechanics diff --git a/sim/warlock/corruption.go b/sim/warlock/corruption.go index 2a6b4dc558..fe15590174 100644 --- a/sim/warlock/corruption.go +++ b/sim/warlock/corruption.go @@ -4,7 +4,7 @@ import ( "strconv" "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warlock *Warlock) getCorruptionConfig(rank int) core.SpellConfig { diff --git a/sim/warlock/immolate.go b/sim/warlock/immolate.go index ef189cb811..85aad0e1f0 100644 --- a/sim/warlock/immolate.go +++ b/sim/warlock/immolate.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warlock *Warlock) getImmolateConfig(rank int) core.SpellConfig { diff --git a/sim/warlock/incinerate.go b/sim/warlock/incinerate.go index 6f15ba8e13..89e65233e2 100644 --- a/sim/warlock/incinerate.go +++ b/sim/warlock/incinerate.go @@ -3,9 +3,9 @@ package warlock import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func (warlock *Warlock) registerIncinerateSpell() { diff --git a/sim/warlock/pet.go b/sim/warlock/pet.go index cb5eb882d5..a4170e56ef 100644 --- a/sim/warlock/pet.go +++ b/sim/warlock/pet.go @@ -3,9 +3,9 @@ package warlock import ( "math" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) type WarlockPet struct { @@ -114,8 +114,8 @@ func (warlock *Warlock) NewWarlockPet() *WarlockPet { // Fix pet stats resulting from gaining the incorrect amount of stats from suppression/hit debuff // see makeStatInheritance() below for a more details about these values - stats.MeleeHit: -float64(warlock.Talents.Suppression) * core.MeleeHitRatingPerHitChance, - stats.SpellHit: (-5.0 * float64(warlock.Talents.Suppression)) / 12.0 * core.SpellHitRatingPerHitChance, + stats.MeleeHit: -float64(warlock.Talents.Suppression) * core.MeleeHitRatingPerHitChance, + stats.SpellHit: (-5.0 * float64(warlock.Talents.Suppression)) / 12.0 * core.SpellHitRatingPerHitChance, }) // TODO: Classic correct melee pet scaling with talent @@ -133,17 +133,17 @@ func (warlock *Warlock) NewWarlockPet() *WarlockPet { OnGain: func(aura *core.Aura, _ *core.Simulation) { switch warlock.Options.Summon { case proto.Warlock_Options_Imp: - aura.Unit.PseudoStats.ThreatMultiplier *= 1 + 0.04 * float64(warlock.Talents.MasterDemonologist) + aura.Unit.PseudoStats.ThreatMultiplier *= 1 + 0.04*float64(warlock.Talents.MasterDemonologist) case proto.Warlock_Options_Succubus: - aura.Unit.PseudoStats.DamageDealtMultiplier *= 1 + 0.02 * float64(warlock.Talents.MasterDemonologist) + aura.Unit.PseudoStats.DamageDealtMultiplier *= 1 + 0.02*float64(warlock.Talents.MasterDemonologist) } }, OnExpire: func(aura *core.Aura, _ *core.Simulation) { switch warlock.Options.Summon { case proto.Warlock_Options_Imp: - aura.Unit.PseudoStats.ThreatMultiplier /= 1 + 0.04 * float64(warlock.Talents.MasterDemonologist) + aura.Unit.PseudoStats.ThreatMultiplier /= 1 + 0.04*float64(warlock.Talents.MasterDemonologist) case proto.Warlock_Options_Succubus: - aura.Unit.PseudoStats.DamageDealtMultiplier /= 1 + 0.02 * float64(warlock.Talents.MasterDemonologist) + aura.Unit.PseudoStats.DamageDealtMultiplier /= 1 + 0.02*float64(warlock.Talents.MasterDemonologist) } }, } @@ -235,8 +235,8 @@ func (warlock *Warlock) makeStatInheritance() core.PetStatInheritance { stats.SpellPenetration: ownerStats[stats.SpellPenetration], // stats.SpellCrit: improvedDemonicTactics * 0.1 * ownerStats[stats.SpellCrit], // stats.MeleeCrit: improvedDemonicTactics * 0.1 * ownerStats[stats.SpellCrit], - stats.MeleeHit: ownerHitChance * core.MeleeHitRatingPerHitChance, - stats.SpellHit: math.Floor(ownerStats[stats.SpellHit] / 12.0 * 17.0), + stats.MeleeHit: ownerHitChance * core.MeleeHitRatingPerHitChance, + stats.SpellHit: math.Floor(ownerStats[stats.SpellHit] / 12.0 * 17.0), } } } diff --git a/sim/warlock/pet_abilities.go b/sim/warlock/pet_abilities.go index d1cbc544d7..a6bf46a2c1 100644 --- a/sim/warlock/pet_abilities.go +++ b/sim/warlock/pet_abilities.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (wp *WarlockPet) registerFireboltSpell() { diff --git a/sim/warlock/runes.go b/sim/warlock/runes.go index 3f0daec89a..640562adcd 100644 --- a/sim/warlock/runes.go +++ b/sim/warlock/runes.go @@ -1,9 +1,9 @@ package warlock import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func (warlock *Warlock) ApplyRunes() { diff --git a/sim/warlock/shadowbolt.go b/sim/warlock/shadowbolt.go index d7f7ecc421..dbd5876a8f 100644 --- a/sim/warlock/shadowbolt.go +++ b/sim/warlock/shadowbolt.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warlock *Warlock) getShadowBoltBaseConfig(rank int) core.SpellConfig { diff --git a/sim/warlock/talents.go b/sim/warlock/talents.go index 9dc6fe8176..4c054ea27a 100644 --- a/sim/warlock/talents.go +++ b/sim/warlock/talents.go @@ -1,9 +1,9 @@ package warlock import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) // TODO: Classic warlock talents diff --git a/sim/warlock/warlock.go b/sim/warlock/warlock.go index 1ea121945a..3fb80959cc 100644 --- a/sim/warlock/warlock.go +++ b/sim/warlock/warlock.go @@ -3,9 +3,9 @@ package warlock import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) var TalentTreeSizes = [3]int{17, 17, 16} diff --git a/sim/warlock/warlock_test.go b/sim/warlock/warlock_test.go index 9a64ced401..31e287dc36 100644 --- a/sim/warlock/warlock_test.go +++ b/sim/warlock/warlock_test.go @@ -3,9 +3,9 @@ package warlock import ( "testing" - _ "github.com/wowsims/classic/sod/sim/common" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + _ "github.com/wowsims/sod/sim/common" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func init() { diff --git a/sim/warrior/berserker_rage.go b/sim/warrior/berserker_rage.go index 5f1a0f0ae2..5c719207b1 100644 --- a/sim/warrior/berserker_rage.go +++ b/sim/warrior/berserker_rage.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warrior *Warrior) registerBerserkerRageSpell() { diff --git a/sim/warrior/bloodrage.go b/sim/warrior/bloodrage.go index 39a0e65bf9..c57a0ab264 100644 --- a/sim/warrior/bloodrage.go +++ b/sim/warrior/bloodrage.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warrior *Warrior) registerBloodrageCD() { diff --git a/sim/warrior/bloodthirst.go b/sim/warrior/bloodthirst.go index 8837613f35..f2ac6122a0 100644 --- a/sim/warrior/bloodthirst.go +++ b/sim/warrior/bloodthirst.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warrior *Warrior) registerBloodthirstSpell(cdTimer *core.Timer) { diff --git a/sim/warrior/concussion_blow.go b/sim/warrior/concussion_blow.go index e1a63e00a1..efca20a451 100644 --- a/sim/warrior/concussion_blow.go +++ b/sim/warrior/concussion_blow.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warrior *Warrior) registerConcussionBlowSpell() { diff --git a/sim/warrior/deep_wounds.go b/sim/warrior/deep_wounds.go index a7aed22a64..ba66c22b0b 100644 --- a/sim/warrior/deep_wounds.go +++ b/sim/warrior/deep_wounds.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warrior *Warrior) applyDeepWounds() { diff --git a/sim/warrior/demoralizing_shout.go b/sim/warrior/demoralizing_shout.go index 3c31a25406..db00504f6b 100644 --- a/sim/warrior/demoralizing_shout.go +++ b/sim/warrior/demoralizing_shout.go @@ -1,7 +1,7 @@ package warrior import ( - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warrior *Warrior) registerDemoralizingShoutSpell() { diff --git a/sim/warrior/devastate.go b/sim/warrior/devastate.go index fc4bf2ed90..0d837e9537 100644 --- a/sim/warrior/devastate.go +++ b/sim/warrior/devastate.go @@ -1,7 +1,7 @@ package warrior import ( - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warrior *Warrior) registerDevastateSpell() { diff --git a/sim/warrior/dps/dps_warrior.go b/sim/warrior/dps/dps_warrior.go index 7fa549e00d..150ed758d0 100644 --- a/sim/warrior/dps/dps_warrior.go +++ b/sim/warrior/dps/dps_warrior.go @@ -3,10 +3,10 @@ package dps import ( "time" - "github.com/wowsims/classic/sod/sim/common" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/warrior" + "github.com/wowsims/sod/sim/common" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/warrior" ) func RegisterDpsWarrior() { diff --git a/sim/warrior/dps/dps_warrior_test.go b/sim/warrior/dps/dps_warrior_test.go index f9ff124d01..081e4b2a68 100644 --- a/sim/warrior/dps/dps_warrior_test.go +++ b/sim/warrior/dps/dps_warrior_test.go @@ -3,9 +3,9 @@ package dps import ( "testing" - _ "github.com/wowsims/classic/sod/sim/common" // imported to get item effects included. - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + _ "github.com/wowsims/sod/sim/common" // imported to get item effects included. + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func init() { diff --git a/sim/warrior/execute.go b/sim/warrior/execute.go index ff72d24cf2..db02812084 100644 --- a/sim/warrior/execute.go +++ b/sim/warrior/execute.go @@ -1,7 +1,7 @@ package warrior import ( - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warrior *Warrior) registerExecuteSpell() { diff --git a/sim/warrior/heroic_strike_cleave.go b/sim/warrior/heroic_strike_cleave.go index 1d3ae7d8ba..5321003a71 100644 --- a/sim/warrior/heroic_strike_cleave.go +++ b/sim/warrior/heroic_strike_cleave.go @@ -1,8 +1,8 @@ package warrior import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (warrior *Warrior) registerHeroicStrikeSpell() *core.Spell { diff --git a/sim/warrior/items.go b/sim/warrior/items.go index 7c6e3a6066..7152421b38 100644 --- a/sim/warrior/items.go +++ b/sim/warrior/items.go @@ -3,8 +3,8 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/stats" ) ///////////////////////////////////////////////////////////////// diff --git a/sim/warrior/mortal_strike.go b/sim/warrior/mortal_strike.go index d9e47d6d4d..a8826ce4db 100644 --- a/sim/warrior/mortal_strike.go +++ b/sim/warrior/mortal_strike.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warrior *Warrior) registerMortalStrikeSpell(cdTimer *core.Timer) { diff --git a/sim/warrior/overpower.go b/sim/warrior/overpower.go index d2e6cda360..e3aa24130a 100644 --- a/sim/warrior/overpower.go +++ b/sim/warrior/overpower.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warrior *Warrior) registerOverpowerSpell(cdTimer *core.Timer) { diff --git a/sim/warrior/protection/protection_warrior.go b/sim/warrior/protection/protection_warrior.go index 94316a73ae..e7966c3b33 100644 --- a/sim/warrior/protection/protection_warrior.go +++ b/sim/warrior/protection/protection_warrior.go @@ -1,10 +1,10 @@ package protection import ( - "github.com/wowsims/classic/sod/sim/common" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/warrior" + "github.com/wowsims/sod/sim/common" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/warrior" ) func RegisterProtectionWarrior() { diff --git a/sim/warrior/protection/protection_warrior_test.go b/sim/warrior/protection/protection_warrior_test.go index 839b334671..20c5c209c8 100644 --- a/sim/warrior/protection/protection_warrior_test.go +++ b/sim/warrior/protection/protection_warrior_test.go @@ -3,9 +3,9 @@ package protection import ( "testing" - _ "github.com/wowsims/classic/sod/sim/common" // imported to get item effects included. - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + _ "github.com/wowsims/sod/sim/common" // imported to get item effects included. + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func init() { diff --git a/sim/warrior/protection/rotation.go b/sim/warrior/protection/rotation.go index 68ed8183d9..961c6b9972 100644 --- a/sim/warrior/protection/rotation.go +++ b/sim/warrior/protection/rotation.go @@ -1,10 +1,10 @@ package protection import ( - "github.com/wowsims/classic/sod/sim/common" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/warrior" + "github.com/wowsims/sod/sim/common" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/warrior" ) func (war *ProtectionWarrior) OnGCDReady(sim *core.Simulation) { diff --git a/sim/warrior/quick_strike.go b/sim/warrior/quick_strike.go index a2d5772dd8..81f583e9b5 100644 --- a/sim/warrior/quick_strike.go +++ b/sim/warrior/quick_strike.go @@ -1,8 +1,8 @@ package warrior import ( - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (warrior *Warrior) registerQuickStrike() { diff --git a/sim/warrior/raging_blow.go b/sim/warrior/raging_blow.go index 124130a90a..9ce823b53f 100644 --- a/sim/warrior/raging_blow.go +++ b/sim/warrior/raging_blow.go @@ -3,8 +3,8 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) func (warrior *Warrior) registerRagingBlow() { diff --git a/sim/warrior/recklessness.go b/sim/warrior/recklessness.go index a6a5d2e247..a6af208018 100644 --- a/sim/warrior/recklessness.go +++ b/sim/warrior/recklessness.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warrior *Warrior) RegisterRecklessnessCD() { diff --git a/sim/warrior/rend.go b/sim/warrior/rend.go index 66d3171298..df4fe00cc4 100644 --- a/sim/warrior/rend.go +++ b/sim/warrior/rend.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warrior *Warrior) RegisterRendSpell() { diff --git a/sim/warrior/revenge.go b/sim/warrior/revenge.go index 384b0cb682..a67072a814 100644 --- a/sim/warrior/revenge.go +++ b/sim/warrior/revenge.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) // TODO: Classic Update diff --git a/sim/warrior/runes.go b/sim/warrior/runes.go index 0e606bdd7f..4890eaf457 100644 --- a/sim/warrior/runes.go +++ b/sim/warrior/runes.go @@ -3,9 +3,9 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func (warrior *Warrior) ApplyRunes() { diff --git a/sim/warrior/shield_block.go b/sim/warrior/shield_block.go index 7d7d20b232..b24856b9c2 100644 --- a/sim/warrior/shield_block.go +++ b/sim/warrior/shield_block.go @@ -3,8 +3,8 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/stats" ) // TODO: Classic Update diff --git a/sim/warrior/shield_slam.go b/sim/warrior/shield_slam.go index 1b85f65208..9ee56fb0dc 100644 --- a/sim/warrior/shield_slam.go +++ b/sim/warrior/shield_slam.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) // TODO: Classic Update diff --git a/sim/warrior/shield_wall.go b/sim/warrior/shield_wall.go index 535c1be25c..2b1e17f6f5 100644 --- a/sim/warrior/shield_wall.go +++ b/sim/warrior/shield_wall.go @@ -3,8 +3,8 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) // TODO: Classic Update diff --git a/sim/warrior/shouts.go b/sim/warrior/shouts.go index 75b427af0f..797f711dfb 100644 --- a/sim/warrior/shouts.go +++ b/sim/warrior/shouts.go @@ -3,8 +3,8 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) const ShoutExpirationThreshold = time.Second * 3 diff --git a/sim/warrior/slam.go b/sim/warrior/slam.go index 24c3619c71..a21f37f4cf 100644 --- a/sim/warrior/slam.go +++ b/sim/warrior/slam.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warrior *Warrior) registerSlamSpell() { diff --git a/sim/warrior/stances.go b/sim/warrior/stances.go index 68201f7135..77f9b3dd45 100644 --- a/sim/warrior/stances.go +++ b/sim/warrior/stances.go @@ -3,8 +3,8 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/stats" ) type Stance uint8 diff --git a/sim/warrior/sunder_armor.go b/sim/warrior/sunder_armor.go index c10005c261..97bda9855e 100644 --- a/sim/warrior/sunder_armor.go +++ b/sim/warrior/sunder_armor.go @@ -1,7 +1,7 @@ package warrior import ( - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) // TODO: GlyphOfSunderArmor will require refactoring this a bit diff --git a/sim/warrior/sweeping_strikes.go b/sim/warrior/sweeping_strikes.go index b5ca42f34c..812224caa8 100644 --- a/sim/warrior/sweeping_strikes.go +++ b/sim/warrior/sweeping_strikes.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warrior *Warrior) registerSweepingStrikesCD() { diff --git a/sim/warrior/talents.go b/sim/warrior/talents.go index ca0b329750..e72c2b6dac 100644 --- a/sim/warrior/talents.go +++ b/sim/warrior/talents.go @@ -3,9 +3,9 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) func (warrior *Warrior) ToughnessArmorMultiplier() float64 { diff --git a/sim/warrior/thunder_clap.go b/sim/warrior/thunder_clap.go index 775c37bf98..1cfa08ce23 100644 --- a/sim/warrior/thunder_clap.go +++ b/sim/warrior/thunder_clap.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warrior *Warrior) registerThunderClapSpell() { diff --git a/sim/warrior/warrior.go b/sim/warrior/warrior.go index 0537459681..f3b5599b62 100644 --- a/sim/warrior/warrior.go +++ b/sim/warrior/warrior.go @@ -3,9 +3,9 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) const ( diff --git a/sim/warrior/whirlwind.go b/sim/warrior/whirlwind.go index ffe8f3f7cb..1dd4e40996 100644 --- a/sim/warrior/whirlwind.go +++ b/sim/warrior/whirlwind.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" ) func (warrior *Warrior) registerWhirlwindSpell() { diff --git a/sim/wasm/main.go b/sim/wasm/main.go index fa600591c1..2570c2cfbc 100644 --- a/sim/wasm/main.go +++ b/sim/wasm/main.go @@ -9,9 +9,9 @@ import ( "runtime/debug" "syscall/js" - "github.com/wowsims/classic/sod/sim" - "github.com/wowsims/classic/sod/sim/core" - proto "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim" + "github.com/wowsims/sod/sim/core" + proto "github.com/wowsims/sod/sim/core/proto" protojson "google.golang.org/protobuf/encoding/protojson" googleProto "google.golang.org/protobuf/proto" ) diff --git a/sim/web/main.go b/sim/web/main.go index 73f80425b5..d3f4d83ee8 100644 --- a/sim/web/main.go +++ b/sim/web/main.go @@ -21,10 +21,10 @@ import ( uuid "github.com/google/uuid" "github.com/pkg/browser" - dist "github.com/wowsims/classic/sod/binary_dist" - "github.com/wowsims/classic/sod/sim" - "github.com/wowsims/classic/sod/sim/core" - proto "github.com/wowsims/classic/sod/sim/core/proto" + dist "github.com/wowsims/sod/binary_dist" + "github.com/wowsims/sod/sim" + "github.com/wowsims/sod/sim/core" + proto "github.com/wowsims/sod/sim/core/proto" googleProto "google.golang.org/protobuf/proto" ) @@ -286,7 +286,7 @@ func (s *server) runServer(useFS bool, host string, launchBrowser bool, simName }) http.HandleFunc("/", func(resp http.ResponseWriter, req *http.Request) { if req.URL.Path == "/" { - http.Redirect(resp, req, "/classic/sod/", http.StatusPermanentRedirect) + http.Redirect(resp, req, "/sod/", http.StatusPermanentRedirect) return } resp.Header().Add("Cache-Control", "no-cache") @@ -308,7 +308,7 @@ func (s *server) runServer(useFS bool, host string, launchBrowser bool, simName if strings.HasPrefix(host, ":") { host = "localhost" + host } - url := fmt.Sprintf("http://%s/classic/sod/%s", host, simName) + url := fmt.Sprintf("http://%s/sod/%s", host, simName) log.Printf("Launching interface on %s", url) go func() { err := browser.OpenURL(url) diff --git a/sim/web/main_test.go b/sim/web/main_test.go index e2136a47cf..47df39183e 100644 --- a/sim/web/main_test.go +++ b/sim/web/main_test.go @@ -10,9 +10,9 @@ import ( "testing" "time" - _ "github.com/wowsims/classic/sod/sim/common" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + _ "github.com/wowsims/sod/sim/common" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" googleProto "google.golang.org/protobuf/proto" ) diff --git a/tools/base_stats_parser.py b/tools/base_stats_parser.py index 65e4d75beb..dd21ce28b3 100644 --- a/tools/base_stats_parser.py +++ b/tools/base_stats_parser.py @@ -73,8 +73,8 @@ def GenExtraStatsGoFile(cs: ClassStats): // ************************************** import ( - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) ''' diff --git a/tools/database/atlasloot.go b/tools/database/atlasloot.go index 2fa3c6bed4..476d0f4229 100644 --- a/tools/database/atlasloot.go +++ b/tools/database/atlasloot.go @@ -7,9 +7,9 @@ import ( "strconv" "strings" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/tools" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/tools" ) func ReadAtlasLootData() *WowDatabase { diff --git a/tools/database/database.go b/tools/database/database.go index 86a7e4b14f..11960412ae 100644 --- a/tools/database/database.go +++ b/tools/database/database.go @@ -7,8 +7,8 @@ import ( "os" "slices" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/tools" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/tools" "golang.org/x/exp/maps" "google.golang.org/protobuf/encoding/protojson" googleProto "google.golang.org/protobuf/proto" diff --git a/tools/database/enchant_overrides.go b/tools/database/enchant_overrides.go index 423901acbe..ff7bd72750 100644 --- a/tools/database/enchant_overrides.go +++ b/tools/database/enchant_overrides.go @@ -1,8 +1,8 @@ package database import ( - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) // Note: EffectId AND SpellId are required for all enchants, because they are diff --git a/tools/database/gen_db/main.go b/tools/database/gen_db/main.go index 497ce428b2..6a282d91ad 100644 --- a/tools/database/gen_db/main.go +++ b/tools/database/gen_db/main.go @@ -9,11 +9,11 @@ import ( "os" "strconv" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" - _ "github.com/wowsims/classic/sod/sim/encounters" // Needed for preset encounters. - "github.com/wowsims/classic/sod/tools" - "github.com/wowsims/classic/sod/tools/database" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" + _ "github.com/wowsims/sod/sim/encounters" // Needed for preset encounters. + "github.com/wowsims/sod/tools" + "github.com/wowsims/sod/tools/database" ) // To do a full re-scrape, delete the previous output file first. diff --git a/tools/database/overrides.go b/tools/database/overrides.go index a2339bd35d..bfb409b7d4 100644 --- a/tools/database/overrides.go +++ b/tools/database/overrides.go @@ -3,8 +3,8 @@ package database import ( "regexp" - "github.com/wowsims/classic/sod/sim/core/proto" - "github.com/wowsims/classic/sod/sim/core/stats" + "github.com/wowsims/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/stats" ) var OtherItemIdsToFetch = []string{} diff --git a/tools/database/rune_overrides.go b/tools/database/rune_overrides.go index 96c3e4cec8..9c2fb7b4d9 100644 --- a/tools/database/rune_overrides.go +++ b/tools/database/rune_overrides.go @@ -1,12 +1,12 @@ package database import ( - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) // Overrides for runes as needed // Regen db with "go run ./tools/database/gen_db -outDir=assets -gen=db" -// And ensure db files are copied from assets/db into dist/classic/sod/database +// And ensure db files are copied from assets/db into dist/sod/database var RuneOverrides = []*proto.UIRune{ // {Id: 415460, Name: "Engrave Chest - Burnout", Icon: "ability_mage_burnout", Type: proto.ItemType_ItemTypeChest, Class: proto.Class_ClassMage, RequiresLevel: 1}, } diff --git a/tools/database/tooltip_manager.go b/tools/database/tooltip_manager.go index 9df7540a2f..1ad587920e 100644 --- a/tools/database/tooltip_manager.go +++ b/tools/database/tooltip_manager.go @@ -6,8 +6,8 @@ import ( "strconv" "strings" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/tools" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/tools" ) // Generic class for fetching tooltip info from the web. diff --git a/tools/database/wago_db.go b/tools/database/wago_db.go index 1b2d9c15ed..0bf2315e80 100644 --- a/tools/database/wago_db.go +++ b/tools/database/wago_db.go @@ -7,7 +7,7 @@ import ( "strconv" "strings" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) const ( diff --git a/tools/database/wowhead_db.go b/tools/database/wowhead_db.go index a95266d0a7..3f3d74cc25 100644 --- a/tools/database/wowhead_db.go +++ b/tools/database/wowhead_db.go @@ -7,7 +7,7 @@ import ( "strings" "github.com/tailscale/hujson" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core/proto" ) // Example db input file: https://nether.wowhead.com/classic/data/gear-planner?dv=100 diff --git a/tools/database/wowhead_tooltips.go b/tools/database/wowhead_tooltips.go index fab3b2d594..484bab595a 100644 --- a/tools/database/wowhead_tooltips.go +++ b/tools/database/wowhead_tooltips.go @@ -8,8 +8,8 @@ import ( "strconv" "strings" - "github.com/wowsims/classic/sod/sim/core" - "github.com/wowsims/classic/sod/sim/core/proto" + "github.com/wowsims/sod/sim/core" + "github.com/wowsims/sod/sim/core/proto" ) type WowheadTooltipManager struct { diff --git a/tools/io_utils.go b/tools/io_utils.go index 6a244ac2fd..45c672cafe 100644 --- a/tools/io_utils.go +++ b/tools/io_utils.go @@ -17,7 +17,7 @@ import ( "sync" "time" - "github.com/wowsims/classic/sod/sim/core" + "github.com/wowsims/sod/sim/core" protojson "google.golang.org/protobuf/encoding/protojson" googleProto "google.golang.org/protobuf/proto" ) diff --git a/tsconfig.json b/tsconfig.json index 8304b0e083..8a1efbea59 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,7 +10,7 @@ "DOM.Iterable" ], "types": [], - "outDir": "dist/classic/sod", + "outDir": "dist/sod", "pretty": false, "allowJs": true, "resolveJsonModule": true, @@ -21,7 +21,7 @@ "jsxFragmentFactory": "fragment", }, "exclude": [ - "dist/classic/sod", + "dist/sod", "assets", "sim", "proto" diff --git a/ui/core/components/gear_picker.tsx b/ui/core/components/gear_picker.tsx index 86380cbf3b..902cedf9b2 100644 --- a/ui/core/components/gear_picker.tsx +++ b/ui/core/components/gear_picker.tsx @@ -698,23 +698,23 @@ interface ItemDataWithIdx { } const emptySlotIcons: Record = { - [ItemSlot.ItemSlotHead]: '/classic/sod/assets/item_slots/head.jpg', - [ItemSlot.ItemSlotNeck]: '/classic/sod/assets/item_slots/neck.jpg', - [ItemSlot.ItemSlotShoulder]: '/classic/sod/assets/item_slots/shoulders.jpg', - [ItemSlot.ItemSlotBack]: '/classic/sod/assets/item_slots/shirt.jpg', - [ItemSlot.ItemSlotChest]: '/classic/sod/assets/item_slots/chest.jpg', - [ItemSlot.ItemSlotWrist]: '/classic/sod/assets/item_slots/wrists.jpg', - [ItemSlot.ItemSlotHands]: '/classic/sod/assets/item_slots/hands.jpg', - [ItemSlot.ItemSlotWaist]: '/classic/sod/assets/item_slots/waist.jpg', - [ItemSlot.ItemSlotLegs]: '/classic/sod/assets/item_slots/legs.jpg', - [ItemSlot.ItemSlotFeet]: '/classic/sod/assets/item_slots/feet.jpg', - [ItemSlot.ItemSlotFinger1]: '/classic/sod/assets/item_slots/finger.jpg', - [ItemSlot.ItemSlotFinger2]: '/classic/sod/assets/item_slots/finger.jpg', - [ItemSlot.ItemSlotTrinket1]: '/classic/sod/assets/item_slots/trinket.jpg', - [ItemSlot.ItemSlotTrinket2]: '/classic/sod/assets/item_slots/trinket.jpg', - [ItemSlot.ItemSlotMainHand]: '/classic/sod/assets/item_slots/mainhand.jpg', - [ItemSlot.ItemSlotOffHand]: '/classic/sod/assets/item_slots/offhand.jpg', - [ItemSlot.ItemSlotRanged]: '/classic/sod/assets/item_slots/ranged.jpg', + [ItemSlot.ItemSlotHead]: '/sod/assets/item_slots/head.jpg', + [ItemSlot.ItemSlotNeck]: '/sod/assets/item_slots/neck.jpg', + [ItemSlot.ItemSlotShoulder]: '/sod/assets/item_slots/shoulders.jpg', + [ItemSlot.ItemSlotBack]: '/sod/assets/item_slots/shirt.jpg', + [ItemSlot.ItemSlotChest]: '/sod/assets/item_slots/chest.jpg', + [ItemSlot.ItemSlotWrist]: '/sod/assets/item_slots/wrists.jpg', + [ItemSlot.ItemSlotHands]: '/sod/assets/item_slots/hands.jpg', + [ItemSlot.ItemSlotWaist]: '/sod/assets/item_slots/waist.jpg', + [ItemSlot.ItemSlotLegs]: '/sod/assets/item_slots/legs.jpg', + [ItemSlot.ItemSlotFeet]: '/sod/assets/item_slots/feet.jpg', + [ItemSlot.ItemSlotFinger1]: '/sod/assets/item_slots/finger.jpg', + [ItemSlot.ItemSlotFinger2]: '/sod/assets/item_slots/finger.jpg', + [ItemSlot.ItemSlotTrinket1]: '/sod/assets/item_slots/trinket.jpg', + [ItemSlot.ItemSlotTrinket2]: '/sod/assets/item_slots/trinket.jpg', + [ItemSlot.ItemSlotMainHand]: '/sod/assets/item_slots/mainhand.jpg', + [ItemSlot.ItemSlotOffHand]: '/sod/assets/item_slots/offhand.jpg', + [ItemSlot.ItemSlotRanged]: '/sod/assets/item_slots/ranged.jpg', }; export function getEmptySlotIconUrl(slot: ItemSlot): string { return emptySlotIcons[slot]; diff --git a/ui/core/components/individual_sim_ui/bulk_tab.ts b/ui/core/components/individual_sim_ui/bulk_tab.ts index 08da778132..7d5683193d 100644 --- a/ui/core/components/individual_sim_ui/bulk_tab.ts +++ b/ui/core/components/individual_sim_ui/bulk_tab.ts @@ -198,7 +198,7 @@ export class BulkItemPicker extends Component { this.item = newItem; } else { this.itemElem.rootElem.style.opacity = '30%'; - this.itemElem.iconElem.style.backgroundImage = `url('/classic/sod/assets/item_slots/empty.jpg')`; + this.itemElem.iconElem.style.backgroundImage = `url('/sod/assets/item_slots/empty.jpg')`; this.itemElem.nameElem.textContent = 'Add new item (not implemented)'; this.itemElem.rootElem.style.alignItems = 'center'; } diff --git a/ui/core/components/sim_title_dropdown.ts b/ui/core/components/sim_title_dropdown.ts index 7c60507c31..9e195a2fa1 100644 --- a/ui/core/components/sim_title_dropdown.ts +++ b/ui/core/components/sim_title_dropdown.ts @@ -172,7 +172,7 @@ export class SimTitleDropdown extends Component {