Skip to content

Commit

Permalink
fix: crash with curios on server
Browse files Browse the repository at this point in the history
some curios mixins were incorrectly specified as common but should only
be applied on clients.
  • Loading branch information
RubixDev committed Mar 28, 2024
1 parent 07a0806 commit 2f087a7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
"curios.CPacketScrollMixin",
"curios.CuriosEventHandlerMixin",
"curios.CurioStacksHandlerMixin",
"curios.InventorioScreenHandlerMixin"
],
"client": [
"curios.HandledScreenMixin",
"curios.InventorioScreenHandlerMixin",
"curios.InventorioScreenMixin",
"curios.InventorioScreenMixin_alternative",
"curios.SPacketScrollMixin",
"curios.SPacketSyncCuriosMixin",
"curios.SPacketSyncModifiersMixin"
],
"client": [
"curios.InventorioScreenMixin",
"curios.InventorioScreenMixin_alternative"
],
"injectors": {
"defaultRequire": 1
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"minVersion": "0.8",
"plugin": "de.rubixdev.inventorio.InventorioMixinPlugin",
"mixins": [
"curios.CPacketScrollMixin",
"curios.CPacketScrollMixin"
],
"client": [
"curios.SPacketScrollMixin",
"curios.SPacketSyncCuriosMixin",
"curios.SPacketSyncModifiersMixin"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
"curios.CuriosEventHandlerMixin",
"curios.CuriosServerPayloadHandlerMixin",
"curios.CurioStacksHandlerMixin",
"curios.HandledScreenMixin",
"curios.InventorioScreenHandlerMixin",
"curios.InventorioScreenMixin_alternative"
],
"client": [
"curios.HandledScreenMixin",
"curios.InventorioScreenMixin"
],
"injectors": {
Expand Down

0 comments on commit 2f087a7

Please sign in to comment.