𝔾𝕦𝕘𝕘𝕤
|
91fde7f05e
|
Fix: Correct Bomb init arguments and animate_array parameter in elPatronPowerup.py
This pull request resolves two critical issues in `elPatronPowerup.py`:
---
🔧 Issue 1: Bomb initialization failed
- ❌ Error:
TypeError: Bomb.__init__() takes 1 positional argument but 8 were given
- 🔍 Cause:
self._pm_old_bomb(...) was passing multiple positional arguments instead of keyword arguments.
- ✅ Fix:
Replaced with keyword-based argument passing:
self._pm_old_bomb(
position=position,
velocity=velocity,
bomb_type=new_bomb_type,
blast_radius=blast_radius,
bomb_scale=bomb_scale,
source_player=source_player,
owner=owner
)
---
🎨 Issue 2: animate_array() received too many arguments
- ❌ Error:
TypeError: animate_array() takes 4 positional arguments but 5 were given
- 🔍 Cause:
An unnecessary True was passed as a fifth argument.
- ✅ Fix:
Removed the extra argument:
bs.animate_array(self.texts[type], 'color', 3, {
0: (1, 0, 0),
0.2: (1, 0.5, 0),
0.4: (1, 1, 0),
0.6: (0, 1, 0),
0.8: (0, 1, 1),
1.0: (1, 0, 1),
1.2: (1, 0, 0)
})
---
|
2025-06-18 20:05:10 +05:00 |
|
Ayush Saini
|
8e2153f30c
|
Merge pull request #118 from imayushsaini/api9
1.7.41
|
2025-06-15 18:16:35 +05:30 |
|
Ayush Saini
|
38f465531d
|
cleaning up logs
|
2025-05-26 01:47:02 +05:30 |
|
Ayush Saini
|
05eb9df5fd
|
Merge branch 'api9' of https://github.com/imayushsaini/Bombsquad-Ballistica-Modded-Server into api9
|
2025-05-26 01:45:29 +05:30 |
|
Ayush Saini
|
60530651e4
|
remove unused code
|
2025-05-26 01:45:17 +05:30 |
|
Ayush Saini
|
0da2cf21ea
|
version update
|
2025-05-26 01:43:21 +05:30 |
|
Ayush Saini
|
62156c8491
|
updating binary
|
2025-05-26 01:39:38 +05:30 |
|
Ayush Saini
|
38797c6bc5
|
updating to 1.7.41
|
2025-05-26 01:11:57 +05:30 |
|
Ayush Saini
|
56d0aa7ab4
|
Merge pull request #117 from imayushsaini/api9
fixed default settings and config.json
|
2025-05-04 21:58:41 +05:30 |
|
Ayush Saini
|
2d322e2193
|
fixed default settings and config.json
|
2025-05-04 21:54:33 +05:30 |
|
Ayush Saini
|
b6982f76dd
|
Merge pull request #116 from imayushsaini/api9
updating aarch binary
|
2025-04-13 19:20:01 +05:30 |
|
Ayush Saini
|
427209b3c3
|
updating aarch binary
|
2025-04-13 19:15:55 +05:30 |
|
Ayush Saini
|
8eb65b2daf
|
Merge pull request #113 from SenjuZoro/patch-8
New firespark effect!
|
2025-04-13 12:20:34 +05:30 |
|
Ayush Saini
|
a2cf2bfcb6
|
bug fixes, servermanager link in stats, toml to json config
|
2025-04-13 12:17:10 +05:30 |
|
Ayush Saini
|
3d8121c744
|
updated dummy modules
|
2025-04-12 20:03:10 +05:30 |
|
SenjuZoro
|
a600b37b73
|
Update spaz_effects.py
New firespark added! 🚒
|
2025-04-12 14:37:21 +02:00 |
|
Ayush Saini
|
a748699245
|
syncing with ballisitca/master
|
2025-04-06 17:17:13 +05:30 |
|
Ayush Saini
|
9c57ee13f5
|
fix spaz mod default bomb type
|
2025-02-24 22:27:14 +05:30 |
|
Fang
|
e5b46f29c3
|
fixed context errors in votingmachine and reordered installation cmds (#110)
|
2025-02-23 11:30:06 +05:30 |
|
Ayush Saini
|
c0722a6916
|
added unban command
|
2025-02-22 21:52:49 +05:30 |
|
Ayush Saini
|
a334c3201d
|
Merge pull request #108 from HeyFang/public-server
fixed end, nv n tint cmd
|
2025-02-22 21:06:14 +05:30 |
|
Fang
|
f644d6aabc
|
Update management.py
|
2025-02-22 19:22:34 +05:30 |
|
HeyFang
|
88129dc7a8
|
fixed end, nv n tint cmd
|
2025-02-22 19:06:23 +05:30 |
|
Ayush Saini
|
e5d4bfca17
|
updating aarch binary
|
2025-02-22 14:25:48 +05:30 |
|
Ayush Saini
|
28dbe5fcd2
|
fixing bcs web plugin
|
2025-02-22 11:46:01 +05:30 |
|
Ayush Saini
|
be5a8f6104
|
ci
|
2025-02-15 22:36:13 +05:30 |
|
Ayush Saini
|
c9190b1267
|
including server start msg log level
|
2025-02-09 00:59:00 +05:30 |
|
Ayush Saini
|
8913080562
|
syncing changes from ballistica/master
|
2025-02-09 00:17:58 +05:30 |
|
Vishal
|
0c649da072
|
Reverting to old code
|
2025-01-26 00:44:14 +05:30 |
|
Vishal
|
cdf47179bb
|
Another small fix to remove port.py warning.
|
2024-12-08 17:02:20 +05:30 |
|
Vishal
|
d5957adb35
|
Updating defaults
|
2024-12-08 16:29:21 +05:30 |
|
Vishal
|
8c5e213a40
|
Similar small changes
|
2024-12-08 16:23:36 +05:30 |
|
Vishal
|
f4669cc327
|
Small change
|
2024-12-08 16:08:58 +05:30 |
|
Vishal
|
b0e113e7df
|
A small warning fix
|
2024-12-08 16:05:53 +05:30 |
|
Ayush Saini
|
48af420a73
|
updating ba_data
|
2024-11-28 00:23:35 +05:30 |
|
Ayush Saini
|
b0b6865bdf
|
updating aarch64 and x86_64 binaries
|
2024-11-28 00:03:55 +05:30 |
|
Ayush Saini
|
1aef4af289
|
updated server update checker version
|
2024-11-22 20:11:55 +05:30 |
|
Ayush Saini
|
638e38173b
|
syncing from public-server branch
|
2024-11-22 19:40:27 +05:30 |
|
Ayush Saini
|
cc7c7450d2
|
Merge branch 'public-server' of https://github.com/imayushsaini/Bombsquad-Ballistica-Modded-Server into api8
|
2024-11-22 19:30:54 +05:30 |
|
Vishal
|
b22ea22865
|
Adding more api 8 games
|
2024-11-21 22:01:56 +05:30 |
|
Vishal
|
c73d92665c
|
few api 8 minigames
|
2024-11-18 20:23:04 +05:30 |
|
Ayush Saini
|
8de2a67167
|
added flappy bird mini game
|
2024-08-20 00:37:50 +05:30 |
|
Ayush Saini
|
f1b9b7bc85
|
added more maps and mini games
|
2024-08-05 01:51:11 +05:30 |
|
Ayush Saini
|
1af2eeec80
|
adding dependencies
|
2024-05-19 23:06:28 +05:30 |
|
Ayush Saini
|
553e6caf36
|
bug fix
|
2024-05-19 23:03:10 +05:30 |
|
Ayush Saini
|
7d21296d63
|
updating headless
|
2024-05-19 18:31:39 +05:30 |
|
Ayush Saini
|
1119710804
|
updating dummymodules
|
2024-05-19 18:26:20 +05:30 |
|
Ayush Saini
|
ae30ed15ec
|
updating ba_data to 1.7.35
|
2024-05-19 18:25:43 +05:30 |
|
Vishal
|
582e24d3dd
|
updating Management.py
|
2024-04-19 19:02:01 +05:30 |
|
Vishal
|
853dde3ffa
|
Update Management.py
|
2024-04-10 18:57:13 +05:30 |
|